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
OpenXG
OpenXG UE
Commits
50691e1a
Commit
50691e1a
authored
Nov 22, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding assertFatals and code cleanup for MR
parent
027cb33b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
16 deletions
+16
-16
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+16
-16
No files found.
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
50691e1a
...
@@ -499,7 +499,8 @@ static void copy_ul_dci_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
...
@@ -499,7 +499,8 @@ static void copy_ul_dci_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
static
nfapi_nr_uci_indication_t
*
multiplex_uci_ind
(
NR_UE_MAC_INST_t
*
mac
,
int
num_active_harqs
)
static
nfapi_nr_uci_indication_t
*
multiplex_uci_ind
(
NR_UE_MAC_INST_t
*
mac
,
int
num_active_harqs
)
{
{
if
(
num_active_harqs
<=
0
)
AssertFatal
(
num_active_harqs
>=
0
,
"Invalid value for num_active_harqs %d
\n
"
,
num_active_harqs
);
if
(
num_active_harqs
==
0
)
{
{
return
NULL
;
return
NULL
;
}
}
...
@@ -515,22 +516,20 @@ static nfapi_nr_uci_indication_t *multiplex_uci_ind(NR_UE_MAC_INST_t *mac, int n
...
@@ -515,22 +516,20 @@ static nfapi_nr_uci_indication_t *multiplex_uci_ind(NR_UE_MAC_INST_t *mac, int n
uci_ind
->
sfn
=
NFAPI_SFNSLOT2SFN
(
mac
->
nr_ue_emul_l1
.
active_harq_sfn_slot
);
uci_ind
->
sfn
=
NFAPI_SFNSLOT2SFN
(
mac
->
nr_ue_emul_l1
.
active_harq_sfn_slot
);
uci_ind
->
slot
=
NFAPI_SFNSLOT2SLOT
(
mac
->
nr_ue_emul_l1
.
active_harq_sfn_slot
);
uci_ind
->
slot
=
NFAPI_SFNSLOT2SLOT
(
mac
->
nr_ue_emul_l1
.
active_harq_sfn_slot
);
uci_ind
->
num_ucis
=
num_active_harqs
;
uci_ind
->
num_ucis
=
num_active_harqs
;
uci_ind
->
uci_list
=
MALLOC
(
uci_ind
->
num_ucis
*
sizeof
(
*
uci_ind
->
uci_list
));
uci_ind
->
uci_list
=
CALLOC
(
uci_ind
->
num_ucis
,
sizeof
(
*
uci_ind
->
uci_list
));
for
(
int
i
=
0
;
i
<
num_active_harqs
;
i
++
)
for
(
int
i
=
0
;
i
<
num_active_harqs
;
i
++
)
{
{
nfapi_nr_uci_indication_t
*
queued_uci_ind
=
get_queue
(
&
nr_uci_ind_queue
);
nfapi_nr_uci_indication_t
*
queued_uci_ind
=
get_queue
(
&
nr_uci_ind_queue
);
AssertFatal
(
queued_uci_ind
,
"There was not a UCI in the queue!
\n
"
);
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
i
].
pucch_pdu_format_0_1
;
/* In openair1/SCHED_NR_UE/fapi_nr_ue_l1.c nr_ue_schedule_response_stub(), the
/* In openair1/SCHED_NR_UE/fapi_nr_ue_l1.c nr_ue_schedule_response_stub(), the
number of UCIs is hard coded to 1. This is why we always use index 0 of the
number of UCIs is hard coded to 1. This is why we always use index 0 of the
queued UCI indication to fill the new multiplexed UCI indication */
queued UCI indication to fill the new multiplexed UCI indication */
AssertFatal
(
queued_uci_ind
,
"There was not a UCI in the queue!
\n
"
);
AssertFatal
(
queued_uci_ind
->
num_ucis
==
1
,
"The number of UCIs from de-queueud UCI is not 1, its %d
\n
"
,
queued_uci_ind
->
num_ucis
);
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
pdu_0_1
=
&
uci_ind
->
uci_list
[
i
].
pucch_pdu_format_0_1
;
memset
(
pdu_0_1
,
0
,
sizeof
(
*
pdu_0_1
));
AssertFatal
(
i
<
uci_ind
->
num_ucis
,
"Attempting to index past end of uci_list array. Index = %d
\n
"
,
i
);
uci_ind
->
uci_list
[
i
].
pdu_type
=
queued_uci_ind
->
uci_list
[
0
].
pdu_type
;
uci_ind
->
uci_list
[
i
].
pdu_type
=
queued_uci_ind
->
uci_list
[
0
].
pdu_type
;
uci_ind
->
uci_list
[
i
].
pdu_size
=
sizeof
(
nfapi_nr_uci_pucch_pdu_format_0_1_t
)
;
uci_ind
->
uci_list
[
i
].
pdu_size
=
queued_uci_ind
->
uci_list
[
0
].
pdu_size
;
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
queued_pdu_0_1
=
&
queued_uci_ind
->
uci_list
[
0
].
pucch_pdu_format_0_1
;
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
queued_pdu_0_1
=
&
queued_uci_ind
->
uci_list
[
0
].
pucch_pdu_format_0_1
;
pdu_0_1
->
handle
=
queued_pdu_0_1
->
handle
;
pdu_0_1
->
handle
=
queued_pdu_0_1
->
handle
;
...
@@ -539,6 +538,10 @@ static nfapi_nr_uci_indication_t *multiplex_uci_ind(NR_UE_MAC_INST_t *mac, int n
...
@@ -539,6 +538,10 @@ static nfapi_nr_uci_indication_t *multiplex_uci_ind(NR_UE_MAC_INST_t *mac, int n
pdu_0_1
->
ul_cqi
=
queued_pdu_0_1
->
ul_cqi
;
pdu_0_1
->
ul_cqi
=
queued_pdu_0_1
->
ul_cqi
;
pdu_0_1
->
timing_advance
=
queued_pdu_0_1
->
timing_advance
;
pdu_0_1
->
timing_advance
=
queued_pdu_0_1
->
timing_advance
;
pdu_0_1
->
rssi
=
queued_pdu_0_1
->
rssi
;
pdu_0_1
->
rssi
=
queued_pdu_0_1
->
rssi
;
free
(
queued_uci_ind
->
uci_list
);
queued_uci_ind
->
uci_list
=
NULL
;
free
(
queued_uci_ind
);
queued_uci_ind
=
NULL
;
}
}
return
uci_ind
;
return
uci_ind
;
}
}
...
@@ -563,11 +566,8 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
...
@@ -563,11 +566,8 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
pdu_list
->
pdu_type
,
ul_tti_req
->
pdus_list
[
i
].
pucch_pdu
.
rnti
,
pdu_list
->
pucch_pdu
.
sr_flag
,
pdu_list
->
pucch_pdu
.
bit_len_harq
);
pdu_list
->
pdu_type
,
ul_tti_req
->
pdus_list
[
i
].
pucch_pdu
.
rnti
,
pdu_list
->
pucch_pdu
.
sr_flag
,
pdu_list
->
pucch_pdu
.
bit_len_harq
);
if
(
pdu_list
->
pdu_type
==
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
&&
pdu_list
->
pucch_pdu
.
rnti
==
mac
->
crnti
)
if
(
pdu_list
->
pdu_type
==
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
&&
pdu_list
->
pucch_pdu
.
rnti
==
mac
->
crnti
)
{
{
if
(
nr_uci_ind_queue
.
num_items
<=
0
)
AssertFatal
(
nr_uci_ind_queue
.
num_items
>=
0
,
"Invalid num_items in UCI_ind queue %lu
\n
"
,
{
nr_uci_ind_queue
.
num_items
);
return
;
}
int
num_active_harqs
=
pdu_list
->
pucch_pdu
.
bit_len_harq
;
int
num_active_harqs
=
pdu_list
->
pucch_pdu
.
bit_len_harq
;
LOG_I
(
NR_MAC
,
"The number of active harqs %d from ul_tti_req
\n
"
,
num_active_harqs
);
LOG_I
(
NR_MAC
,
"The number of active harqs %d from ul_tti_req
\n
"
,
num_active_harqs
);
nfapi_nr_uci_indication_t
*
uci_ind
=
multiplex_uci_ind
(
mac
,
num_active_harqs
);
nfapi_nr_uci_indication_t
*
uci_ind
=
multiplex_uci_ind
(
mac
,
num_active_harqs
);
...
@@ -636,7 +636,7 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
...
@@ -636,7 +636,7 @@ static void copy_ul_tti_data_req_to_dl_info(nr_downlink_indication_t *dl_info, n
}
}
if
(
!
sent_uci
)
if
(
!
sent_uci
)
{
{
LOG_E
(
NR_MAC
,
"
The UL_TTI_REQ did not sent a UCI to the gNB.
\n
"
);
LOG_E
(
NR_MAC
,
"
UCI ind not sent
\n
"
);
if
(
!
put_queue
(
&
nr_ul_tti_req_queue
,
ul_tti_req
))
if
(
!
put_queue
(
&
nr_ul_tti_req_queue
,
ul_tti_req
))
{
{
LOG_E
(
NR_PHY
,
"put_queue failed for ul_tti_req.
\n
"
);
LOG_E
(
NR_PHY
,
"put_queue failed for ul_tti_req.
\n
"
);
...
...
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