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
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
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
OpenXG
OpenXG-RAN
Commits
078c0845
Commit
078c0845
authored
Mar 01, 2025
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add developer documentation for fhi_72 driver
parent
6b4954f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
47 additions
and
0 deletions
+47
-0
doc/README.md
doc/README.md
+1
-0
radio/fhi_72/README.md
radio/fhi_72/README.md
+46
-0
No files found.
doc/README.md
View file @
078c0845
...
...
@@ -117,6 +117,7 @@ Some directories under `radio` contain READMEs:
-
[
USRP
](
../radio/USRP/README.md
)
-
[
BladeRF
](
../radio/BLADERF/README
)
-
[
IQPlayer
](
../radio/iqplayer/DOC/iqrecordplayer_usage.md
)
, and
[
general documentation
](
./iqrecordplayer_usage.md
)
-
[
fhi_72
](
../radio/fhi_72/README.md
)
The other SDRs (AW2S, LimeSDR, ...) have no READMEs.
...
...
radio/fhi_72/README.md
0 → 100644
View file @
078c0845
This document describes the driver for the xran driver, implementing O-RAN FHI
7.
2 interface. This is for developers; for user documentation, consider the
[
O-RAN 7.2 tutorial instead
](
../../doc/ORAN_FHI7.2_Tutorial.md
)
.
The main source files and their purpose are as follows:
-
`oaioran.c`
: definition of xran-specific callback functions.
-
`oran-config.c`
: reading of 7.2-specific configuration and preparing xran
configration.
-
`oran-init.c`
: initialization of xran.
-
`oran_isolate.c`
: main entry point and definition of function pointers for OAI
callbacks.
The entry point for the driver library is
`transport_init()`
in
`oran_isolate.c`
.
This function is concerned with setting necessary function pointers for OAI
integration, and prepares xran configuration through
`get_xran_config()`
. This
function reads 7.2 specific configuration and deduces some of the parameters
(e.g., frequency) from OAI-provided radio configuration in
`openair0_config_t`
.
Actual xran initialization happens in
`oai_oran_initialize()`
in
`oran-init.c`
.
It calls various helper function in the same file to set up DPDK memory buffer
(pools). Notably, these callbacks are installed:
-
`oai_xran_fh_rx_callback()`
through
`xran_5g_fronthault_config()`
: callback
for PUSCH data; used to provide timing data.
-
`oai_xran_fh_rx_prach_callback()`
through
`xran_5g_prach_req()`
: callback for
PRACH data; not currently used and implemented in PUSCH data callback.
-
`oai_physide_dl_tti_call_back()`
through
`xran_reg_physide_cb()`
: only used
to unblock timing in
`oai_xran_fh_rx_callback()`
upon first xran call.
More detailed information about the xran callbacks can be taken from the xran
documentation.
During normal operation, OAI calls into the driver through functions
`oran_fh_if4p5_south_in()`
for PUSCH/PRACH and
`oran_fh_if4p5_south_out()`
for
PDSCH.
For PDSCH,
`oran_fh_if4p5_south_out()`
calls
`xran_fh_tx_send_slot()`
that
optionally compresses IQ data, then writes it into IQ buffers of xran.
For PUSCH/PRACH,
`oran_fh_if4p5_south_in()`
calls
`xran_fh_rx_read_slot()`
that
blocks and waits for the next slot. This is done through either a message
queue, or through polling, which in both cases depends on xran calling the
callback
`oai_xran_fh_rx_callback()`
as installed during xran initialization.
Once unblocked, it reads first PRACH data, then PUSCH data, before returning to
OAI.
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