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
zzha zzha
OpenXG-RAN
Commits
78253509
Commit
78253509
authored
Nov 01, 2021
by
Melissa Elkadi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing merge request comments
parent
04251e84
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
17 deletions
+13
-17
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
+5
-3
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
+5
-7
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
+3
-7
No files found.
openair2/LAYER2/NR_MAC_UE/nr_ue_dci_configuration.c
View file @
78253509
...
...
@@ -259,9 +259,6 @@ void ue_dci_configuration(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_request_t *dl
//NR_ServingCellConfig_t *scd = mac->scg->spCellConfig->spCellConfigDedicated;
NR_BWP_DownlinkDedicated_t
*
bwpd
=
(
bwp_id
>
0
)
?
mac
->
DLbwp
[
bwp_id
-
1
]
->
bwp_Dedicated
:
mac
->
cg
->
spCellConfig
->
spCellConfigDedicated
->
initialDownlinkBWP
;
NR_BWP_DownlinkCommon_t
*
bwp_Common
=
(
bwp_id
>
0
)
?
mac
->
DLbwp
[
bwp_id
-
1
]
->
bwp_Common
:
&
mac
->
scc_SIB
->
downlinkConfigCommon
.
initialDownlinkBWP
;
fapi_nr_dl_config_dci_dl_pdu_rel15_t
*
rel15
=
&
dl_config
->
dl_config_list
[
dl_config
->
number_pdus
].
dci_config_pdu
.
dci_config_rel15
;
NR_SetupRelease_PDCCH_ConfigCommon_t
*
pdcch_ConfigCommon
=
bwp_Common
->
pdcch_ConfigCommon
;
struct
NR_PhysicalCellGroupConfig
*
phy_cgc
=
(
mac
->
cg
)
?
mac
->
cg
->
physicalCellGroupConfig
:
NULL
;
LOG_D
(
NR_MAC
,
"[DCI_CONFIG] ra_rnti %p (%x) crnti %p (%x) t_crnti %p (%x)
\n
"
,
&
ra
->
ra_rnti
,
ra
->
ra_rnti
,
&
mac
->
crnti
,
mac
->
crnti
,
&
ra
->
t_crnti
,
ra
->
t_crnti
);
...
...
@@ -270,6 +267,9 @@ void ue_dci_configuration(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_request_t *dl
for
(
ss_id
=
0
;
ss_id
<
FAPI_NR_MAX_SS_PER_CORESET
&&
mac
->
SSpace
[
bwp_id
][
coreset_id
-
1
][
ss_id
]
!=
NULL
;
ss_id
++
){
LOG_D
(
NR_MAC
,
"[DCI_CONFIG] ss_id %d
\n
"
,
ss_id
);
NR_SearchSpace_t
*
ss
=
mac
->
SSpace
[
bwp_id
][
coreset_id
-
1
][
ss_id
];
fapi_nr_dl_config_dci_dl_pdu_rel15_t
*
rel15
=
&
dl_config
->
dl_config_list
[
dl_config
->
number_pdus
].
dci_config_pdu
.
dci_config_rel15
;
NR_SetupRelease_PDCCH_ConfigCommon_t
*
pdcch_ConfigCommon
=
bwp_Common
->
pdcch_ConfigCommon
;
struct
NR_PhysicalCellGroupConfig
*
phy_cgc
=
mac
->
cg
->
physicalCellGroupConfig
;
switch
(
ss
->
searchSpaceType
->
present
){
case
NR_SearchSpace__searchSpaceType_PR_common
:
// this is for CSSs, we use BWP common and pdcch_ConfigCommon
...
...
@@ -414,6 +414,8 @@ void ue_dci_configuration(NR_UE_MAC_INST_t *mac, fapi_nr_dl_config_request_t *dl
}
// Search space 0, CORESET ID 0
NR_SetupRelease_PDCCH_ConfigCommon_t
*
pdcch_ConfigCommon
=
bwp_Common
->
pdcch_ConfigCommon
;
if
(
pdcch_ConfigCommon
&&
pdcch_ConfigCommon
->
choice
.
setup
->
searchSpaceSIB1
&&
!
get_softmodem_params
()
->
nsa
)
{
...
...
openair2/NR_PHY_INTERFACE/NR_IF_Module.c
View file @
78253509
...
...
@@ -153,15 +153,13 @@ void handle_nr_uci(NR_UL_IND_t *UL_info)
switch
(
uci_list
[
i
].
pdu_type
)
{
case
NFAPI_NR_UCI_FORMAT_0_1_PDU_TYPE
:
if
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
)
{
free
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
->
harq_list
);
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
->
harq_list
=
NULL
;
free
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
->
harq_list
);
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
->
harq_list
=
NULL
;
}
free
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
);
uci_list
[
i
].
pucch_pdu_format_0_1
.
harq
=
NULL
;
}
if
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
sr
)
{
free
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
sr
);
uci_list
[
i
].
pucch_pdu_format_0_1
.
sr
=
NULL
;
}
free
(
uci_list
[
i
].
pucch_pdu_format_0_1
.
sr
);
uci_list
[
i
].
pucch_pdu_format_0_1
.
sr
=
NULL
;
break
;
case
NFAPI_NR_UCI_FORMAT_2_3_4_PDU_TYPE
:
...
...
openair2/NR_UE_PHY_INTERFACE/NR_IF_Module.c
View file @
78253509
...
...
@@ -738,13 +738,9 @@ static void enqueue_nr_nfapi_msg(void *buffer, ssize_t len, nfapi_p7_message_hea
ul_tti_request
->
SFN
,
ul_tti_request
->
Slot
);
if
(
!
put_queue
(
&
nr_ul_tti_req_queue
,
ul_tti_request
))
{
reset_queue
(
&
nr_ul_tti_req_queue
);
if
(
!
put_queue
(
&
nr_ul_tti_req_queue
,
ul_tti_request
))
{
LOG_E
(
NR_PHY
,
"put_queue failed for ul_tti_request.
\n
"
);
free
(
ul_tti_request
);
ul_tti_request
=
NULL
;
}
LOG_E
(
NR_PHY
,
"put_queue failed for ul_tti_request.
\n
"
);
free
(
ul_tti_request
);
ul_tti_request
=
NULL
;
}
}
/* TODO: This indicates that dl_tti_req was late or never arrived. If there are
...
...
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