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
alex037yang
OpenXG-RAN
Commits
7fb0902d
Commit
7fb0902d
authored
Jan 29, 2018
by
matzakos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Works up to the reception of Msg4 at the eNB. Still sometimes SF sync between PNF and VNF is lost.
parent
507c1ea9
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
100 additions
and
43 deletions
+100
-43
nfapi/nfapi_pnf.c
nfapi/nfapi_pnf.c
+2
-0
openair1/PHY/INIT/lte_init.c
openair1/PHY/INIT/lte_init.c
+23
-2
openair2/PHY_INTERFACE/phy_stub_UE.c
openair2/PHY_INTERFACE/phy_stub_UE.c
+71
-37
targets/RT/USER/lte-ue.c
targets/RT/USER/lte-ue.c
+4
-4
No files found.
nfapi/nfapi_pnf.c
View file @
7fb0902d
...
...
@@ -1891,8 +1891,10 @@ int oai_nfapi_harq_indication(nfapi_harq_indication_t *harq_ind)
harq_ind
->
header
.
phy_id
=
1
;
// DJP HACK TODO FIXME - need to pass this around!!!!
harq_ind
->
header
.
message_id
=
NFAPI_HARQ_INDICATION
;
LOG_E
(
PHY
,
"%s() sfn_sf:%d number_of_harqs:%d
\n
"
,
__FUNCTION__
,
NFAPI_SFNSF2DEC
(
harq_ind
->
sfn_sf
),
harq_ind
->
harq_indication_body
.
number_of_harqs
);
LOG_E
(
PHY
,
"%s() Panos-D: Number of ACK/NACKs: %d"
,
__FUNCTION__
,
harq_ind
->
harq_indication_body
.
harq_pdu_list
[
0
].
harq_indication_fdd_rel13
.
number_of_ack_nack
);
int
retval
=
nfapi_pnf_p7_harq_ind
(
p7_config_g
,
harq_ind
);
if
(
retval
!=
0
)
LOG_E
(
PHY
,
"%s() sfn_sf:%d number_of_harqs:%d nfapi_pnf_p7_harq_ind()=%d
\n
"
,
__FUNCTION__
,
NFAPI_SFNSF2DEC
(
harq_ind
->
sfn_sf
),
harq_ind
->
harq_indication_body
.
number_of_harqs
,
retval
);
...
...
openair1/PHY/INIT/lte_init.c
View file @
7fb0902d
...
...
@@ -37,6 +37,7 @@ extern int32_t get_uldl_offset(int eutra_bandP);
extern
uint16_t
prach_root_sequence_map0_3
[
838
];
extern
uint16_t
prach_root_sequence_map4
[
138
];
extern
uint8_t
nfapi_mode
;
uint8_t
dmrs1_tab
[
8
]
=
{
0
,
2
,
3
,
4
,
6
,
8
,
9
,
10
};
...
...
@@ -1170,12 +1171,16 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t eNB_id,
LOG_D
(
PHY
,
"[UE %d] Received NULL physicalConfigDedicated->antennaInfo from eNB %d
\n
"
,
Mod_id
,
eNB_id
);
}
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 1 \n");
if
(
physicalConfigDedicated
->
schedulingRequestConfig
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 2 \n");
if
(
physicalConfigDedicated
->
schedulingRequestConfig
->
present
==
SchedulingRequestConfig_PR_setup
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 3 \n");
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
sr_PUCCH_ResourceIndex
=
physicalConfigDedicated
->
schedulingRequestConfig
->
choice
.
setup
.
sr_PUCCH_ResourceIndex
;
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
sr_ConfigIndex
=
physicalConfigDedicated
->
schedulingRequestConfig
->
choice
.
setup
.
sr_ConfigIndex
;
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
dsr_TransMax
=
physicalConfigDedicated
->
schedulingRequestConfig
->
choice
.
setup
.
dsr_TransMax
;
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 4 \n");
LOG_D
(
PHY
,
"scheduling_request_config.sr_PUCCH_ResourceIndex %d
\n
"
,
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
sr_PUCCH_ResourceIndex
);
LOG_D
(
PHY
,
"scheduling_request_config.sr_ConfigIndex %d
\n
"
,
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
sr_ConfigIndex
);
LOG_D
(
PHY
,
"scheduling_request_config.dsr_TransMax %d
\n
"
,
phy_vars_ue
->
scheduling_request_config
[
eNB_id
].
dsr_TransMax
);
...
...
@@ -1187,6 +1192,7 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t eNB_id,
if
(
physicalConfigDedicated
->
soundingRS_UL_ConfigDedicated
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 5 \n");
phy_vars_ue
->
soundingrs_ul_config_dedicated
[
eNB_id
].
srsConfigDedicatedSetup
=
0
;
if
(
physicalConfigDedicated
->
soundingRS_UL_ConfigDedicated
->
present
==
SoundingRS_UL_ConfigDedicated_PR_setup
)
{
phy_vars_ue
->
soundingrs_ul_config_dedicated
[
eNB_id
].
srsConfigDedicatedSetup
=
1
;
...
...
@@ -1208,7 +1214,9 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t eNB_id,
if
(
physicalConfigDedicated
->
cqi_ReportConfig
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 6.0 \n");
if
(
physicalConfigDedicated
->
cqi_ReportConfig
->
cqi_ReportModeAperiodic
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 6 \n");
// configure PUSCH CQI reporting
phy_vars_ue
->
cqi_report_config
[
eNB_id
].
cqi_ReportModeAperiodic
=
*
physicalConfigDedicated
->
cqi_ReportConfig
->
cqi_ReportModeAperiodic
;
if
((
phy_vars_ue
->
cqi_report_config
[
eNB_id
].
cqi_ReportModeAperiodic
!=
rm12
)
&&
...
...
@@ -1217,6 +1225,7 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t eNB_id,
LOG_E
(
PHY
,
"Unsupported Aperiodic CQI Feedback Mode : %d
\n
"
,
phy_vars_ue
->
cqi_report_config
[
eNB_id
].
cqi_ReportModeAperiodic
);
}
if
(
physicalConfigDedicated
->
cqi_ReportConfig
->
cqi_ReportPeriodic
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 7 \n");
if
(
physicalConfigDedicated
->
cqi_ReportConfig
->
cqi_ReportPeriodic
->
present
==
CQI_ReportPeriodic_PR_setup
)
{
// configure PUCCH CQI reporting
phy_vars_ue
->
cqi_report_config
[
eNB_id
].
CQI_ReportPeriodic
.
cqi_PUCCH_ResourceIndex
=
physicalConfigDedicated
->
cqi_ReportConfig
->
cqi_ReportPeriodic
->
choice
.
setup
.
cqi_PUCCH_ResourceIndex
;
...
...
@@ -1249,24 +1258,36 @@ void phy_config_dedicated_ue(uint8_t Mod_id,int CC_id,uint8_t eNB_id,
}
// fill cqi parameters for periodic CQI reporting
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 8 \n");
get_cqipmiri_params
(
phy_vars_ue
,
eNB_id
);
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 9 \n");
// disable MIB SIB decoding once we are on connected mode
first_dedicated_configuration
++
;
if
(
first_dedicated_configuration
>
1
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 10 \n");
LOG_I
(
PHY
,
"Disable SIB MIB decoding
\n
"
);
phy_vars_ue
->
decode_SIB
=
0
;
phy_vars_ue
->
decode_MIB
=
0
;
}
//phy_vars_ue->pdcch_vars[1][eNB_id]->crnti = phy_vars_ue->pdcch_vars[0][eNB_id]->crnti;
if
(
phy_vars_ue
->
pdcch_vars
[
0
][
eNB_id
]
->
crnti
==
0x1234
)
LOG_I
(
PHY
,
"Panos-D: phy_config_dedicated_ue 11.0
\n
"
);
if
(
nfapi_mode
!=
3
){
if
(
phy_vars_ue
->
pdcch_vars
[
0
][
eNB_id
]
->
crnti
==
0x1234
)
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 11 \n");
phy_vars_ue
->
pdcch_vars
[
0
][
eNB_id
]
->
crnti
=
phy_vars_ue
->
pdcch_vars
[
1
][
eNB_id
]
->
crnti
;
else
}
else
{
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 12 \n");
phy_vars_ue
->
pdcch_vars
[
1
][
eNB_id
]
->
crnti
=
phy_vars_ue
->
pdcch_vars
[
0
][
eNB_id
]
->
crnti
;
}
//LOG_I(PHY,"Panos-D: phy_config_dedicated_ue 13 \n");
LOG_I
(
PHY
,
"C-RNTI %x %x
\n
"
,
phy_vars_ue
->
pdcch_vars
[
0
][
eNB_id
]
->
crnti
,
phy_vars_ue
->
pdcch_vars
[
1
][
eNB_id
]
->
crnti
);
}
}
...
...
openair2/PHY_INTERFACE/phy_stub_UE.c
View file @
7fb0902d
...
...
@@ -349,17 +349,30 @@ void fill_uci_harq_indication_UE_MAC(int Mod_id,
uint16_t
rnti
/*uint8_t tdd_mapping_mode,
uint16_t tdd_multiplexing_mask*/
)
{
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 1
\n
"
);
//int UE_id=find_dlsch(uci->rnti,eNB,SEARCH_EXIST);
//AssertFatal(UE_id>=0,"UE_id doesn't exist\n");
pthread_mutex_lock
(
&
UE_mac_inst
[
Mod_id
].
UL_INFO_mutex
);
nfapi_harq_indication_pdu_t
*
pdu
=
&
UL_INFO
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
[
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
];
nfapi_harq_indication_t
*
ind
=
&
UL_INFO
->
harq_ind
;
nfapi_harq_indication_body_t
*
body
=
&
ind
->
harq_indication_body
;
nfapi_harq_indication_pdu_t
*
pdu
=
&
body
->
harq_pdu_list
[
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
];
ind
->
sfn_sf
=
frame
<<
4
|
subframe
;
ind
->
header
.
message_id
=
NFAPI_HARQ_INDICATION
;
body
->
tl
.
tag
=
NFAPI_HARQ_INDICATION_BODY_TAG
;
pdu
->
rx_ue_information
.
tl
.
tag
=
NFAPI_RX_UE_INFORMATION_TAG
;
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 2, # of harqs: %d
\n
"
,
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
);
pdu
->
instance_length
=
0
;
// don't know what to do with this
// pdu->rx_ue_information.handle = handle;
pdu
->
rx_ue_information
.
rnti
=
rnti
;
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 3
\n
"
);
pdu
->
ul_cqi_information
.
tl
.
tag
=
NFAPI_UL_CQI_INFORMATION_TAG
;
// estimate UL_CQI for MAC (from antenna port 0 only)
...
...
@@ -373,6 +386,7 @@ void fill_uci_harq_indication_UE_MAC(int Mod_id,
else
if
(
SNRtimes10
>
635
)
pdu
->
ul_cqi_information
.
ul_cqi
=
255
;
else
pdu
->
ul_cqi_information
.
ul_cqi
=
(
640
+
SNRtimes10
)
/
5
;
pdu
->
ul_cqi_information
.
channel
=
0
;
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 4
\n
"
);
//Panos: Considering only FDD for now
//if (eNB->frame_parms.frame_type == FDD) {
...
...
@@ -380,7 +394,9 @@ void fill_uci_harq_indication_UE_MAC(int Mod_id,
//Panos: Condition taken from fapi_l1::handle_uci_harq_information() function
if
((
harq_information
->
harq_information_rel9_fdd
.
ack_nack_mode
==
0
)
&&
(
harq_information
->
harq_information_rel9_fdd
.
harq_size
==
1
))
{
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 5
\n
"
);
//if (uci->pucch_fmt == pucch_format1a) {
pdu
->
harq_indication_fdd_rel13
.
tl
.
tag
=
NFAPI_HARQ_INDICATION_FDD_REL13_TAG
;
pdu
->
harq_indication_fdd_rel13
.
mode
=
0
;
pdu
->
harq_indication_fdd_rel13
.
number_of_ack_nack
=
1
;
...
...
@@ -391,6 +407,8 @@ void fill_uci_harq_indication_UE_MAC(int Mod_id,
}
else
if
((
harq_information
->
harq_information_rel9_fdd
.
ack_nack_mode
==
0
)
&&
(
harq_information
->
harq_information_rel9_fdd
.
harq_size
==
2
))
{
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 6
\n
"
);
pdu
->
harq_indication_fdd_rel13
.
tl
.
tag
=
NFAPI_HARQ_INDICATION_FDD_REL13_TAG
;
pdu
->
harq_indication_fdd_rel13
.
mode
=
0
;
pdu
->
harq_indication_fdd_rel13
.
number_of_ack_nack
=
2
;
//AssertFatal(harq_ack[0] == 1 || harq_ack[0] == 2 || harq_ack[1] == 4, "harq_ack[0] is %d, should be 0,1 or 4\n",harq_ack[0]);
...
...
@@ -499,7 +517,9 @@ void fill_uci_harq_indication_UE_MAC(int Mod_id,
} //TDD*/
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 7
\n
"
);
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
++
;
LOG_I
(
MAC
,
"Panos-D: fill_uci_harq_indication_UE_MAC 8
\n
"
);
LOG_E
(
PHY
,
"Incremented eNB->UL_INFO.harq_ind.number_of_harqs:%d
\n
"
,
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
);
pthread_mutex_unlock
(
&
UE_mac_inst
[
Mod_id
].
UL_INFO_mutex
);
...
...
@@ -511,14 +531,14 @@ void handle_nfapi_ul_pdu_UE_MAC(module_id_t Mod_id,
uint16_t
frame
,
uint8_t
subframe
,
uint8_t
srs_present
,
int
index
)
{
nfapi_ul_config_ulsch_pdu_rel8_t
*
rel8
=
&
ul_config_pdu
->
ulsch_pdu
.
ulsch_pdu_rel8
;
LOG_I
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 1
\n
"
);
//LOG_D
(MAC, "Panos-D: handle_nfapi_ul_pdu_UE_MAC 1 \n");
//int8_t UE_id;
// check if we have received a dci for this ue and ulsch descriptor is configured
if
(
ul_config_pdu
->
pdu_type
==
NFAPI_UL_CONFIG_ULSCH_PDU_TYPE
)
{
LOG_I
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.1
\n
"
);
//LOG_D
(MAC, "Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.1 \n");
//AssertFatal((UE_id = find_ulsch(ul_config_pdu->ulsch_pdu.ulsch_pdu_rel8.rnti,eNB,SEARCH_EXIST_OR_FREE))>=0,
// "No existing UE ULSCH for rnti %x\n",rel8->rnti);
LOG_D
(
PHY
,
"Applying UL config for UE, rnti %x for frame %d, subframe %d
\n
"
,
...
...
@@ -530,7 +550,7 @@ void handle_nfapi_ul_pdu_UE_MAC(module_id_t Mod_id,
uint8_t
access_mode
=
SCHEDULED_ACCESS
;
if
(
buflen
>
0
){
if
(
UE_mac_inst
[
Mod_id
].
first_ULSCH_Tx
==
1
){
// Msg3 case
LOG_I
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.2
\n
"
);
//LOG_D
(MAC, "Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.2 \n");
fill_crc_indication_UE_MAC
(
Mod_id
,
frame
,
subframe
,
UL_INFO
,
0
,
index
,
rnti
);
fill_rx_indication_UE_MAC
(
Mod_id
,
frame
,
subframe
,
UL_INFO
,
UE_mac_inst
[
Mod_id
].
RA_prach_resources
.
Msg3
,
buflen
,
rnti
,
index
);
Msg3_transmitted
(
Mod_id
,
0
,
frame
,
0
);
...
...
@@ -539,7 +559,7 @@ void handle_nfapi_ul_pdu_UE_MAC(module_id_t Mod_id,
//UE_mac_inst[Mod_id].first_ULSCH_Tx = 0;
}
else
{
LOG_
I
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.3
\n
"
);
LOG_
D
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 2.3
\n
"
);
ue_get_sdu
(
Mod_id
,
0
,
frame
,
subframe
,
0
,
ulsch_buffer
,
buflen
,
&
access_mode
);
fill_crc_indication_UE_MAC
(
Mod_id
,
frame
,
subframe
,
UL_INFO
,
0
,
index
,
rnti
);
fill_rx_indication_UE_MAC
(
Mod_id
,
frame
,
subframe
,
UL_INFO
,
ulsch_buffer
,
buflen
,
rnti
,
index
);
...
...
@@ -641,7 +661,7 @@ void handle_nfapi_ul_pdu_UE_MAC(module_id_t Mod_id,
uint16_t
rnti
=
ul_config_pdu
->
uci_harq_pdu
.
ue_information
.
ue_information_rel8
.
rnti
;
nfapi_ul_config_harq_information
*
ulsch_harq_information
=
&
ul_config_pdu
->
uci_harq_pdu
.
harq_information
;
LOG_I
(
MAC
,
"Panos-D: handle_nfapi_ul_pdu_UE_MAC 7
\n
"
);
fill_uci_harq_indication_UE_MAC
(
Mod_id
,
frame
,
subframe
,
UL_INFO
,
ulsch_harq_information
,
rnti
);
}
else
if
(
ul_config_pdu
->
pdu_type
==
NFAPI_UL_CONFIG_UCI_CQI_PDU_TYPE
)
{
...
...
@@ -726,14 +746,14 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
//int sfn = timer_frame;
//int sf = timer_subframe;
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 1, SFN/SF in REQ:%d.%d, SFN/SF of PNF counter:%d.%d
\n
"
,
sfn
,
sf
,
timer_frame
,
timer_subframe
);
//LOG_D
(MAC, "Panos-D: ul_config_req_UE_MAC 1, SFN/SF in REQ:%d.%d, SFN/SF of PNF counter:%d.%d \n", sfn, sf, timer_frame, timer_subframe);
//struct PHY_VARS_eNB_s *eNB = RC.eNB[0][0];
//eNB_rxtx_proc_t *proc = &eNB->proc.proc_rxtx[0];
module_id_t
Mod_id
=
0
;
//Panos: Currently static (only for one UE) but this should change.
nfapi_ul_config_request_pdu_t
*
ul_config_pdu_list
=
req
->
ul_config_request_body
.
ul_config_pdu_list
;
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 1
\n
"
);
//LOG_D
(MAC, "Panos-D: ul_config_req_UE_MAC 1 \n");
//Panos: Not sure whether we should put the memory allocation here.
//*** Note we should find the right place to call free(UL_INFO).
...
...
@@ -742,6 +762,8 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
UL_INFO
->
rx_ind
.
rx_indication_body
.
rx_pdu_list
=
(
nfapi_rx_indication_pdu_t
*
)
malloc
(
req
->
ul_config_request_body
.
number_of_pdus
*
sizeof
(
nfapi_rx_indication_pdu_t
));
UL_INFO
->
crc_ind
.
crc_indication_body
.
crc_pdu_list
=
(
nfapi_crc_indication_pdu_t
*
)
malloc
(
req
->
ul_config_request_body
.
number_of_pdus
*
sizeof
(
nfapi_crc_indication_pdu_t
));
UL_INFO
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
=
(
nfapi_harq_indication_pdu_t
*
)
malloc
(
req
->
ul_config_request_body
.
number_of_pdus
*
sizeof
(
nfapi_harq_indication_pdu_t
));
//Panos: Additional checks needed here to check if the UE is in PRACH mode.
/*uint8_t is_rach = req->ul_config_request_body.rach_prach_frequency_resources;
...
...
@@ -765,7 +787,7 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
{
//NFAPI_TRACE(NFAPI_TRACE_INFO, "%s() sfn/sf:%d PDU[%d] size:%d\n", __FUNCTION__, NFAPI_SFNSF2DEC(req->sfn_sf), i, ul_config_pdu_list[i].pdu_size);
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 2.0 #PDUs: %d
\n
"
,
i
<
req
->
ul_config_request_body
.
number_of_pdus
);
//LOG_D
(MAC, "Panos-D: ul_config_req_UE_MAC 2.0 #PDUs: %d \n", i<req->ul_config_request_body.number_of_pdus);
if
(
req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
].
pdu_type
==
NFAPI_UL_CONFIG_ULSCH_PDU_TYPE
||
req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
].
pdu_type
==
NFAPI_UL_CONFIG_ULSCH_HARQ_PDU_TYPE
||
...
...
@@ -778,7 +800,7 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
{
//NFAPI_TRACE(NFAPI_TRACE_INFO, "%s() handle_nfapi_ul_pdu() for PDU:%d\n", __FUNCTION__, i);
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 2.1
\n
"
);
//LOG_D
(MAC, "Panos-D: ul_config_req_UE_MAC 2.1 \n");
handle_nfapi_ul_pdu_UE_MAC
(
Mod_id
,
&
req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
],
sfn
,
sf
,
req
->
ul_config_request_body
.
srs_present
,
i
);
/*if (UL_INFO->crc_ind.crc_indication_body.number_of_crcs>0)
...
...
@@ -806,7 +828,7 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
oai_nfapi_crc_indication(&UL_INFO->crc_ind);
//UL_INFO->rx_ind.rx_indication_body.number_of_pdus = 0;
}*/
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 3
\n
"
);
//LOG_D
(MAC, "Panos-D: ul_config_req_UE_MAC 3 \n");
}
else
...
...
@@ -828,9 +850,16 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 2.3, SFN/SF in REQ:%d.%d, SFN/SF of PNF counter:%d.%d
\n
"
,
sfn
,
sf
,
timer_frame
,
timer_subframe
);
//LOG_I(MAC, "Panos-D: ul_config_req_UE_MAC 2.3 \n");
oai_nfapi_rx_ind
(
&
UL_INFO
->
rx_ind
);
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 2.4
\n
"
);
//
LOG_I(MAC, "Panos-D: ul_config_req_UE_MAC 2.4 \n");
UL_INFO
->
rx_ind
.
rx_indication_body
.
number_of_pdus
=
0
;
}
if
(
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
>
0
)
{
LOG_I
(
MAC
,
"Panos-D: ul_config_req_UE_MAC 2.4, SFN/SF in REQ:%d.%d, SFN/SF of PNF counter:%d.%d
\n
"
,
sfn
,
sf
,
timer_frame
,
timer_subframe
);
oai_nfapi_harq_indication
(
&
UL_INFO
->
harq_ind
);
UL_INFO
->
harq_ind
.
harq_indication_body
.
number_of_harqs
=
0
;
}
// Free ul_config_request
/*if(req->ul_config_request_body.ul_config_pdu_list != NULL){
...
...
@@ -850,6 +879,10 @@ int ul_config_req_UE_MAC(nfapi_ul_config_request_t* req, int timer_frame, int ti
free
(
UL_INFO
->
rx_ind
.
rx_indication_body
.
rx_pdu_list
);
UL_INFO
->
rx_ind
.
rx_indication_body
.
rx_pdu_list
=
NULL
;
}
if
(
UL_INFO
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
!=
NULL
){
free
(
UL_INFO
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
);
UL_INFO
->
harq_ind
.
harq_indication_body
.
harq_pdu_list
=
NULL
;
}
free
(
UL_INFO
);
UL_INFO
=
NULL
;
}
...
...
@@ -1083,13 +1116,13 @@ int hi_dci0_req_UE_MAC(nfapi_hi_dci0_request_t* req)
}
else
if
(
req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
].
pdu_type
==
NFAPI_HI_DCI0_HI_PDU_TYPE
)
{
LOG_I
(
MAC
,
"[UE-PHY_STUB] HI_DCI0_REQ sfn_sf:%d PDU[%d] - NFAPI_HI_DCI0_HI_PDU_TYPE
\n
"
,
NFAPI_SFNSF2DEC
(
req
->
sfn_sf
),
i
);
//
LOG_I(MAC,"[UE-PHY_STUB] HI_DCI0_REQ sfn_sf:%d PDU[%d] - NFAPI_HI_DCI0_HI_PDU_TYPE\n", NFAPI_SFNSF2DEC(req->sfn_sf), i);
nfapi_hi_dci0_request_pdu_t
*
hi_dci0_req_pdu
=
&
req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
];
// This is meaningful only after ACKnowledging the first ULSCH Txon (i.e. Msg3)
if
(
hi_dci0_req_pdu
->
hi_pdu
.
hi_pdu_rel8
.
hi_value
==
1
&&
UE_mac_inst
[
Mod_id
].
first_ULSCH_Tx
==
1
){
LOG_I
(
MAC
,
"[UE-PHY_STUB] HI_DCI0_REQ 2 sfn_sf:%d PDU[%d] - NFAPI_HI_DCI0_HI_PDU_TYPE
\n
"
,
NFAPI_SFNSF2DEC
(
req
->
sfn_sf
),
i
);
//
LOG_I(MAC,"[UE-PHY_STUB] HI_DCI0_REQ 2 sfn_sf:%d PDU[%d] - NFAPI_HI_DCI0_HI_PDU_TYPE\n", NFAPI_SFNSF2DEC(req->sfn_sf), i);
UE_mac_inst
[
Mod_id
].
UE_mode
[
0
]
=
PUSCH
;
UE_mac_inst
[
Mod_id
].
first_ULSCH_Tx
=
0
;
}
...
...
@@ -1160,7 +1193,7 @@ int memcpy_dl_config_req (nfapi_pnf_p7_config_t* pnf_p7, nfapi_dl_config_request
int
memcpy_ul_config_req
(
nfapi_pnf_p7_config_t
*
pnf_p7
,
nfapi_ul_config_request_t
*
req
)
{
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req 1
\n
"
);
//LOG_D
(MAC, "Panos-D: memcpy_ul_config_req 1 \n");
module_id_t
Mod_id
=
0
;
//Panos: Currently static (only for one UE) but this should change.
...
...
@@ -1171,20 +1204,20 @@ int memcpy_ul_config_req (nfapi_pnf_p7_config_t* pnf_p7, nfapi_ul_config_request
//UE_mac_inst[Mod_id].ul_config_req->vendor_extension->tag = req->vendor_extension.tag;
//UE_mac_inst[Mod_id].ul_config_req->vendor_extension->length = req->vendor_extension.length;
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req SFN_SF: MINE: %d
\n
"
,
UE_mac_inst
[
Mod_id
].
ul_config_req
->
sfn_sf
);
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req SFN_SF: REQ: %d
\n
"
,
req
->
sfn_sf
);
//LOG_D
(MAC, "Panos-D: memcpy_ul_config_req SFN_SF: MINE: %d \n", UE_mac_inst[Mod_id].ul_config_req->sfn_sf);
//LOG_D
(MAC, "Panos-D: memcpy_ul_config_req SFN_SF: REQ: %d \n", req->sfn_sf);
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
number_of_pdus
=
req
->
ul_config_request_body
.
number_of_pdus
;
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
rach_prach_frequency_resources
=
req
->
ul_config_request_body
.
rach_prach_frequency_resources
;
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
srs_present
=
req
->
ul_config_request_body
.
srs_present
;
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
tl
=
req
->
ul_config_request_body
.
tl
;
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req 1 #ofULPDUs: %d
\n
"
,
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
number_of_pdus
);
//req->ul_config_request_body.number_of_pdus);
//LOG_D
(MAC, "Panos-D: memcpy_ul_config_req 1 #ofULPDUs: %d \n", UE_mac_inst[Mod_id].ul_config_req->ul_config_request_body.number_of_pdus); //req->ul_config_request_body.number_of_pdus);
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
ul_config_pdu_list
=
(
nfapi_ul_config_request_pdu_t
*
)
malloc
(
req
->
ul_config_request_body
.
number_of_pdus
*
sizeof
(
nfapi_ul_config_request_pdu_t
));
for
(
int
i
=
0
;
i
<
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
number_of_pdus
;
i
++
)
{
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
]
=
req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
];
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req TAG MINE: %d
\n
"
,
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
].
pdu_type
);
LOG_I
(
MAC
,
"Panos-D: memcpy_ul_config_req TAG REQ: %d
\n
"
,
req
->
ul_config_request_body
.
ul_config_pdu_list
[
i
].
pdu_type
);
//
LOG_I(MAC, "Panos-D: memcpy_ul_config_req TAG MINE: %d \n", UE_mac_inst[Mod_id].ul_config_req->ul_config_request_body.ul_config_pdu_list[i].pdu_type);
//
LOG_I(MAC, "Panos-D: memcpy_ul_config_req TAG REQ: %d \n", req->ul_config_request_body.ul_config_pdu_list[i].pdu_type);
}
...
...
@@ -1252,20 +1285,21 @@ int memcpy_hi_dci0_req (nfapi_pnf_p7_config_t* pnf_p7, nfapi_hi_dci0_request_t*
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
tl
=
req
->
hi_dci0_request_body
.
tl
;
int
total_pdus
=
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
number_of_dci
+
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
number_of_hi
;
LOG_I
(
MAC
,
"Original hi_dci0 req. #:%d, Copy #: %d
\n
"
,
req
->
hi_dci0_request_body
.
number_of_dci
+
req
->
hi_dci0_request_body
.
number_of_hi
,
total_pdus
);
//
LOG_I(MAC, "Original hi_dci0 req. #:%d, Copy #: %d \n",req->hi_dci0_request_body.number_of_dci + req->hi_dci0_request_body.number_of_hi, total_pdus);
//(nfapi_ul_config_request_pdu_t*) malloc(req->ul_config_request_body.number_of_pdus*sizeof(nfapi_ul_config_request_pdu_t));
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
=
(
nfapi_hi_dci0_request_pdu_t
*
)
malloc
(
total_pdus
*
sizeof
(
nfapi_hi_dci0_request_pdu_t
));
for
(
int
i
=
0
;
i
<
total_pdus
;
i
++
){
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
]
=
req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
];
LOG_I
(
MAC
,
"Original hi_dci0 req. type:%d, Copy type: %d
\n
"
,
req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
].
pdu_type
,
UE_mac_inst
[
Mod_id
].
hi_dci0_req
->
hi_dci0_request_body
.
hi_dci0_pdu_list
[
i
].
pdu_type
);
//
LOG_I(MAC, "Original hi_dci0 req. type:%d, Copy type: %d \n",req->hi_dci0_request_body.hi_dci0_pdu_list[i].pdu_type, UE_mac_inst[Mod_id].hi_dci0_req->hi_dci0_request_body.hi_dci0_pdu_list[i].pdu_type);
}
//}
//else
// LOG_I(MAC, "Panos-D: Dummy HI_DCI0");
LOG_I
(
MAC
,
"Panos-D: memcpy_hi_dci0_req 2
\n
"
);
//LOG_I(MAC, "Panos-D: memcpy_hi_dci0_req 2 \n");
//module_id_t Mod_id = 0; //Panos: Currently static (only for one UE) but this should change.
//UE_mac_inst[Mod_id].hi_dci0_req = req;
return
0
;
...
...
targets/RT/USER/lte-ue.c
View file @
7fb0902d
...
...
@@ -1005,15 +1005,15 @@ static void *UE_phy_stub_thread_rxn_txnp4(void *arg) {
if
(
UE
->
mode
!=
loop_through_memory
){
if
((
UE_mac_inst
[
Mod_id
].
UE_mode
[
0
]
==
PRACH
)
)
{
LOG_I
(
MAC
,
"Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH
\n
"
);
//LOG_D
(MAC, "Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH \n");
// check if we have PRACH opportunity
if
(
is_prach_subframe
(
&
UE
->
frame_parms
,
proc
->
frame_tx
,
proc
->
subframe_tx
))
{
LOG_I
(
MAC
,
"Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH 2
\n
"
);
//
LOG_I(MAC, "Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH 2 \n");
PRACH_RESOURCES_t
*
prach_resources
=
ue_get_rach
(
Mod_id
,
0
,
proc
->
frame_tx
,
0
,
proc
->
subframe_tx
);
if
(
prach_resources
!=
NULL
)
{
LOG_I
(
MAC
,
"Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH 3
\n
"
);
//
LOG_I(MAC, "Panos-D: UE_phy_stub_thread_rxn_txnp4 before RACH 3 \n");
fill_rach_indication_UE_MAC
(
Mod_id
,
proc
->
frame_tx
,
proc
->
subframe_tx
,
UL_INFO
,
prach_resources
->
ra_PreambleIndex
,
prach_resources
->
ra_RNTI
);
Msg1_transmitted
(
Mod_id
,
0
,
proc
->
frame_tx
,
0
);
UE_mac_inst
[
Mod_id
].
UE_mode
[
0
]
=
RA_RESPONSE
;
...
...
@@ -1026,7 +1026,7 @@ static void *UE_phy_stub_thread_rxn_txnp4(void *arg) {
// UE Tx procedures directly at the MAC layer, based on the received ul_config requests from the vnf (eNB).
// Generate UL_indications which correspond to UL traffic.
if
(
UE_mac_inst
[
Mod_id
].
ul_config_req
!=
NULL
&&
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
ul_config_pdu_list
!=
NULL
){
LOG_I
(
MAC
,
"Panos-D: UE_phy_stub_thread_rxn_txnp4 ul_config_req is not NULL
\n
"
);
//
LOG_I(MAC, "Panos-D: UE_phy_stub_thread_rxn_txnp4 ul_config_req is not NULL \n");
ul_config_req_UE_MAC
(
UE_mac_inst
[
Mod_id
].
ul_config_req
,
timer_frame
,
timer_subframe
);
//ul_config_req_UE_MAC(UE_mac_inst[Mod_id].ul_config_req, proc->frame_tx, proc->subframe_tx);
if
(
UE_mac_inst
[
Mod_id
].
ul_config_req
->
ul_config_request_body
.
ul_config_pdu_list
!=
NULL
){
...
...
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