Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
Michael Black
OpenXG UE
Commits
072830bf
Commit
072830bf
authored
Nov 26, 2020
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Reformat schedule_nr_prach()
parent
39de3687
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
57 deletions
+68
-57
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
+68
-57
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_RA.c
View file @
072830bf
...
@@ -195,15 +195,17 @@ void find_SSB_and_RO_available(module_id_t module_idP) {
...
@@ -195,15 +195,17 @@ void find_SSB_and_RO_available(module_id_t module_idP) {
}
}
void
schedule_nr_prach
(
module_id_t
module_idP
,
frame_t
frameP
,
sub_frame_t
slotP
)
{
void
schedule_nr_prach
(
module_id_t
module_idP
,
frame_t
frameP
,
sub_frame_t
slotP
)
{
gNB_MAC_INST
*
gNB
=
RC
.
nrmac
[
module_idP
];
gNB_MAC_INST
*
gNB
=
RC
.
nrmac
[
module_idP
];
NR_COMMON_channels_t
*
cc
=
gNB
->
common_channels
;
NR_COMMON_channels_t
*
cc
=
gNB
->
common_channels
;
NR_ServingCellConfigCommon_t
*
scc
=
cc
->
ServingCellConfigCommon
;
NR_ServingCellConfigCommon_t
*
scc
=
cc
->
ServingCellConfigCommon
;
nfapi_nr_ul_tti_request_t
*
UL_tti_req
=
&
RC
.
nrmac
[
module_idP
]
->
UL_tti_req_ahead
[
0
][
slotP
];
nfapi_nr_ul_tti_request_t
*
UL_tti_req
=
&
RC
.
nrmac
[
module_idP
]
->
UL_tti_req_ahead
[
0
][
slotP
];
nfapi_nr_config_request_scf_t
*
cfg
=
&
RC
.
nrmac
[
module_idP
]
->
config
[
0
];
nfapi_nr_config_request_scf_t
*
cfg
=
&
RC
.
nrmac
[
module_idP
]
->
config
[
0
];
if
(
is_nr_UL_slot
(
scc
,
slotP
))
{
if
(
!
is_nr_UL_slot
(
scc
,
slotP
))
return
;
uint8_t
config_index
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
rach_ConfigGeneric
.
prach_ConfigurationIndex
;
uint8_t
config_index
=
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
rach_ConfigGeneric
.
prach_ConfigurationIndex
;
uint8_t
mu
,
N_dur
,
N_t_slot
,
start_symbol
=
0
,
N_RA_slot
;
uint8_t
mu
,
N_dur
,
N_t_slot
,
start_symbol
=
0
,
N_RA_slot
;
uint16_t
RA_sfn_index
=
-
1
;
uint16_t
RA_sfn_index
=
-
1
;
...
@@ -219,7 +221,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -219,7 +221,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
uint8_t
fdm
=
cfg
->
prach_config
.
num_prach_fd_occasions
.
value
;
uint8_t
fdm
=
cfg
->
prach_config
.
num_prach_fd_occasions
.
value
;
// prach is scheduled according to configuration index and tables 6.3.3.2.2 to 6.3.3.2.4
// prach is scheduled according to configuration index and tables 6.3.3.2.2 to 6.3.3.2.4
if
(
get_nr_prach_info_from_index
(
config_index
,
if
(
!
get_nr_prach_info_from_index
(
config_index
,
(
int
)
frameP
,
(
int
)
frameP
,
(
int
)
slotP
,
(
int
)
slotP
,
scc
->
downlinkConfigCommon
->
frequencyInfoDL
->
absoluteFrequencyPointA
,
scc
->
downlinkConfigCommon
->
frequencyInfoDL
->
absoluteFrequencyPointA
,
...
@@ -231,58 +233,68 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -231,58 +233,68 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
&
N_dur
,
&
N_dur
,
&
RA_sfn_index
,
&
RA_sfn_index
,
&
N_RA_slot
,
&
N_RA_slot
,
&
config_period
)
)
{
&
config_period
)
)
return
;
uint16_t
format0
=
format
&
0xff
;
// first column of format from table
uint16_t
format0
=
format
&
0xff
;
// first column of format from table
uint16_t
format1
=
(
format
>>
8
)
&
0xff
;
// second column of format from table
uint16_t
format1
=
(
format
>>
8
)
&
0xff
;
// second column of format from table
if
(
N_RA_slot
>
1
)
{
//more than 1 PRACH slot in a subframe
if
(
N_RA_slot
>
1
)
{
// more than 1 PRACH slot in a subframe
if
(
slotP
%
2
==
1
){
slot_index
=
slotP
%
2
==
1
;
slot_index
=
1
;
}
else
if
(
N_RA_slot
<=
1
)
{
// 1 PRACH slot in a subframe
}
else
{
slot_index
=
0
;
}
}
else
if
(
N_RA_slot
<=
1
)
{
//1 PRACH slot in a subframe
slot_index
=
0
;
slot_index
=
0
;
}
}
AssertFatal
(
UL_tti_req
->
SFN
==
frameP
&&
UL_tti_req
->
Slot
==
slotP
,
AssertFatal
(
UL_tti_req
->
SFN
==
frameP
&&
UL_tti_req
->
Slot
==
slotP
,
"%d.%d UL_tti_req frame.slot %d.%d does not match PRACH %d.%d
\n
"
,
"%d.%d UL_tti_req frame.slot %d.%d does not match PRACH %d.%d
\n
"
,
frameP
,
slotP
,
frameP
,
slotP
,
UL_tti_req
->
SFN
,
UL_tti_req
->
SFN
,
UL_tti_req
->
Slot
,
UL_tti_req
->
Slot
,
frameP
,
slotP
);
frameP
,
slotP
);
for
(
int
fdm_index
=
0
;
fdm_index
<
fdm
;
fdm_index
++
)
{
// one structure per frequency domain occasion
for
(
int
td_index
=
0
;
td_index
<
N_t_slot
;
td_index
++
)
{
prach_occasion_id
=
(((
frameP
%
(
cc
->
max_association_period
*
config_period
))
/
config_period
)
*
cc
->
total_prach_occasions_per_config_period
)
+
(
RA_sfn_index
+
slot_index
)
*
N_t_slot
*
fdm
+
td_index
*
fdm
+
fdm_index
;
for
(
int
fdm_index
=
0
;
fdm_index
<
fdm
;
fdm_index
++
)
{
// one structure per frequency domain occasion
if
((
prach_occasion_id
<
cc
->
total_prach_occasions
)
&&
(
td_index
==
0
)){
for
(
int
td_index
=
0
;
td_index
<
N_t_slot
;
td_index
++
)
{
prach_occasion_id
=
(((
frameP
%
(
cc
->
max_association_period
*
config_period
))
/
config_period
)
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
pdu_type
=
NFAPI_NR_UL_CONFIG_PRACH_PDU_TYPE
;
*
cc
->
total_prach_occasions_per_config_period
)
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
pdu_size
=
sizeof
(
nfapi_nr_prach_pdu_t
);
+
(
RA_sfn_index
+
slot_index
)
*
N_t_slot
*
fdm
+
td_index
*
fdm
+
fdm_index
;
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
prach_pdu
;
if
(
!
((
prach_occasion_id
<
cc
->
total_prach_occasions
)
&&
(
td_index
==
0
)))
memset
(
prach_pdu
,
0
,
sizeof
(
nfapi_nr_prach_pdu_t
));
continue
;
UL_tti_req
->
n_pdus
+=
1
;
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
pdu_type
=
NFAPI_NR_UL_CONFIG_PRACH_PDU_TYPE
;
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
pdu_size
=
sizeof
(
nfapi_nr_prach_pdu_t
);
nfapi_nr_prach_pdu_t
*
prach_pdu
=
&
UL_tti_req
->
pdus_list
[
UL_tti_req
->
n_pdus
].
prach_pdu
;
memset
(
prach_pdu
,
0
,
sizeof
(
nfapi_nr_prach_pdu_t
));
UL_tti_req
->
n_pdus
+=
1
;
// filling the prach fapi structure
// filling the prach fapi structure
prach_pdu
->
phys_cell_id
=
*
scc
->
physCellId
;
prach_pdu
->
phys_cell_id
=
*
scc
->
physCellId
;
prach_pdu
->
num_prach_ocas
=
N_t_slot
;
prach_pdu
->
num_prach_ocas
=
N_t_slot
;
prach_pdu
->
prach_start_symbol
=
start_symbol
;
prach_pdu
->
prach_start_symbol
=
start_symbol
;
prach_pdu
->
num_ra
=
fdm_index
;
prach_pdu
->
num_ra
=
fdm_index
;
prach_pdu
->
num_cs
=
get_NCS
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
rach_ConfigGeneric
.
zeroCorrelationZoneConfig
,
prach_pdu
->
num_cs
=
get_NCS
(
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
rach_ConfigGeneric
.
zeroCorrelationZoneConfig
,
format0
,
format0
,
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
restrictedSetConfig
);
scc
->
uplinkConfigCommon
->
initialUplinkBWP
->
rach_ConfigCommon
->
choice
.
setup
->
restrictedSetConfig
);
LOG_D
(
MAC
,
"Frame %d, Slot %d: Prach Occasion id = %u fdm index = %u start symbol = %u slot index = %u subframe index = %u
\n
"
,
LOG_D
(
MAC
,
frameP
,
slotP
,
"Frame %d, Slot %d: Prach Occasion id = %u fdm index = %u start "
prach_occasion_id
,
prach_pdu
->
num_ra
,
"symbol = %u slot index = %u subframe index = %u
\n
"
,
frameP
,
slotP
,
prach_occasion_id
,
prach_pdu
->
num_ra
,
prach_pdu
->
prach_start_symbol
,
prach_pdu
->
prach_start_symbol
,
slot_index
,
RA_sfn_index
);
slot_index
,
RA_sfn_index
);
// SCF PRACH PDU format field does not consider A1/B1 etc. possibilities
// SCF PRACH PDU format field does not consider A1/B1 etc. possibilities
// We added 9 = A1/B1 10 = A2/B2 11 A3/B3
// We added 9 = A1/B1 10 = A2/B2 11 A3/B3
if
(
format1
!=
0xff
)
{
if
(
format1
!=
0xff
)
{
switch
(
format0
)
{
switch
(
format0
)
{
case
0xa1
:
case
0xa1
:
prach_pdu
->
prach_format
=
11
;
prach_pdu
->
prach_format
=
11
;
break
;
break
;
...
@@ -293,11 +305,12 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -293,11 +305,12 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
prach_pdu
->
prach_format
=
13
;
prach_pdu
->
prach_format
=
13
;
break
;
break
;
default:
default:
AssertFatal
(
1
==
0
,
"Only formats A1/B1 A2/B2 A3/B3 are valid for dual format"
);
AssertFatal
(
}
1
==
0
,
"Only formats A1/B1 A2/B2 A3/B3 are valid for dual format"
);
}
}
else
{
}
else
{
switch
(
format0
)
{
switch
(
format0
)
{
case
0
:
case
0
:
prach_pdu
->
prach_format
=
0
;
prach_pdu
->
prach_format
=
0
;
break
;
break
;
...
@@ -332,7 +345,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -332,7 +345,7 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
prach_pdu
->
prach_format
=
10
;
prach_pdu
->
prach_format
=
10
;
break
;
break
;
default:
default:
AssertFatal
(
1
==
0
,
"Invalid PRACH format"
);
AssertFatal
(
1
==
0
,
"Invalid PRACH format"
);
}
}
}
}
const
int
start_rb
=
cfg
->
prach_config
.
num_prach_fd_occasions_list
[
fdm_index
].
k1
.
value
;
const
int
start_rb
=
cfg
->
prach_config
.
num_prach_fd_occasions_list
[
fdm_index
].
k1
.
value
;
...
@@ -343,7 +356,8 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -343,7 +356,8 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
const
uint16_t
symb_mask
=
((
1
<<
N_dur
)
-
1
)
<<
start_symbol
;
const
uint16_t
symb_mask
=
((
1
<<
N_dur
)
-
1
)
<<
start_symbol
;
for
(
int
i
=
start_rb
;
i
<
start_rb
+
num_rb
;
++
i
)
{
for
(
int
i
=
start_rb
;
i
<
start_rb
+
num_rb
;
++
i
)
{
AssertFatal
((
vrb_map_UL
[
i
]
&
symb_mask
)
==
0
,
AssertFatal
((
vrb_map_UL
[
i
]
&
symb_mask
)
==
0
,
"cannot reserve resources for PRACH: at RB %d, vrb_map_UL %x for symbols %x!
\n
"
,
"cannot reserve resources for PRACH: at RB %d, "
"vrb_map_UL %x for symbols %x!
\n
"
,
i
,
i
,
vrb_map_UL
[
i
],
vrb_map_UL
[
i
],
symb_mask
);
symb_mask
);
...
@@ -351,9 +365,6 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
...
@@ -351,9 +365,6 @@ void schedule_nr_prach(module_id_t module_idP, frame_t frameP, sub_frame_t slotP
}
}
}
}
}
}
}
}
}
}
}
void
nr_schedule_msg2
(
uint16_t
rach_frame
,
uint16_t
rach_slot
,
void
nr_schedule_msg2
(
uint16_t
rach_frame
,
uint16_t
rach_slot
,
...
...
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