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
e2c0714b
Commit
e2c0714b
authored
Apr 11, 2022
by
Sakthivel Velumani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed GPIO config for new MHU
parent
b097ae9c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
25 deletions
+23
-25
executables/nr-ru.c
executables/nr-ru.c
+5
-5
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
+18
-20
No files found.
executables/nr-ru.c
View file @
e2c0714b
...
...
@@ -759,13 +759,13 @@ void tx_rf(RU_t *ru,int frame,int slot, uint64_t timestamp) {
// the beam index is written in bits 8-10 of the flags
// bit 11 enables the gpio programming
int
beam
=
0
;
if
(
ru
->
common
.
beam_id
&&
(
slot
%
10
==
0
)
&&
(
ru
->
common
.
beam_id
[
0
][
slot
*
fp
->
symbols_per_slot
]
<
8
))
{
beam
=
ru
->
common
.
beam_id
[
0
][
slot
*
fp
->
symbols_per_slot
]
|
8
;
if
(
(
slot
%
10
==
0
)
&&
ru
->
common
.
beam_id
&&
(
ru
->
common
.
beam_id
[
0
][
slot
*
fp
->
symbols_per_slot
]
<
64
))
{
beam
=
ru
->
common
.
beam_id
[
0
][
slot
*
fp
->
symbols_per_slot
]
|
64
;
LOG_D
(
HW
,
"slot %d, beam %d
\n
"
,
slot
,
beam
);
}
flags
|=
beam
<<
8
;
flags
|=
beam
<<
8
;
// MSB 16 bits are used for beam
LOG_D
(
HW
,
"slot %d, beam %d
\n
"
,
slot
,
beam
);
}
...
...
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
View file @
e2c0714b
...
...
@@ -274,18 +274,16 @@ static int trx_usrp_start(openair0_device *device) {
usrp_state_t
*
s
=
(
usrp_state_t
*
)
device
->
priv
;
if
(
device
->
type
!=
USRP_X400_DEV
)
{
// setup GPIO for TDD, GPIO(4) = ATR_RX
//set data direction register (DDR) to output
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"DDR"
,
0xfff
,
0xfff
);
//set lower 7 bits to be controlled automatically by ATR (the rest 5 bits are controlled manually)
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"CTRL"
,
0x7f
,
0xfff
);
//set pins 4 (RX_TX_Switch) and 6 (Shutdown PA) to 1 when the radio is only receiving (ATR_RX)
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_RX"
,
(
1
<<
4
)
|
(
1
<<
6
),
0x7f
);
// set pin 5 (Shutdown LNA) to 1 when the radio is transmitting and receiveing (ATR_XX)
// (we use full duplex here, because our RX is on all the time - this might need to change later)
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_XX"
,
(
1
<<
5
),
0x7f
);
// set the output pins to 1
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
7
<<
7
,
0xf80
);
//set lower 5 bits to be controlled automatically by ATR (the rest 7 bits are controlled manually)
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"CTRL"
,
0x1f
,
0xfff
);
//set pin 1 (TX/RX1) to 1 for MHU1 for transmistting
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_TX"
,
(
1
<<
1
),
0x1f
);
//set pin 4 (ID0) to 1 and pins 2 (TX/RX2) & 3 (ID1) to 0
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_XX"
,
(
1
<<
4
),
0x1f
);
//set the output pins to 1
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
0x7e0
,
0xfe0
);
}
s
->
wait_for_first_pps
=
1
;
...
...
@@ -457,12 +455,12 @@ static int trx_usrp_write(openair0_device *device,
s
->
tx_count
++
;
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_BEAM_SWITCHING_GPIO
,
1
);
// bit
3
enables gpio (for backward compatibility)
if
(
flags_msb
&
8
)
{
// push GPIO bits
7
-9 from flags_msb
int
gpio
789
=
(
flags_msb
&
7
)
<<
7
;
// bit
6
enables gpio (for backward compatibility)
if
(
flags_msb
&
64
)
{
// push GPIO bits
5
-9 from flags_msb
int
gpio
5ten
=
(
flags_msb
&
63
)
<<
5
;
s
->
usrp
->
set_command_time
(
s
->
tx_md
.
time_spec
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
gpio
789
,
0x38
0
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
gpio
5ten
,
0x7e
0
);
s
->
usrp
->
clear_command_time
();
}
VCD_SIGNAL_DUMPER_DUMP_FUNCTION_BY_NAME
(
VCD_SIGNAL_DUMPER_FUNCTIONS_BEAM_SWITCHING_GPIO
,
0
);
...
...
@@ -598,12 +596,12 @@ void *trx_usrp_write_thread(void * arg){
LOG_D
(
PHY
,
"usrp_tx_write: tx_count %llu SoB %d, EoB %d, TS %llu
\n
"
,(
unsigned
long
long
)
s
->
tx_count
,
s
->
tx_md
.
start_of_burst
,
s
->
tx_md
.
end_of_burst
,(
unsigned
long
long
)
timestamp
);
s
->
tx_count
++
;
// bit
3
enables gpio (for backward compatibility)
if
(
flags_msb
&
8
)
{
// push GPIO bits
7
-9 from flags_msb
int
gpio
789
=
(
flags_msb
&
7
)
<<
7
;
// bit
6
enables gpio (for backward compatibility)
if
(
flags_msb
&
64
)
{
// push GPIO bits
5
-9 from flags_msb
int
gpio
5ten
=
(
flags_msb
&
63
)
<<
5
;
s
->
usrp
->
set_command_time
(
s
->
tx_md
.
time_spec
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
gpio
789
,
0x38
0
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
gpio
5ten
,
0x7e
0
);
s
->
usrp
->
clear_command_time
();
}
...
...
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