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
ffdffeee
Commit
ffdffeee
authored
Jan 16, 2023
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
further improvements in UE BWP configuration
parent
0d9d4f55
Changes
12
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
221 additions
and
530 deletions
+221
-530
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
+5
-0
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
+37
-82
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
+3
-8
openair2/LAYER2/NR_MAC_UE/config_ue.c
openair2/LAYER2/NR_MAC_UE/config_ue.c
+37
-1
openair2/LAYER2/NR_MAC_UE/mac_proto.h
openair2/LAYER2/NR_MAC_UE/mac_proto.h
+0
-8
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
+18
-27
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
+3
-17
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
+57
-243
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+37
-125
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
+18
-12
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_uci.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_uci.c
+5
-6
openair2/LAYER2/NR_MAC_gNB/mac_proto.h
openair2/LAYER2/NR_MAC_gNB/mac_proto.h
+1
-1
No files found.
openair2/LAYER2/NR_MAC_COMMON/nr_mac.h
View file @
ffdffeee
...
...
@@ -577,6 +577,7 @@ typedef struct NR_UE_DL_BWP {
NR_PDSCH_TimeDomainResourceAllocationList_t
*
tdaList
;
NR_PDSCH_Config_t
*
pdsch_Config
;
NR_PDSCH_ServingCellConfig_t
*
pdsch_servingcellconfig
;
long
*
pdsch_HARQ_ACK_Codebook
;
uint8_t
mcsTableIdx
;
nr_dci_format_t
dci_format
;
}
NR_UE_DL_BWP_t
;
...
...
@@ -590,13 +591,17 @@ typedef struct NR_UE_UL_BWP {
uint16_t
BWPStart
;
uint16_t
initial_BWPSize
;
uint16_t
initial_BWPStart
;
NR_RACH_ConfigCommon_t
*
rach_ConfigCommon
;
NR_PUSCH_ServingCellConfig_t
*
pusch_servingcellconfig
;
NR_PUSCH_TimeDomainResourceAllocationList_t
*
tdaList
;
NR_ConfiguredGrantConfig_t
*
configuredGrantConfig
;
NR_PUSCH_Config_t
*
pusch_Config
;
NR_PUCCH_Config_t
*
pucch_Config
;
NR_PUCCH_ConfigCommon_t
*
pucch_ConfigCommon
;
long
*
harq_ACK_SpatialBundlingPUCCH
;
NR_CSI_MeasConfig_t
*
csi_MeasConfig
;
NR_SRS_Config_t
*
srs_Config
;
long
*
msg3_DeltaPreamble
;
uint8_t
transform_precoding
;
uint8_t
mcs_table
;
nr_dci_format_t
dci_format
;
...
...
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.c
View file @
ffdffeee
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_COMMON/nr_mac_common.h
View file @
ffdffeee
...
...
@@ -99,9 +99,7 @@ NR_ul_tda_info_t get_ul_tda_info(NR_PUSCH_TimeDomainResourceAllocationList_t *td
int
scs
,
int
normal_CP
);
uint16_t
nr_dci_size
(
const
NR_BWP_DownlinkCommon_t
*
initialDownlinkBWP
,
const
NR_BWP_UplinkCommon_t
*
initialUplinkBWP
,
const
NR_UE_DL_BWP_t
*
DL_BWP
,
uint16_t
nr_dci_size
(
const
NR_UE_DL_BWP_t
*
DL_BWP
,
const
NR_UE_UL_BWP_t
*
UL_BWP
,
const
NR_CellGroupConfig_t
*
cg
,
dci_pdu_rel15_t
*
dci_pdu
,
...
...
@@ -283,11 +281,8 @@ bool set_ul_ptrs_values(NR_PTRS_UplinkConfig_t *ul_ptrs_config,
@param rnti_type rnti type
@param configuredGrant indicates whether a configured grant was received or not
@returns transformPrecoding value */
uint8_t
get_transformPrecoding
(
const
NR_BWP_UplinkCommon_t
*
initialUplinkBWP
,
const
NR_PUSCH_Config_t
*
pusch_config
,
const
NR_BWP_UplinkDedicated_t
*
ubwp
,
uint8_t
*
dci_format
,
int
rnti_type
,
uint8_t
get_transformPrecoding
(
const
NR_UE_UL_BWP_t
*
current_UL_BWP
,
nr_dci_format_t
dci_format
,
uint8_t
configuredGrant
);
void
nr_mac_gNB_rrc_ul_failure
(
const
module_id_t
Mod_instP
,
...
...
openair2/LAYER2/NR_MAC_UE/config_ue.c
View file @
ffdffeee
...
...
@@ -549,6 +549,8 @@ void configure_current_BWP(NR_UE_MAC_INST_t *mac,
NR_BWP_t
ul_genericParameters
=
{
0
};
NR_BWP_DownlinkCommon_t
*
bwp_dlcommon
=
NULL
;
NR_BWP_UplinkCommon_t
*
bwp_ulcommon
=
NULL
;
DL_BWP
->
n_dl_bwp
=
1
;
UL_BWP
->
n_ul_bwp
=
1
;
if
(
scc
)
{
DL_BWP
->
bwp_id
=
0
;
...
...
@@ -564,14 +566,30 @@ void configure_current_BWP(NR_UE_MAC_INST_t *mac,
DL_BWP
->
pdsch_Config
=
NULL
;
if
(
bwp_dlcommon
->
pdsch_ConfigCommon
)
DL_BWP
->
tdaList
=
bwp_dlcommon
->
pdsch_ConfigCommon
->
choice
.
setup
->
pdsch_TimeDomainAllocationList
;
if
(
bwp_ulcommon
->
pusch_ConfigCommon
)
if
(
bwp_ulcommon
->
pusch_ConfigCommon
)
{
UL_BWP
->
tdaList
=
bwp_ulcommon
->
pusch_ConfigCommon
->
choice
.
setup
->
pusch_TimeDomainAllocationList
;
UL_BWP
->
msg3_DeltaPreamble
=
bwp_ulcommon
->
pusch_ConfigCommon
->
choice
.
setup
->
msg3_DeltaPreamble
;
}
if
(
bwp_ulcommon
->
pucch_ConfigCommon
)
UL_BWP
->
pucch_ConfigCommon
=
bwp_ulcommon
->
pucch_ConfigCommon
->
choice
.
setup
;
if
(
bwp_ulcommon
->
rach_ConfigCommon
)
UL_BWP
->
rach_ConfigCommon
=
bwp_ulcommon
->
rach_ConfigCommon
->
choice
.
setup
;
}
if
(
cell_group_config
)
{
if
(
cell_group_config
->
physicalCellGroupConfig
)
{
DL_BWP
->
pdsch_HARQ_ACK_Codebook
=
&
cell_group_config
->
physicalCellGroupConfig
->
pdsch_HARQ_ACK_Codebook
;
UL_BWP
->
harq_ACK_SpatialBundlingPUCCH
=
cell_group_config
->
physicalCellGroupConfig
->
harq_ACK_SpatialBundlingPUCCH
;
}
if
(
cell_group_config
->
spCellConfig
&&
cell_group_config
->
spCellConfig
->
spCellConfigDedicated
)
{
struct
NR_ServingCellConfig
*
spCellConfigDedicated
=
cell_group_config
->
spCellConfig
->
spCellConfigDedicated
;
UL_BWP
->
csi_MeasConfig
=
spCellConfigDedicated
->
csi_MeasConfig
?
spCellConfigDedicated
->
csi_MeasConfig
->
choice
.
setup
:
NULL
;
UL_BWP
->
pusch_servingcellconfig
=
spCellConfigDedicated
->
uplinkConfig
&&
spCellConfigDedicated
->
uplinkConfig
->
pusch_ServingCellConfig
?
spCellConfigDedicated
->
uplinkConfig
->
pusch_ServingCellConfig
->
choice
.
setup
:
NULL
;
DL_BWP
->
pdsch_servingcellconfig
=
spCellConfigDedicated
->
pdsch_ServingCellConfig
?
spCellConfigDedicated
->
pdsch_ServingCellConfig
->
choice
.
setup
:
NULL
;
if
(
spCellConfigDedicated
->
firstActiveDownlinkBWP_Id
)
DL_BWP
->
bwp_id
=
*
spCellConfigDedicated
->
firstActiveDownlinkBWP_Id
;
if
(
spCellConfigDedicated
->
uplinkConfig
->
firstActiveUplinkBWP_Id
)
...
...
@@ -587,6 +605,8 @@ void configure_current_BWP(NR_UE_MAC_INST_t *mac,
}
NR_BWP_Downlink_t
*
bwp_downlink
=
NULL
;
const
struct
NR_ServingCellConfig__downlinkBWP_ToAddModList
*
bwpList
=
spCellConfigDedicated
->
downlinkBWP_ToAddModList
;
if
(
bwpList
)
DL_BWP
->
n_dl_bwp
=
bwpList
->
list
.
count
;
if
(
bwpList
&&
DL_BWP
->
bwp_id
>
0
)
{
for
(
int
i
=
0
;
i
<
bwpList
->
list
.
count
;
i
++
)
{
bwp_downlink
=
bwpList
->
list
.
array
[
i
];
...
...
@@ -603,9 +623,12 @@ void configure_current_BWP(NR_UE_MAC_INST_t *mac,
}
DL_BWP
->
tdaList
=
bwp_dlcommon
->
pdsch_ConfigCommon
->
choice
.
setup
->
pdsch_TimeDomainAllocationList
;
UL_BWP
->
tdaList
=
bwp_ulcommon
->
pusch_ConfigCommon
->
choice
.
setup
->
pusch_TimeDomainAllocationList
;
UL_BWP
->
msg3_DeltaPreamble
=
bwp_ulcommon
->
pusch_ConfigCommon
->
choice
.
setup
->
msg3_DeltaPreamble
;
NR_BWP_Uplink_t
*
bwp_uplink
=
NULL
;
const
struct
NR_UplinkConfig__uplinkBWP_ToAddModList
*
ubwpList
=
spCellConfigDedicated
->
uplinkConfig
->
uplinkBWP_ToAddModList
;
if
(
ubwpList
)
UL_BWP
->
n_ul_bwp
=
ubwpList
->
list
.
count
;
if
(
ubwpList
&&
UL_BWP
->
bwp_id
>
0
)
{
for
(
int
i
=
0
;
i
<
ubwpList
->
list
.
count
;
i
++
)
{
bwp_uplink
=
ubwpList
->
list
.
array
[
i
];
...
...
@@ -615,10 +638,23 @@ void configure_current_BWP(NR_UE_MAC_INST_t *mac,
AssertFatal
(
bwp_uplink
!=
NULL
,
"Couldn't find ULBWP corresponding to BWP ID %ld
\n
"
,
UL_BWP
->
bwp_id
);
ul_genericParameters
=
bwp_uplink
->
bwp_Common
->
genericParameters
;
UL_BWP
->
pusch_Config
=
bwp_uplink
->
bwp_Dedicated
->
pusch_Config
->
choice
.
setup
;
UL_BWP
->
pucch_Config
=
bwp_uplink
->
bwp_Dedicated
->
pucch_Config
->
choice
.
setup
;
UL_BWP
->
srs_Config
=
bwp_uplink
->
bwp_Dedicated
->
srs_Config
->
choice
.
setup
;
UL_BWP
->
configuredGrantConfig
=
bwp_uplink
->
bwp_Dedicated
->
configuredGrantConfig
?
bwp_uplink
->
bwp_Dedicated
->
configuredGrantConfig
->
choice
.
setup
:
NULL
;
if
(
bwp_uplink
->
bwp_Common
->
pucch_ConfigCommon
)
UL_BWP
->
pucch_ConfigCommon
=
bwp_uplink
->
bwp_Common
->
pucch_ConfigCommon
->
choice
.
setup
;
if
(
bwp_uplink
->
bwp_Common
->
rach_ConfigCommon
)
UL_BWP
->
rach_ConfigCommon
=
bwp_uplink
->
bwp_Common
->
rach_ConfigCommon
->
choice
.
setup
;
}
else
{
UL_BWP
->
pusch_Config
=
spCellConfigDedicated
->
uplinkConfig
->
initialUplinkBWP
->
pusch_Config
->
choice
.
setup
;
UL_BWP
->
pucch_Config
=
spCellConfigDedicated
->
uplinkConfig
->
initialUplinkBWP
->
pucch_Config
->
choice
.
setup
;
UL_BWP
->
srs_Config
=
spCellConfigDedicated
->
uplinkConfig
->
initialUplinkBWP
->
srs_Config
->
choice
.
setup
;
UL_BWP
->
configuredGrantConfig
=
spCellConfigDedicated
->
uplinkConfig
->
initialUplinkBWP
->
configuredGrantConfig
?
spCellConfigDedicated
->
uplinkConfig
->
initialUplinkBWP
->
configuredGrantConfig
->
choice
.
setup
:
NULL
;
ul_genericParameters
=
bwp_ulcommon
->
genericParameters
;
if
(
bwp_ulcommon
->
rach_ConfigCommon
)
UL_BWP
->
rach_ConfigCommon
=
bwp_ulcommon
->
rach_ConfigCommon
->
choice
.
setup
;
}
}
else
...
...
openair2/LAYER2/NR_MAC_UE/mac_proto.h
View file @
ffdffeee
...
...
@@ -251,14 +251,6 @@ void config_dci_pdu(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_dci_dl_pdu_rel15_t
void
ue_dci_configuration
(
NR_UE_MAC_INST_t
*
mac
,
fapi_nr_dl_config_request_t
*
dl_config
,
frame_t
frame
,
int
slot
);
void
get_bwp_info
(
NR_UE_MAC_INST_t
*
mac
,
int
dl_bwp_id
,
int
ul_bwp_id
,
NR_BWP_DownlinkDedicated_t
**
bwpd
,
NR_BWP_DownlinkCommon_t
**
bwpc
,
NR_BWP_UplinkDedicated_t
**
ubwpd
,
NR_BWP_UplinkCommon_t
**
ubwpc
);
NR_BWP_DownlinkCommon_t
*
get_bwp_downlink_common
(
NR_UE_MAC_INST_t
*
mac
,
NR_BWP_Id_t
dl_bwp_id
);
int8_t
nr_ue_process_dci_time_dom_resource_assignment
(
NR_UE_MAC_INST_t
*
mac
,
...
...
openair2/LAYER2/NR_MAC_UE/nr_ra_procedures.c
View file @
ffdffeee
...
...
@@ -138,7 +138,8 @@ void init_RA(module_id_t mod_id,
NR_PRACH_RESOURCES_t
*
prach_resources
,
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
,
NR_RACH_ConfigGeneric_t
*
rach_ConfigGeneric
,
NR_RACH_ConfigDedicated_t
*
rach_ConfigDedicated
)
{
NR_RACH_ConfigDedicated_t
*
rach_ConfigDedicated
)
{
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
mod_id
);
...
...
@@ -280,14 +281,13 @@ void init_RA(module_id_t mod_id,
/* TS 38.321 subclause 7.3 - return DELTA_PREAMBLE values in dB */
int8_t
nr_get_DELTA_PREAMBLE
(
module_id_t
mod_id
,
int
CC_id
,
uint16_t
prach_format
){
int8_t
nr_get_DELTA_PREAMBLE
(
module_id_t
mod_id
,
int
CC_id
,
uint16_t
prach_format
)
{
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
mod_id
);
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
(
mac
->
scc
!=
NULL
)
?
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
:
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
NR_SubcarrierSpacing_t
scs
=
*
nr_rach_ConfigCommon
->
msg1_SubcarrierSpacing
;
int
prach_sequence_length
=
(
mac
->
scc
!=
NULL
)
?
(
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
prach_RootSequenceIndex
.
present
-
1
)
:
(
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
->
prach_RootSequenceIndex
.
present
-
1
)
;
int
prach_sequence_length
=
nr_rach_ConfigCommon
->
prach_RootSequenceIndex
.
present
-
1
;
uint8_t
prachConfigIndex
,
mu
;
AssertFatal
(
CC_id
==
0
,
"Transmission on secondary CCs is not supported yet
\n
"
);
...
...
@@ -385,13 +385,14 @@ int8_t nr_get_DELTA_PREAMBLE(module_id_t mod_id, int CC_id, uint16_t prach_forma
// - RA_PREAMBLE_POWER_RAMPING_STEP dB
// - POWER_OFFSET_2STEP_RA dB
// returns receivedTargerPower in dBm
int
nr_get_Po_NOMINAL_PUSCH
(
NR_PRACH_RESOURCES_t
*
prach_resources
,
module_id_t
mod_id
,
uint8_t
CC_id
){
int
nr_get_Po_NOMINAL_PUSCH
(
NR_PRACH_RESOURCES_t
*
prach_resources
,
module_id_t
mod_id
,
uint8_t
CC_id
)
{
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
mod_id
);
int8_t
receivedTargerPower
;
int8_t
delta_preamble
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
(
mac
->
scc
!=
NULL
)
?
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
:
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
long
preambleReceivedTargetPower
=
nr_rach_ConfigCommon
->
rach_ConfigGeneric
.
preambleReceivedTargetPower
;
delta_preamble
=
nr_get_DELTA_PREAMBLE
(
mod_id
,
CC_id
,
prach_resources
->
prach_format
);
...
...
@@ -402,7 +403,8 @@ int nr_get_Po_NOMINAL_PUSCH(NR_PRACH_RESOURCES_t *prach_resources, module_id_t m
return
receivedTargerPower
;
}
void
ssb_rach_config
(
RA_config_t
*
ra
,
NR_PRACH_RESOURCES_t
*
prach_resources
,
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
){
void
ssb_rach_config
(
RA_config_t
*
ra
,
NR_PRACH_RESOURCES_t
*
prach_resources
,
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
)
{
// Determine the SSB to RACH mapping ratio
// =======================================
...
...
@@ -489,14 +491,11 @@ void ra_preambles_config(NR_PRACH_RESOURCES_t *prach_resources, NR_UE_MAC_INST_t
unsigned
short
int
*
seed
=
(
unsigned
short
int
*
)
&
tmp
;
RA_config_t
*
ra
=
&
mac
->
ra
;
NR_RACH_ConfigCommon_t
*
setup
;
if
(
mac
->
scc
)
setup
=
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
;
else
setup
=
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
NR_RACH_ConfigCommon_t
*
setup
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
NR_RACH_ConfigGeneric_t
*
rach_ConfigGeneric
=
&
setup
->
rach_ConfigGeneric
;
NR_BWP_UplinkCommon_t
*
initialUplinkBWP
=
(
mac
->
scc
)
?
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
:
&
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
;
if
(
initialUplinkBWP
->
pusch_ConfigCommon
->
choice
.
setup
->
msg3_DeltaPreamble
){
deltaPreamble_Msg3
=
(
*
initialUplinkBWP
->
pusch_ConfigCommon
->
choice
.
setup
->
msg3_DeltaPreamble
)
*
2
;
// dB
if
(
mac
->
current_UL_BWP
.
msg3_DeltaPreamble
){
deltaPreamble_Msg3
=
(
*
mac
->
current_UL_BWP
.
msg3_DeltaPreamble
)
*
2
;
// dB
LOG_D
(
MAC
,
"In %s: deltaPreamble_Msg3 set to %ld
\n
"
,
__FUNCTION__
,
deltaPreamble_Msg3
);
}
...
...
@@ -661,9 +660,7 @@ void nr_get_prach_resources(module_id_t mod_id,
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
mod_id
);
RA_config_t
*
ra
=
&
mac
->
ra
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
(
mac
->
scc
)
?
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
:
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
LOG_D
(
MAC
,
"In %s: getting PRACH resources frame (first_Msg3 %d)
\n
"
,
__FUNCTION__
,
ra
->
first_Msg3
);
...
...
@@ -701,12 +698,8 @@ void nr_Msg3_transmitted(module_id_t mod_id, uint8_t CC_id, frame_t frameP, slot
NR_UE_MAC_INST_t
*
mac
=
get_mac_inst
(
mod_id
);
RA_config_t
*
ra
=
&
mac
->
ra
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
(
mac
->
scc
)
?
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
:
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
long
mu
=
(
mac
->
scc
)
?
mac
->
scc
->
downlinkConfigCommon
->
frequencyInfoDL
->
scs_SpecificCarrierList
.
list
.
array
[
0
]
->
subcarrierSpacing
:
mac
->
scc_SIB
->
downlinkConfigCommon
.
frequencyInfoDL
.
scs_SpecificCarrierList
.
list
.
array
[
0
]
->
subcarrierSpacing
;
NR_RACH_ConfigCommon_t
*
nr_rach_ConfigCommon
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
long
mu
=
mac
->
current_UL_BWP
.
scs
;
int
subframes_per_slot
=
nr_slots_per_frame
[
mu
]
/
10
;
// start contention resolution timer (cnt in slots)
...
...
@@ -934,9 +927,7 @@ void nr_get_RA_window(NR_UE_MAC_INST_t *mac){
uint8_t
mu
,
ra_ResponseWindow
;
RA_config_t
*
ra
=
&
mac
->
ra
;
NR_RACH_ConfigCommon_t
*
setup
;
if
(
mac
->
scc
)
setup
=
mac
->
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
;
else
setup
=
mac
->
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
.
rach_ConfigCommon
->
choice
.
setup
;
NR_RACH_ConfigCommon_t
*
setup
=
mac
->
current_UL_BWP
.
rach_ConfigCommon
;
AssertFatal
(
&
setup
->
rach_ConfigGeneric
!=
NULL
,
"In %s: FATAL! rach_ConfigGeneric is NULL...
\n
"
,
__FUNCTION__
);
NR_RACH_ConfigGeneric_t
*
rach_ConfigGeneric
=
&
setup
->
rach_ConfigGeneric
;
long
scs
=
(
mac
->
scc
)
?
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
View file @
ffdffeee
...
...
@@ -93,20 +93,9 @@ void config_dci_pdu(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_dci_dl_pdu_rel15_t
uint16_t
monitoringSymbolsWithinSlot
=
0
;
int
sps
=
0
;
AssertFatal
(
mac
->
scc
==
NULL
||
mac
->
scc_SIB
==
NULL
,
"both scc and scc_SIB cannot be non-null
\n
"
);
NR_UE_DL_BWP_t
*
current_DL_BWP
=
&
mac
->
current_DL_BWP
;
NR_UE_UL_BWP_t
*
current_UL_BWP
=
&
mac
->
current_UL_BWP
;
NR_BWP_Id_t
dl_bwp_id
=
current_DL_BWP
?
current_DL_BWP
->
bwp_id
:
0
;
NR_ServingCellConfigCommon_t
*
scc
=
mac
->
scc
;
NR_ServingCellConfigCommonSIB_t
*
scc_SIB
=
mac
->
scc_SIB
;
NR_BWP_DownlinkCommon_t
*
initialDownlinkBWP
=
NULL
;
NR_BWP_UplinkCommon_t
*
initialUplinkBWP
=
NULL
;
if
(
scc
!=
NULL
||
scc_SIB
!=
NULL
)
{
initialDownlinkBWP
=
scc
!=
NULL
?
scc
->
downlinkConfigCommon
->
initialDownlinkBWP
:
&
scc_SIB
->
downlinkConfigCommon
.
initialDownlinkBWP
;
initialUplinkBWP
=
scc
!=
NULL
?
scc
->
uplinkConfigCommon
->
initialUplinkBWP
:
&
scc_SIB
->
uplinkConfigCommon
->
initialUplinkBWP
;
}
NR_SearchSpace_t
*
ss
;
NR_ControlResourceSet_t
*
coreset
;
...
...
@@ -173,21 +162,18 @@ void config_dci_pdu(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_dci_dl_pdu_rel15_t
// computing alternative size for padding
dci_pdu_rel15_t
temp_pdu
;
if
(
dci_format
==
NR_DL_DCI_FORMAT_1_0
)
alt_size
=
nr_dci_size
(
initialDownlinkBWP
,
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
alt_size
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
mac
->
cg
,
&
temp_pdu
,
NR_UL_DCI_FORMAT_0_0
,
rnti_type
,
coreset
,
dl_bwp_id
,
ss
->
searchSpaceType
->
present
,
mac
->
type0_PDCCH_CSS_config
.
num_rbs
,
0
);
if
(
dci_format
==
NR_UL_DCI_FORMAT_0_0
)
alt_size
=
nr_dci_size
(
initialDownlinkBWP
,
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
alt_size
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
mac
->
cg
,
&
temp_pdu
,
NR_DL_DCI_FORMAT_1_0
,
rnti_type
,
coreset
,
dl_bwp_id
,
ss
->
searchSpaceType
->
present
,
mac
->
type0_PDCCH_CSS_config
.
num_rbs
,
0
);
}
rel15
->
dci_length_options
[
i
]
=
nr_dci_size
(
initialDownlinkBWP
,
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
rel15
->
dci_length_options
[
i
]
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
mac
->
cg
,
&
mac
->
def_dci_pdu_rel15
[
dci_format
],
dci_format
,
NR_RNTI_TC
,
coreset
,
dl_bwp_id
,
ss
->
searchSpaceType
->
present
,
mac
->
type0_PDCCH_CSS_config
.
num_rbs
,
alt_size
);
...
...
openair2/LAYER2/NR_MAC_UE/nr_ue_procedures.c
View file @
ffdffeee
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
ffdffeee
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_primitives.c
View file @
ffdffeee
...
...
@@ -1081,7 +1081,8 @@ void prepare_dci(const NR_CellGroupConfig_t *CellGroup,
const
NR_UE_DL_BWP_t
*
current_BWP
,
const
NR_ControlResourceSet_t
*
coreset
,
dci_pdu_rel15_t
*
dci_pdu_rel15
,
nr_dci_format_t
format
)
{
nr_dci_format_t
format
)
{
AssertFatal
(
CellGroup
!=
NULL
,
"CellGroup shouldn't be null here
\n
"
);
...
...
@@ -1188,16 +1189,12 @@ void fill_dci_pdu_rel15(const NR_ServingCellConfigCommon_t *scc,
// computing alternative size for padding
dci_pdu_rel15_t
temp_pdu
;
if
(
dci_format
==
NR_DL_DCI_FORMAT_1_0
)
alt_size
=
nr_dci_size
(
scc
->
downlinkConfigCommon
->
initialDownlinkBWP
,
scc
->
uplinkConfigCommon
->
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
alt_size
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
CellGroup
,
&
temp_pdu
,
NR_UL_DCI_FORMAT_0_0
,
rnti_type
,
coreset
,
bwp_id
,
ss
->
searchSpaceType
->
present
,
cset0_bwp_size
,
0
);
if
(
dci_format
==
NR_UL_DCI_FORMAT_0_0
)
alt_size
=
nr_dci_size
(
scc
->
downlinkConfigCommon
->
initialDownlinkBWP
,
scc
->
uplinkConfigCommon
->
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
alt_size
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
CellGroup
,
&
temp_pdu
,
NR_DL_DCI_FORMAT_1_0
,
rnti_type
,
coreset
,
bwp_id
,
ss
->
searchSpaceType
->
present
,
cset0_bwp_size
,
0
);
...
...
@@ -1205,9 +1202,7 @@ void fill_dci_pdu_rel15(const NR_ServingCellConfigCommon_t *scc,
else
N_RB
=
cset0_bwp_size
;
int
dci_size
=
nr_dci_size
(
scc
->
downlinkConfigCommon
->
initialDownlinkBWP
,
scc
->
uplinkConfigCommon
->
initialUplinkBWP
,
current_DL_BWP
,
current_UL_BWP
,
int
dci_size
=
nr_dci_size
(
current_DL_BWP
,
current_UL_BWP
,
CellGroup
,
dci_pdu_rel15
,
dci_format
,
rnti_type
,
coreset
,
bwp_id
,
ss
->
searchSpaceType
->
present
,
cset0_bwp_size
,
alt_size
);
pdcch_dci_pdu
->
PayloadSizeBits
=
dci_size
;
...
...
@@ -2092,6 +2087,10 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
int
target_ss
;
if
(
CellGroup
&&
CellGroup
->
physicalCellGroupConfig
)
DL_BWP
->
pdsch_HARQ_ACK_Codebook
=
&
CellGroup
->
physicalCellGroupConfig
->
pdsch_HARQ_ACK_Codebook
;
if
(
CellGroup
&&
CellGroup
->
spCellConfig
&&
CellGroup
->
spCellConfig
->
spCellConfigDedicated
)
{
...
...
@@ -2100,6 +2099,7 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
DL_BWP
->
pdsch_servingcellconfig
=
servingCellConfig
->
pdsch_ServingCellConfig
?
servingCellConfig
->
pdsch_ServingCellConfig
->
choice
.
setup
:
NULL
;
UL_BWP
->
pusch_servingcellconfig
=
servingCellConfig
->
uplinkConfig
&&
servingCellConfig
->
uplinkConfig
->
pusch_ServingCellConfig
?
servingCellConfig
->
uplinkConfig
->
pusch_ServingCellConfig
->
choice
.
setup
:
NULL
;
target_ss
=
NR_SearchSpace__searchSpaceType_PR_ue_Specific
;
if
(
UE
&&
UE
->
Msg3_dcch_dtch
)
{
...
...
@@ -2165,6 +2165,7 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
ubwpd
=
servingCellConfig
->
uplinkConfig
->
initialUplinkBWP
;
DL_BWP
->
pdsch_Config
=
bwpd
->
pdsch_Config
->
choice
.
setup
;
UL_BWP
->
configuredGrantConfig
=
ubwpd
->
configuredGrantConfig
?
ubwpd
->
configuredGrantConfig
->
choice
.
setup
:
NULL
;
UL_BWP
->
pusch_Config
=
ubwpd
->
pusch_Config
->
choice
.
setup
;
UL_BWP
->
pucch_Config
=
ubwpd
->
pucch_Config
->
choice
.
setup
;
UL_BWP
->
srs_Config
=
ubwpd
->
srs_Config
->
choice
.
setup
;
...
...
@@ -2178,6 +2179,7 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
UL_BWP
->
pusch_Config
=
NULL
;
UL_BWP
->
pucch_Config
=
NULL
;
UL_BWP
->
csi_MeasConfig
=
NULL
;
UL_BWP
->
configuredGrantConfig
=
NULL
;
}
if
(
old_dl_bwp_id
!=
DL_BWP
->
bwp_id
)
...
...
@@ -2224,10 +2226,14 @@ void configure_UE_BWP(gNB_MAC_INST *nr_mac,
else
UL_BWP
->
transform_precoding
=
*
UL_BWP
->
pusch_Config
->
transformPrecoder
;
if
(
UL_BWP
->
bwp_id
>
0
)
if
(
UL_BWP
->
bwp_id
>
0
)
{
UL_BWP
->
pucch_ConfigCommon
=
ul_bwp
->
bwp_Common
->
pucch_ConfigCommon
->
choice
.
setup
;
else
UL_BWP
->
rach_ConfigCommon
=
ul_bwp
->
bwp_Common
->
rach_ConfigCommon
->
choice
.
setup
;
}
else
{
UL_BWP
->
pucch_ConfigCommon
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
pucch_ConfigCommon
->
choice
.
setup
;
UL_BWP
->
rach_ConfigCommon
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
;
}
if
(
UE
)
{
...
...
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_uci.c
View file @
ffdffeee
...
...
@@ -1015,14 +1015,13 @@ void handle_nr_uci_pucch_2_3_4(module_id_t mod_id,
}
}
void
set_pucch_allocation
(
const
NR_PUCCH_Config_t
*
pucch_Config
,
const
NR_ServingCellConfigCommon_t
*
scc
,
void
set_pucch_allocation
(
const
NR_UE_UL_BWP_t
*
ul_bwp
,
const
int
r_pucch
,
const
int
bwp_size
,
NR_sched_pucch_t
*
pucch
)
{
if
(
r_pucch
<
0
){
const
NR_PUCCH_Resource_t
*
resource
=
pucch_Config
->
resourceToAddModList
->
list
.
array
[
0
];
const
NR_PUCCH_Resource_t
*
resource
=
ul_bwp
->
pucch_Config
->
resourceToAddModList
->
list
.
array
[
0
];
DevAssert
(
resource
->
format
.
present
==
NR_PUCCH_Resource__format_PR_format0
);
pucch
->
second_hop_prb
=
resource
->
secondHopPRB
!=
NULL
?
*
resource
->
secondHopPRB
:
0
;
pucch
->
nr_of_symb
=
resource
->
format
.
choice
.
format0
->
nrofSymbols
;
...
...
@@ -1030,7 +1029,7 @@ void set_pucch_allocation(const NR_PUCCH_Config_t *pucch_Config,
pucch
->
prb_start
=
resource
->
startingPRB
;
}
else
{
int
rsetindex
=
*
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
pucch_ConfigCommon
->
choice
.
setup
->
pucch_ResourceCommon
;
int
rsetindex
=
*
ul_bwp
->
pucch_ConfigCommon
->
pucch_ResourceCommon
;
set_r_pucch_parms
(
rsetindex
,
r_pucch
,
bwp_size
,
...
...
@@ -1155,7 +1154,7 @@ int nr_acknack_scheduling(gNB_MAC_INST *mac,
}
else
{
// unoccupied occasion
// checking if in ul_slot the resources potentially to be assigned to this PUCCH are available
set_pucch_allocation
(
pucch_Config
,
scc
,
r_pucch
,
bwp_size
,
curr_pucch
);
set_pucch_allocation
(
ul_bwp
,
r_pucch
,
bwp_size
,
curr_pucch
);
uint16_t
*
vrb_map_UL
=
&
mac
->
common_channels
[
CC_id
].
vrb_map_UL
[
pucch_slot
*
MAX_BWP_SIZE
];
bool
ret
=
test_pucch0_vrb_occupation
(
curr_pucch
,
vrb_map_UL
,
...
...
@@ -1249,7 +1248,7 @@ void nr_sr_reporting(gNB_MAC_INST *nrmac, frame_t SFN, sub_frame_t slot)
uint16_t
*
vrb_map_UL
=
&
nrmac
->
common_channels
[
CC_id
].
vrb_map_UL
[
slot
*
MAX_BWP_SIZE
];
const
int
bwp_start
=
ul_bwp
->
BWPStart
;
const
int
bwp_size
=
ul_bwp
->
BWPSize
;
set_pucch_allocation
(
pucch_Config
,
scc
,
-
1
,
bwp_size
,
curr_pucch
);
set_pucch_allocation
(
ul_bwp
,
-
1
,
bwp_size
,
curr_pucch
);
bool
ret
=
test_pucch0_vrb_occupation
(
curr_pucch
,
vrb_map_UL
,
bwp_start
,
...
...
openair2/LAYER2/NR_MAC_gNB/mac_proto.h
View file @
ffdffeee
...
...
@@ -278,7 +278,7 @@ void fill_dci_pdu_rel15(const NR_ServingCellConfigCommon_t *scc,
uint16_t
cset0_bwp_size
);
void
prepare_dci
(
const
NR_CellGroupConfig_t
*
CellGroup
,
const
NR_UE_DL_BWP_t
*
dl_bwp
,
const
NR_UE_DL_BWP_t
*
current_BWP
,
const
NR_ControlResourceSet_t
*
coreset
,
dci_pdu_rel15_t
*
dci_pdu_rel15
,
nr_dci_format_t
format
);
...
...
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