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
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
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
spbro
OpenXG-RAN
Commits
64ee6a47
Commit
64ee6a47
authored
Oct 07, 2024
by
ndomingues
Committed by
francescomani
Oct 09, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use common function to get mu at UE for PRACH
parent
88a95153
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
26 additions
and
35 deletions
+26
-35
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+9
-18
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
+1
-1
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+2
-11
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
+14
-5
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
64ee6a47
...
...
@@ -5333,28 +5333,19 @@ int get_FeedbackDisabled(NR_DownlinkHARQ_FeedbackDisabled_r17_t *downlinkHARQ_Fe
return
(
downlinkHARQ_FeedbackDisabled_r17
->
buf
[
byte_index
]
>>
(
7
-
bit_index
))
&
1
;
}
int
nr_get_
mu
(
const
NR_UplinkConfigCommon_t
*
uplink
ConfigCommon
)
int
nr_get_
prach_mu
(
const
NR_MsgA_ConfigCommon_r16_t
*
msgacc
,
const
NR_RACH_ConfigCommon_t
*
rach_
ConfigCommon
)
{
int
mu
;
NR_BWP_UplinkCommon_t
*
initialUplinkBWP
=
uplinkConfigCommon
->
initialUplinkBWP
;
// if 2-Step configuration file exists
if
(
initialUplinkBWP
->
ext1
&&
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
)
{
if
(
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
->
rach_ConfigCommonTwoStepRA_r16
.
msgA_SubcarrierSpacing_r16
)
{
// Choose Subcarrier Spacing of configuration file of 2-Step
const
NR_MsgA_ConfigCommon_r16_t
*
msgacc
=
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
;
mu
=
*
msgacc
->
rach_ConfigCommonTwoStepRA_r16
.
msgA_SubcarrierSpacing_r16
;
}
else
{
// Choose Subcarrier Spacing of configuration file of 4-Step
mu
=
uplinkConfigCommon
->
frequencyInfoUL
->
scs_SpecificCarrierList
.
list
.
array
[
0
]
->
subcarrierSpacing
;
}
}
else
{
if
(
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
msg1_SubcarrierSpacing
)
{
mu
=
*
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
msg1_SubcarrierSpacing
;
}
else
{
mu
=
uplinkConfigCommon
->
frequencyInfoUL
->
scs_SpecificCarrierList
.
list
.
array
[
0
]
->
subcarrierSpacing
;
}
}
if
(
msgacc
&&
msgacc
->
rach_ConfigCommonTwoStepRA_r16
.
msgA_SubcarrierSpacing_r16
)
{
// Choose Subcarrier Spacing of configuration file of 2-Step
mu
=
*
msgacc
->
rach_ConfigCommonTwoStepRA_r16
.
msgA_SubcarrierSpacing_r16
;
}
else
if
(
rach_ConfigCommon
->
msg1_SubcarrierSpacing
)
{
// Choose Subcarrier Spacing of configuration file of 4-Step
mu
=
*
rach_ConfigCommon
->
msg1_SubcarrierSpacing
;
}
else
AssertFatal
(
false
,
"PRACH subcarrier spacing mandatory present for L139, not supported otherwise
\n
"
);
return
mu
;
}
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
View file @
64ee6a47
...
...
@@ -327,6 +327,6 @@ int get_nrofHARQ_ProcessesForPDSCH(const NR_UE_ServingCell_Info_t *sc_info);
int
get_nrofHARQ_ProcessesForPUSCH
(
const
NR_UE_ServingCell_Info_t
*
sc_info
);
int
nr_get_
mu
(
const
NR_UplinkConfigCommon_t
*
uplink
ConfigCommon
);
int
nr_get_
prach_mu
(
const
NR_MsgA_ConfigCommon_r16_t
*
msgacc
,
const
NR_RACH_ConfigCommon_t
*
rach_
ConfigCommon
);
#endif
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
64ee6a47
...
...
@@ -1804,13 +1804,6 @@ static void build_ro_list(NR_UE_MAC_INST_t *mac)
NR_RACH_ConfigGeneric_t
*
rach_ConfigGeneric
=
&
setup
->
rach_ConfigGeneric
;
config_index
=
rach_ConfigGeneric
->
prach_ConfigurationIndex
;
int
mu
;
if
(
setup
->
msg1_SubcarrierSpacing
)
mu
=
*
setup
->
msg1_SubcarrierSpacing
;
else
mu
=
mac
->
current_UL_BWP
->
scs
;
msg1_FDM
=
rach_ConfigGeneric
->
msg1_FDM
;
switch
(
msg1_FDM
){
...
...
@@ -1830,6 +1823,7 @@ 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
);
int
mu
=
nr_get_prach_mu
(
mac
->
current_UL_BWP
->
msgA_ConfigCommon_r16
,
setup
);
// 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
);
...
...
@@ -2935,12 +2929,9 @@ static void nr_ue_prach_scheduler(NR_UE_MAC_INST_t *mac, frame_t frameP, sub_fra
if
(
ra
->
ra_type
==
RA_4_STEP
)
{
nr_Msg1_transmitted
(
mac
);
}
else
if
(
ra
->
ra_type
==
RA_2_STEP
)
{
const
NR_MsgA_ConfigCommon_r16_t
*
msgacc
=
mac
->
current_UL_BWP
->
msgA_ConfigCommon_r16
;
int
mu
=
(
int
)
*
msgacc
->
rach_ConfigCommonTwoStepRA_r16
.
msgA_SubcarrierSpacing_r16
;
NR_MsgA_PUSCH_Resource_r16_t
*
msgA_PUSCH_Resource
=
mac
->
current_UL_BWP
->
msgA_ConfigCommon_r16
->
msgA_PUSCH_Config_r16
->
msgA_PUSCH_ResourceGroupA_r16
;
int
mu
=
nr_get_prach_mu
(
mac
->
current_UL_BWP
->
msgA_ConfigCommon_r16
,
setup
);
const
int
n_slots_frame
=
nr_slots_per_frame
[
mu
];
slot_t
msgA_pusch_slot
=
(
slotP
+
msgA_PUSCH_Resource
->
msgA_PUSCH_TimeDomainOffset_r16
)
%
n_slots_frame
;
frame_t
msgA_pusch_frame
=
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
View file @
64ee6a47
...
...
@@ -96,8 +96,10 @@ static int16_t ssb_index_from_prach(module_id_t module_idP,
uint8_t
config_period
=
1
;
uint16_t
prach_occasion_id
=
-
1
;
uint8_t
num_active_ssb
=
cc
->
num_active_ssb
;
int
mu
=
nr_get_mu
(
scc
->
uplinkConfigCommon
);
NR_MsgA_ConfigCommon_r16_t
*
msgacc
=
NULL
;
if
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
&&
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
)
msgacc
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
;
int
mu
=
nr_get_prach_mu
(
msgacc
,
rach_ConfigCommon
);
get_nr_prach_info_from_index
(
config_index
,
(
int
)
frameP
,
...
...
@@ -201,7 +203,10 @@ void find_SSB_and_RO_available(gNB_MAC_INST *nrmac)
break
;
}
int
mu
=
nr_get_mu
(
scc
->
uplinkConfigCommon
);
NR_MsgA_ConfigCommon_r16_t
*
msgacc
=
NULL
;
if
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
&&
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
)
msgacc
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
;
int
mu
=
nr_get_prach_mu
(
msgacc
,
rach_ConfigCommon
);
// prach is scheduled according to configuration index and tables 6.3.3.2.2 to 6.3.3.2.4
get_nr_prach_occasion_info_from_index
(
config_index
,
...
...
@@ -266,7 +271,8 @@ static void schedule_nr_MsgA_pusch(NR_UplinkConfigCommon_t *uplinkConfigCommon,
NR_MsgA_PUSCH_Resource_r16_t
*
msgA_PUSCH_Resource
=
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
->
msgA_PUSCH_Config_r16
->
msgA_PUSCH_ResourceGroupA_r16
;
int
mu
=
nr_get_mu
(
uplinkConfigCommon
);
int
mu
=
nr_get_prach_mu
(
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
,
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
);
const
int
n_slots_frame
=
nr_slots_per_frame
[
mu
];
slot_t
msgA_pusch_slot
=
(
slotP
+
msgA_PUSCH_Resource
->
msgA_PUSCH_TimeDomainOffset_r16
)
%
n_slots_frame
;
...
...
@@ -367,7 +373,10 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
NR_COMMON_channels_t
*
cc
=
gNB
->
common_channels
;
NR_ServingCellConfigCommon_t
*
scc
=
cc
->
ServingCellConfigCommon
;
NR_RACH_ConfigCommon_t
*
rach_ConfigCommon
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
;
int
mu
=
nr_get_mu
(
scc
->
uplinkConfigCommon
);
NR_MsgA_ConfigCommon_r16_t
*
msgacc
=
NULL
;
if
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
&&
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
)
msgacc
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
ext1
->
msgA_ConfigCommon_r16
->
choice
.
setup
;
int
mu
=
nr_get_prach_mu
(
msgacc
,
rach_ConfigCommon
);
int
index
=
ul_buffer_index
(
frameP
,
slotP
,
mu
,
gNB
->
UL_tti_req_ahead_size
);
nfapi_nr_ul_tti_request_t
*
UL_tti_req
=
&
RC
.
nrmac
[
module_idP
]
->
UL_tti_req_ahead
[
0
][
index
];
nfapi_nr_config_request_scf_t
*
cfg
=
&
RC
.
nrmac
[
module_idP
]
->
config
[
0
];
...
...
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