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
a7e3e8a3
Commit
a7e3e8a3
authored
Oct 24, 2024
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
harmonization of functions to get info from PRACH config tables
parent
95971514
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
230 additions
and
438 deletions
+230
-438
openair1/SIMULATION/NR_PHY/prachsim.c
openair1/SIMULATION/NR_PHY/prachsim.c
+20
-23
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+124
-253
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
+25
-28
openair2/LAYER2/NR_MAC_UE/config_ue.c
openair2/LAYER2/NR_MAC_UE/config_ue.c
+2
-4
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+15
-48
openair2/LAYER2/NR_MAC_gNB/config.c
openair2/LAYER2/NR_MAC_gNB/config.c
+1
-2
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
+42
-80
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
+1
-0
No files found.
openair1/SIMULATION/NR_PHY/prachsim.c
View file @
a7e3e8a3
...
...
@@ -136,13 +136,11 @@ int main(int argc, char **argv){
c16_t
**
txdata
;
int
N_RB_UL
=
106
,
delay
=
0
,
NCS_config
=
13
,
rootSequenceIndex
=
1
,
threequarter_fs
=
0
,
mu
=
1
,
fd_occasion
=
0
,
loglvl
=
OAILOG_INFO
,
numRA
=
0
,
prachStartSymbol
=
0
;
uint8_t
snr1set
=
0
,
ue_speed1set
=
0
,
transmission_mode
=
1
,
n_tx
=
1
,
n_rx
=
1
,
awgn_flag
=
0
,
msg1_frequencystart
=
0
,
num_prach_fd_occasions
=
1
,
prach_format
=
0
;
uint8_t
config_index
=
98
,
prach_sequence_length
=
1
,
restrictedSetConfig
=
0
,
N_dur
,
N_t_slot
,
start_symbol
;
uint16_t
Nid_cell
=
0
,
preamble_tx
=
0
,
preamble_delay
,
format
,
format
0
,
format1
;
uint8_t
config_index
=
98
,
prach_sequence_length
=
1
,
restrictedSetConfig
=
0
;
uint16_t
Nid_cell
=
0
,
preamble_tx
=
0
,
preamble_delay
,
format0
,
format1
;
uint32_t
tx_lev
=
10000
,
prach_errors
=
0
;
//,tx_lev_dB;
uint64_t
SSB_positions
=
0x01
;
uint16_t
RA_sfn_index
;
uint8_t
N_RA_slot
;
uint8_t
config_period
;
int
prachOccasion
=
0
;
double
DS_TDL
=
.
03
;
...
...
@@ -482,25 +480,24 @@ int main(int argc, char **argv){
gNB
->
gNB_config
.
prach_config
.
num_prach_fd_occasions
.
value
=
num_prach_fd_occasions
;
gNB
->
gNB_config
.
prach_config
.
num_prach_fd_occasions_list
=
(
nfapi_nr_num_prach_fd_occasions_t
*
)
malloc
(
num_prach_fd_occasions
*
sizeof
(
nfapi_nr_num_prach_fd_occasions_t
));
gNB
->
proc
.
slot_rx
=
slot
;
int
ret
=
get_nr_prach_info_from_index
(
config_index
,
(
int
)
frame
,
(
int
)
slot
,
absoluteFrequencyPointA
,
mu
,
frame_parms
->
frame_type
,
&
format
,
&
start_symbol
,
&
N_t_slot
,
&
N_dur
,
&
RA_sfn_index
,
&
N_RA_slot
,
&
config_period
);
if
(
ret
==
0
)
{
printf
(
"No prach in %d.%d, mu %d, config_index %d
\n
"
,
frame
,
slot
,
mu
,
config_index
);
exit
(
-
1
);}
format0
=
format
&
0xff
;
// first column of format from table
format1
=
(
format
>>
8
)
&
0xff
;
// second column of format from table
gNB
->
proc
.
slot_rx
=
slot
;
frequency_range_t
freq_range
=
absoluteFrequencyPointA
>
2016666
?
FR2
:
FR1
;
nr_prach_info_t
prach_info
=
get_nr_prach_occasion_info_from_index
(
config_index
,
freq_range
,
frame_parms
->
frame_type
);
int
ret
=
get_nr_prach_sched_from_info
(
prach_info
,
config_index
,
frame
,
slot
,
mu
,
freq_range
,
&
RA_sfn_index
,
frame_parms
->
frame_type
);
if
(
ret
==
0
)
{
printf
(
"No prach in %d.%d, mu %d, config_index %d
\n
"
,
frame
,
slot
,
mu
,
config_index
);
exit
(
-
1
);
}
format0
=
prach_info
.
format
&
0xff
;
// first column of format from table
format1
=
(
prach_info
.
format
>>
8
)
&
0xff
;
// second column of format from table
if
(
format1
!=
0xff
)
{
switch
(
format0
)
{
...
...
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
a7e3e8a3
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
View file @
a7e3e8a3
...
...
@@ -52,6 +52,20 @@ typedef enum {
pusch_len2
=
2
}
pusch_maxLength_t
;
typedef
struct
{
uint32_t
format
;
uint32_t
start_symbol
;
uint32_t
N_t_slot
;
uint32_t
N_dur
;
uint32_t
N_RA_slot
;
uint32_t
N_RA_sfn
;
uint32_t
max_association_period
;
int
x
;
int
y
;
int
y2
;
uint64_t
s_map
;
}
nr_prach_info_t
;
uint32_t
get_Y
(
const
NR_SearchSpace_t
*
ss
,
int
slot
,
rnti_t
rnti
);
uint8_t
get_BG
(
uint32_t
A
,
uint16_t
R
);
...
...
@@ -144,31 +158,16 @@ void find_aggregation_candidates(uint8_t *aggregation_level,
uint16_t
get_nr_prach_format_from_index
(
uint8_t
index
,
uint32_t
pointa
,
uint8_t
unpaired
);
int
get_nr_prach_info_from_index
(
uint8_t
index
,
int
frame
,
int
slot
,
uint32_t
pointa
,
uint8_t
mu
,
uint8_t
unpaired
,
uint16_t
*
format
,
uint8_t
*
start_symbol
,
uint8_t
*
N_t_slot
,
uint8_t
*
N_dur
,
uint16_t
*
RA_sfn_index
,
uint8_t
*
N_RA_slot
,
uint8_t
*
config_period
);
int
get_nr_prach_occasion_info_from_index
(
uint8_t
index
,
uint32_t
pointa
,
uint8_t
mu
,
uint8_t
unpaired
,
uint16_t
*
format
,
uint8_t
*
start_symbol
,
uint8_t
*
N_t_slot
,
uint8_t
*
N_dur
,
uint8_t
*
N_RA_slot
,
uint16_t
*
N_RA_sfn
,
uint8_t
*
max_association_period
);
bool
get_nr_prach_sched_from_info
(
nr_prach_info_t
info
,
int
config_index
,
int
frame
,
int
slot
,
int
mu
,
frequency_range_t
freq_range
,
uint16_t
*
RA_sfn_index
,
uint8_t
unpaired
);
nr_prach_info_t
get_nr_prach_occasion_info_from_index
(
uint8_t
index
,
frequency_range_t
freq_range
,
uint8_t
unpaired
);
uint8_t
get_pusch_mcs_table
(
long
*
mcs_Table
,
int
is_tp
,
...
...
@@ -186,9 +185,7 @@ int ul_ant_bits(NR_DMRS_UplinkConfig_t *NR_DMRS_UplinkConfig, long transformPrec
uint8_t
get_pdsch_mcs_table
(
long
*
mcs_Table
,
int
dci_format
,
int
rnti_type
,
int
ss_type
);
int
get_format0
(
uint8_t
index
,
uint8_t
unpaired
,
frequency_range_t
);
const
int64_t
*
get_prach_config_info
(
frequency_range_t
freq_range
,
uint8_t
index
,
uint8_t
unpaired
);
int
get_format0
(
uint8_t
index
,
uint8_t
unpaired
,
frequency_range_t
frequency_range
);
uint16_t
get_NCS
(
uint8_t
index
,
uint16_t
format
,
uint8_t
restricted_set_config
);
int
compute_pucch_crc_size
(
int
O_uci
);
...
...
openair2/LAYER2/NR_MAC_UE/config_ue.c
View file @
a7e3e8a3
...
...
@@ -187,8 +187,7 @@ static void config_common_ue_sa(NR_UE_MAC_INST_t *mac, NR_ServingCellConfigCommo
else
{
// If absent, the UE applies the SCS as derived from the prach-ConfigurationIndex (for 839)
int
config_index
=
rach_ConfigCommon
->
rach_ConfigGeneric
.
prach_ConfigurationIndex
;
const
int64_t
*
prach_config_info_p
=
get_prach_config_info
(
mac
->
frequency_range
,
config_index
,
frame_type
);
int
format
=
prach_config_info_p
[
0
];
int
format
=
get_format0
(
config_index
,
frame_type
,
mac
->
frequency_range
);
cfg
->
prach_config
.
prach_sub_c_spacing
=
get_delta_f_RA_long
(
format
);
}
...
...
@@ -411,8 +410,7 @@ static void config_common_ue(NR_UE_MAC_INST_t *mac, NR_ServingCellConfigCommon_t
else
{
// If absent, the UE applies the SCS as derived from the prach-ConfigurationIndex (for 839)
int
config_index
=
rach_ConfigCommon
->
rach_ConfigGeneric
.
prach_ConfigurationIndex
;
const
int64_t
*
prach_config_info_p
=
get_prach_config_info
(
mac
->
frequency_range
,
config_index
,
frame_type
);
int
format
=
prach_config_info_p
[
0
];
int
format
=
get_format0
(
config_index
,
frame_type
,
mac
->
frequency_range
);
cfg
->
prach_config
.
prach_sub_c_spacing
=
format
==
3
?
5
:
4
;
}
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
a7e3e8a3
...
...
@@ -1564,17 +1564,10 @@ int nr_ue_pusch_scheduler(const NR_UE_MAC_INST_t *mac,
// Build the list of all the valid RACH occasions in the maximum association pattern period according to the PRACH config
static
void
build_ro_list
(
NR_UE_MAC_INST_t
*
mac
)
{
int
x
,
y
;
// PRACH Configuration Index table variables used to compute the valid frame numbers
int
y2
;
// PRACH Configuration Index table additional variable used to compute the valid frame numbers
uint8_t
slot_shift_for_map
;
uint8_t
map_shift
;
bool
even_slot_invalid
;
int64_t
s_map
;
uint8_t
prach_conf_start_symbol
;
// Starting symbol of the PRACH occasions in the PRACH slot
uint8_t
N_t_slot
;
// Number of PRACH occasions in a 14-symbols PRACH slot
uint8_t
N_dur
;
// Duration of a PRACH occasion (nb of symbols)
uint16_t
format
=
0xffff
;
uint8_t
format2
=
0xff
;
int
nb_fdm
;
uint8_t
config_index
;
...
...
@@ -1604,61 +1597,35 @@ static void build_ro_list(NR_UE_MAC_INST_t *mac)
int
unpaired
=
mac
->
phy_config
.
config_req
.
cell_config
.
frame_duplex_type
;
const
int64_t
*
prach_config_info_p
=
get_prach_config_info
(
mac
->
frequency_range
,
config_index
,
unpaired
);
const
int
ul_mu
=
mac
->
current_UL_BWP
->
scs
;
const
int
mu
=
nr_get_prach_or_ul_mu
(
mac
->
current_UL_BWP
->
msgA_ConfigCommon_r16
,
setup
,
ul_mu
);
nr_prach_info_t
prach_config
=
get_nr_prach_occasion_info_from_index
(
config_index
,
mac
->
frequency_range
,
unpaired
);
// Identify the proper PRACH Configuration Index table according to the operating frequency
LOG_D
(
NR_MAC
,
"mu = %u, PRACH config index = %u, unpaired = %u
\n
"
,
mu
,
config_index
,
unpaired
);
if
(
mac
->
frequency_range
==
FR2
)
{
//FR2
x
=
prach_config_info_p
[
2
];
y
=
prach_config_info_p
[
3
];
y2
=
prach_config_info_p
[
4
];
s_map
=
prach_config_info_p
[
5
];
prach_conf_start_symbol
=
prach_config_info_p
[
6
];
N_t_slot
=
prach_config_info_p
[
8
];
N_dur
=
prach_config_info_p
[
9
];
if
(
prach_config_info_p
[
1
]
!=
-
1
)
format2
=
(
uint8_t
)
prach_config_info_p
[
1
];
format
=
((
uint8_t
)
prach_config_info_p
[
0
])
|
(
format2
<<
8
);
y2
=
prach_config
.
y2
;
slot_shift_for_map
=
mu
-
2
;
if
(
(
mu
==
3
)
&&
(
prach_config_info_p
[
7
]
==
1
)
)
if
(
(
mu
==
3
)
&&
(
prach_config
.
N_RA_slot
==
1
)
)
even_slot_invalid
=
true
;
else
even_slot_invalid
=
false
;
}
else
{
// FR1
x
=
prach_config_info_p
[
2
];
y
=
prach_config_info_p
[
3
];
y2
=
y
;
s_map
=
prach_config_info_p
[
4
];
prach_conf_start_symbol
=
prach_config_info_p
[
5
];
N_t_slot
=
prach_config_info_p
[
7
];
N_dur
=
prach_config_info_p
[
8
];
LOG_D
(
NR_MAC
,
"N_t_slot %d, N_dur %d
\n
"
,
N_t_slot
,
N_dur
);
if
(
prach_config_info_p
[
1
]
!=
-
1
)
format2
=
(
uint8_t
)
prach_config_info_p
[
1
];
format
=
((
uint8_t
)
prach_config_info_p
[
0
])
|
(
format2
<<
8
);
y2
=
prach_config
.
y
;
slot_shift_for_map
=
mu
;
if
(
(
mu
==
1
)
&&
(
prach_config_info_p
[
6
]
==
1
)
&&
((
format
&
0xff
)
>
3
)
)
if
(
(
mu
==
1
)
&&
(
prach_config
.
N_RA_slot
==
1
)
&&
((
prach_config
.
format
&
0xff
)
>
3
)
)
// no prach in even slots @ 30kHz for 1 prach per subframe
even_slot_invalid
=
true
;
else
even_slot_invalid
=
false
;
}
// FR
2 / FR
1
}
// FR1
const
int
bwp_id
=
mac
->
current_UL_BWP
->
bwp_id
;
prach_association_pattern_t
*
prach_assoc_pattern
=
&
mac
->
prach_assoc_pattern
[
bwp_id
];
prach_assoc_pattern
->
nb_of_prach_conf_period_in_max_period
=
MAX_NB_PRACH_CONF_PERIOD_IN_ASSOCIATION_PATTERN_PERIOD
/
x
;
nb_of_frames_per_prach_conf_period
=
x
;
prach_assoc_pattern
->
nb_of_prach_conf_period_in_max_period
=
MAX_NB_PRACH_CONF_PERIOD_IN_ASSOCIATION_PATTERN_PERIOD
/
prach_config
.
x
;
nb_of_frames_per_prach_conf_period
=
prach_config
.
x
;
int
slots_per_frame
=
mac
->
frame_structure
.
numb_slots_frame
;
LOG_D
(
NR_MAC
,
"nb_of_prach_conf_period_in_max_period %d
\n
"
,
prach_assoc_pattern
->
nb_of_prach_conf_period_in_max_period
);
...
...
@@ -1682,14 +1649,14 @@ static void build_ro_list(NR_UE_MAC_INST_t *mac)
LOG_D
(
NR_MAC
,
"PRACH Conf Period Frame Idx %d - Frame %d
\n
"
,
frame_idx
,
frame_rach
);
// Is it a valid frame for this PRACH configuration index? (n_sfn mod x = y)
if
((
frame_rach
%
x
)
==
y
||
(
frame_rach
%
x
)
==
y2
)
{
if
((
frame_rach
%
prach_config
.
x
)
==
prach_config
.
y
||
(
frame_rach
%
prach_config
.
x
)
==
y2
)
{
// For every slot in a frame
// -------------------------
for
(
int
slot
=
0
;
slot
<
slots_per_frame
;
slot
++
)
{
// Is it a valid slot?
map_shift
=
slot
>>
slot_shift_for_map
;
// in PRACH configuration index table slots are numbered wrt 60kHz
if
((
s_map
>>
map_shift
)
&
0x01
)
{
if
((
prach_config
.
s_map
>>
map_shift
)
&
0x01
)
{
// Valid slot
// Additionally, for 30kHz/120kHz, we must check for the n_RA_Slot param also
...
...
@@ -1700,12 +1667,12 @@ static void build_ro_list(NR_UE_MAC_INST_t *mac)
// Compute all the PRACH occasions in the slot
prach_occasion_slot_t
*
slot_map
=
&
prach_conf_period_list
->
prach_occasion_slot_map
[
frame_idx
][
slot
];
slot_map
->
nb_of_prach_occasion_in_time
=
N_t_slot
;
slot_map
->
nb_of_prach_occasion_in_time
=
prach_config
.
N_t_slot
;
slot_map
->
nb_of_prach_occasion_in_freq
=
nb_fdm
;
slot_map
->
prach_occasion
=
malloc
(
N_t_slot
*
nb_fdm
*
sizeof
(
*
slot_map
->
prach_occasion
));
slot_map
->
prach_occasion
=
malloc
(
prach_config
.
N_t_slot
*
nb_fdm
*
sizeof
(
*
slot_map
->
prach_occasion
));
AssertFatal
(
slot_map
->
prach_occasion
,
"no memory available
\n
"
);
for
(
int
n_prach_occ_in_time
=
0
;
n_prach_occ_in_time
<
N_t_slot
;
n_prach_occ_in_time
++
)
{
uint8_t
start_symbol
=
prach_conf
_start_symbol
+
n_prach_occ_in_time
*
N_dur
;
for
(
int
n_prach_occ_in_time
=
0
;
n_prach_occ_in_time
<
prach_config
.
N_t_slot
;
n_prach_occ_in_time
++
)
{
uint8_t
start_symbol
=
prach_conf
ig
.
start_symbol
+
n_prach_occ_in_time
*
prach_config
.
N_dur
;
LOG_D
(
NR_MAC
,
"PRACH Occ in time %d
\n
"
,
n_prach_occ_in_time
);
for
(
int
n_prach_occ_in_freq
=
0
;
n_prach_occ_in_freq
<
nb_fdm
;
n_prach_occ_in_freq
++
)
{
...
...
@@ -1714,7 +1681,7 @@ static void build_ro_list(NR_UE_MAC_INST_t *mac)
.
fdm
=
n_prach_occ_in_freq
,
.
frame
=
frame_idx
,
.
slot
=
slot
,
.
format
=
format
};
.
format
=
prach_config
.
format
};
prach_assoc_pattern
->
prach_conf_period_list
[
period_idx
].
nb_of_prach_occasion
++
;
LOG_D
(
NR_MAC
,
...
...
openair2/LAYER2/NR_MAC_gNB/config.c
View file @
a7e3e8a3
...
...
@@ -521,8 +521,7 @@ static void config_common(gNB_MAC_INST *nrmac,
// If absent, use SCS as derived from the prach-ConfigurationIndex (for 839)
int
config_index
=
rach_ConfigCommon
->
rach_ConfigGeneric
.
prach_ConfigurationIndex
;
int
frame_type
=
get_frame_type
(
band
,
frequencyInfoUL
->
scs_SpecificCarrierList
.
list
.
array
[
0
]
->
subcarrierSpacing
);
const
int64_t
*
prach_config_info_p
=
get_prach_config_info
(
frequency_range
,
config_index
,
frame_type
);
int
format
=
prach_config_info_p
[
0
];
int
format
=
get_nr_prach_format_from_index
(
config_index
,
UL_pointA
,
frame_type
)
&
0xff
;
cfg
->
prach_config
.
prach_sub_c_spacing
.
value
=
get_delta_f_RA_long
(
format
);
}
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
View file @
a7e3e8a3
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
View file @
a7e3e8a3
...
...
@@ -302,6 +302,7 @@ typedef struct {
int
cb_preambles_per_ssb
;
/// Max prach length in slots
int
prach_len
;
nr_prach_info_t
prach_info
;
}
NR_COMMON_channels_t
;
// SP ZP CSI-RS Resource Set Activation/Deactivation MAC CE
...
...
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