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
9ce9c16e
Commit
9ce9c16e
authored
Oct 29, 2025
by
Laurent THOMAS
Committed by
Robert Schmidt
Oct 30, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add documentation on PRACH processing
parent
d8d15205
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
doc/rach_processing_in_gNB.md
doc/rach_processing_in_gNB.md
+24
-0
No files found.
doc/rach_processing_in_gNB.md
0 → 100644
View file @
9ce9c16e
The gNB RACH processing
1.
Collect I/Q samples
The gNB/ru main loop, in ru_thread()
If there is rach occasions in this slot
this main loop calls rx_nr_prach_ru() that stores the I/Q samples in the prach_item_t context
2.
process the samples
L1_rx_thread() has received slot indication by msg on queue resp_L1, it calls rx_func() => L1_nr_prach_procedures()
L1_nr_prach_procedures() fills nfapi_nr_rach_indication_t structure from result of rx_nr_prach() that process the content of rxsigF
[
prachOccasion
][
aa
]
rx_func() sends the decoded rach to upper processing by call to NR_UL_indication() that calls handle_nr_rach() => nr_initiate_ra_proc()
nr_initiate_ra_proc() creates a UE context if it needs, then sets UE.ra.ra_state to what it should do
3.
send the RACH DL
tx_func() that is launched by L1_tx_thread() as it gets L1_tx_out msg (from main loop in 1.)
tx_func()=>run_scheduler_monolithic()=>gNB_dlsch_ulsch_scheduler()=>nr_scheduler_RA()
nr_scheduler_RA() process all existing UE contexts, to see it it has to schedule a RACH DL
4.
global synchronisation
resp_L1 msg for (2.) is created in tx_func() that is launched by L1_tx_thread() (see3.) when it receives slot indication as it gets L1_tx_out msg
this msg is sent by the main loop (see 1.)
tx_func()=>run_scheduler_monolithic()=>nr_schedule_response ()=>nr_schedule_ul_tti_req ()=> nr_schedule_rx_prach()
writes in the triggering structure to (1.) that it will have to run rx_nr_prach_ru() in a given future slot
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