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
9d7568fc
Commit
9d7568fc
authored
Oct 08, 2019
by
Daniel0326
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix phy_procedure_lte_eNb_NB_IoT.c error
parent
36ae3457
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
31 additions
and
18 deletions
+31
-18
openair1/PHY/NBIoT_TRANSPORT/defs_NB_IoT.h
openair1/PHY/NBIoT_TRANSPORT/defs_NB_IoT.h
+4
-4
openair1/PHY/defs_L1_NB_IoT.h
openair1/PHY/defs_L1_NB_IoT.h
+6
-0
openair1/SCHED/sched_common.h
openair1/SCHED/sched_common.h
+1
-1
openair1/SCHED/sched_eNB.h
openair1/SCHED/sched_eNB.h
+1
-1
openair1/SCHED_NBIOT/defs_NB_IoT.h
openair1/SCHED_NBIOT/defs_NB_IoT.h
+1
-1
openair1/SCHED_NBIOT/phy_procedures_lte_eNb_NB_IoT.c
openair1/SCHED_NBIOT/phy_procedures_lte_eNb_NB_IoT.c
+16
-8
openair2/LAYER2/MAC/defs.h
openair2/LAYER2/MAC/defs.h
+2
-2
openair2/LAYER2/MAC/extern_NB_IoT.h
openair2/LAYER2/MAC/extern_NB_IoT.h
+0
-1
No files found.
openair1/PHY/NBIoT_TRANSPORT/defs_NB_IoT.h
View file @
9d7568fc
...
...
@@ -233,7 +233,7 @@ typedef struct { // LTE_eNB_DLSCH_t
/// First-round error threshold for fine-grain rate adaptation
uint8_t
error_threshold
;
/// Pointers to 8 HARQ processes for the DLSCH
NB_IoT_DL_eNB_HARQ_t
harq_process
;
NB_IoT_DL_eNB_HARQ_t
harq_process
es
[
8
]
;
/// circular list of free harq PIDs (the oldest come first)
/// (10 is arbitrary value, must be > to max number of DL HARQ processes in LTE)
int
harq_pid_freelist
[
10
];
...
...
@@ -451,7 +451,7 @@ typedef struct {
/// HARQ-ACKs
harq_status_NB_IoT_t
harq_ack
;
/// Pointers to up to 8 HARQ processes
NB_IoT_DL_UE_HARQ_t
*
harq_process
;
NB_IoT_DL_UE_HARQ_t
*
harq_process
es
[
8
]
;
/// Maximum number of HARQ processes(for definition see 36-212 V8.6 2009-03, p.17
uint8_t
Mdlharq
;
/// MIMO transmission mode indicator for this sub-frame (for definition see 36-212 V8.6 2009-03, p.17)
...
...
@@ -546,7 +546,7 @@ typedef struct {
///in NB-IoT there is only 1 HARQ process for each UE therefore no pid is required///
/// The only HARQ process for the DLSCH
NB_IoT_DL_eNB_HARQ_t
*
harq_process
;
NB_IoT_DL_eNB_HARQ_t
*
harq_process
es
[
8
]
;
// NB_IoT_DL_eNB_SIB1_t harq_process_sib1;
...
...
@@ -743,7 +743,7 @@ typedef struct {
typedef
struct
{
/// Pointers to the HARQ processes for the NULSCH
NB_IoT_UL_eNB_HARQ_t
*
harq_process
;
NB_IoT_UL_eNB_HARQ_t
*
harq_process
es
[
8
]
;
/// Maximum number of HARQ rounds
uint8_t
Mlimit
;
/// Value 0 = npush format 1 (data) value 1 = npusch format 2 (ACK/NAK)
...
...
openair1/PHY/defs_L1_NB_IoT.h
View file @
9d7568fc
...
...
@@ -308,6 +308,9 @@ typedef struct {
uint32_t
frame_dscr_msg5
;
uint32_t
subframe_dscr_msg5
;
uint32_t
frame_dscr_msg3
;
//phy_procedures_lte_eNb_NB_IoT.c
uint32_t
subframe_dscr_msg3
;
//phy_procedures_lte_eNb_NB_IoT.c
}
eNB_rxtx_proc_NB_IoT_t
;
/*
typedef struct {
...
...
@@ -815,6 +818,9 @@ typedef struct PHY_VARS_eNB_NB_IoT_s {
NB_IoT_eNB_NDLSCH_t
*
ndlsch_RAR
;
NB_IoT_eNB_NPDCCH_t
*
npdcch_DCI
;
uint8_t
msg3_pdu
[
6
];
//phy_procedures_lte_eNb_NB_IoT.c
}
PHY_VARS_eNB_NB_IoT
;
...
...
openair1/SCHED/sched_common.h
View file @
9d7568fc
...
...
@@ -185,7 +185,7 @@ uint8_t is_SR_TXOp(PHY_VARS_UE *phy_vars_ue,UE_rxtx_proc_t *proc,uint8_t eNB_id)
@param UE_id ID of UE which may be issuing the SR
@returns 1 if TXOp is active.
*/
uint8_t
is_SR_subframe
(
PHY_VARS_eNB
*
phy_vars_eNB
,
L1_rxtx_proc
_t
*
proc
,
uint8_t
UE_id
);
//uint8_t is_SR_subframe(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_IoT
_t *proc,uint8_t UE_id);
/*! \brief Gives the UL subframe corresponding to a PDDCH order in subframe n
@param frame_parms Pointer to DL frame parameters
...
...
openair1/SCHED/sched_eNB.h
View file @
9d7568fc
...
...
@@ -186,7 +186,7 @@ void ra_failed(uint8_t Mod_id,uint8_t CC_id,uint8_t eNB_index);
@param UE_id ID of UE which may be issuing the SR
@returns 1 if TXOp is active.
*/
uint8_t
is_SR_subframe
(
PHY_VARS_eNB
*
phy_vars_eNB
,
L1_rxtx_proc
_t
*
proc
,
uint8_t
UE_id
);
//uint8_t is_SR_subframe(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_IoT
_t *proc,uint8_t UE_id);
int8_t
find_ue_dlsch
(
uint16_t
rnti
,
PHY_VARS_eNB
*
phy_vars_eNB
);
int8_t
find_ue_ulsch
(
uint16_t
rnti
,
PHY_VARS_eNB
*
phy_vars_eNB
);
...
...
openair1/SCHED_NBIOT/defs_NB_IoT.h
View file @
9d7568fc
...
...
@@ -35,7 +35,7 @@ void generate_eNB_ulsch_params_NB_IoT(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_
void
generate_eNB_dlsch_params_NB_IoT
(
PHY_VARS_eNB_NB_IoT
*
eNB
,
eNB_rxtx_proc_NB_IoT_t
*
proc
,
nfapi_dl_config_request_pdu_t
*
dl_config_pdu
);
/*Process all the scheduling result from MAC and also common signals.*/
void
phy_procedures_eNB_TX_NB_IoT
(
PHY_VARS_eNB_NB_IoT
*
eNB
,
eNB_rxtx_proc_NB_IoT_t
*
proc
,
int
do_meas
);
void
phy_procedures_eNB_TX_NB_IoT
(
PHY_VARS_eNB_NB_IoT
*
eNB
,
eNB_rxtx_proc_NB_IoT_t
*
proc
,
relaying_type_t
r_type
,
PHY_VARS_RN_NB_IoT
*
rn
,
int
do_meas
,
int
do_pdcch_flag
);
int8_t
find_ue_NB_IoT
(
uint16_t
rnti
,
PHY_VARS_eNB_NB_IoT
*
eNB
);
...
...
openair1/SCHED_NBIOT/phy_procedures_lte_eNb_NB_IoT.c
View file @
9d7568fc
...
...
@@ -56,7 +56,7 @@
//#define DEBUG_PHY_PROC (Already defined in cmake)
//#define DEBUG_ULSCH
//#include "LAYER2/MAC/extern
.h"
#include "LAYER2/MAC/extern_NB_IoT
.h"
#include "LAYER2/MAC/defs.h"
#include "common/utils/LOG/log.h"
#include "common/utils/LOG/vcd_signal_dumper.h"
...
...
@@ -74,8 +74,16 @@
#include "PHY/extern_NB_IoT.h"
#if defined(FLEXRAN_AGENT_SB_IF)
//Agent-related headers
#include "ENB_APP/flexran_agent_extern.h"
#include "ENB_APP/CONTROL_MODULES/MAC/flexran_agent_mac.h"
#include "LAYER2/MAC/flexran_agent_mac_proto.h"
#endif
extern
eNB_MAC_INST_NB_IoT
*
eNB_mac_inst
;
// For NB-IoT branch
extern
eNB_MAC_INST
*
eNB_mac_inst
;
// For NB-IoT branch
/*
...
...
@@ -842,7 +850,7 @@ void generate_eNB_dlsch_params_NB_IoT(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_
LOG_I
(
PHY
,
"Handling the DCI for ue-spec data or MSG4!
\n
"
);
// Temp: Add UE id when Msg4 trigger
eNB
->
ndlsch
[
0
][
0
]
=
(
NB_IoT_eNB_NDLSCH_t
*
)
malloc
(
sizeof
(
NB_IoT_eNB_NDLSCH_t
));
eNB
->
ndlsch
[
0
][
0
]
->
harq_process
=
(
NB_IoT_DL_eNB_HARQ_t
*
)
malloc
(
sizeof
(
NB_IoT_DL_eNB_HARQ_t
));
eNB
->
ndlsch
[
0
][
0
]
->
harq_process
es
=
(
NB_IoT_DL_eNB_HARQ_t
*
)
malloc
(
sizeof
(
NB_IoT_DL_eNB_HARQ_t
));
eNB
->
ndlsch
[
0
][
0
]
->
rnti
=
dl_config_pdu
->
npdcch_pdu
.
npdcch_pdu_rel13
.
rnti
;
//TODO target/SIMU/USER?init_lte/init_lte_eNB we should allocate the ndlsch structures
UE_id
=
find_ue_NB_IoT
(
dl_config_pdu
->
npdcch_pdu
.
npdcch_pdu_rel13
.
rnti
,
eNB
);
...
...
@@ -980,7 +988,7 @@ void npdsch_procedures(PHY_VARS_eNB_NB_IoT *eNB,
{
int
frame
=
proc
->
frame_tx
;
int
subframe
=
proc
->
subframe_tx
;
NB_IoT_DL_eNB_HARQ_t
*
ndlsch_harq
=
ndlsch
->
harq_process
;
NB_IoT_DL_eNB_HARQ_t
*
ndlsch_harq
=
ndlsch
->
harq_process
es
;
int
input_buffer_length
=
ndlsch_harq
->
TBS
/
8
;
// get in byte //the TBS is set in generate_dlsch_param
NB_IoT_DL_FRAME_PARMS
*
fp
=
&
eNB
->
frame_parms_NB_IoT
;
int
G
;
...
...
@@ -1294,8 +1302,8 @@ void fill_rx_indication_NB_IoT(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_IoT_t *
pdu
=
&
eNB
->
UL_INFO
.
RX_NPUSCH
.
rx_pdu_list
[
0
];
pdu
->
rx_ue_information
.
rnti
=
eNB
->
ulsch_NB_IoT
[
0
]
->
rnti
;
pdu
->
rx_indication_rel8
.
length
=
eNB
->
ulsch_NB_IoT
[
0
]
->
harq_process
->
TBS
;
//eNB->ulsch_NB_IoT[0]->harq_process->TBS>>3;
pdu
->
data
=
eNB
->
ulsch_NB_IoT
[
0
]
->
harq_process
->
b
;
pdu
->
rx_indication_rel8
.
length
=
eNB
->
ulsch_NB_IoT
[
0
]
->
harq_process
es
->
TBS
;
//eNB->ulsch_NB_IoT[0]->harq_process->TBS>>3;
pdu
->
data
=
eNB
->
ulsch_NB_IoT
[
0
]
->
harq_process
es
->
b
;
}
else
{
// format 2
...
...
@@ -1356,7 +1364,7 @@ void npusch_procedures(PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_IoT_t *proc)
NB_IoT_eNB_NULSCH_t
*
nulsch
;
NB_IoT_UL_eNB_HARQ_t
*
nulsch_harq
;
nulsch
=
eNB
->
ulsch_NB_IoT
[
0
];
nulsch_harq
=
nulsch
->
harq_process
;
nulsch_harq
=
nulsch
->
harq_process
es
;
const
int
rx_subframe
=
proc
->
subframe_rx
;
const
int
rx_frame
=
proc
->
frame_rx
;
...
...
@@ -1596,7 +1604,7 @@ void common_signal_procedures (PHY_VARS_eNB_NB_IoT *eNB,eNB_rxtx_proc_NB_IoT_t *
//////////////////////////////////////////////////////// to uncomment for LTE, uint8_t *pbch_pdu=&eNB->pbch_pdu[0];
int
subframe
=
proc
->
subframe_tx
;
int
frame
=
proc
->
frame_tx
;
RA_TEMPLATE_NB_IoT
*
RA_template
=
(
RA_TEMPLATE_NB_IoT
*
)
&
eNB_mac_inst
[
eNB
->
Mod_id
].
common_channels
[
eNB
->
CC_id
].
RA_template
[
0
];
RA_TEMPLATE_NB_IoT
*
RA_template
=
(
RA_TEMPLATE_NB_IoT
*
)
&
eNB_mac_inst
[
eNB
->
Mod_id
].
RA_template
[
0
];
//int With_NSSS=0;
int
framerx
=
proc
->
frame_rx
;
int
subframerx
=
proc
->
subframe_rx
;
...
...
openair2/LAYER2/MAC/defs.h
View file @
9d7568fc
...
...
@@ -1108,7 +1108,7 @@ typedef struct eNB_MAC_INST_s {
time_stats_t
schedule_ra
;
/// processing time of eNB ULSCH scheduler
time_stats_t
schedule_ulsch
;
/// processing time of eNB DCI generation
/// processing time of eNB DCI generation
s
time_stats_t
fill_DLSCH_dci
;
/// processing time of eNB MAC preprocessor
time_stats_t
schedule_dlsch_preprocessor
;
...
...
@@ -1118,7 +1118,7 @@ typedef struct eNB_MAC_INST_s {
time_stats_t
schedule_mch
;
/// processing time of eNB ULSCH reception
time_stats_t
rx_ulsch_sdu
;
// include rlc_data_ind
}
eNB_MAC_INST
;
}
eNB_MAC_INST
_nb_iot
;
/*
* UE part
...
...
openair2/LAYER2/MAC/extern_NB_IoT.h
View file @
9d7568fc
...
...
@@ -53,7 +53,6 @@ extern EMULATION_VARS *Emul_vars;
//NB-IoT---------------------------------
extern
eNB_MAC_INST_NB_IoT
*
mac_inst
;
...
...
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