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
ef11cac4
Commit
ef11cac4
authored
Feb 11, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
f1ap
parent
11dd6491
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
335 additions
and
8 deletions
+335
-8
openair2/F1AP/f1ap_cu_interface_management.c
openair2/F1AP/f1ap_cu_interface_management.c
+324
-4
openair2/F1AP/f1ap_cu_interface_management.h
openair2/F1AP/f1ap_cu_interface_management.h
+2
-2
openair2/F1AP/f1ap_cu_task.c
openair2/F1AP/f1ap_cu_task.c
+3
-0
openair2/F1AP/f1ap_handlers.c
openair2/F1AP/f1ap_handlers.c
+1
-1
openair2/RRC/NR/mac_rrc_dl_f1ap.c
openair2/RRC/NR/mac_rrc_dl_f1ap.c
+5
-1
No files found.
openair2/F1AP/f1ap_cu_interface_management.c
View file @
ef11cac4
This diff is collapsed.
Click to expand it.
openair2/F1AP/f1ap_cu_interface_management.h
View file @
ef11cac4
...
...
@@ -62,10 +62,10 @@ int CU_send_F1_SETUP_FAILURE(sctp_assoc_t assoc_id, const f1ap_setup_failure_t *
int
CU_handle_gNB_DU_CONFIGURATION_UPDATE
(
instance_t
instance
,
sctp_assoc_t
assoc_id
,
uint32_t
stream
,
F1AP_F1AP_PDU_t
*
pdu
);
int
CU_send_gNB_DU_CONFIGURATION_FAILURE
(
sctp_assoc_t
assoc_id
,
F1AP_GNBDUConfigurationUpdateF
ailure_t
*
GNBDUConfigurationUpdateFailure
);
f1ap_gnb_du_configuration_update_f
ailure_t
*
GNBDUConfigurationUpdateFailure
);
int
CU_send_gNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
(
sctp_assoc_t
assoc_id
,
F1AP_GNBDUConfigurationUpdateA
cknowledge_t
*
GNBDUConfigurationUpdateAcknowledge
);
f1ap_gnb_du_configuration_update_a
cknowledge_t
*
GNBDUConfigurationUpdateAcknowledge
);
/*
* gNB-CU Configuration Update
...
...
openair2/F1AP/f1ap_cu_task.c
View file @
ef11cac4
...
...
@@ -179,6 +179,9 @@ void *F1AP_CU_task(void *arg) {
&
F1AP_GNB_CU_CONFIGURATION_UPDATE
(
received_msg
));
break
;
case
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
:
CU_send_gNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
(
assoc_id
,
&
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
(
received_msg
));
break
;
case
F1AP_DL_RRC_MESSAGE
:
// from rrc
CU_send_DL_RRC_MESSAGE_TRANSFER
(
assoc_id
,
&
F1AP_DL_RRC_MESSAGE
(
received_msg
));
...
...
openair2/F1AP/f1ap_handlers.c
View file @
ef11cac4
...
...
@@ -45,7 +45,7 @@ static const f1ap_message_processing_t f1ap_messages_processing[][3] = {
{
0
,
0
,
0
},
/* Reset */
{
CU_handle_F1_SETUP_REQUEST
,
DU_handle_F1_SETUP_RESPONSE
,
DU_handle_F1_SETUP_FAILURE
},
/* F1Setup */
{
0
,
0
,
0
},
/* ErrorIndication */
{
0
,
0
,
0
},
/* gNBDUConfigurationUpdate */
{
CU_handle_gNB_DU_CONFIGURATION_UPDATE
,
0
,
0
},
/* gNBDUConfigurationUpdate */
{
DU_handle_gNB_CU_CONFIGURATION_UPDATE
,
CU_handle_gNB_CU_CONFIGURATION_UPDATE_ACKNOWLEDGE
,
CU_handle_gNB_CU_CONFIGURATION_UPDATE_FAILURE
},
/* gNBCUConfigurationUpdate */
...
...
openair2/RRC/NR/mac_rrc_dl_f1ap.c
View file @
ef11cac4
...
...
@@ -46,7 +46,11 @@ static void f1_setup_failure_f1ap(sctp_assoc_t assoc_id, const f1ap_setup_failur
static
void
gnb_du_configuration_update_ack_f1ap
(
sctp_assoc_t
assoc_id
,
const
f1ap_gnb_du_configuration_update_acknowledge_t
*
ack
)
{
AssertFatal
(
false
,
"%s() not implemented
\n
"
,
__func__
);
MessageDef
*
msg
=
itti_alloc_new_message
(
TASK_RRC_GNB
,
0
,
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
);
msg
->
ittiMsgHeader
.
originInstance
=
assoc_id
;
f1ap_gnb_du_configuration_update_acknowledge_t
*
f1ap_msg
=
&
F1AP_GNB_DU_CONFIGURATION_UPDATE_ACKNOWLEDGE
(
msg
);
*
f1ap_msg
=
*
ack
;
itti_send_msg_to_task
(
TASK_CU_F1
,
0
,
msg
);
}
static
void
ue_context_setup_request_f1ap
(
sctp_assoc_t
assoc_id
,
const
f1ap_ue_context_setup_t
*
req
)
...
...
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