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
a7feca12
Commit
a7feca12
authored
Jul 21, 2020
by
Aniq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added pack_dl_tti component functions [DUMMY TAG]
parent
1c0fbee2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
264 additions
and
203 deletions
+264
-203
nfapi/README.md
nfapi/README.md
+2
-1
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
+2
-0
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
+260
-202
No files found.
nfapi/README.md
View file @
a7feca12
...
@@ -26,7 +26,7 @@ sudo <oai_codebase>/cmake_targets/ran_build/build/nr-softmodem -O <oai_codebase>
...
@@ -26,7 +26,7 @@ sudo <oai_codebase>/cmake_targets/ran_build/build/nr-softmodem -O <oai_codebase>
### Task-A [packing]
### Task-A [packing]
*
Modify
`nfapi_p7_message_pack()`
in
`nfapi_p7.c`
*
Modify
`nfapi_p7_message_pack()`
in
`nfapi_p7.c`
*
In the switch case, change the labels as well as the pack functions:
*
In the switch case, change the labels as well as the pack functions:
*
`pack_dl_config_request`
becomes
`pack_dl_tti_request`
*
`pack_dl_config_request`
becomes
`pack_dl_tti_request`
[x]
*
`pack_ul_config_request`
becomes
`pack_ul_tti_request`
*
`pack_ul_config_request`
becomes
`pack_ul_tti_request`
*
`pack_hi_dci0_request`
becomes
`pack_ul_dci_request`
*
`pack_hi_dci0_request`
becomes
`pack_ul_dci_request`
*
`pack_tx_request`
becomes
`pack_tx_data_request`
*
`pack_tx_request`
becomes
`pack_tx_data_request`
...
@@ -41,6 +41,7 @@ sudo <oai_codebase>/cmake_targets/ran_build/build/nr-softmodem -O <oai_codebase>
...
@@ -41,6 +41,7 @@ sudo <oai_codebase>/cmake_targets/ran_build/build/nr-softmodem -O <oai_codebase>
*
Also check the function
`vnf_p7_pack_and_send_p7_msg()`
in
`vnf_p7.c`
for upgrade.
*
Also check the function
`vnf_p7_pack_and_send_p7_msg()`
in
`vnf_p7.c`
for upgrade.
*
Write the
`dl_tti`
equivalent for
`oai_nfapi_dl_config_req`
in
`nfapi_vnf.c`
and other such functions.
*
Write the
`dl_tti`
equivalent for
`oai_nfapi_dl_config_req`
in
`nfapi_vnf.c`
and other such functions.
*
Check if
`nr_schedule_response()`
needs to be upgraded
*
Check if
`nr_schedule_response()`
needs to be upgraded
*
Resolve the hard-coded areas in source code.
### Testing
### Testing
*
Test by running VNF on a terminal and PNF in rfsim parallely
*
Test by running VNF on a terminal and PNF in rfsim parallely
...
...
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
View file @
a7feca12
...
@@ -24,6 +24,8 @@
...
@@ -24,6 +24,8 @@
#define NFAPI_MAX_NUM_GROUPS 8
#define NFAPI_MAX_NUM_GROUPS 8
#define NFAPI_MAX_NUM_CB 8
#define NFAPI_MAX_NUM_CB 8
#define DUMMY_TAG 0x55555
// Extension to the generic structures for single tlv values
// Extension to the generic structures for single tlv values
...
...
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
View file @
a7feca12
...
@@ -227,6 +227,151 @@ static uint8_t pack_tpm_value(nfapi_dl_config_dci_dl_tpm_t* value, uint8_t **ppW
...
@@ -227,6 +227,151 @@ static uint8_t pack_tpm_value(nfapi_dl_config_dci_dl_tpm_t* value, uint8_t **ppW
}
}
static
uint8_t
pack_dl_tti_csi_rs_pdu_rel15_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_dl_tti_csi_rs_pdu_rel15_t
*
value
=
(
nfapi_nr_dl_tti_csi_rs_pdu_rel15_t
*
)
tlv
;
return
(
push16
(
value
->
bwp_size
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
bwp_start
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
subcarrier_spacing
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
cyclic_prefix
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
start_rb
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
nr_of_rbs
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
csi_type
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
row
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
freq_domain
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
symb_l0
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
symb_l1
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
cdm_type
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
freq_density
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
scramb_id
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
power_control_offset
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
power_control_offset_ss
,
ppWritePackedMsg
,
end
)
);
}
static
uint8_t
pack_dl_tti_pdcch_pdu_rel15_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_dl_tti_pdcch_pdu_rel15_t
*
value
=
(
nfapi_nr_dl_tti_pdcch_pdu_rel15_t
*
)
tlv
;
// TODO: resolve the packaging of array (currently sending a single element)
return
(
push16
(
value
->
BWPSize
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
BWPStart
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
SubcarrierSpacing
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
CyclicPrefix
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
StartSymbolIndex
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
DurationSymbols
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
FreqDomainResource
,
6
,
1
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
CceRegMappingType
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
RegBundleSize
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
InterleaverSize
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
CoreSetType
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
ShiftIndex
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
precoderGranularity
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
numDlDci
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
RNTI
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
ScramblingId
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
ScramblingRNTI
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
CceIndex
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
AggregationLevel
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
beta_PDCCH_1_0
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
powerControlOffsetSS
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
PayloadSizeBits
,
MAX_DCI_CORESET
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
Payload
[
0
],
MAX_DCI_CORESET
*
DCI_PAYLOAD_BYTE_LEN
,
1
,
ppWritePackedMsg
,
end
)
);
}
static
uint8_t
pack_dl_tti_pdsch_pdu_rel15_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_dl_tti_pdsch_pdu_rel15_t
*
value
=
(
nfapi_nr_dl_tti_pdsch_pdu_rel15_t
*
)
tlv
;
// TODO: resolve the packaging of array (currently sending a single element)
return
(
push16
(
value
->
pduBitmap
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
rnti
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
pduIndex
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
BWPSize
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
BWPStart
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
SubcarrierSpacing
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
CyclicPrefix
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
NrOfCodewords
,
ppWritePackedMsg
,
end
)
&&
pusharray16
(
value
->
targetCodeRate
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
qamModOrder
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
mcsIndex
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
mcsTable
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
rvIndex
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
pusharray32
(
value
->
TBSize
,
2
,
1
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
dataScramblingId
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
nrOfLayers
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
transmissionScheme
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
refPoint
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
dlDmrsSymbPos
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
dmrsConfigType
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
dlDmrsScramblingId
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
SCID
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
numDmrsCdmGrpsNoData
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
dmrsPorts
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
resourceAlloc
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
rbBitmap
,
36
,
1
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
rbStart
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
rbSize
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
VRBtoPRBMapping
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
StartSymbolIndex
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
NrOfSymbols
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
PTRSPortIndex
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
PTRSTimeDensity
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
PTRSFreqDensity
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
PTRSReOffset
,
ppWritePackedMsg
,
end
)
);
}
static
uint8_t
pack_dl_tti_ssb_pdu_rel15_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_dl_tti_ssb_pdu_rel15_t
*
value
=
(
nfapi_nr_dl_tti_ssb_pdu_rel15_t
*
)
tlv
;
return
(
push16
(
value
->
PhysCellId
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
BetaPss
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
SsbBlockIndex
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
SsbSubcarrierOffset
,
ppWritePackedMsg
,
end
)
&&
push16
(
value
->
ssbOffsetPointA
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
bchPayloadFlag
,
ppWritePackedMsg
,
end
)
&&
push32
(
value
->
bchPayload
,
ppWritePackedMsg
,
end
)
// TODO: pack precoding_and_beamforming too
);
}
static
uint8_t
pack_dl_config_dci_dl_pdu_rel13_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
static
uint8_t
pack_dl_config_dci_dl_pdu_rel13_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
{
nfapi_dl_config_dci_dl_pdu_rel13_t
*
value
=
(
nfapi_dl_config_dci_dl_pdu_rel13_t
*
)
tlv
;
nfapi_dl_config_dci_dl_pdu_rel13_t
*
value
=
(
nfapi_dl_config_dci_dl_pdu_rel13_t
*
)
tlv
;
...
@@ -553,6 +698,121 @@ static uint8_t pack_dl_config_ndlsch_pdu_rel13_value(void* tlv, uint8_t **ppWrit
...
@@ -553,6 +698,121 @@ static uint8_t pack_dl_config_ndlsch_pdu_rel13_value(void* tlv, uint8_t **ppWrit
push8
(
value
->
nrs_antenna_ports_assumed_by_the_ue
,
ppWritePackedMsg
,
end
));
push8
(
value
->
nrs_antenna_ports_assumed_by_the_ue
,
ppWritePackedMsg
,
end
));
}
}
static
uint8_t
pack_dl_tti_request_body_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_dl_tti_request_body_t
*
value
=
(
nfapi_nr_dl_tti_request_body_t
*
)
tlv
;
//NFAPI_TRACE(NFAPI_TRACE_ERROR, "%s() dci:%u pdu:%u pdsch:%u rnti:%u pcfich:%u\n", __FUNCTION__, value->number_dci, value->number_pdu, value->number_pdsch_rnti, value->transmission_power_pcfich);
if
(
!
(
push8
(
value
->
nGroup
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
nPDUs
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
nUe
,
ppWritePackedMsg
,
end
)
&&
push8
(
value
->
PduIdx
,
ppWritePackedMsg
,
end
)))
{
return
0
;
}
uint16_t
i
=
0
;
uint16_t
total_number_of_pdus
=
value
->
nPDUs
;
for
(;
i
<
total_number_of_pdus
;
++
i
)
{
nfapi_nr_dl_tti_request_pdu_t
*
pdu
=
&
(
value
->
dl_tti_pdu_list
[
i
]);
if
(
push8
(
pdu
->
PDUType
,
ppWritePackedMsg
,
end
)
==
0
)
return
0
;
// Put a 0 size in and then determine the size after the pdu
// has been writen and write the calculated size
uint8_t
*
pWritePackedMsgPduSize
=
*
ppWritePackedMsg
;
pdu
->
PDUSize
=
0
;
if
(
push8
(
pdu
->
PDUSize
,
ppWritePackedMsg
,
end
)
==
0
)
return
0
;
// TODO: cannot find appropriate TAGs, so using DUMMY_TAG for all the tlvs here
switch
(
pdu
->
PDUType
)
{
case
NFAPI_NR_DL_TTI_CSI_RS_PDU_TYPE
:
{
if
(
!
(
pack_tlv
(
DUMMY_TAG
,
&
pdu
->
csi_rs_pdu
.
csi_rs_pdu_rel15
,
ppWritePackedMsg
,
end
,
&
pack_dl_tti_csi_rs_pdu_rel15_value
)
)
)
{
return
0
;
}
}
break
;
case
NFAPI_NR_DL_TTI_PDCCH_PDU_TYPE
:
{
if
(
!
(
pack_tlv
(
DUMMY_TAG
,
&
pdu
->
pdcch_pdu
.
pdcch_pdu_rel15
,
ppWritePackedMsg
,
end
,
&
pack_dl_tti_pdcch_pdu_rel15_value
)
)
)
{
return
0
;
}
}
break
;
case
NFAPI_NR_DL_TTI_PDSCH_PDU_TYPE
:
{
if
(
!
(
pack_tlv
(
DUMMY_TAG
,
&
pdu
->
pdsch_pdu
.
pdsch_pdu_rel15
,
ppWritePackedMsg
,
end
,
&
pack_dl_tti_pdsch_pdu_rel15_value
)
)
)
{
return
0
;
}
}
break
;
case
NFAPI_NR_DL_TTI_SSB_PDU_TYPE
:
{
if
(
!
(
pack_tlv
(
DUMMY_TAG
,
&
pdu
->
ssb_pdu
.
ssb_pdu_rel15
,
ppWritePackedMsg
,
end
,
&
pack_dl_tti_ssb_pdu_rel15_value
)
)
)
{
return
0
;
}
}
break
;
default:
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"FIXME : Invalid pdu type %d
\n
"
,
pdu
->
PDUType
);
}
break
;
}
// add 1 for the pdu_type. The delta will include the pdu_size
pdu
->
PDUSize
=
1
+
(
*
ppWritePackedMsg
-
pWritePackedMsgPduSize
);
push8
(
pdu
->
PDUSize
,
&
pWritePackedMsgPduSize
,
end
);
}
return
1
;
}
static
uint8_t
pack_dl_config_request_body_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
static
uint8_t
pack_dl_config_request_body_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
{
nfapi_dl_config_request_body_t
*
value
=
(
nfapi_dl_config_request_body_t
*
)
tlv
;
nfapi_dl_config_request_body_t
*
value
=
(
nfapi_dl_config_request_body_t
*
)
tlv
;
...
@@ -3306,208 +3566,6 @@ static uint8_t unpack_dl_config_ndlsch_pdu_rel13_value(void *tlv, uint8_t **ppRe
...
@@ -3306,208 +3566,6 @@ static uint8_t unpack_dl_config_ndlsch_pdu_rel13_value(void *tlv, uint8_t **ppRe
}
}
static
uint8_t
unpack_dl_tti_request_body_value
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_p7_codec_config_t
*
config
)
{
nfapi_nr_dl_tti_request_body_t
*
value
=
(
nfapi_nr_dl_tti_request_body_t
*
)
tlv
;
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
nGroup
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
nPDUs
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
nUe
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
PduIdx
,
end
)))
return
0
;
if
(
value
->
number_pdu
>
NFAPI_DL_CONFIG_MAX_PDU
)
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s number of dl config pdu's exceed maxium (count:%d max:%d)
\n
"
,
__FUNCTION__
,
value
->
number_pdu
,
NFAPI_DL_CONFIG_MAX_PDU
);
return
0
;
}
if
(
value
->
number_pdu
)
{
value
->
dl_config_pdu_list
=
(
nfapi_dl_config_request_pdu_t
*
)
nfapi_p7_allocate
(
sizeof
(
nfapi_dl_config_request_pdu_t
)
*
value
->
number_pdu
,
config
);
if
(
value
->
dl_config_pdu_list
==
NULL
)
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s failed to allocate dl config pdu list (count:%d)
\n
"
,
__FUNCTION__
,
value
->
number_pdu
);
return
0
;
}
}
else
{
value
->
dl_config_pdu_list
=
0
;
}
uint16_t
i
;
uint16_t
total_number_of_pdus
=
value
->
number_pdu
;
for
(
i
=
0
;
i
<
total_number_of_pdus
;
++
i
)
{
nfapi_dl_config_request_pdu_t
*
pdu
=
&
(
value
->
dl_config_pdu_list
[
i
]);
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
pdu
->
pdu_type
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pdu
->
pdu_size
,
end
)))
return
0
;
uint8_t
*
packedPduEnd
=
(
*
ppReadPackedMsg
)
+
pdu
->
pdu_size
-
2
;
if
(
packedPduEnd
>
end
)
{
// pdu end of beyond buffer end
return
0
;
}
switch
(
pdu
->
pdu_type
)
{
case
NFAPI_DL_CONFIG_DCI_DL_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL8_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel8
,
&
unpack_dl_config_dci_dl_pdu_rel8_value
},
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL9_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel9
,
&
unpack_dl_config_dci_dl_pdu_rel9_value
},
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL10_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel10
,
&
unpack_dl_config_dci_dl_pdu_rel10_value
},
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL11_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel11
,
&
unpack_dl_config_dci_dl_pdu_rel11_value
},
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL12_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel12
,
&
unpack_dl_config_dci_dl_pdu_rel12_value
},
{
NFAPI_DL_CONFIG_REQUEST_DCI_DL_PDU_REL13_TAG
,
&
pdu
->
dci_dl_pdu
.
dci_dl_pdu_rel13
,
&
unpack_dl_config_dci_dl_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_BCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_BCH_PDU_REL8_TAG
,
&
pdu
->
bch_pdu
.
bch_pdu_rel8
,
&
unpack_dl_config_bch_pdu_rel8_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_MCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_MCH_PDU_REL8_TAG
,
&
pdu
->
mch_pdu
.
mch_pdu_rel8
,
&
unpack_dl_config_mch_pdu_rel8_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_DLSCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL8_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel8
,
&
unpack_dl_config_dlsch_pdu_rel8_value
},
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL9_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel9
,
&
unpack_dl_config_dlsch_pdu_rel9_value
},
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL10_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel10
,
&
unpack_dl_config_dlsch_pdu_rel10_value
},
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL11_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel11
,
&
unpack_dl_config_dlsch_pdu_rel11_value
},
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL12_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel12
,
&
unpack_dl_config_dlsch_pdu_rel12_value
},
{
NFAPI_DL_CONFIG_REQUEST_DLSCH_PDU_REL13_TAG
,
&
pdu
->
dlsch_pdu
.
dlsch_pdu_rel13
,
&
unpack_dl_config_dlsch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_PCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_PCH_PDU_REL8_TAG
,
&
pdu
->
pch_pdu
.
pch_pdu_rel8
,
&
unpack_dl_config_pch_pdu_rel8_value
},
{
NFAPI_DL_CONFIG_REQUEST_PCH_PDU_REL13_TAG
,
&
pdu
->
pch_pdu
.
pch_pdu_rel13
,
&
unpack_dl_config_pch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_PRS_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_PRS_PDU_REL9_TAG
,
&
pdu
->
prs_pdu
.
prs_pdu_rel9
,
&
unpack_dl_config_prs_pdu_rel9_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_CSI_RS_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_CSI_RS_PDU_REL10_TAG
,
&
pdu
->
csi_rs_pdu
.
csi_rs_pdu_rel10
,
&
unpack_dl_config_csi_rs_pdu_rel10_value
},
{
NFAPI_DL_CONFIG_REQUEST_CSI_RS_PDU_REL13_TAG
,
&
pdu
->
csi_rs_pdu
.
csi_rs_pdu_rel13
,
&
unpack_dl_config_csi_rs_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_EPDCCH_DL_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL8_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel8
,
&
unpack_dl_config_dci_dl_pdu_rel8_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL9_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel9
,
&
unpack_dl_config_dci_dl_pdu_rel9_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL10_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel10
,
&
unpack_dl_config_dci_dl_pdu_rel10_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL11_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel11
,
&
unpack_dl_config_dci_dl_pdu_rel11_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL12_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel12
,
&
unpack_dl_config_dci_dl_pdu_rel12_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PDU_REL13_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_pdu_rel13
,
&
unpack_dl_config_dci_dl_pdu_rel13_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PARAM_REL11_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_params_rel11
,
&
unpack_dl_config_epdcch_params_rel11_value
},
{
NFAPI_DL_CONFIG_REQUEST_EPDCCH_PARAM_REL13_TAG
,
&
pdu
->
epdcch_pdu
.
epdcch_params_rel13
,
&
unpack_dl_config_epdcch_params_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_MPDCCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_MPDCCH_PDU_REL13_TAG
,
&
pdu
->
mpdcch_pdu
.
mpdcch_pdu_rel13
,
&
unpack_dl_config_mpdcch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_NBCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_NBCH_PDU_REL13_TAG
,
&
pdu
->
nbch_pdu
.
nbch_pdu_rel13
,
&
unpack_dl_config_nbch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_NPDCCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_NPDCCH_PDU_REL13_TAG
,
&
pdu
->
npdcch_pdu
.
npdcch_pdu_rel13
,
&
unpack_dl_config_npdcch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
case
NFAPI_DL_CONFIG_NDLSCH_PDU_TYPE
:
{
unpack_tlv_t
unpack_fns
[]
=
{
{
NFAPI_DL_CONFIG_REQUEST_NDLSCH_PDU_REL13_TAG
,
&
pdu
->
ndlsch_pdu
.
ndlsch_pdu_rel13
,
&
unpack_dl_config_ndlsch_pdu_rel13_value
},
};
unpack_tlv_list
(
unpack_fns
,
sizeof
(
unpack_fns
)
/
sizeof
(
unpack_tlv_t
),
ppReadPackedMsg
,
packedPduEnd
,
0
,
0
);
}
break
;
default:
// Need to log an error
break
;
}
}
return
1
;
}
static
uint8_t
unpack_dl_config_request_body_value
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_p7_codec_config_t
*
config
)
static
uint8_t
unpack_dl_config_request_body_value
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_p7_codec_config_t
*
config
)
{
{
nfapi_dl_config_request_body_t
*
value
=
(
nfapi_dl_config_request_body_t
*
)
tlv
;
nfapi_dl_config_request_body_t
*
value
=
(
nfapi_dl_config_request_body_t
*
)
tlv
;
...
...
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