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
3852320a
Commit
3852320a
authored
Feb 19, 2025
by
francescomani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
improvements in ul_port_config function
parent
a04e7af6
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
145 additions
and
253 deletions
+145
-253
openair2/LAYER2/NR_MAC_UE/mac_proto.h
openair2/LAYER2/NR_MAC_UE/mac_proto.h
+5
-12
openair2/LAYER2/NR_MAC_UE/mac_vars.c
openair2/LAYER2/NR_MAC_UE/mac_vars.c
+140
-73
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
+0
-168
No files found.
openair2/LAYER2/NR_MAC_UE/mac_proto.h
View file @
3852320a
...
...
@@ -268,18 +268,11 @@ float nr_get_Pcmax(int p_Max,
float
nr_get_Pcmin
(
int
bandwidth_index
);
void
set_antenna_port_parameters
(
fapi_nr_dl_config_dlsch_pdu_rel15_t
*
dlsch_pdu
,
int
n_cw
,
long
*
max_length
,
long
*
dmrs
,
int
ant
);
int
get_sum_delta_pucch
(
NR_UE_MAC_INST_t
*
mac
,
int
slot
,
frame_t
frame
);
uint8_t
get_table_7_3_1_1_2_12_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_13_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_14_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_15_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_16_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_17_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_18_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_19_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_20_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_21_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_22_value
(
int
ap
,
int
idx
);
uint8_t
get_table_7_3_1_1_2_23_value
(
int
ap
,
int
idx
);
void
ul_ports_config
(
NR_UE_MAC_INST_t
*
mac
,
int
*
n_front_load_symb
,
nfapi_nr_ue_pusch_pdu_t
*
pusch_config_pdu
,
dci_pdu_rel15_t
*
dci
,
nr_dci_format_t
dci_format
);
/* Random Access */
/* \brief This function schedules the PRACH according to prach_ConfigurationIndex and TS 38.211 tables 6.3.3.2.x
...
...
openair2/LAYER2/NR_MAC_UE/mac_vars.c
View file @
3852320a
This diff is collapsed.
Click to expand it.
openair2/LAYER2/NR_MAC_UE/nr_ue_scheduler.c
View file @
3852320a
...
...
@@ -314,174 +314,6 @@ void ul_layers_config(NR_UE_MAC_INST_t *mac, nfapi_nr_ue_pusch_pdu_t *pusch_conf
}
}
// todo: this function shall be reviewed completely because of the many comments left by the author
static
void
ul_ports_config
(
NR_UE_MAC_INST_t
*
mac
,
int
*
n_front_load_symb
,
nfapi_nr_ue_pusch_pdu_t
*
pusch_config_pdu
,
dci_pdu_rel15_t
*
dci
,
nr_dci_format_t
dci_format
)
{
uint8_t
rank
=
pusch_config_pdu
->
nrOfLayers
;
NR_PUSCH_Config_t
*
pusch_Config
=
mac
->
current_UL_BWP
->
pusch_Config
;
AssertFatal
(
pusch_Config
!=
NULL
,
"pusch_Config shouldn't be null
\n
"
);
long
transformPrecoder
=
pusch_config_pdu
->
transform_precoding
;
LOG_D
(
NR_MAC
,
"transformPrecoder %s
\n
"
,
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_disabled
?
"disabled"
:
"enabled"
);
long
*
max_length
=
NULL
;
long
*
dmrs_type
=
NULL
;
if
(
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeA
)
{
max_length
=
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeA
->
choice
.
setup
->
maxLength
;
dmrs_type
=
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeA
->
choice
.
setup
->
dmrs_Type
;
}
else
{
max_length
=
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeB
->
choice
.
setup
->
maxLength
;
dmrs_type
=
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeB
->
choice
.
setup
->
dmrs_Type
;
}
int
val
=
dci
->
antenna_ports
.
val
;
LOG_D
(
NR_MAC
,
"MappingType%s max_length %s, dmrs_type %s, antenna_ports %d
\n
"
,
pusch_Config
->
dmrs_UplinkForPUSCH_MappingTypeA
?
"A"
:
"B"
,
max_length
?
"len2"
:
"len1"
,
dmrs_type
?
"type2"
:
"type1"
,
val
);
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_enabled
)
&&
(
dmrs_type
==
NULL
)
&&
(
max_length
==
NULL
))
{
// tables 7.3.1.1.2-6
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
pusch_config_pdu
->
dmrs_ports
=
1
<<
val
;
}
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_enabled
)
&&
(
dmrs_type
==
NULL
)
&&
(
max_length
!=
NULL
))
{
// tables 7.3.1.1.2-7
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
1
<<
((
val
>
3
)
?
(
val
-
4
)
:
(
val
));
*
n_front_load_symb
=
(
val
>
3
)
?
2
:
1
;
}
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_disabled
)
&&
(
dmrs_type
==
NULL
)
&&
(
max_length
==
NULL
))
{
// tables 7.3.1.1.2-8/9/10/11
if
(
rank
==
1
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
1
)
?
2
:
1
;
pusch_config_pdu
->
dmrs_ports
=
1
<<
((
val
>
1
)
?
(
val
-
2
)
:
(
val
));
}
if
(
rank
==
2
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
0
)
?
2
:
1
;
pusch_config_pdu
->
dmrs_ports
=
(
val
>
1
)
?
((
val
>
2
)
?
0x5
:
0xc
)
:
0x3
;
}
if
(
rank
==
3
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
pusch_config_pdu
->
dmrs_ports
=
0x7
;
// ports 0-2
}
if
(
rank
==
4
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
pusch_config_pdu
->
dmrs_ports
=
0xf
;
// ports 0-3
}
}
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_disabled
)
&&
(
dmrs_type
==
NULL
)
&&
(
max_length
!=
NULL
))
{
// tables 7.3.1.1.2-12/13/14/15
if
(
rank
==
1
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
1
)
?
2
:
1
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
1
<<
((
val
>
1
)
?
(
val
>
5
?
(
val
-
6
)
:
(
val
-
2
))
:
val
);
*
n_front_load_symb
=
(
val
>
6
)
?
2
:
1
;
}
if
(
rank
==
2
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
0
)
?
2
:
1
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_13_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_13_value(val, 2);
//n_front_load_symb = (val > 3) ? 2 : 1; // FIXME
}
if
(
rank
==
3
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_14_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_14_value(val, 2);
//pusch_config_pdu->dmrs_ports[2] = get_table_7_3_1_1_2_14_value(val, 3);
//n_front_load_symb = (val > 1) ? 2 : 1; //FIXME
}
if
(
rank
==
4
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
2
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_15_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_15_value(val, 2);
//pusch_config_pdu->dmrs_ports[2] = get_table_7_3_1_1_2_15_value(val, 3);
//pusch_config_pdu->dmrs_ports[3] = get_table_7_3_1_1_2_15_value(val, 4);
//n_front_load_symb = (val > 1) ? 2 : 1; //FIXME
}
}
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_disabled
)
&&
(
dmrs_type
!=
NULL
)
&&
(
max_length
==
NULL
))
{
// tables 7.3.1.1.2-16/17/18/19
if
(
rank
==
1
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
1
)
?
((
val
>
5
)
?
3
:
2
)
:
1
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
(
val
>
1
)
?
(
val
>
5
?
(
val
-
6
)
:
(
val
-
2
))
:
val
;
//TBC
}
if
(
rank
==
2
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
0
)
?
((
val
>
2
)
?
3
:
2
)
:
1
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_17_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_18_value(val, 2);
}
if
(
rank
==
3
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
(
val
>
0
)
?
3
:
2
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_18_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_18_value(val, 2);
//pusch_config_pdu->dmrs_ports[2] = get_table_7_3_1_1_2_18_value(val, 3);
}
if
(
rank
==
4
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
val
+
2
;
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = 0;
//pusch_config_pdu->dmrs_ports[1] = 1;
//pusch_config_pdu->dmrs_ports[2] = 2;
//pusch_config_pdu->dmrs_ports[3] = 3;
}
}
if
((
transformPrecoder
==
NR_PUSCH_Config__transformPrecoder_disabled
)
&&
(
dmrs_type
!=
NULL
)
&&
(
max_length
!=
NULL
))
{
// tables 7.3.1.1.2-20/21/22/23
if
(
rank
==
1
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
get_table_7_3_1_1_2_20_value
(
val
,
0
);
//TBC
pusch_config_pdu
->
dmrs_ports
=
get_table_7_3_1_1_2_20_value
(
val
,
1
);
//TBC
//n_front_load_symb = get_table_7_3_1_1_2_20_value(val, 2); //FIXME
}
if
(
rank
==
2
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
get_table_7_3_1_1_2_21_value
(
val
,
0
);
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_21_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_21_value(val, 2);
//n_front_load_symb = get_table_7_3_1_1_2_21_value(val, 3); //FIXME
}
if
(
rank
==
3
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
get_table_7_3_1_1_2_22_value
(
val
,
0
);
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_22_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_22_value(val, 2);
//pusch_config_pdu->dmrs_ports[2] = get_table_7_3_1_1_2_22_value(val, 3);
//n_front_load_symb = get_table_7_3_1_1_2_22_value(val, 4); //FIXME
}
if
(
rank
==
4
)
{
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
=
get_table_7_3_1_1_2_23_value
(
val
,
0
);
//TBC
pusch_config_pdu
->
dmrs_ports
=
0
;
//FIXME
//pusch_config_pdu->dmrs_ports[0] = get_table_7_3_1_1_2_23_value(val, 1);
//pusch_config_pdu->dmrs_ports[1] = get_table_7_3_1_1_2_23_value(val, 2);
//pusch_config_pdu->dmrs_ports[2] = get_table_7_3_1_1_2_23_value(val, 3);
//pusch_config_pdu->dmrs_ports[3] = get_table_7_3_1_1_2_23_value(val, 4);
//n_front_load_symb = get_table_7_3_1_1_2_23_value(val, 5); //FIXME
}
}
LOG_D
(
NR_MAC
,
"num_dmrs_cdm_grps_no_data %d, dmrs_ports %d
\n
"
,
pusch_config_pdu
->
num_dmrs_cdm_grps_no_data
,
pusch_config_pdu
->
dmrs_ports
);
}
// Configuration of Msg3 PDU according to clauses:
// - 8.3 of 3GPP TS 38.213 version 16.3.0 Release 16
// - 6.1.2.2 of TS 38.214
...
...
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