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
lizhongxiao
OpenXG-RAN
Commits
5eee826b
Commit
5eee826b
authored
Nov 20, 2023
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Select slice for UE in RR method
parent
daa1b689
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
121 additions
and
82 deletions
+121
-82
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
+118
-77
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
+1
-0
openair3/NGAP/ngap_gNB_handlers.c
openair3/NGAP/ngap_gNB_handlers.c
+1
-4
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf
...ENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf
+1
-1
No files found.
openair2/LAYER2/NR_MAC_gNB/gNB_scheduler_dlsch.c
View file @
5eee826b
...
...
@@ -330,23 +330,35 @@ static int find_slice_in_ue(module_id_t module_id, const NR_UE_slice_info_t *sli
{
NR_slice_sched_t
*
sliceConfig
=
RC
.
nrmac
[
module_id
]
->
sliceConfig
;
for
(
int
i
=
0
;
i
<
num_slice
;
i
++
)
{
if
(
sliceConfig
[
sliceInfoUE
[
i
].
sliceIdx
].
nssai
.
sd
==
nssai
.
sd
&&
sliceConfig
[
sliceInfoUE
[
i
].
sliceIdx
].
nssai
.
sst
==
nssai
.
s
d
)
if
(
sliceConfig
[
sliceInfoUE
[
i
].
sliceIdx
].
nssai
.
sd
==
nssai
.
sd
&&
sliceConfig
[
sliceInfoUE
[
i
].
sliceIdx
].
nssai
.
sst
==
nssai
.
s
st
)
return
i
;
}
return
-
1
;
}
static
void
slice_config_init_slot
(
module_id_t
module_id
)
{
NR_slice_sched_t
*
sliceConfig
=
RC
.
nrmac
[
module_id
]
->
sliceConfig
;
for
(
int
i
=
0
;
i
<
NR_MAX_NUM_SLICES
;
i
++
)
{
sliceConfig
[
i
].
allocatedPrbs
=
0
;
}
}
/* Temporary function. To be removed */
static
void
set_slice_config_temp
(
module_id_t
module_id
,
int
bwpSize
)
{
NR_slice_sched_t
*
sliceConfig
=
RC
.
nrmac
[
module_id
]
->
sliceConfig
;
for
(
int
i
=
0
;
i
<
2
;
i
++
)
{
sliceConfig
[
i
].
numDedicatedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
i
].
numPrioritizedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
i
].
numSharedPrbs
=
((
float
)
30
/
100
)
*
bwpSize
;
sliceConfig
[
i
].
nssai
.
sd
=
0xffffff
;
sliceConfig
[
i
].
nssai
.
sst
=
1
;
}
sliceConfig
[
0
].
numDedicatedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
0
].
numPrioritizedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
0
].
numSharedPrbs
=
((
float
)
100
/
100
)
*
bwpSize
;
sliceConfig
[
0
].
nssai
.
sd
=
0xffffff
;
sliceConfig
[
0
].
nssai
.
sst
=
1
;
sliceConfig
[
1
].
numDedicatedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
1
].
numPrioritizedPrbs
=
((
float
)
10
/
100
)
*
bwpSize
;
sliceConfig
[
1
].
numSharedPrbs
=
((
float
)
30
/
100
)
*
bwpSize
;
sliceConfig
[
1
].
nssai
.
sd
=
0x000002
;
sliceConfig
[
1
].
nssai
.
sst
=
1
;
for
(
int
i
=
2
;
i
<
NR_MAX_NUM_SLICES
;
i
++
)
{
sliceConfig
[
i
].
nssai
.
sd
=
-
1
;
...
...
@@ -641,6 +653,7 @@ static bool allocate_dl_retransmission(module_id_t module_id,
sched_ctrl
->
sched_pdsch
.
pucch_allocation
=
alloc
;
/* retransmissions: directly allocate */
*
n_rb_sched
-=
sched_ctrl
->
sched_pdsch
.
rbSize
;
nr_mac
->
sliceConfig
[
sched_ctrl
->
sliceInfo
->
sliceIdx
].
allocatedPrbs
+=
sched_ctrl
->
sched_pdsch
.
rbSize
;
for
(
int
rb
=
0
;
rb
<
sched_ctrl
->
sched_pdsch
.
rbSize
;
rb
++
)
rballoc_mask
[
rb
+
sched_ctrl
->
sched_pdsch
.
rbStart
]
^=
SL_to_bitmap
(
retInfo
->
tda_info
.
startSymbolIndex
,
retInfo
->
tda_info
.
nrOfSymbols
);
...
...
@@ -658,6 +671,33 @@ static int comparator(const void *p, const void *q) {
return
((
UEsched_t
*
)
p
)
->
coef
<
((
UEsched_t
*
)
q
)
->
coef
;
}
/* RR scheduling of slices for each UE */
static
int
get_slice_to_sched
(
const
NR_UE_sched_ctrl_t
*
sched_ctrl
)
{
return
((
sched_ctrl
->
curSchedSliceIdx
+
1
)
%
sched_ctrl
->
numSlices
);
}
static
int
get_min_rbSize
(
module_id_t
module_id
,
int
slice_idx
,
int
bwpSize
)
{
int
dedicatedPrbs
=
0
;
NR_slice_sched_t
*
slConfig
=
RC
.
nrmac
[
module_id
]
->
sliceConfig
;
for
(
int
i
=
0
;
i
<
NR_MAX_NUM_SLICES
;
i
++
)
{
if
(
slice_idx
==
i
)
continue
;
dedicatedPrbs
+=
slConfig
[
i
].
numDedicatedPrbs
;
}
int
max_dedicatedPrbs
=
bwpSize
-
dedicatedPrbs
;
AssertFatal
(
max_dedicatedPrbs
>=
slConfig
->
numDedicatedPrbs
,
"Slice policy violation.
\n
"
);
int
min_rbSize
=
slConfig
[
slice_idx
].
numDedicatedPrbs
-
slConfig
[
slice_idx
].
allocatedPrbs
;
if
(
min_rbSize
<=
0
)
{
int
totalPrbs
=
slConfig
[
slice_idx
].
numDedicatedPrbs
+
slConfig
[
slice_idx
].
numPrioritizedPrbs
+
slConfig
[
slice_idx
].
numSharedPrbs
;
min_rbSize
=
(
totalPrbs
>
slConfig
[
slice_idx
].
allocatedPrbs
);
/* 0: don't allocate for this UE. 1: Start from min 1 PRBs */
}
return
min_rbSize
;
}
static
void
pf_dl
(
module_id_t
module_id
,
frame_t
frame
,
sub_frame_t
slot
,
...
...
@@ -772,17 +812,23 @@ static void pf_dl(module_id_t module_id,
qsort
(
UE_sched
,
sizeofArray
(
UE_sched
),
sizeof
(
UEsched_t
),
comparator
);
UEsched_t
*
iterator
=
UE_sched
;
const
int
min_rbSize
=
5
;
/* Loop UE_sched to find max coeff and allocate transmission */
while
(
remainUEs
>
0
&&
n_rb_sched
>=
min_rbSize
&&
iterator
->
UE
!=
NULL
)
{
while
(
remainUEs
>
0
&&
iterator
->
UE
!=
NULL
)
{
NR_UE_sched_ctrl_t
*
sched_ctrl
=
&
iterator
->
UE
->
UE_sched_ctrl
;
const
uint16_t
rnti
=
iterator
->
UE
->
rnti
;
/* Can scheduler only one slice per slot per UE */
const
int
cur_slice_idx
=
get_slice_to_sched
(
sched_ctrl
);
NR_UE_slice_info_t
*
sl
=
&
sched_ctrl
->
sliceInfo
[
cur_slice_idx
];
NR_slice_sched_t
*
slConfig
=
&
mac
->
sliceConfig
[
sl
->
sliceIdx
];
NR_UE_DL_BWP_t
*
dl_bwp
=
&
iterator
->
UE
->
current_DL_BWP
;
NR_UE_UL_BWP_t
*
ul_bwp
=
&
iterator
->
UE
->
current_UL_BWP
;
const
int
min_rbSize
=
get_min_rbSize
(
module_id
,
sl
->
sliceIdx
,
dl_bwp
->
BWPSize
);
if
(
n_rb_sched
<
min_rbSize
)
continue
;
if
(
sched_ctrl
->
available_dl_harq
.
head
<
0
)
{
LOG_D
(
NR_MAC
,
"[UE %04x][%4d.%2d] UE has no free DL HARQ process, skipping
\n
"
,
iterator
->
UE
->
rnti
,
...
...
@@ -843,13 +889,6 @@ static void pf_dl(module_id_t module_id,
const
uint16_t
slbitmap
=
SL_to_bitmap
(
tda_info
->
startSymbolIndex
,
tda_info
->
nrOfSymbols
);
const
int
lastSchedSliceIdx
=
sched_ctrl
->
curSchedSliceIdx
;
for
(
int
i
=
0
;
i
<
sched_ctrl
->
numSlices
;
i
++
)
{
NR_UE_slice_info_t
*
sl
=
&
sched_ctrl
->
sliceInfo
[
i
];
NR_slice_sched_t
*
slConfig
=
&
mac
->
sliceConfig
[
sl
->
sliceIdx
];
/* Schedule the next slice for fairness. Still not optimal for more than 2 slices */
if
(
lastSchedSliceIdx
==
i
&&
sched_ctrl
->
numSlices
>
1
)
continue
;
const
int
max_avail_rb_slice
=
slConfig
->
numDedicatedPrbs
+
slConfig
->
numPrioritizedPrbs
+
slConfig
->
numSharedPrbs
;
int
rem_rbs
=
max_avail_rb_slice
;
int
rbStop
=
0
;
...
...
@@ -893,9 +932,12 @@ static void pf_dl(module_id_t module_id,
rem_rbs
-=
sched_pdsch
->
rbSize
;
/* transmissions: directly allocate */
n_rb_sched
-=
sched_pdsch
->
rbSize
;
slConfig
->
allocatedPrbs
+=
sched_pdsch
->
rbSize
;
LOG_D
(
NR_MAC
,
"Slice idx: %d
\n
Dedicated RBs: %d
\n
Prioritized RBs: %d
\n
Shared RBs: %d
\n
Sum: %d
\n
Allocated: %d
\n
"
,
i
,
"Num Slices: %d
\n
Slice idx: %d.%d
\n
Dedicated RBs: %d
\n
Prioritized RBs: %d
\n
Shared RBs: %d
\n
Sum: %d
\n
Allocated: %d
\n
"
,
sched_ctrl
->
numSlices
,
cur_slice_idx
,
sl
->
sliceIdx
,
slConfig
->
numDedicatedPrbs
,
slConfig
->
numPrioritizedPrbs
,
slConfig
->
numSharedPrbs
,
...
...
@@ -905,10 +947,7 @@ static void pf_dl(module_id_t module_id,
for
(
int
rb
=
0
;
rb
<
sched_pdsch
->
rbSize
;
rb
++
)
rballoc_mask
[
rb
+
sched_pdsch
->
rbStart
]
^=
slbitmap
;
/* Can scheduler only one slice per slot per UE */
sched_ctrl
->
curSchedSliceIdx
=
i
;
break
;
}
sched_ctrl
->
curSchedSliceIdx
=
cur_slice_idx
;
remainUEs
--
;
iterator
++
;
...
...
@@ -959,6 +998,8 @@ static void nr_fr1_dlsch_preprocessor(module_id_t module_id, frame_t frame, sub_
/* temp hardcoding */
set_slice_config_temp
(
module_id
,
bwpSize
);
slice_config_init_slot
(
module_id
);
/* Prepare list of slices for UEs */
nr_set_ue_slices
(
module_id
,
frame
,
slot
);
...
...
openair2/LAYER2/NR_MAC_gNB/nr_mac_gNB.h
View file @
5eee826b
...
...
@@ -547,6 +547,7 @@ typedef struct {
int
numPrioritizedPrbs
;
int
numDedicatedPrbs
;
nssai_t
nssai
;
int
allocatedPrbs
;
}
NR_slice_sched_t
;
typedef
struct
{
...
...
openair3/NGAP/ngap_gNB_handlers.c
View file @
5eee826b
...
...
@@ -964,10 +964,7 @@ static int ngap_gNB_handle_pdusession_setup_request(sctp_assoc_t assoc_id, uint3
// S-NSSAI
OCTET_STRING_TO_INT8
(
&
item_p
->
s_NSSAI
.
sST
,
msg
->
pdusession_setup_params
[
i
].
nssai
.
sst
);
if
(
item_p
->
s_NSSAI
.
sD
!=
NULL
)
{
uint8_t
*
sd_p
=
(
uint8_t
*
)
&
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
;
sd_p
[
0
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
0
];
sd_p
[
1
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
1
];
sd_p
[
2
]
=
item_p
->
s_NSSAI
.
sD
->
buf
[
2
];
BUFFER_TO_INT24
((
uint8_t
*
)
item_p
->
s_NSSAI
.
sD
->
buf
,
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
);
}
else
{
msg
->
pdusession_setup_params
[
i
].
nssai
.
sd
=
0xffffff
;
}
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.usrpb210.conf
View file @
5eee826b
...
...
@@ -11,7 +11,7 @@ gNBs =
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }) });
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
;
sd
=
0
xffffff
; }, {
sst
=
1
;
sd
=
0
x000002
;
}) });
nr_cellid
=
12345678
L
;
...
...
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