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
Michael Black
OpenXG-RAN
Commits
524b9e8b
Commit
524b9e8b
authored
Jul 27, 2020
by
Aniq
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
UL_TTI [DONE]
parent
ac1d74cb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
254 additions
and
26 deletions
+254
-26
nfapi/README.md
nfapi/README.md
+13
-8
nfapi/oai_integration/nfapi_vnf.c
nfapi/oai_integration/nfapi_vnf.c
+20
-0
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
+1
-0
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
+211
-18
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
+9
-0
No files found.
nfapi/README.md
View file @
524b9e8b
...
...
@@ -26,37 +26,42 @@ sudo <oai_codebase>/cmake_targets/ran_build/build/nr-softmodem -O <oai_codebase>
### Task-A [packing]
*
Modify
`nfapi_p7_message_pack()`
in
`nfapi_p7.c`
*
In the switch case, change the labels as well as the pack functions:
*
`pack_dl_config_request`
becomes
`pack_dl_tti_request`
[x]
*
`pack_ul_config_request`
becomes
`pack_ul_tti_request`
*
`pack_dl_config_request`
becomes
`pack_dl_tti_request`
[x]
*
`pack_ul_config_request`
becomes
`pack_ul_tti_request`
[x]
*
`pack_hi_dci0_request`
becomes
`pack_ul_dci_request`
*
`pack_tx_request`
becomes
`pack_tx_data_request`
### Task-B [unpacking]
*
Modify
`nfapi_p7_message_unpack()`
in
`nfapi_p7.c`
*
`unpack_dl_tti_request`
[x]
*
`unpack_ul_tti_request`
*
`unpack_dl_tti_request`
[x]
*
`unpack_ul_tti_request`
[x]
*
`unpack_ul_dci_request`
*
`unpack_tx_data_request`
*
Similarly change all the
`unpack`
functions within the switch-case block.
*
Modify the behaviour of
`check_unpack_length()`
for the new
`TAGS`
*
this is where the unpack functions are called
*
`dl_tti_request`
[x]
*
`ul_tti_request`
*
`dl_tti_request`
[x]
*
`ul_tti_request`
[x]
*
`ul_dci_request`
*
`tx_data_request`
### Task-C
*
Write the
`ul_tti`
alternative for
`nfapi_vnf_p7_ul_config_req()`
in
`vnf_p7_interface.c`
and other such functions.
*
`dl_tti`
is present as
`nr_dl_config`
[x]
*
`ul_tti`
*
`ul_tti`
[x]
*
`ul_dci`
*
`tx_data`
*
Resolve the hard-coded areas in source code. [
`HIGH-PRIORITY`
] [x]
*
Write the
`ul_tti`
equivalent for
`oai_nfapi_dl_config_req`
in
`nfapi_vnf.c`
and other such functions.
*
`dl_tti`
is present as
`nr_dl_config`
[x]
*
`ul_tti`
*
`ul_tti`
is present as
`oai_nfapi_ul_tti_req()`
[x]
*
`ul_dci`
*
`tx_data`
*
Check if
`nr_schedule_response()`
needs to be upgraded [x]
*
only a couple of
`NFAPI_MODE!=VNF_MODE`
checks
*can be added*
before calling the functions to handle PDUs
*
we need to add
`NFAPI_MODE!=MONOLITHIC`
checks before
`oai_nfapi_dl_config_req`
and other such fns [x]
...
...
nfapi/oai_integration/nfapi_vnf.c
View file @
524b9e8b
...
...
@@ -1354,6 +1354,26 @@ int oai_nfapi_hi_dci0_req(nfapi_hi_dci0_request_t *hi_dci0_req) {
return
retval
;
}
int
oai_nfapi_ul_tti_req
(
nfapi_nr_ul_tti_request_t
*
ul_tti_req
)
{
nfapi_vnf_p7_config_t
*
p7_config
=
vnf
.
p7_vnfs
[
0
].
config
;
ul_tti_req
->
header
.
phy_id
=
1
;
// DJP HACK TODO FIXME - need to pass this around!!!!
ul_tti_req
->
header
.
message_id
=
NFAPI_NR_PHY_MSG_TYPE_UL_TTI_REQUEST
;
int
retval
=
nfapi_vnf_p7_ul_tti_req
(
p7_config
,
ul_tti_req
);
if
(
retval
!=
0
)
{
LOG_E
(
PHY
,
"%s() Problem sending retval:%d
\n
"
,
__FUNCTION__
,
retval
);
}
else
{
// Reset number of PDUs so that it is not resent
ul_tti_req
->
n_pdus
=
0
;
ul_tti_req
->
n_group
=
0
;
ul_tti_req
->
n_ulcch
=
0
;
ul_tti_req
->
n_ulsch
=
0
;
}
return
retval
;
}
int
oai_nfapi_ul_config_req
(
nfapi_ul_config_request_t
*
ul_config_req
)
{
nfapi_vnf_p7_config_t
*
p7_config
=
vnf
.
p7_vnfs
[
0
].
config
;
ul_config_req
->
header
.
phy_id
=
1
;
// DJP HACK TODO FIXME - need to pass this around!!!!
...
...
nfapi/open-nFAPI/nfapi/public_inc/nfapi_nr_interface_scf.h
View file @
524b9e8b
...
...
@@ -1322,6 +1322,7 @@ typedef struct
}
nfapi_nr_ul_tti_request_number_of_groups_t
;
typedef
struct
{
nfapi_p7_message_header_t
header
;
uint16_t
SFN
;
//0->1023
uint16_t
Slot
;
//0->319
uint8_t
n_pdus
;
//Number of PDUs that are included in this message. All PDUs in the message are numbered in order. Value 0 -> 255
...
...
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
View file @
524b9e8b
...
...
@@ -1249,6 +1249,7 @@ static uint8_t pack_ul_tti_request_srs_pdu(nfapi_nr_srs_pdu_t* srs_pdu, uint8_t
);
}
static
uint8_t
pack_ul_config_request_ulsch_pdu
(
nfapi_ul_config_ulsch_pdu
*
ulsch_pdu
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
return
(
pack_tlv
(
NFAPI_UL_CONFIG_REQUEST_ULSCH_PDU_REL8_TAG
,
&
ulsch_pdu
->
ulsch_pdu_rel8
,
ppWritePackedMsg
,
end
,
&
pack_ul_config_request_ulsch_rel8_value
)
&&
...
...
@@ -1651,6 +1652,14 @@ static uint8_t pack_ul_tti_pdu_list_value(void* tlv, uint8_t **ppWritePackedMsg,
return
1
;
}
static
uint8_t
pack_ul_tti_groups_list_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_ul_tti_request_number_of_groups_t
*
value
=
(
nfapi_nr_ul_tti_request_number_of_groups_t
*
)
tlv
;
return
(
push8
(
value
->
n_ue
,
ppWritePackedMsg
,
end
)
&&
pusharray8
(
value
->
ue_list
,
NFAPI_MAX_NUM_UL_UE_PER_GROUP
,
value
->
n_ue
,
ppWritePackedMsg
,
end
)
);
}
static
uint8_t
pack_ul_config_request_body_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
...
...
@@ -1842,20 +1851,17 @@ static uint8_t pack_ul_tti_request(void *msg, uint8_t **ppWritePackedMsg, uint8_
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
n_pdus
;
i
++
)
{
// if(!pack_tlv(NFAPI_NR_UL_TTI_PDU_LIST_REL_IISC, &pNfapiMsg->pdus_list, ppWritePackedMsg, end, &pack_ul_tti_pdu_list_value))
// return 0;
if
(
!
pack_ul_tti_pdu_list_value
(
&
pNfapiMsg
->
pdus_list
[
i
],
ppWritePackedMsg
,
end
))
return
0
;
}
#if 0
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
n_group
;
i
++
)
{
if(!pack_
tlv(NFAPI_NR_UL_TTI_GROUP_LIST_REL_IISC, &pNfapiMsg->groups_list, ppWritePackedMsg, end, &pack_ul_tti_groups_list_value
))
if
(
!
pack_
ul_tti_groups_list_value
(
&
pNfapiMsg
->
groups_list
[
i
],
ppWritePackedMsg
,
end
))
return
0
;
}
#endif
return
1
;
}
...
...
@@ -4476,18 +4482,194 @@ static uint8_t unpack_ul_tti_request_prach_pdu(void *tlv, uint8_t **ppReadPacked
{
nfapi_nr_prach_pdu_t
*
prach_pdu
=
(
nfapi_nr_prach_pdu_t
*
)
tlv
;
return
(
pull16
(
ppReadPackedMsg
,
&
prach_pdu
->
phys_cell_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
num_prach_ocas
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
prach_format
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
num_ra
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
prach_start_symbol
,
end
)
&&
pull16
(
ppReadPackedMsg
,
prach_pdu
->
num_cs
,
end
)
return
(
pull16
(
ppReadPackedMsg
,
&
prach_pdu
->
phys_cell_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
num_prach_ocas
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
prach_format
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
num_ra
,
end
)
&&
pull8
(
ppReadPackedMsg
,
prach_pdu
->
prach_start_symbol
,
end
)
&&
pull16
(
ppReadPackedMsg
,
prach_pdu
->
num_cs
,
end
)
// TODO: ignoring beamforming tlv for now
);
}
static
uint8_t
unpack_ul_tti_request_pucch_pdu
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_pucch_pdu_t
*
pucch_pdu
=
(
nfapi_nr_pucch_pdu_t
*
)
tlv
;
return
(
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
rnti
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
pucch_pdu
->
handle
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
bwp_size
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
bwp_start
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
subcarrier_spacing
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
cyclic_prefix
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
format_type
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
multi_slot_tx_indicator
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
prb_start
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
prb_size
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
start_symbol_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
nr_of_symbols
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
freq_hop_flag
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
second_hop_prb
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
group_hop_flag
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
sequence_hop_flag
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
hopping_id
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
initial_cyclic_shift
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
data_scrambling_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
time_domain_occ_idx
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
pre_dft_occ_idx
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
pre_dft_occ_len
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
add_dmrs_flag
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
dmrs_scrambling_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
dmrs_cyclic_shift
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
sr_flag
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pucch_pdu
->
bit_len_harq
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
bit_len_csi_part1
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pucch_pdu
->
bit_len_csi_part2
,
end
)
// TODO: ignoring beamforming tlv for now
);
}
static
uint8_t
unpack_ul_tti_request_pusch_pdu
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_pusch_pdu_t
*
pusch_pdu
=
(
nfapi_nr_pusch_pdu_t
*
)
tlv
;
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
pdu_bit_map
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
rnti
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
pusch_pdu
->
handle
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
bwp_size
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
bwp_start
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
subcarrier_spacing
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
cyclic_prefix
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
target_code_rate
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
qam_mod_order
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
mcs_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
mcs_table
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
transform_precoding
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
data_scrambling_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
nrOfLayers
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
ul_dmrs_symb_pos
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
dmrs_config_type
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
ul_dmrs_scrambling_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
scid
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
num_dmrs_cdm_grps_no_data
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
dmrs_ports
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
resource_alloc
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
&
pusch_pdu
->
resource_alloc
,
36
,
36
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
dmrs_ports
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
rb_start
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
rb_size
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
vrb_to_prb_mapping
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
frequency_hopping
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
tx_direct_current_location
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
uplink_frequency_shift_7p5khz
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
start_symbol_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
nr_of_symbols
,
end
)
// TODO: ignoring beamforming tlv for now
))
return
0
;
//Pack Optional Data only included if indicated in pduBitmap
switch
(
pusch_pdu
->
pdu_bit_map
){
case
PUSCH_PDU_BITMAP_PUSCH_DATA
:
{
// pack optional TLVs
return
(
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_data
.
rv_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_data
.
harq_process_id
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_data
.
tb_size
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_data
.
num_cb
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_data
.
cb_present_and_position
,
1
,
1
,
end
)
);
}
break
;
case
PUSCH_PDU_BITMAP_PUSCH_UCI
:
{
return
(
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
harq_ack_bit_length
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
csi_part1_bit_length
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
csi_part2_bit_length
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
alpha_scaling
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
beta_offset_harq_ack
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
beta_offset_csi1
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_uci
.
beta_offset_csi2
,
end
)
);
}
break
;
case
PUSCH_PDU_BITMAP_PUSCH_PTRS
:
{
return
(
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_ptrs
.
num_ptrs_ports
,
end
)
&&
pullarray32
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_ptrs
.
ptrs_ports_list
,
pusch_pdu
->
pusch_ptrs
.
num_ptrs_ports
,
pusch_pdu
->
pusch_ptrs
.
num_ptrs_ports
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_ptrs
.
ptrs_time_density
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_ptrs
.
ptrs_freq_density
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
pusch_ptrs
.
ul_ptrs_power
,
end
)
);
}
break
;
case
PUSCH_PDU_BITMAP_DFTS_OFDM
:
{
return
(
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
dfts_ofdm
.
low_papr_group_number
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pusch_pdu
->
dfts_ofdm
.
low_papr_sequence_number
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
dfts_ofdm
.
ul_ptrs_sample_density
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
pusch_pdu
->
dfts_ofdm
.
ul_ptrs_time_density_transform_precoding
,
end
)
);
}
break
;
default:
{
NFAPI_TRACE
(
NFAPI_TRACE_INFO
,
"Invalid pdu bitmap %d
\n
"
,
pusch_pdu
->
pdu_bit_map
);
}
}
return
1
;
}
static
uint8_t
unpack_ul_tti_request_srs_pdu
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_srs_pdu_t
*
srs_pdu
=
(
nfapi_nr_srs_pdu_t
*
)
tlv
;
return
(
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
rnti
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
srs_pdu
->
handle
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
bwp_size
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
bwp_start
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
subcarrier_spacing
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
cyclic_prefix
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
num_ant_ports
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
num_symbols
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
num_repetitions
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
time_start_position
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
config_index
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
sequence_id
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
bandwidth_index
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
comb_size
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
comb_offset
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
cyclic_shift
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
frequency_position
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
frequency_shift
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
frequency_hopping
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
group_or_sequence_hopping
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
srs_pdu
->
resource_type
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
t_srs
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
srs_pdu
->
t_offset
,
end
)
// TODO: ignoring beamforming tlv for now
);
}
static
uint8_t
unpack_ul_tti_pdu_list_value
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
)
...
...
@@ -4509,26 +4691,28 @@ static uint8_t unpack_ul_tti_pdu_list_value(uint8_t **ppReadPackedMsg, uint8_t *
return
0
;
}
break
;
#if 0
case
NFAPI_NR_UL_CONFIG_PUCCH_PDU_TYPE
:
{
if
(
!
unpack_ul_tti_request_pucch_pdu
(
&
pNfapiMsg
->
pucch_pdu
,
ppReadPackedMsg
,
end
))
return
0
;
}
break
;
case
NFAPI_NR_UL_CONFIG_PUSCH_PDU_TYPE
:
{
if
(
!
unpack_ul_tti_request_pusch_pdu
(
&
pNfapiMsg
->
pusch_pdu
,
ppReadPackedMsg
,
end
))
return
0
;
}
break
;
case
NFAPI_NR_UL_CONFIG_SRS_PDU_TYPE
:
{
if
(
!
unpack_ul_tti_request_srs_pdu
(
&
pNfapiMsg
->
srs_pdu
,
ppReadPackedMsg
,
end
))
return
0
;
}
break
;
#endif
default:
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"FIXME : Invalid UL_TTI pdu type %d
\n
"
,
pNfapiMsg
->
pdu_type
);
...
...
@@ -4542,6 +4726,15 @@ static uint8_t unpack_ul_tti_pdu_list_value(uint8_t **ppReadPackedMsg, uint8_t *
}
static
uint8_t
unpack_ul_tti_groups_list_value
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
)
{
nfapi_nr_ul_tti_request_number_of_groups_t
*
pNfapiMsg
=
(
nfapi_nr_ul_tti_request_number_of_groups_t
*
)
msg
;
return
(
pull8
(
ppReadPackedMsg
,
&
pNfapiMsg
->
n_ue
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
&
pNfapiMsg
->
ue_list
,
NFAPI_MAX_NUM_UL_UE_PER_GROUP
,
pNfapiMsg
->
n_ue
,
end
)
);
}
static
uint8_t
unpack_ul_tti_request
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
,
nfapi_p7_codec_config_t
*
config
)
{
nfapi_nr_ul_tti_request_t
*
pNfapiMsg
=
(
nfapi_nr_ul_tti_request_t
*
)
msg
;
...
...
@@ -4561,13 +4754,13 @@ static uint8_t unpack_ul_tti_request(uint8_t **ppReadPackedMsg, uint8_t *end, vo
if
(
!
unpack_ul_tti_pdu_list_value
(
ppReadPackedMsg
,
end
,
&
pNfapiMsg
->
pdus_list
[
i
]))
return
0
;
}
#if 0
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
n_group
;
i
++
)
{
if (!unpack_ul_tti_groups_list_value(ppReadPackedMsg, end, &pNfapiMsg->groups_list[i]
, NULL
))
if
(
!
unpack_ul_tti_groups_list_value
(
ppReadPackedMsg
,
end
,
&
pNfapiMsg
->
groups_list
[
i
]))
return
0
;
}
#endif
return
1
;
}
...
...
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
View file @
524b9e8b
...
...
@@ -493,6 +493,15 @@ int nfapi_vnf_p7_nr_dl_config_req(nfapi_vnf_p7_config_t* config, nfapi_nr_dl_tti
return
vnf_p7_pack_and_send_p7_msg
(
vnf_p7
,
&
req
->
header
);
}
int
nfapi_vnf_p7_ul_tti_req
(
nfapi_vnf_p7_config_t
*
config
,
nfapi_nr_ul_tti_request_t
*
req
)
{
if
(
config
==
0
||
req
==
0
)
return
-
1
;
vnf_p7_t
*
vnf_p7
=
(
vnf_p7_t
*
)
config
;
return
vnf_p7_pack_and_send_p7_msg
(
vnf_p7
,
&
req
->
header
);
}
int
nfapi_vnf_p7_ul_config_req
(
nfapi_vnf_p7_config_t
*
config
,
nfapi_ul_config_request_t
*
req
)
{
if
(
config
==
0
||
req
==
0
)
...
...
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