Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
OpenXG-RAN
Commits
8f1661c6
Commit
8f1661c6
authored
Nov 26, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
PRACH occasion configuration
parent
220af3f6
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
216 additions
and
56 deletions
+216
-56
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
+0
-30
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+2
-0
openair2/LAYER2/NR_MAC_UE/mac_defs.h
openair2/LAYER2/NR_MAC_UE/mac_defs.h
+39
-1
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
+175
-25
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
View file @
8f1661c6
...
...
@@ -461,36 +461,6 @@ typedef struct {
#define NR_MAX_NUM_LCGID 8
#define MAX_RLC_SDU_SUBHEADER_SIZE 3
//===========
// PRACH defs
//===========
// ===============================================
// SSB to RO mapping public defines and structures
// ===============================================
#define MAX_SSB_PER_RO (16) // Maximum number of SSBs that can be mapped to a single RO
#define MAX_TDM (7) // Maximum nb of PRACH occasions TDMed in a slot
#define MAX_FDM (8) // Maximum nb of PRACH occasions FDMed in a slot
// PRACH occasion details
typedef
struct
prach_occasion_info
{
uint8_t
start_symbol
;
// 0 - 13 (14 symbols in a slot)
uint8_t
fdm
;
// 0-7 (possible values of msg1-FDM: 1, 2, 4 or 8)
uint8_t
slot
;
// 0 - 159 (maximum number of slots in a 10ms frame - @ 240kHz)
uint8_t
frame
;
// 0 - 15 (maximum number of frames in a 160ms association pattern)
uint8_t
mapped_ssb_idx
[
MAX_SSB_PER_RO
];
// List of mapped SSBs
uint8_t
nb_mapped_ssb
;
uint16_t
format
;
// RO preamble format
}
prach_occasion_info_t
;
// PRACH occasion slot details
// A PRACH occasion slot is a series of PRACH occasions in time (symbols) and frequency
typedef
struct
prach_occasion_slot
{
prach_occasion_info_t
*
prach_occasion
;
// Starting symbol of each PRACH occasions in a slot
uint8_t
nb_of_prach_occasion_in_time
;
uint8_t
nb_of_prach_occasion_in_freq
;
}
prach_occasion_slot_t
;
//=========
// DCI defs
//=========
...
...
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
8f1661c6
...
...
@@ -1579,6 +1579,7 @@ nr_prach_info_t get_nr_prach_occasion_info_from_index(uint8_t index, frequency_r
if
(
unpaired
)
{
// FR1 TDD
info
.
x
=
table_6_3_3_2_3_prachConfig_Index
[
index
][
2
];
info
.
y
=
table_6_3_3_2_3_prachConfig_Index
[
index
][
3
];
info
.
y2
=
-
1
;
info
.
s_map
=
table_6_3_3_2_3_prachConfig_Index
[
index
][
4
];
info
.
N_RA_sfn
+=
count_bits64
(
info
.
s_map
);
info
.
N_RA_slot
=
table_6_3_3_2_3_prachConfig_Index
[
index
][
6
];
...
...
@@ -1604,6 +1605,7 @@ nr_prach_info_t get_nr_prach_occasion_info_from_index(uint8_t index, frequency_r
// FR1 FDD
info
.
x
=
table_6_3_3_2_2_prachConfig_Index
[
index
][
2
];
info
.
y
=
table_6_3_3_2_2_prachConfig_Index
[
index
][
3
];
info
.
y2
=
-
1
;
info
.
s_map
=
table_6_3_3_2_2_prachConfig_Index
[
index
][
4
];
info
.
N_RA_sfn
+=
count_bits64
(
info
.
s_map
);
info
.
N_RA_slot
=
table_6_3_3_2_2_prachConfig_Index
[
index
][
6
];
...
...
openair2/LAYER2/NR_MAC_UE/mac_defs.h
View file @
8f1661c6
...
...
@@ -169,6 +169,34 @@
UE_STATE(UE_CONNECTED) \
UE_STATE(UE_DETACHING)
// ===============================================
// SSB to RO mapping public defines and structures
// ===============================================
#define MAX_SSB_PER_RO (16) // Maximum number of SSBs that can be mapped to a single RO
#define MAX_TDM (7) // Maximum nb of PRACH occasions TDMed in a slot
#define MAX_FDM (8) // Maximum nb of PRACH occasions FDMed in a slot
// PRACH occasion details
typedef
struct
prach_occasion_info
{
int
start_symbol
;
// 0 - 13 (14 symbols in a slot)
int
fdm
;
// 0-7 (possible values of msg1-FDM: 1, 2, 4 or 8)
int
slot
;
int
frame
;
// 0 - 15 (maximum number of frames in a 160ms association pattern)
uint8_t
mapped_ssb_idx
[
MAX_SSB_PER_RO
];
// List of mapped SSBs
uint8_t
nb_mapped_ssb
;
int
format
;
// RO preamble format
int
frame_info
[
2
];
int
association_period_idx
;
}
prach_occasion_info_t
;
// PRACH occasion slot details
// A PRACH occasion slot is a series of PRACH occasions in time (symbols) and frequency
typedef
struct
prach_occasion_slot
{
prach_occasion_info_t
*
prach_occasion
;
// Starting symbol of each PRACH occasions in a slot
uint8_t
nb_of_prach_occasion_in_time
;
uint8_t
nb_of_prach_occasion_in_freq
;
}
prach_occasion_slot_t
;
typedef
enum
{
phr_cause_prohibit_timer
=
0
,
phr_cause_periodic_timer
,
...
...
@@ -292,6 +320,11 @@ typedef struct {
int
Pc_max
;
}
NR_PRACH_RESOURCES_t
;
typedef
struct
{
float
ssb_per_ro
;
int
preambles_per_ssb
;
}
ssb_ro_preambles_t
;
typedef
struct
{
bool
active
;
uint32_t
preamble_index
;
...
...
@@ -333,7 +366,7 @@ typedef struct {
uint8_t
ssb_nb_in_ro
;
int
zeroCorrelationZoneConfig
;
int
restricted_set_config
;
// selected SSB for RACH
// selected SSB for RACH
(not the SSB-Index but the cumulative index, excluding not trasmitted SSBs)
int
ra_ssb
;
/// Random-access window counter
int16_t
RA_window_cnt
;
...
...
@@ -368,6 +401,11 @@ typedef struct {
NR_pdcch_order_config_t
pdcch_order
;
NR_PRACH_RESOURCES_t
prach_resources
;
ssb_ro_preambles_t
ssb_ro_config
;
int
association_periods
;
prach_occasion_info_t
sched_ro_info
;
int
ro_mask_index
;
}
RA_config_t
;
typedef
struct
{
...
...
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
View file @
8f1661c6
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment