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
ZhouShuya
OpenXG-RAN
Commits
a2ef8b7b
Commit
a2ef8b7b
authored
Jan 11, 2019
by
Louis Adrien Dufrene
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some formatting + RAPROC fix (to test)
parent
6614916b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
1 deletion
+27
-1
openair2/LAYER2/MAC/eNB_scheduler_RA.c
openair2/LAYER2/MAC/eNB_scheduler_RA.c
+1
-1
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
+25
-0
openair2/LAYER2/MAC/mac.h
openair2/LAYER2/MAC/mac.h
+1
-0
No files found.
openair2/LAYER2/MAC/eNB_scheduler_RA.c
View file @
a2ef8b7b
...
@@ -112,7 +112,7 @@ add_msg3(module_id_t module_idP, int CC_id, RA_t * ra, frame_t frameP,
...
@@ -112,7 +112,7 @@ add_msg3(module_id_t module_idP, int CC_id, RA_t * ra, frame_t frameP,
nfapi_hi_dci0_request_body_t
*
hi_dci0_req_body
;
nfapi_hi_dci0_request_body_t
*
hi_dci0_req_body
;
nfapi_hi_dci0_request_pdu_t
*
hi_dci0_pdu
;
nfapi_hi_dci0_request_pdu_t
*
hi_dci0_pdu
;
uint8_t
sf_ahead_dl
;
uint8_t
sf_ahead_dl
;
uint8_t
rvseq
[
4
]
=
{
0
,
2
,
3
,
1
};
uint8_t
rvseq
[
4
]
=
{
0
,
2
,
3
,
1
};
ul_req
=
&
mac
->
UL_req_tmp
[
CC_id
][
ra
->
Msg3_subframe
];
ul_req
=
&
mac
->
UL_req_tmp
[
CC_id
][
ra
->
Msg3_subframe
];
...
...
openair2/LAYER2/MAC/eNB_scheduler_ulsch.c
View file @
a2ef8b7b
...
@@ -1142,11 +1142,18 @@ schedule_ulsch(module_id_t module_idP,
...
@@ -1142,11 +1142,18 @@ schedule_ulsch(module_id_t module_idP,
/* Second setup step */
/* Second setup step */
int
sched_subframe
=
0
;
int
sched_subframe
=
0
;
int
sched_frame
=
0
;
int
n_rb_ul_tab
=
0
;
/* Second init step */
/* Second init step */
sched_subframe
=
(
subframeP
+
4
)
%
10
;
sched_subframe
=
(
subframeP
+
4
)
%
10
;
sched_frame
=
frameP
;
cc
=
mac
->
common_channels
;
cc
=
mac
->
common_channels
;
if
(
sched_subframe
<
subframeP
)
{
sched_frame
++
;
}
/* For TDD: check subframes where we have to act and return if nothing should be done now */
/* For TDD: check subframes where we have to act and return if nothing should be done now */
if
(
cc
->
tdd_Config
)
{
// Done only for CC_id = 0, assume tdd_Config for all CC_id
if
(
cc
->
tdd_Config
)
{
// Done only for CC_id = 0, assume tdd_Config for all CC_id
int
tdd_sfa
=
cc
->
tdd_Config
->
subframeAssignment
;
int
tdd_sfa
=
cc
->
tdd_Config
->
subframeAssignment
;
...
@@ -1261,6 +1268,24 @@ schedule_ulsch(module_id_t module_idP,
...
@@ -1261,6 +1268,24 @@ schedule_ulsch(module_id_t module_idP,
// break;
// break;
}
}
}
}
/* Louis-Adrien: Only set for FDD (for the moment)
* Hard coded for prach-ConfigIndex = 0 and prach-Freqoffset = 2
* ToDo: The PRACH resources should be added with modularity (here?)
*/
if
(
cc
[
CC_id
].
tdd_Config
==
NULL
)
{
// FDD
if
(((
sched_frame
%
2
)
==
0
)
&&
sched_subframe
==
1
)
{
// RACH frame and subframe
if
(
first_rb
[
CC_id
]
<
8
)
{
n_rb_ul_tab
=
to_prb
(
cc
[
CC_id
].
ul_Bandwidth
);
// return total number of PRB
if
(
n_rb_ul_tab
>=
8
)
{
first_rb
[
CC_id
]
=
8
;
}
else
{
return
;
}
}
}
}
}
}
/* Run each enabled slice-specific schedulers one by one */
/* Run each enabled slice-specific schedulers one by one */
...
...
openair2/LAYER2/MAC/mac.h
View file @
a2ef8b7b
...
@@ -997,6 +997,7 @@ typedef struct {
...
@@ -997,6 +997,7 @@ typedef struct {
uint8_t
crnti_reconfigurationcomplete_flag
;
uint8_t
crnti_reconfigurationcomplete_flag
;
uint8_t
cqi_req_flag
;
uint8_t
cqi_req_flag
;
}
UE_sched_ctrl
;
}
UE_sched_ctrl
;
/*! \brief eNB template for the Random access information */
/*! \brief eNB template for the Random access information */
typedef
struct
{
typedef
struct
{
/// Flag to indicate this process is active
/// Flag to indicate this process is active
...
...
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