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
wangjie
OpenXG-RAN
Commits
6210519d
Commit
6210519d
authored
Jun 15, 2021
by
Mahesh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bugfix - UL info filling
parent
e93df004
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
594 additions
and
438 deletions
+594
-438
nfapi/oai_integration/nfapi_vnf.c
nfapi/oai_integration/nfapi_vnf.c
+98
-1
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
+107
-91
nfapi/open-nFAPI/vnf/public_inc/nfapi_vnf_interface.h
nfapi/open-nFAPI/vnf/public_inc/nfapi_vnf_interface.h
+9
-1
nfapi/open-nFAPI/vnf/src/vnf_p7.c
nfapi/open-nFAPI/vnf/src/vnf_p7.c
+379
-344
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
+1
-1
No files found.
nfapi/oai_integration/nfapi_vnf.c
View file @
6210519d
...
...
@@ -596,7 +596,7 @@ extern pthread_mutex_t nfapi_sync_mutex;
extern
int
nfapi_sync_var
;
int
phy_sync_indication
(
struct
nfapi_vnf_p7_config
*
config
,
uint8_t
sync
)
{
printf
(
"[VNF] SYNC %s
\n
"
,
sync
==
1
?
"ACHIEVED"
:
"LOST"
);
//
printf("[VNF] SYNC %s\n", sync==1 ? "ACHIEVED" : "LOST");
if
(
sync
==
1
&&
nfapi_sync_var
!=
0
)
{
...
...
@@ -1014,6 +1014,98 @@ int phy_cqi_indication(struct nfapi_vnf_p7_config *config, nfapi_cqi_indication_
return
1
;
}
//NR phy indication
int
phy_nr_crc_indication
(
nfapi_nr_crc_indication_t
*
ind
)
{
struct
PHY_VARS_gNB_s
*
gNB
=
RC
.
gNB
[
0
];
pthread_mutex_lock
(
&
gNB
->
UL_INFO_mutex
);
ind
->
number_crcs
=
1
;
if
(
ind
->
number_crcs
>
0
)
gNB
->
UL_INFO
.
crc_ind
.
crc_list
=
malloc
(
sizeof
(
nfapi_nr_crc_t
)
*
ind
->
number_crcs
);
for
(
int
i
=
0
;
i
<
ind
->
number_crcs
;
i
++
)
memcpy
(
&
gNB
->
UL_INFO
.
crc_ind
.
crc_list
[
i
],
&
ind
->
crc_list
[
i
],
sizeof
(
ind
->
crc_list
[
0
]));
pthread_mutex_unlock
(
&
gNB
->
UL_INFO_mutex
);
return
1
;
}
int
phy_nr_rx_data_indication
(
nfapi_nr_rx_data_indication_t
*
ind
)
{
struct
PHY_VARS_gNB_s
*
gNB
=
RC
.
gNB
[
0
];
pthread_mutex_lock
(
&
gNB
->
UL_INFO_mutex
);
if
(
ind
->
number_of_pdus
>
0
)
gNB
->
UL_INFO
.
rx_ind
.
pdu_list
=
malloc
(
sizeof
(
nfapi_nr_rx_data_pdu_t
)
*
ind
->
number_of_pdus
);
for
(
int
i
=
0
;
i
<
ind
->
number_of_pdus
;
i
++
)
memcpy
(
&
gNB
->
UL_INFO
.
rx_ind
.
pdu_list
[
i
],
&
ind
->
pdu_list
[
i
],
sizeof
(
ind
->
pdu_list
[
0
]));
pthread_mutex_unlock
(
&
gNB
->
UL_INFO_mutex
);
return
1
;
}
int
phy_nr_uci_indication
(
nfapi_nr_uci_indication_t
*
ind
)
{
struct
PHY_VARS_gNB_s
*
gNB
=
RC
.
gNB
[
0
];
pthread_mutex_lock
(
&
gNB
->
UL_INFO_mutex
);
if
(
ind
->
num_ucis
>
0
)
gNB
->
UL_INFO
.
uci_ind
.
uci_list
=
malloc
(
sizeof
(
nfapi_nr_uci_t
)
*
ind
->
num_ucis
);
for
(
int
i
=
0
;
i
<
ind
->
num_ucis
;
i
++
)
memcpy
(
&
gNB
->
UL_INFO
.
uci_ind
.
uci_list
[
i
],
&
ind
->
uci_list
[
i
],
sizeof
(
ind
->
uci_list
[
0
]));
pthread_mutex_unlock
(
&
gNB
->
UL_INFO_mutex
);
return
1
;
}
int
phy_nr_srs_indication
(
nfapi_nr_srs_indication_t
*
ind
)
{
struct
PHY_VARS_gNB_s
*
gNB
=
RC
.
gNB
[
0
];
pthread_mutex_lock
(
&
gNB
->
UL_INFO_mutex
);
if
(
ind
->
number_of_pdus
>
0
)
gNB
->
UL_INFO
.
srs_ind
.
pdu_list
=
malloc
(
sizeof
(
nfapi_nr_srs_indication_pdu_t
)
*
ind
->
number_of_pdus
);
for
(
int
i
=
0
;
i
<
ind
->
number_of_pdus
;
i
++
)
{
memcpy
(
&
gNB
->
UL_INFO
.
srs_ind
.
pdu_list
[
i
],
&
ind
->
pdu_list
[
i
],
sizeof
(
ind
->
pdu_list
[
0
]));
LOG_D
(
MAC
,
"%s() NFAPI SFN/Slot:%d.%d SRS_IND:number_of_pdus:%d UL_INFO:pdus:%d
\n
"
,
__FUNCTION__
,
ind
->
sfn
,
ind
->
slot
,
ind
->
number_of_pdus
,
gNB
->
UL_INFO
.
srs_ind
.
number_of_pdus
);
}
pthread_mutex_unlock
(
&
gNB
->
UL_INFO_mutex
);
return
1
;
}
int
phy_nr_rach_indication
(
nfapi_nr_rach_indication_t
*
ind
)
{
struct
PHY_VARS_gNB_s
*
gNB
=
RC
.
gNB
[
0
];
pthread_mutex_lock
(
&
gNB
->
UL_INFO_mutex
);
if
(
ind
->
number_of_pdus
>
0
)
gNB
->
UL_INFO
.
rach_ind
.
pdu_list
=
malloc
(
sizeof
(
nfapi_nr_prach_indication_pdu_t
)
*
ind
->
number_of_pdus
);
for
(
int
i
=
0
;
i
<
ind
->
number_of_pdus
;
i
++
)
{
memcpy
(
&
gNB
->
UL_INFO
.
rach_ind
.
pdu_list
[
i
],
&
ind
->
pdu_list
[
i
],
sizeof
(
ind
->
pdu_list
[
0
]));
LOG_D
(
MAC
,
"%s() NFAPI SFN/Slot:%d.%d RACH_IND:number_of_pdus:%d UL_INFO:pdus:%d
\n
"
,
__FUNCTION__
,
ind
->
sfn
,
ind
->
slot
,
ind
->
number_of_pdus
,
gNB
->
UL_INFO
.
rach_ind
.
number_of_pdus
);
}
pthread_mutex_unlock
(
&
gNB
->
UL_INFO_mutex
);
return
1
;
}
//end NR phy indication
int
phy_lbt_dl_indication
(
struct
nfapi_vnf_p7_config
*
config
,
nfapi_lbt_dl_indication_t
*
ind
)
{
// vnf_p7_info* p7_vnf = (vnf_p7_info*)(config->user_data);
//mac_lbt_dl_ind(p7_vnf->mac, ind);
...
...
@@ -1179,6 +1271,11 @@ void *vnf_nr_p7_thread_start(void *ptr) {
p7_vnf
->
config
->
lbt_dl_indication
=
&
phy_lbt_dl_indication
;
p7_vnf
->
config
->
nb_harq_indication
=
&
phy_nb_harq_indication
;
p7_vnf
->
config
->
nrach_indication
=
&
phy_nrach_indication
;
p7_vnf
->
config
->
nr_crc_indication
=
&
phy_nr_crc_indication
;
p7_vnf
->
config
->
nr_rx_data_indication
=
&
phy_nr_rx_data_indication
;
p7_vnf
->
config
->
nr_uci_indication
=
&
phy_nr_uci_indication
;
p7_vnf
->
config
->
nr_rach_indication
=
&
phy_nr_rach_indication
;
p7_vnf
->
config
->
nr_srs_indication
=
&
phy_nr_srs_indication
;
p7_vnf
->
config
->
malloc
=
&
vnf_allocate
;
p7_vnf
->
config
->
free
=
&
vnf_deallocate
;
p7_vnf
->
config
->
trace
=
&
vnf_trace
;
...
...
nfapi/open-nFAPI/nfapi/src/nfapi_p7.c
View file @
6210519d
...
...
@@ -361,7 +361,7 @@ static uint8_t pack_dl_tti_pdsch_pdu_rel15_value(void* tlv, uint8_t **ppWritePac
static
uint8_t
pack_dl_tti_ssb_pdu_rel15_value
(
void
*
tlv
,
uint8_t
**
ppWritePackedMsg
,
uint8_t
*
end
)
{
printf
(
"Packing ssb.
\n
"
);
//
printf("Packing ssb. \n");
nfapi_nr_dl_tti_ssb_pdu_rel15_t
*
value
=
(
nfapi_nr_dl_tti_ssb_pdu_rel15_t
*
)
tlv
;
return
(
...
...
@@ -3625,7 +3625,7 @@ static uint8_t pack_nr_uci_indication_body(void* tlv, uint8_t **ppWritePackedMsg
case
NFAPI_NR_UCI_FORMAT_0_1_PDU_TYPE
:
{
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
uci_pdu
=
&
value
->
pucch_pdu_format_0_1
;
pack_nr_uci_pucch_0_1
(
uci_pdu
,
ppWritePackedMsg
,
end
);
pack_nr_uci_pucch_0_1
(
&
value
->
pucch_pdu_format_0_1
,
ppWritePackedMsg
,
end
);
break
;
}
case
NFAPI_NR_UCI_FORMAT_2_3_4_PDU_TYPE
:
{
...
...
@@ -3650,7 +3650,7 @@ static uint8_t pack_nr_uci_indication(void *msg, uint8_t **ppWritePackedMsg, uin
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
num_ucis
;
i
++
)
{
if
(
!
pack_nr_uci_indication_body
(
&
(
pNfapiMsg
->
uci_list
[
i
])
,
ppWritePackedMsg
,
end
))
if
(
!
pack_nr_uci_indication_body
(
pNfapiMsg
->
uci_list
,
ppWritePackedMsg
,
end
))
return
0
;
}
...
...
@@ -3700,7 +3700,7 @@ int nfapi_nr_p7_message_pack(void *pMessageBuf, void *pPackedBuf, uint32_t packe
{
case
NFAPI_NR_PHY_MSG_TYPE_DL_TTI_REQUEST
:
result
=
pack_dl_tti_request
(
pMessageHeader
,
&
pWritePackedMessage
,
end
,
config
);
printf
(
"result of pack dl_tti_req is %d.
\n
"
,
result
);
//
printf("result of pack dl_tti_req is %d. \n",result);
break
;
case
NFAPI_NR_PHY_MSG_TYPE_UL_TTI_REQUEST
:
...
...
@@ -6370,15 +6370,8 @@ static uint8_t unpack_nr_rx_data_indication_body(void* tlv, uint8_t **ppReadPack
}
static
uint8_t
unpack_nr_rx_data_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
,
nfapi_p7_codec_config_t
*
config
)
static
uint8_t
unpack_nr_rx_data_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_nr_rx_data_indication_t
*
msg
,
nfapi_p7_codec_config_t
*
config
)
{
// uint8_t *ptr = *ppReadPackedMsg;
// printf("\n Read P7 message rx data indication unpack: ");
// while(ptr < end){
// printf(" %d ", *ptr);
// ptr++;
// }
// printf("\n");
nfapi_nr_rx_data_indication_t
*
pNfapiMsg
=
(
nfapi_nr_rx_data_indication_t
*
)
msg
;
printf
(
"
\n
"
);
...
...
@@ -6390,7 +6383,7 @@ static uint8_t unpack_nr_rx_data_indication(uint8_t **ppReadPackedMsg, uint8_t *
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
number_of_pdus
;
i
++
)
{
if
(
!
unpack_nr_rx_data_indication_body
(
&
pNfapiMsg
->
pdu_list
,
ppReadPackedMsg
,
end
))
if
(
!
unpack_nr_rx_data_indication_body
(
pNfapiMsg
->
pdu_list
,
ppReadPackedMsg
,
end
))
return
0
;
}
...
...
@@ -6399,10 +6392,8 @@ return 1;
//NR CRC INDICATION
static
uint8_t
unpack_nr_crc_indication_body
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
static
uint8_t
unpack_nr_crc_indication_body
(
nfapi_nr_crc_t
*
value
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_crc_t
*
value
=
(
nfapi_nr_crc_t
*
)
tlv
;
if
(
!
(
pull32
(
ppReadPackedMsg
,
&
value
->
handle
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
value
->
rnti
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
harq_id
,
end
)
&&
...
...
@@ -6415,32 +6406,31 @@ static uint8_t unpack_nr_crc_indication_body(void* tlv, uint8_t **ppReadPackedMs
))
return
0
;
//memcpy((nfapi_nr_crc_t *)tlv,value,sizeof(nfapi_nr_crc_t));
return
1
;
}
static
uint8_t
unpack_nr_crc_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
,
nfapi_p7_codec_config_t
*
config
)
static
uint8_t
unpack_nr_crc_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_nr_crc_indication_t
*
msg
,
nfapi_p7_codec_config_t
*
config
)
{
uint8_t
*
ptr
=
*
ppReadPackedMsg
;
// printf("\n Read P7 message indication unpack: ");
// while(ptr < end){
// printf(" %d ", *ptr);
// ptr++;
// }
// printf("\n");
nfapi_nr_crc_indication_t
*
pNfapiMsg
=
(
nfapi_nr_crc_indication_t
*
)
msg
;
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
sfn
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
slot
,
end
)
&&
nfapi_nr_crc_indication_t
*
pNfapiMsg
=
(
nfapi_nr_crc_indication_t
*
)
msg
;
// pNfapiMsg = (nfapi_nr_crc_indication_t *) malloc(sizeof(nfapi_nr_crc_indication_t));
// pNfapiMsg->crc_list = (nfapi_nr_crc_t *) malloc(sizeof(nfapi_nr_crc_t));
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
sfn
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
slot
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
number_crcs
,
end
)
))
return
0
;
return
0
;
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
number_crcs
;
i
++
)
{
if
(
!
unpack_nr_crc_indication_body
(
&
pNfapiMsg
->
crc_list
,
ppReadPackedMsg
,
end
))
if
(
!
unpack_nr_crc_indication_body
(
pNfapiMsg
->
crc_list
,
ppReadPackedMsg
,
end
))
//if(!unpack_nr_crc_indication_body(value,ppReadPackedMsg,end))
return
0
;
}
printf
(
"Done
\n
"
);
return
1
;
}
...
...
@@ -6489,7 +6479,7 @@ return 1;
//NR RACH
static
uint8_t
unpack_nr_rach_indication_body
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
static
uint8_t
unpack_nr_rach_indication_body
(
nfapi_nr_prach_indication_pdu_t
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_prach_indication_pdu_t
*
value
=
(
nfapi_nr_prach_indication_pdu_t
*
)
tlv
;
...
...
@@ -6502,6 +6492,7 @@ static uint8_t unpack_nr_rach_indication_body(void* tlv, uint8_t **ppReadPackedM
pull8
(
ppReadPackedMsg
,
&
value
->
num_preamble
,
end
)
))
return
0
;
value
->
preamble_list
=
(
nfapi_nr_prach_indication_preamble_t
*
)
malloc
(
sizeof
(
nfapi_nr_prach_indication_preamble_t
)
*
value
->
num_preamble
);
for
(
int
i
=
0
;
i
<
value
->
num_preamble
;
i
++
)
{
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
preamble_list
->
preamble_index
,
end
)
&&
...
...
@@ -6513,7 +6504,7 @@ static uint8_t unpack_nr_rach_indication_body(void* tlv, uint8_t **ppReadPackedM
return
1
;
}
static
uint8_t
unpack_nr_rach_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
void
*
msg
,
nfapi_p7_codec_config_t
*
config
)
{
static
uint8_t
unpack_nr_rach_indication
(
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
,
nfapi_nr_rach_indication_t
*
msg
,
nfapi_p7_codec_config_t
*
config
)
{
nfapi_nr_rach_indication_t
*
pNfapiMsg
=
(
nfapi_nr_rach_indication_t
*
)
msg
;
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
pNfapiMsg
->
sfn
,
end
)
&&
...
...
@@ -6521,10 +6512,10 @@ static uint8_t unpack_nr_rach_indication(uint8_t **ppReadPackedMsg, uint8_t *end
pull8
(
ppReadPackedMsg
,
&
pNfapiMsg
->
number_of_pdus
,
end
)
))
return
0
;
pNfapiMsg
->
pdu_list
=
(
nfapi_nr_prach_indication_pdu_t
*
)
malloc
(
sizeof
(
nfapi_nr_prach_indication_pdu_t
)
*
pNfapiMsg
->
number_of_pdus
);
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
number_of_pdus
;
i
++
)
{
if
(
!
unpack_nr_rach_indication_body
(
&
pNfapiMsg
->
pdu_list
,
ppReadPackedMsg
,
end
))
if
(
!
unpack_nr_rach_indication_body
(
pNfapiMsg
->
pdu_list
,
ppReadPackedMsg
,
end
))
return
0
;
}
...
...
@@ -6533,16 +6524,16 @@ return 1;
//NR UCI
static
uint8_t
unpack_nr_uci_pucch_0_1
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
static
uint8_t
unpack_nr_uci_pucch_0_1
(
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
value
=
(
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
)
tlv
;
uint8_t
*
ptr
=
*
ppReadPackedMsg
;
printf
(
"
\n
Read P7 message uci_0_1 indication unpack: "
);
while
(
ptr
<
end
){
printf
(
" %d "
,
*
ptr
);
ptr
++
;
}
printf
(
"
\n
"
);
//
printf("\n Read P7 message uci_0_1 indication unpack: ");
//
while(ptr < end){
//
printf(" %d ", *ptr);
//
ptr++;
//
}
//
printf("\n");
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
pduBitmap
,
end
)
&&
pull32
(
ppReadPackedMsg
,
&
value
->
handle
,
end
)
&&
...
...
@@ -6554,34 +6545,33 @@ static uint8_t unpack_nr_uci_pucch_0_1(void* tlv, uint8_t **ppReadPackedMsg, uin
))
return
0
;
if
(
value
->
pduBitmap
&
0x01
)
{
//SR
value
->
sr
=
(
nfapi_nr_sr_pdu_0_1_t
*
)
malloc
(
sizeof
(
nfapi_nr_sr_pdu_0_1_t
));
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
sr
->
sr_indication
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
sr
->
sr_confidence_level
,
end
)
))
return
0
;
}
// if (((value->pduBitmap >> 1) & 0x01)) { //HARQ
// uint8_t* temp; //&value->harq->num_harq &value->harq->harq_confidence_level &value->harq->harq_list[0].harq_value
// temp = (uint8_t*) malloc(sizeof(uint8_t));
// //printf("value->harq->num_harq = %d \n", value->harq->num_harq);
// // if(!(pull8(ppReadPackedMsg, temp, end) &&
// // pull8(ppReadPackedMsg, temp, end)
// // ))
// // return 0;
// // for(int i=0; i<1;i++)
// // {
// // if(!(pull8(ppReadPackedMsg, temp, end)
// // ))
// // return 0;
// // }
// }
if
(((
value
->
pduBitmap
>>
1
)
&
0x01
))
{
//HARQ
value
->
harq
=
(
nfapi_nr_harq_pdu_0_1_t
*
)
malloc
(
sizeof
(
nfapi_nr_harq_pdu_0_1_t
));
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
harq
->
num_harq
,
end
)
&&
pull8
(
ppReadPackedMsg
,
&
value
->
harq
->
harq_confidence_level
,
end
)
))
return
0
;
value
->
harq
->
harq_list
=
(
nfapi_nr_harq_t
*
)
malloc
(
sizeof
(
nfapi_nr_harq_t
*
)
*
value
->
harq
->
num_harq
);
for
(
int
i
=
0
;
i
<
value
->
harq
->
num_harq
;
i
++
)
{
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
harq
->
harq_list
->
harq_value
,
end
)
))
return
0
;
}
}
return
1
;
}
static
uint8_t
unpack_nr_uci_pucch_2_3_4
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
static
uint8_t
unpack_nr_uci_pucch_2_3_4
(
nfapi_nr_uci_pucch_pdu_format_2_3_4_t
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_uci_pucch_pdu_format_2_3_4_t
*
value
=
(
nfapi_nr_uci_pucch_pdu_format_2_3_4_t
*
)
tlv
;
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
pduBitmap
,
end
)
&&
...
...
@@ -6594,43 +6584,53 @@ static uint8_t unpack_nr_uci_pucch_2_3_4(void* tlv, uint8_t **ppReadPackedMsg, u
))
return
0
;
if
(
value
->
pduBitmap
&
0x01
)
{
//SR
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
value
->
sr
.
sr_bit_len
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
value
->
sr
.
sr_payload
,
(
int
)(
value
->
sr
.
sr_bit_len
/
8
)
+
1
,
(
int
)(
value
->
sr
.
sr_bit_len
/
8
)
+
1
,
end
)
))
return
0
;
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
value
->
sr
.
sr_bit_len
,
end
)))
return
0
;
value
->
sr
.
sr_payload
=
(
uint8_t
*
)
malloc
(
sizeof
(
uint8_t
)
*
((
value
->
sr
.
sr_bit_len
/
8
)));
if
(
!
(
pullarray8
(
ppReadPackedMsg
,
&
value
->
sr
.
sr_payload
[
0
],
(
int
)(
value
->
sr
.
sr_bit_len
/
8
),
(
int
)(
value
->
sr
.
sr_bit_len
/
8
),
end
)))
return
0
;
}
if
(((
value
->
pduBitmap
>>
1
)
&
0x01
))
{
//HARQ
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
harq
.
harq_crc
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
value
->
harq
.
harq_bit_len
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
value
->
harq
.
harq_payload
,
(
int
)(
value
->
harq
.
harq_bit_len
/
8
)
+
1
,
(
int
)(
value
->
harq
.
harq_bit_len
/
8
)
+
1
,
end
)
))
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
harq
.
harq_crc
,
end
))
&&
(
pull16
(
ppReadPackedMsg
,
&
value
->
harq
.
harq_bit_len
,
end
)))
return
0
;
value
->
harq
.
harq_payload
=
(
uint8_t
*
)
malloc
(
sizeof
(
uint8_t
)
*
((
value
->
harq
.
harq_bit_len
/
8
)));
if
(
!
(
pullarray8
(
ppReadPackedMsg
,
value
->
harq
.
harq_payload
,
(
int
)(
value
->
harq
.
harq_bit_len
/
8
),
(
int
)(
value
->
harq
.
harq_bit_len
/
8
),
end
)))
return
0
;
}
if
(((
value
->
pduBitmap
>>
2
)
&
0x01
))
{
//CSI-1
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
csi_part1
.
csi_part1_crc
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
value
->
csi_part1
.
csi_part1_bit_len
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
value
->
csi_part1
.
csi_part1_payload
,
(
int
)(
value
->
csi_part1
.
csi_part1_bit_len
/
8
)
+
1
,
(
int
)(
value
->
csi_part1
.
csi_part1_bit_len
/
8
)
+
1
,
end
)
))
return
0
;
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
csi_part1
.
csi_part1_crc
,
end
))
&&
(
pull16
(
ppReadPackedMsg
,
&
value
->
csi_part1
.
csi_part1_bit_len
,
end
)))
return
0
;
value
->
csi_part1
.
csi_part1_payload
=
(
uint8_t
*
)
malloc
(
sizeof
(
uint8_t
)
*
((
value
->
csi_part1
.
csi_part1_bit_len
/
8
)));
// if(!(pullarray8(ppReadPackedMsg, value->csi_part1.csi_part1_payload, (int)(value->csi_part1.csi_part1_bit_len / 8), (int)(value->csi_part1.csi_part1_bit_len / 8), end)))
// return 0;
}
if
(((
value
->
pduBitmap
>>
3
)
&
0x01
))
{
//CSI-2
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
csi_part2
.
csi_part2_crc
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
value
->
csi_part2
.
csi_part2_bit_len
,
end
)
&&
pullarray8
(
ppReadPackedMsg
,
value
->
csi_part2
.
csi_part2_payload
,
(
int
)(
value
->
csi_part2
.
csi_part2_bit_len
/
8
)
+
1
,
(
int
)(
value
->
csi_part2
.
csi_part2_bit_len
/
8
)
+
1
,
end
)
))
if
(
!
(
pull8
(
ppReadPackedMsg
,
&
value
->
csi_part2
.
csi_part2_crc
,
end
))
&&
(
pull16
(
ppReadPackedMsg
,
&
value
->
csi_part2
.
csi_part2_bit_len
,
end
)))
return
0
;
value
->
csi_part2
.
csi_part2_payload
=
(
uint8_t
*
)
malloc
(
sizeof
(
uint8_t
)
*
((
value
->
csi_part2
.
csi_part2_bit_len
/
8
)));
if
(
!
(
pullarray8
(
ppReadPackedMsg
,
value
->
csi_part2
.
csi_part2_payload
,
(
int
)(
value
->
csi_part2
.
csi_part2_bit_len
/
8
)
,
(
int
)(
value
->
csi_part2
.
csi_part2_bit_len
/
8
)
,
end
)))
return
0
;
}
return
1
;
}
static
uint8_t
unpack_nr_uci_indication_body
(
void
*
tlv
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
static
uint8_t
unpack_nr_uci_indication_body
(
nfapi_nr_uci_t
*
value
,
uint8_t
**
ppReadPackedMsg
,
uint8_t
*
end
)
{
nfapi_nr_uci_t
*
value
=
(
nfapi_nr_uci_t
*
)
tlv
;
if
(
!
(
pull16
(
ppReadPackedMsg
,
&
value
->
pdu_type
,
end
)
&&
pull16
(
ppReadPackedMsg
,
&
value
->
pdu_size
,
end
)
))
...
...
@@ -6643,12 +6643,12 @@ static uint8_t unpack_nr_uci_indication_body(void* tlv, uint8_t **ppReadPackedMs
case
NFAPI_NR_UCI_FORMAT_0_1_PDU_TYPE
:
{
nfapi_nr_uci_pucch_pdu_format_0_1_t
*
uci_pdu
=
&
value
->
pucch_pdu_format_0_1
;
unpack_nr_uci_pucch_0_1
(
&
uci_pdu
,
ppReadPackedMsg
,
end
);
unpack_nr_uci_pucch_0_1
(
uci_pdu
,
ppReadPackedMsg
,
end
);
break
;
}
case
NFAPI_NR_UCI_FORMAT_2_3_4_PDU_TYPE
:
{
nfapi_nr_uci_pucch_pdu_format_2_3_4_t
*
uci_pdu
=
&
value
->
pucch_pdu_format_2_3_4
;
unpack_nr_uci_pucch_2_3_4
(
&
uci_pdu
,
ppReadPackedMsg
,
end
);
unpack_nr_uci_pucch_2_3_4
(
uci_pdu
,
ppReadPackedMsg
,
end
);
break
;
}
}
...
...
@@ -6668,7 +6668,7 @@ static uint8_t unpack_nr_uci_indication(uint8_t **ppReadPackedMsg, uint8_t *end,
for
(
int
i
=
0
;
i
<
pNfapiMsg
->
num_ucis
;
i
++
)
{
if
(
!
unpack_nr_uci_indication_body
(
&
pNfapiMsg
->
uci_list
,
ppReadPackedMsg
,
end
))
if
(
!
unpack_nr_uci_indication_body
(
pNfapiMsg
->
uci_list
,
ppReadPackedMsg
,
end
))
return
0
;
}
...
...
@@ -8711,36 +8711,52 @@ int nfapi_nr_p7_message_unpack(void *pMessageBuf, uint32_t messageBufLen, void *
break
;
case
NFAPI_NR_PHY_MSG_TYPE_RX_DATA_INDICATION
:
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_RX_DATA_INDICATION
,
unpackedBufLen
))
result
=
unpack_nr_rx_data_indication
(
&
pReadPackedMessage
,
end
,
pMessageHeader
,
config
);
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_RX_DATA_INDICATION
,
unpackedBufLen
)){
nfapi_nr_rx_data_indication_t
*
msg
=
(
nfapi_nr_rx_data_indication_t
*
)
pMessageHeader
;
msg
->
pdu_list
=
(
nfapi_nr_rx_data_pdu_t
*
)
malloc
(
sizeof
(
nfapi_nr_rx_data_pdu_t
));
msg
->
pdu_list
->
pdu
=
(
uint8_t
*
)
malloc
(
sizeof
(
uint8_t
));
result
=
unpack_nr_rx_data_indication
(
&
pReadPackedMessage
,
end
,
msg
,
config
);
}
else
return
-
1
;
break
;
case
NFAPI_NR_PHY_MSG_TYPE_CRC_INDICATION
:
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_CRC_INDICATION
,
unpackedBufLen
))
result
=
unpack_nr_crc_indication
(
&
pReadPackedMessage
,
end
,
pMessageHeader
,
config
);
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_CRC_INDICATION
,
unpackedBufLen
)){
nfapi_nr_crc_indication_t
*
msg
=
(
nfapi_nr_crc_indication_t
*
)
pMessageHeader
;
msg
->
crc_list
=
(
nfapi_nr_crc_t
*
)
malloc
(
sizeof
(
nfapi_nr_crc_t
));
result
=
unpack_nr_crc_indication
(
&
pReadPackedMessage
,
end
,
msg
,
config
);
}
else
return
-
1
;
break
;
case
NFAPI_NR_PHY_MSG_TYPE_UCI_INDICATION
:
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_UCI_INDICATION
,
unpackedBufLen
))
result
=
unpack_nr_uci_indication
(
&
pReadPackedMessage
,
end
,
pMessageHeader
,
config
);
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_UCI_INDICATION
,
unpackedBufLen
)){
nfapi_nr_uci_indication_t
*
msg
=
(
nfapi_nr_uci_indication_t
*
)
pMessageHeader
;
msg
->
uci_list
=
(
nfapi_nr_uci_t
*
)
malloc
(
sizeof
(
nfapi_nr_uci_t
));
result
=
unpack_nr_uci_indication
(
&
pReadPackedMessage
,
end
,
msg
,
config
);
}
else
return
-
1
;
break
;
case
NFAPI_NR_PHY_MSG_TYPE_SRS_INDICATION
:
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_SRS_INDICATION
,
unpackedBufLen
))
result
=
unpack_nr_srs_indication
(
&
pReadPackedMessage
,
end
,
pMessageHeader
,
config
);
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_SRS_INDICATION
,
unpackedBufLen
)){
nfapi_nr_srs_indication_t
*
msg
=
(
nfapi_nr_srs_indication_t
*
)
pMessageHeader
;
msg
->
pdu_list
=
(
nfapi_nr_srs_indication_pdu_t
*
)
malloc
(
sizeof
(
nfapi_nr_srs_indication_pdu_t
));
result
=
unpack_nr_srs_indication
(
&
pReadPackedMessage
,
end
,
msg
,
config
);
}
else
return
-
1
;
break
;
case
NFAPI_NR_PHY_MSG_TYPE_RACH_INDICATION
:
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_RACH_INDICATION
,
unpackedBufLen
))
result
=
unpack_nr_rach_indication
(
&
pReadPackedMessage
,
end
,
pMessageHeader
,
config
);
if
(
check_nr_unpack_length
(
NFAPI_NR_PHY_MSG_TYPE_RACH_INDICATION
,
unpackedBufLen
)){
nfapi_nr_rach_indication_t
*
msg
=
(
nfapi_nr_rach_indication_t
*
)
pMessageHeader
;
result
=
unpack_nr_rach_indication
(
&
pReadPackedMessage
,
end
,
msg
,
config
);
}
else
return
-
1
;
break
;
...
...
nfapi/open-nFAPI/vnf/public_inc/nfapi_vnf_interface.h
View file @
6210519d
...
...
@@ -852,7 +852,15 @@ typedef struct nfapi_vnf_p7_config
* use the codec_config.deallocate function to release it at a future point
*/
int
(
*
nrach_indication
)(
struct
nfapi_vnf_p7_config
*
config
,
nfapi_nrach_indication_t
*
ind
);
//The NR indication functions below copy uplink information received at the VNF into the UL info struct
int
(
*
nr_crc_indication
)(
nfapi_nr_crc_indication_t
*
ind
);
int
(
*
nr_rx_data_indication
)(
nfapi_nr_rx_data_indication_t
*
ind
);
int
(
*
nr_uci_indication
)(
nfapi_nr_uci_indication_t
*
ind
);
int
(
*
nr_rach_indication
)(
nfapi_nr_rach_indication_t
*
ind
);
int
(
*
nr_srs_indication
)(
nfapi_nr_srs_indication_t
*
ind
);
/*! A callback for any vendor extension messages
* \param config A pointer to the vnf p7 configuration
* \param msg A data structure for the decoded vendor extention message allocated
...
...
nfapi/open-nFAPI/vnf/src/vnf_p7.c
View file @
6210519d
...
...
@@ -22,6 +22,7 @@
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
#include "vnf_p7.h"
...
...
@@ -668,7 +669,6 @@ int vnf_build_send_dl_node_sync(vnf_p7_t* vnf_p7, nfapi_vnf_p7_connection_info_t
int
vnf_nr_build_send_dl_node_sync
(
vnf_p7_t
*
vnf_p7
,
nfapi_vnf_p7_connection_info_t
*
p7_info
)
{
nfapi_nr_dl_node_sync_t
dl_node_sync
;
memset
(
&
dl_node_sync
,
0
,
sizeof
(
dl_node_sync
));
...
...
@@ -1291,7 +1291,7 @@ void vnf_handle_ul_node_sync(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf_p7)
{
if
(
phy
->
in_sync
==
0
)
{
NFAPI_TRACE
(
NFAPI_TRACE_NOTE
,
"VNF P7 In Sync with phy (phy_id:%d)
\n
"
,
phy
->
phy_id
);
//
NFAPI_TRACE(NFAPI_TRACE_NOTE, "VNF P7 In Sync with phy (phy_id:%d)\n", phy->phy_id);
if
(
vnf_p7
->
_public
.
sync_indication
)
(
vnf_p7
->
_public
.
sync_indication
)(
&
(
vnf_p7
->
_public
),
1
);
...
...
@@ -1472,6 +1472,13 @@ void vnf_handle_nr_rx_data_indication(void *pRecvMsg, int recvMsgLen, vnf_p7_t*
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s: Failed to unpack message
\n
"
,
__FUNCTION__
);
}
else
{
if
(
vnf_p7
->
_public
.
nr_rx_data_indication
)
{
(
vnf_p7
->
_public
.
nr_rx_data_indication
)(
&
ind
);
}
}
}
}
...
...
@@ -1491,6 +1498,13 @@ void vnf_handle_nr_crc_indication(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf_
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s: Failed to unpack message
\n
"
,
__FUNCTION__
);
}
else
{
if
(
vnf_p7
->
_public
.
nr_crc_indication
)
{
(
vnf_p7
->
_public
.
nr_crc_indication
)(
&
ind
);
}
}
}
}
...
...
@@ -1510,7 +1524,13 @@ void vnf_handle_nr_srs_indication(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf_
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s: Failed to unpack message
\n
"
,
__FUNCTION__
);
}
else
{
if
(
vnf_p7
->
_public
.
nr_srs_indication
)
{
(
vnf_p7
->
_public
.
nr_srs_indication
)(
&
ind
);
}
}
}
}
...
...
@@ -1529,6 +1549,14 @@ void vnf_handle_nr_uci_indication(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf_
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s: Failed to unpack message
\n
"
,
__FUNCTION__
);
}
else
{
if
(
vnf_p7
->
_public
.
nr_uci_indication
)
{
(
vnf_p7
->
_public
.
nr_uci_indication
)(
&
ind
);
}
}
}
}
...
...
@@ -1547,6 +1575,13 @@ void vnf_handle_nr_rach_indication(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf
{
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s: Failed to unpack message
\n
"
,
__FUNCTION__
);
}
else
{
if
(
vnf_p7
->
_public
.
nr_rach_indication
)
{
(
vnf_p7
->
_public
.
nr_rach_indication
)(
&
ind
);
}
}
}
}
...
...
@@ -1583,365 +1618,365 @@ void vnf_nr_handle_ul_node_sync(void *pRecvMsg, int recvMsgLen, vnf_p7_t* vnf_p7
if
(
phy
->
in_sync
==
0
)
{
NFAPI_TRACE
(
NFAPI_TRACE_NOTE
,
"VNF P7 In Sync with phy (phy_id:%d)
\n
"
,
phy
->
phy_id
);
//
NFAPI_TRACE(NFAPI_TRACE_NOTE, "VNF P7 In Sync with phy (phy_id:%d)\n", phy->phy_id);
if
(
vnf_p7
->
_public
.
sync_indication
)
(
vnf_p7
->
_public
.
sync_indication
)(
&
(
vnf_p7
->
_public
),
1
);
}
printf
(
"t1 = %d,t2 = %d, t3 = %d, t4 = %d.
\n
"
,
ind
.
t1
,
ind
.
t2
,
ind
.
t3
,
t4
);
//phy->in_sync = 1;
if
(
!
(
phy
->
filtered_adjust
))
{
phy
->
latency
[
phy
->
min_sync_cycle_count
]
=
latency
;
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) PNF to VNF !sync phy_id:%d (t1/2/3/4:%8u, %8u, %8u, %8u) txrx:%4u procT:%3u latency(us):%4d\n",
// phy->sfn, phy->slot, ind.header.phy_id, ind.t1, ind.t2, ind.t3, t4,
// tx_2_rx, pnf_proc_time, latency);
}
else
{
phy
->
latency
[
phy
->
min_sync_cycle_count
]
=
latency
;
phy
->
in_sync
=
1
;
// if(!(phy->filtered_adjust))
// {
// phy->latency[phy->min_sync_cycle_count] = latency;
// //NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) PNF to VNF !sync phy_id:%d (t1/2/3/4:%8u, %8u, %8u, %8u) txrx:%4u procT:%3u latency(us):%4d\n",
// // phy->sfn, phy->slot, ind.header.phy_id, ind.t1, ind.t2, ind.t3, t4,
// // tx_2_rx, pnf_proc_time, latency);
// }
// else
// {
// phy->latency[phy->min_sync_cycle_count] = latency;
// //if(phy->min_sync_cycle_count != SYNC_CYCLE_COUNT)
// {
// if (ind.t2 < phy->previous_t2 && ind.t1 > phy->previous_t1)
// {
// // Only t2 wrap has occurred!!!
// phy->slot_offset = (NFAPI_MAX_SFNSLOTDEC + ind.t2) - ind.t1 - latency;
// }
// else if (ind.t2 > phy->previous_t2 && ind.t1 < phy->previous_t1)
// {
// // Only t1 wrap has occurred
// phy->slot_offset = ind.t2 - ( ind.t1 + NFAPI_MAX_SFNSLOTDEC) - latency;
// }
// else
// {
// // Either no wrap or both have wrapped
// phy->slot_offset = ind.t2 - ind.t1 - latency;
// }
// if (phy->slot_offset_filtered == 0)
// {
// phy->slot_offset_filtered = phy->slot_offset;
// }
// else
// {
// int32_t oldFilteredValueShifted = phy->slot_offset_filtered << 5;
// int32_t newOffsetShifted = phy->slot_offset << 5;
// // 1/8 of new and 7/8 of old
// phy->slot_offset_filtered = ((newOffsetShifted >> 3) + ((oldFilteredValueShifted * 7) >> 3)) >> 5;
// }
// }
// if(1)
// {
// struct timespec ts;
// clock_gettime(CLOCK_MONOTONIC, &ts);
// //NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%1d) %d.%d PNF to VNF phy_id:%2d (t1/2/3/4:%8u, %8u, %8u, %8u) txrx:%4u procT:%3u latency(us):%4d(avg:%4d) offset(us):%8d filtered(us):%8d wrap[t1:%u t2:%u]\n",
// // phy->sfn, phy->slot, ts.tv_sec, ts.tv_nsec, ind.header.phy_id,
// // ind.t1, ind.t2, ind.t3, t4,
// // tx_2_rx, pnf_proc_time, latency, phy->average_latency, phy->slot_offset, phy->slot_offset_filtered,
// // (ind.t1<phy->previous_t1), (ind.t2<phy->previous_t2));
// }
// }
// if (phy->filtered_adjust && (phy->slot_offset_filtered > 1e6 || phy->slot_offset_filtered < -1e6))
// {
// phy->filtered_adjust = 0;
// phy->zero_count=0;
// phy->min_sync_cycle_count = 2;
// phy->in_sync = 0;
// NFAPI_TRACE(NFAPI_TRACE_ERROR, "%s - ADJUST TOO BAD - go out of filtered phy->slot_offset_filtered:%d\n", __FUNCTION__, phy->slot_offset_filtered);
// }
// if(phy->min_sync_cycle_count)
// phy->min_sync_cycle_count--;
// if(phy->min_sync_cycle_count == 0)
// {
// uint32_t curr_sfn = phy->sfn;
// uint32_t curr_slot = phy->slot;
// int32_t sfn_slot_dec = NFAPI_SFNSLOT2DEC(phy->sfn,phy->slot);
// if(!phy->filtered_adjust)
// {
// int i = 0;
// //phy->average_latency = 0;
// for(i = 0; i < SYNC_CYCLE_COUNT; ++i)
// {
// phy->average_latency += phy->latency[i];
// }
// phy->average_latency /= SYNC_CYCLE_COUNT;
// phy->slot_offset = ind.t2 - (ind.t1 - phy->average_latency);
// sfn_slot_dec += (phy->slot_offset / 500);
//if(phy->min_sync_cycle_count != SYNC_CYCLE_COUNT)
{
if
(
ind
.
t2
<
phy
->
previous_t2
&&
ind
.
t1
>
phy
->
previous_t1
)
{
// Only t2 wrap has occurred!!!
phy
->
slot_offset
=
(
NFAPI_MAX_SFNSLOTDEC
+
ind
.
t2
)
-
ind
.
t1
-
latency
;
}
else
if
(
ind
.
t2
>
phy
->
previous_t2
&&
ind
.
t1
<
phy
->
previous_t1
)
{
// Only t1 wrap has occurred
phy
->
slot_offset
=
ind
.
t2
-
(
ind
.
t1
+
NFAPI_MAX_SFNSLOTDEC
)
-
latency
;
}
else
{
// Either no wrap or both have wrapped
phy
->
slot_offset
=
ind
.
t2
-
ind
.
t1
-
latency
;
}
if
(
phy
->
slot_offset_filtered
==
0
)
{
phy
->
slot_offset_filtered
=
phy
->
slot_offset
;
}
else
{
int32_t
oldFilteredValueShifted
=
phy
->
slot_offset_filtered
<<
5
;
int32_t
newOffsetShifted
=
phy
->
slot_offset
<<
5
;
// 1/8 of new and 7/8 of old
phy
->
slot_offset_filtered
=
((
newOffsetShifted
>>
3
)
+
((
oldFilteredValueShifted
*
7
)
>>
3
))
>>
5
;
}
}
if
(
1
)
{
struct
timespec
ts
;
clock_gettime
(
CLOCK_MONOTONIC
,
&
ts
);
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%1d) %d.%d PNF to VNF phy_id:%2d (t1/2/3/4:%8u, %8u, %8u, %8u) txrx:%4u procT:%3u latency(us):%4d(avg:%4d) offset(us):%8d filtered(us):%8d wrap[t1:%u t2:%u]\n",
// phy->sfn, phy->slot, ts.tv_sec, ts.tv_nsec, ind.header.phy_id,
// ind.t1, ind.t2, ind.t3, t4,
// tx_2_rx, pnf_proc_time, latency, phy->average_latency, phy->slot_offset, phy->slot_offset_filtered,
// (ind.t1<phy->previous_t1), (ind.t2<phy->previous_t2));
}
}
if
(
phy
->
filtered_adjust
&&
(
phy
->
slot_offset_filtered
>
1e6
||
phy
->
slot_offset_filtered
<
-
1e6
))
{
phy
->
filtered_adjust
=
0
;
phy
->
zero_count
=
0
;
phy
->
min_sync_cycle_count
=
2
;
phy
->
in_sync
=
0
;
NFAPI_TRACE
(
NFAPI_TRACE_ERROR
,
"%s - ADJUST TOO BAD - go out of filtered phy->slot_offset_filtered:%d
\n
"
,
__FUNCTION__
,
phy
->
slot_offset_filtered
);
}
if
(
phy
->
min_sync_cycle_count
)
phy
->
min_sync_cycle_count
--
;
if
(
phy
->
min_sync_cycle_count
==
0
)
{
uint32_t
curr_sfn
=
phy
->
sfn
;
uint32_t
curr_slot
=
phy
->
slot
;
int32_t
sfn_slot_dec
=
NFAPI_SFNSLOT2DEC
(
phy
->
sfn
,
phy
->
slot
);
if
(
!
phy
->
filtered_adjust
)
{
int
i
=
0
;
//phy->average_latency = 0;
for
(
i
=
0
;
i
<
SYNC_CYCLE_COUNT
;
++
i
)
{
phy
->
average_latency
+=
phy
->
latency
[
i
];
}
phy
->
average_latency
/=
SYNC_CYCLE_COUNT
;
phy
->
slot_offset
=
ind
.
t2
-
(
ind
.
t1
-
phy
->
average_latency
);
sfn_slot_dec
+=
(
phy
->
slot_offset
/
500
);
//
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "PNF to VNF slot offset:%d sfn :%d slot:%d \n",phy->slot_offset,NFAPI_SFNSLOTDEC2SFN(sfn_slot_dec),NFAPI_SFNSLOTDEC2SLOT(sfn_slot_dec) );
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "PNF to VNF slot offset:%d sfn :%d slot:%d \n",phy->slot_offset,NFAPI_SFNSLOTDEC2SFN(sfn_slot_dec),NFAPI_SFNSLOTDEC2SLOT(sfn_slot_dec) );
//
}
//
else
//
{
//
sfn_slot_dec += ((phy->slot_offset_filtered + 250) / 500); //Round up to go from microsecond to slot
}
else
{
sfn_slot_dec
+=
((
phy
->
slot_offset_filtered
+
250
)
/
500
);
//Round up to go from microsecond to slot
//
}
}
//
if(sfn_slot_dec < 0)
//
{
//
sfn_slot_dec += NFAPI_MAX_SFNSLOTDEC;
//
}
//
else if( sfn_slot_dec >= NFAPI_MAX_SFNSLOTDEC)
//
{
//
sfn_slot_dec -= NFAPI_MAX_SFNSLOTDEC;
//
}
if
(
sfn_slot_dec
<
0
)
{
sfn_slot_dec
+=
NFAPI_MAX_SFNSLOTDEC
;
}
else
if
(
sfn_slot_dec
>=
NFAPI_MAX_SFNSLOTDEC
)
{
sfn_slot_dec
-=
NFAPI_MAX_SFNSLOTDEC
;
}
//
uint16_t new_sfn = NFAPI_SFNSLOTDEC2SFN(sfn_slot_dec);
//
uint16_t new_slot = NFAPI_SFNSLOTDEC2SLOT(sfn_slot_dec);
uint16_t
new_sfn
=
NFAPI_SFNSLOTDEC2SFN
(
sfn_slot_dec
);
uint16_t
new_slot
=
NFAPI_SFNSLOTDEC2SLOT
(
sfn_slot_dec
);
//
{
//
phy->adjustment = NFAPI_SFNSLOT2DEC(new_sfn, new_slot) - NFAPI_SFNSLOT2DEC(curr_sfn, curr_slot);
//
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "PNF to VNF phy_id:%d adjustment%d phy->previous_slot_offset_filtered:%d phy->previous_slot_offset_filtered:%d phy->slot_offset_trend:%d\n", ind.header.phy_id, phy->adjustment, phy->previous_slot_offset_filtered, phy->previous_slot_offset_filtered, phy->slot_offset_trend);
//
phy->previous_t1 = 0;
//
phy->previous_t2 = 0;
//
if(phy->previous_slot_offset_filtered > 0)
//
{
//
if( phy->slot_offset_filtered > phy->previous_slot_offset_filtered)
//
{
//
// pnf is getting futher ahead of vnf
//
//phy->sf_offset_trend = phy->sf_offset_filtered - phy->previous_sf_offset_filtered;
//
phy->slot_offset_trend = (phy->slot_offset_filtered + phy->previous_slot_offset_filtered)/2;
//
}
//
else
//
{
//
// pnf is getting back in sync
//
}
//
}
//
else if(phy->previous_slot_offset_filtered < 0)
//
{
//
if(phy->slot_offset_filtered < phy->previous_slot_offset_filtered)
//
{
//
// vnf is getting future ahead of pnf
//
//phy->sf_offset_trend = -(phy->sf_offset_filtered - phy->previous_sf_offset_filtered);
//
phy->slot_offset_trend = (-(phy->slot_offset_filtered + phy->previous_slot_offset_filtered)) /2;
//
}
//
else
//
{
//
// vnf is getting back in sync
//
}
//
}
{
phy
->
adjustment
=
NFAPI_SFNSLOT2DEC
(
new_sfn
,
new_slot
)
-
NFAPI_SFNSLOT2DEC
(
curr_sfn
,
curr_slot
);
//NFAPI_TRACE(NFAPI_TRACE_NOTE, "PNF to VNF phy_id:%d adjustment%d phy->previous_slot_offset_filtered:%d phy->previous_slot_offset_filtered:%d phy->slot_offset_trend:%d\n", ind.header.phy_id, phy->adjustment, phy->previous_slot_offset_filtered, phy->previous_slot_offset_filtered, phy->slot_offset_trend);
phy
->
previous_t1
=
0
;
phy
->
previous_t2
=
0
;
if
(
phy
->
previous_slot_offset_filtered
>
0
)
{
if
(
phy
->
slot_offset_filtered
>
phy
->
previous_slot_offset_filtered
)
{
// pnf is getting futher ahead of vnf
//phy->sf_offset_trend = phy->sf_offset_filtered - phy->previous_sf_offset_filtered;
phy
->
slot_offset_trend
=
(
phy
->
slot_offset_filtered
+
phy
->
previous_slot_offset_filtered
)
/
2
;
}
else
{
// pnf is getting back in sync
}
}
else
if
(
phy
->
previous_slot_offset_filtered
<
0
)
{
if
(
phy
->
slot_offset_filtered
<
phy
->
previous_slot_offset_filtered
)
{
// vnf is getting future ahead of pnf
//phy->sf_offset_trend = -(phy->sf_offset_filtered - phy->previous_sf_offset_filtered);
phy
->
slot_offset_trend
=
(
-
(
phy
->
slot_offset_filtered
+
phy
->
previous_slot_offset_filtered
))
/
2
;
}
else
{
// vnf is getting back in sync
}
}
//
int insync_minor_adjustment_1 = phy->slot_offset_trend / 6;
//
int insync_minor_adjustment_2 = phy->slot_offset_trend / 2;
//
if(insync_minor_adjustment_1 == 0)
//
insync_minor_adjustment_1 = 2;
//
if(insync_minor_adjustment_2 == 0)
//
insync_minor_adjustment_2 = 10;
//
if(!phy->filtered_adjust)
//
{
//
if(phy->adjustment < 10)
//
{
//
phy->zero_count++;
//
if(phy->zero_count >= 10)
//
{
//
phy->filtered_adjust = 1;
//
phy->zero_count = 0;
//
NFAPI_TRACE(NFAPI_TRACE_NOTE, "***** Adjusting VNF SFN/SF switching to filtered mode\n");
//
}
//
}
//
else
//
{
//
phy->zero_count = 0;
//
}
//
}
//
else
//
{
//
// Fine level of adjustment
//
if (phy->adjustment == 0)
//
{
//
if (phy->zero_count >= 10)
//
{
//
if(phy->in_sync == 0)
//
{
//
NFAPI_TRACE(NFAPI_TRACE_NOTE, "VNF P7 In Sync with phy (phy_id:%d)\n", phy->phy_id);
//
if(vnf_p7->_public.sync_indication)
//
(vnf_p7->_public.sync_indication)(&(vnf_p7->_public), 1);
//
}
//
phy->in_sync = 1;
//
}
//
else
//
{
//
phy->zero_count++;
//
}
//
if(phy->in_sync)
//
{
//
// in sync
//
if(phy->slot_offset_filtered > 250)
//
{
//
// VNF is slow
//
phy->insync_minor_adjustment = insync_minor_adjustment_1; //25;
//
phy->insync_minor_adjustment_duration = ((phy->slot_offset_filtered) / insync_minor_adjustment_1);
//
}
//
else if(phy->slot_offset_filtered < -250)
//
{
//
// VNF is fast
//
phy->insync_minor_adjustment = -(insync_minor_adjustment_1); //25;
//
phy->insync_minor_adjustment_duration = (((phy->slot_offset_filtered) / -(insync_minor_adjustment_1)));
//
}
//
else
//
{
//
phy->insync_minor_adjustment = 0;
//
}
//
if(phy->insync_minor_adjustment != 0)
//
{
//
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (slot_offset_filtered:%d) %d %d %d NEW:%d CURR:%d adjustment:%d\n",
//
// phy->sfn, phy->slot, ind.header.phy_id,
//
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration,
//
// phy->slot_offset_filtered,
//
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend,
//
// NFAPI_SFNSLOT2DEC(new_sfn, new_slot),
//
// NFAPI_SFNSLOT2DEC(curr_sfn, curr_slot),
//
// phy->adjustment);
//
}
//
}
//
}
//
else
//
{
//
if (phy->in_sync)
//
{
//
if(phy->adjustment == 0)
//
{
//
}
//
else if(phy->adjustment > 0)
//
{
//
// VNF is slow
//
//if(phy->adjustment == 1)
//
{
//
//
//
if(phy->slot_offset_filtered > 250)
//
{
//
// VNF is slow
//
phy->insync_minor_adjustment = insync_minor_adjustment_2;
//
phy->insync_minor_adjustment_duration = 2 * ((phy->slot_offset_filtered - 250) / insync_minor_adjustment_2);
//
}
//
else if(phy->slot_offset_filtered < -250)
//
{
//
// VNF is fast
//
phy->insync_minor_adjustment = -(insync_minor_adjustment_2);
//
phy->insync_minor_adjustment_duration = 2 * ((phy->slot_offset_filtered + 250) / -(insync_minor_adjustment_2));
//
}
int
insync_minor_adjustment_1
=
phy
->
slot_offset_trend
/
6
;
int
insync_minor_adjustment_2
=
phy
->
slot_offset_trend
/
2
;
if
(
insync_minor_adjustment_1
==
0
)
insync_minor_adjustment_1
=
2
;
if
(
insync_minor_adjustment_2
==
0
)
insync_minor_adjustment_2
=
10
;
if
(
!
phy
->
filtered_adjust
)
{
if
(
phy
->
adjustment
<
10
)
{
phy
->
zero_count
++
;
if
(
phy
->
zero_count
>=
10
)
{
phy
->
filtered_adjust
=
1
;
phy
->
zero_count
=
0
;
NFAPI_TRACE
(
NFAPI_TRACE_NOTE
,
"***** Adjusting VNF SFN/SF switching to filtered mode
\n
"
);
}
}
else
{
phy
->
zero_count
=
0
;
}
}
else
{
// Fine level of adjustment
if
(
phy
->
adjustment
==
0
)
{
if
(
phy
->
zero_count
>=
10
)
{
if
(
phy
->
in_sync
==
0
)
{
NFAPI_TRACE
(
NFAPI_TRACE_NOTE
,
"VNF P7 In Sync with phy (phy_id:%d)
\n
"
,
phy
->
phy_id
);
if
(
vnf_p7
->
_public
.
sync_indication
)
(
vnf_p7
->
_public
.
sync_indication
)(
&
(
vnf_p7
->
_public
),
1
);
}
phy
->
in_sync
=
1
;
}
else
{
phy
->
zero_count
++
;
}
if
(
phy
->
in_sync
)
{
// in sync
if
(
phy
->
slot_offset_filtered
>
250
)
{
// VNF is slow
phy
->
insync_minor_adjustment
=
insync_minor_adjustment_1
;
//25;
phy
->
insync_minor_adjustment_duration
=
((
phy
->
slot_offset_filtered
)
/
insync_minor_adjustment_1
);
}
else
if
(
phy
->
slot_offset_filtered
<
-
250
)
{
// VNF is fast
phy
->
insync_minor_adjustment
=
-
(
insync_minor_adjustment_1
);
//25;
phy
->
insync_minor_adjustment_duration
=
(((
phy
->
slot_offset_filtered
)
/
-
(
insync_minor_adjustment_1
)));
}
else
{
phy
->
insync_minor_adjustment
=
0
;
}
if
(
phy
->
insync_minor_adjustment
!=
0
)
{
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (slot_offset_filtered:%d) %d %d %d NEW:%d CURR:%d adjustment:%d\n",
// phy->sfn, phy->slot, ind.header.phy_id,
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration,
// phy->slot_offset_filtered,
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend,
// NFAPI_SFNSLOT2DEC(new_sfn, new_slot),
// NFAPI_SFNSLOT2DEC(curr_sfn, curr_slot),
// phy->adjustment);
}
}
}
else
{
if
(
phy
->
in_sync
)
{
if
(
phy
->
adjustment
==
0
)
{
}
else
if
(
phy
->
adjustment
>
0
)
{
// VNF is slow
//if(phy->adjustment == 1)
{
//
if
(
phy
->
slot_offset_filtered
>
250
)
{
// VNF is slow
phy
->
insync_minor_adjustment
=
insync_minor_adjustment_2
;
phy
->
insync_minor_adjustment_duration
=
2
*
((
phy
->
slot_offset_filtered
-
250
)
/
insync_minor_adjustment_2
);
}
else
if
(
phy
->
slot_offset_filtered
<
-
250
)
{
// VNF is fast
phy
->
insync_minor_adjustment
=
-
(
insync_minor_adjustment_2
);
phy
->
insync_minor_adjustment_duration
=
2
*
((
phy
->
slot_offset_filtered
+
250
)
/
-
(
insync_minor_adjustment_2
));
}
//
}
//
//else
//
{
//
// out of sync?
//
}
}
//else
{
// out of sync?
}
//
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (adjustment:%d slot_offset_filtered:%d) %d %d %d NEW:%d CURR:%d adj:%d\n",
//
// phy->sfn, phy->slot, ind.header.phy_id,
//
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration, phy->adjustment, phy->slot_offset_filtered,
//
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend,
//
// NFAPI_SFNSLOT2DEC(new_sfn, new_slot),
//
// NFAPI_SFNSLOT2DEC(curr_sfn, curr_slot),
//
// phy->adjustment);
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%4d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (adjustment:%d slot_offset_filtered:%d) %d %d %d NEW:%d CURR:%d adj:%d\n",
// phy->sfn, phy->slot, ind.header.phy_id,
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration, phy->adjustment, phy->slot_offset_filtered,
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend,
// NFAPI_SFNSLOT2DEC(new_sfn, new_slot),
// NFAPI_SFNSLOT2DEC(curr_sfn, curr_slot),
// phy->adjustment);
//
}
//
else if(phy->adjustment < 0)
//
{
//
// VNF is fast
//
//if(phy->adjustment == -1)
//
{
//
//
//
if(phy->slot_offset_filtered > 250)
//
{
//
// VNF is slow
//
phy->insync_minor_adjustment = insync_minor_adjustment_2;
//
phy->insync_minor_adjustment_duration = 2 * ((phy->slot_offset_filtered - 250) / insync_minor_adjustment_2);
//
}
//
else if(phy->slot_offset_filtered < -250)
//
{
//
// VNF is fast
//
phy->insync_minor_adjustment = -(insync_minor_adjustment_2);
//
phy->insync_minor_adjustment_duration = 2 * ((phy->slot_offset_filtered + 250) / -(insync_minor_adjustment_2));
//
}
//
}
//
//else
//
{
//
// out of sync?
//
}
//
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (adjustment:%d slot_offset_filtered:%d) %d %d %d\n",
//
// phy->sfn, phy->slot, ind.header.phy_id,
//
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration, phy->adjustment, phy->slot_offset_filtered,
//
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend);
//
}
//
/*
//
if (phy->adjustment > 10 || phy->adjustment < -10)
//
{
//
phy->zero_count++; // Add one to the getting out of sync counter
//
}
//
else
//
{
//
phy->zero_count = 0; // Small error - zero the out of sync counter
//
}
//
if (phy->zero_count >= 10) // If we have had 10 consecutive large errors - drop out of sync
//
{
//
NFAPI_TRACE(NFAPI_TRACE_NOTE, "we have fallen out of sync...\n");
//
//pP7SockInfo->syncAchieved = 0;
//
}
//
*/
//
}
//
}
//
}
//
if(phy->in_sync == 0)
//
{
//
/*NFAPI_TRACE(NFAPI_TRACE_NOTE, "***** Adjusting VNF phy_id:%d SFN/SF (%s) from %d to %d (%d) mode:%s zeroCount:%u sync:%s\n",
//
ind.header.phy_id, (phy->in_sync ? "via sfn" : "now"),
//
NFAPI_SFNSF2DEC(curr_sfn_sf), NFAPI_SFNSF2DEC(new_sfn_sf), phy->adjustment,
//
phy->filtered_adjust ? "FILTERED" : "ABSOLUTE",
//
phy->zero_count,
//
phy->in_sync ? "IN_SYNC" : "OUT_OF_SYNC");*/
//
phy->sfn = new_sfn;
//
phy->slot = new_slot;
//
}
//
}
//
// reset for next cycle
//
phy->previous_slot_offset_filtered = phy->slot_offset_filtered;
//
phy->min_sync_cycle_count = 2;
//
phy->slot_offset_filtered = 0;
//
phy->slot_offset = 0;
//
}
//
else
//
{
//
phy->previous_t1 = ind.t1;
//
phy->previous_t2 = ind.t2;
//
}
}
else
if
(
phy
->
adjustment
<
0
)
{
// VNF is fast
//if(phy->adjustment == -1)
{
//
if
(
phy
->
slot_offset_filtered
>
250
)
{
// VNF is slow
phy
->
insync_minor_adjustment
=
insync_minor_adjustment_2
;
phy
->
insync_minor_adjustment_duration
=
2
*
((
phy
->
slot_offset_filtered
-
250
)
/
insync_minor_adjustment_2
);
}
else
if
(
phy
->
slot_offset_filtered
<
-
250
)
{
// VNF is fast
phy
->
insync_minor_adjustment
=
-
(
insync_minor_adjustment_2
);
phy
->
insync_minor_adjustment_duration
=
2
*
((
phy
->
slot_offset_filtered
+
250
)
/
-
(
insync_minor_adjustment_2
));
}
}
//else
{
// out of sync?
}
// NFAPI_TRACE(NFAPI_TRACE_NOTE, "(%d/%d) VNF phy_id:%d Apply minor insync adjustment %dus for %d slots (adjustment:%d slot_offset_filtered:%d) %d %d %d\n",
// phy->sfn, phy->slot, ind.header.phy_id,
// phy->insync_minor_adjustment, phy->insync_minor_adjustment_duration, phy->adjustment, phy->slot_offset_filtered,
// insync_minor_adjustment_1, insync_minor_adjustment_2, phy->slot_offset_trend);
}
/*
if (phy->adjustment > 10 || phy->adjustment < -10)
{
phy->zero_count++; // Add one to the getting out of sync counter
}
else
{
phy->zero_count = 0; // Small error - zero the out of sync counter
}
if (phy->zero_count >= 10) // If we have had 10 consecutive large errors - drop out of sync
{
NFAPI_TRACE(NFAPI_TRACE_NOTE, "we have fallen out of sync...\n");
//pP7SockInfo->syncAchieved = 0;
}
*/
}
}
}
if
(
phy
->
in_sync
==
0
)
{
/*NFAPI_TRACE(NFAPI_TRACE_NOTE, "***** Adjusting VNF phy_id:%d SFN/SF (%s) from %d to %d (%d) mode:%s zeroCount:%u sync:%s\n",
ind.header.phy_id, (phy->in_sync ? "via sfn" : "now"),
NFAPI_SFNSF2DEC(curr_sfn_sf), NFAPI_SFNSF2DEC(new_sfn_sf), phy->adjustment,
phy->filtered_adjust ? "FILTERED" : "ABSOLUTE",
phy->zero_count,
phy->in_sync ? "IN_SYNC" : "OUT_OF_SYNC");*/
phy
->
sfn
=
new_sfn
;
phy
->
slot
=
new_slot
;
}
}
// reset for next cycle
phy
->
previous_slot_offset_filtered
=
phy
->
slot_offset_filtered
;
phy
->
min_sync_cycle_count
=
2
;
phy
->
slot_offset_filtered
=
0
;
phy
->
slot_offset
=
0
;
}
else
{
phy
->
previous_t1
=
ind
.
t1
;
phy
->
previous_t2
=
ind
.
t2
;
}
}
void
vnf_handle_timing_info
(
void
*
pRecvMsg
,
int
recvMsgLen
,
vnf_p7_t
*
vnf_p7
)
...
...
nfapi/open-nFAPI/vnf/src/vnf_p7_interface.c
View file @
6210519d
...
...
@@ -422,7 +422,7 @@ struct timespec current_time;
vnf_frame
=
curr
->
sfn
;
vnf_slot
=
curr
->
slot
;
struct
timespec
curr_time
;
clock_gettime
(
CLOCK_MONOTONIC
,
&
curr_time
);
clock_gettime
(
CLOCK_MONOTONIC
,
&
curr_time
);
//printf("SFN=%d, slot=%d, Curr_time=%d.%d \n",vnf_frame,vnf_slot,curr_time.tv_sec,curr_time.tv_nsec);
vnf_nr_sync
(
vnf_p7
,
curr
);
...
...
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