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
4f4cb475
Commit
4f4cb475
authored
Jan 12, 2024
by
Guido Casati
Committed by
Robert Schmidt
Jan 25, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Extended E1 design documentation
- provided insights on the messages flow with requests towards northbound
parent
76372618
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
5 deletions
+31
-5
doc/E1-design.md
doc/E1-design.md
+31
-5
No files found.
doc/E1-design.md
View file @
4f4cb475
...
@@ -45,11 +45,37 @@ sequenceDiagram
...
@@ -45,11 +45,37 @@ sequenceDiagram
Note over c: Execute rrc_gNB_process_e1_bearer_context_release_cplt()
Note over c: Execute rrc_gNB_process_e1_bearer_context_release_cplt()
```
```
The files that implement the callback towards these handlers are in
The implementation of callbacks towards these handlers is distributed across the following file, depending on the operating mode:
-
`cucp_cuup_direct.c`
: integrated CU (for CP=>UP messages)
-
`cucp_cuup_e1ap.c`
: E1 split mode (for CP=>UP messages)
| Mode | CP=>UP messages |UP=>CP messages |
-
`cuup_cucp_direct.c`
: integrated CU (for UP=>CP messages)
| --------------| --------------------|--------------------|
-
`cuup_cucp_e1ap.c`
: E1 split mode (for UP=>CP messages)
| Integrated CU |
`cucp_cuup_direct.c`
|
`cuup_cucp_direct.c`
|
| E1 Split |
`cucp_cuup_e1ap.c`
|
`cuup_cucp_e1ap.c`
|
As long as concerns E1 Interface Management Procedures, the code flow of request messages towards northbound looks like this:
```
mermaid
sequenceDiagram
participant r as RRC
participant c as CUCP
participant u as CUUP
Note over u: E1AP_CUUP_task (SCTP Handler)
Note over u: ASN1 encoder
u->>c: e.g. E1 Setup Request (SCTP)
Note over c: E1AP_CUCP_task (SCTP Handler)
Note over c: ASN1 decoder
c->>r: E1AP_SETUP_REQ (ITTI)
Note over r: TASK_RRC_GNB (RRC Handler)
r->>c: E1AP_SETUP_RESP (ITTI)
Note over c: E1AP_CUCP_task (E1AP Callback)
Note over c: ASN1 encoder
c->>u: e.g. E1 Setup Response/Failure
Note over u: E1AP_CUUP_task (SCTP Handler)
Note over u: ASN1 decoder
```
# 2. Running the E1 Split
# 2. Running the E1 Split
...
...
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