Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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
OpenXG
OpenXG UE
Commits
a3e72721
Commit
a3e72721
authored
Mar 09, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/usrp_x400-rebase' into integration_2022_wk10
parents
9d3ba1b8
c14aa697
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
66 additions
and
21 deletions
+66
-21
targets/ARCH/COMMON/common_lib.c
targets/ARCH/COMMON/common_lib.c
+19
-4
targets/ARCH/COMMON/common_lib.h
targets/ARCH/COMMON/common_lib.h
+6
-2
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
+41
-15
No files found.
targets/ARCH/COMMON/common_lib.c
View file @
a3e72721
...
@@ -43,16 +43,31 @@
...
@@ -43,16 +43,31 @@
//#include "targets/RT/USER/lte-softmodem.h"
//#include "targets/RT/USER/lte-softmodem.h"
#include "executables/softmodem-common.h"
#include "executables/softmodem-common.h"
char
*
get_devname
(
int
devtype
)
{
const
char
*
devtype_names
[
MAX_RF_DEV_TYPE
]
=
{
char
*
devnames
[
MAX_RF_DEV_TYPE
]
=
DEVTYPE_NAMES
;
""
,
"EXMIMO"
,
"USRP B200"
,
"USRP X300"
,
"USRP N300"
,
"USRP X400"
,
"BLADERF"
,
"LMSSDR"
,
"IRIS"
,
"No HW"
,
"ADRV9371_ZC706"
,
"UEDv2"
,
"RFSIMULATOR"
};
const
char
*
get_devname
(
int
devtype
)
{
if
(
devtype
<
MAX_RF_DEV_TYPE
&&
devtype
!=
MIN_RF_DEV_TYPE
)
if
(
devtype
<
MAX_RF_DEV_TYPE
&&
devtype
!=
MIN_RF_DEV_TYPE
)
return
dev
names
[
devtype
];
return
devtype_
names
[
devtype
];
return
"none"
;
return
"none"
;
}
}
int
set_device
(
openair0_device
*
device
)
int
set_device
(
openair0_device
*
device
)
{
{
char
*
devname
=
get_devname
(
device
->
type
);
c
onst
c
har
*
devname
=
get_devname
(
device
->
type
);
if
(
strcmp
(
devname
,
"none"
)
!=
0
)
{
if
(
strcmp
(
devname
,
"none"
)
!=
0
)
{
LOG_I
(
HW
,
"[%s] has loaded %s device.
\n
"
,((
device
->
host_type
==
RAU_HOST
)
?
"RAU"
:
"RRU"
),
devname
);
LOG_I
(
HW
,
"[%s] has loaded %s device.
\n
"
,((
device
->
host_type
==
RAU_HOST
)
?
"RAU"
:
"RRU"
),
devname
);
}
else
{
}
else
{
...
...
targets/ARCH/COMMON/common_lib.h
View file @
a3e72721
...
@@ -92,6 +92,8 @@ typedef enum {
...
@@ -92,6 +92,8 @@ typedef enum {
USRP_X300_DEV
,
USRP_X300_DEV
,
/*!\brief device is USRP N300/N310*/
/*!\brief device is USRP N300/N310*/
USRP_N300_DEV
,
USRP_N300_DEV
,
/*!\brief device is USRP X400/X410*/
USRP_X400_DEV
,
/*!\brief device is BLADE RF*/
/*!\brief device is BLADE RF*/
BLADERF_DEV
,
BLADERF_DEV
,
/*!\brief device is LMSSDR (SoDeRa)*/
/*!\brief device is LMSSDR (SoDeRa)*/
...
@@ -107,7 +109,9 @@ typedef enum {
...
@@ -107,7 +109,9 @@ typedef enum {
RFSIMULATOR
,
RFSIMULATOR
,
MAX_RF_DEV_TYPE
MAX_RF_DEV_TYPE
}
dev_type_t
;
}
dev_type_t
;
#define DEVTYPE_NAMES {"","EXMIMO","USRP B200","USRP X300","USRP N300","BLADERF","LMSSDR","IRIS","No HW","ADRV9371_ZC706","UEDv2", "RFSIMULATOR"}
/* list of names of devices, needs to match dev_type_t */
extern
const
char
*
devtype_names
[
MAX_RF_DEV_TYPE
];
/*!\brief transport protocol types
/*!\brief transport protocol types
*/
*/
typedef
enum
{
typedef
enum
{
...
@@ -535,7 +539,7 @@ extern "C"
...
@@ -535,7 +539,7 @@ extern "C"
/*! \brief get device name from device type */
/*! \brief get device name from device type */
char
*
get_devname
(
int
devtype
);
c
onst
c
har
*
get_devname
(
int
devtype
);
/*! \brief Initialize openair RF target. It returns 0 if OK */
/*! \brief Initialize openair RF target. It returns 0 if OK */
int
openair0_device_load
(
openair0_device
*
device
,
openair0_config_t
*
openair0_cfg
);
int
openair0_device_load
(
openair0_device
*
device
,
openair0_config_t
*
openair0_cfg
);
/*! \brief Initialize transport protocol . It returns 0 if OK */
/*! \brief Initialize transport protocol . It returns 0 if OK */
...
...
targets/ARCH/USRP/USERSPACE/LIB/usrp_lib.cpp
View file @
a3e72721
...
@@ -273,6 +273,7 @@ static int sync_to_gps(openair0_device *device) {
...
@@ -273,6 +273,7 @@ static int sync_to_gps(openair0_device *device) {
static
int
trx_usrp_start
(
openair0_device
*
device
)
{
static
int
trx_usrp_start
(
openair0_device
*
device
)
{
usrp_state_t
*
s
=
(
usrp_state_t
*
)
device
->
priv
;
usrp_state_t
*
s
=
(
usrp_state_t
*
)
device
->
priv
;
if
(
device
->
type
!=
USRP_X400_DEV
)
{
// setup GPIO for TDD, GPIO(4) = ATR_RX
// setup GPIO for TDD, GPIO(4) = ATR_RX
//set data direction register (DDR) to output
//set data direction register (DDR) to output
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"DDR"
,
0xfff
,
0xfff
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"DDR"
,
0xfff
,
0xfff
);
...
@@ -285,6 +286,7 @@ static int trx_usrp_start(openair0_device *device) {
...
@@ -285,6 +286,7 @@ static int trx_usrp_start(openair0_device *device) {
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_XX"
,
(
1
<<
5
),
0x7f
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"ATR_XX"
,
(
1
<<
5
),
0x7f
);
// set the output pins to 1
// set the output pins to 1
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
7
<<
7
,
0xf80
);
s
->
usrp
->
set_gpio_attr
(
"FP0"
,
"OUT"
,
7
<<
7
,
0xf80
);
}
s
->
wait_for_first_pps
=
1
;
s
->
wait_for_first_pps
=
1
;
s
->
rx_count
=
0
;
s
->
rx_count
=
0
;
...
@@ -847,7 +849,7 @@ rx_gain_calib_table_t calib_table_x310[] = {
...
@@ -847,7 +849,7 @@ rx_gain_calib_table_t calib_table_x310[] = {
{
-
1
,
0
}
{
-
1
,
0
}
};
};
/*! \brief USRP
B210
RX calibration table */
/*! \brief USRP
n3xf
RX calibration table */
rx_gain_calib_table_t
calib_table_n310
[]
=
{
rx_gain_calib_table_t
calib_table_n310
[]
=
{
{
3500000000.0
,
0.0
},
{
3500000000.0
,
0.0
},
{
2660000000.0
,
0.0
},
{
2660000000.0
,
0.0
},
...
@@ -857,6 +859,16 @@ rx_gain_calib_table_t calib_table_n310[] = {
...
@@ -857,6 +859,16 @@ rx_gain_calib_table_t calib_table_n310[] = {
{
-
1
,
0
}
{
-
1
,
0
}
};
};
/*! \brief Empty RX calibration table */
rx_gain_calib_table_t
calib_table_none
[]
=
{
{
3500000000.0
,
0.0
},
{
2660000000.0
,
0.0
},
{
2300000000.0
,
0.0
},
{
1880000000.0
,
0.0
},
{
816000000.0
,
0.0
},
{
-
1
,
0
}
};
/*! \brief Set RX gain offset
/*! \brief Set RX gain offset
* \param openair0_cfg RF frontend parameters set by application
* \param openair0_cfg RF frontend parameters set by application
...
@@ -1011,7 +1023,9 @@ extern "C" {
...
@@ -1011,7 +1023,9 @@ extern "C" {
device
->
type
=
USRP_N300_DEV
;
device
->
type
=
USRP_N300_DEV
;
usrp_master_clock
=
122.88e6
;
usrp_master_clock
=
122.88e6
;
args
+=
boost
::
str
(
boost
::
format
(
",master_clock_rate=%f"
)
%
usrp_master_clock
);
args
+=
boost
::
str
(
boost
::
format
(
",master_clock_rate=%f"
)
%
usrp_master_clock
);
//args += ", send_buff_size=33554432";
if
(
0
!=
system
(
"sysctl -w net.core.rmem_max=62500000 net.core.wmem_max=62500000"
)
)
LOG_W
(
HW
,
"Can't set kernel parameters for N3x0
\n
"
);
}
}
if
(
device_adds
[
0
].
get
(
"type"
)
==
"x300"
)
{
if
(
device_adds
[
0
].
get
(
"type"
)
==
"x300"
)
{
...
@@ -1025,6 +1039,13 @@ extern "C" {
...
@@ -1025,6 +1039,13 @@ extern "C" {
LOG_W
(
HW
,
"Can't set kernel parameters for X3xx
\n
"
);
LOG_W
(
HW
,
"Can't set kernel parameters for X3xx
\n
"
);
}
}
if
(
device_adds
[
0
].
get
(
"type"
)
==
"x4xx"
)
{
printf
(
"Found USRP x400
\n
"
);
device
->
type
=
USRP_X400_DEV
;
usrp_master_clock
=
245.76e6
;
args
+=
boost
::
str
(
boost
::
format
(
",master_clock_rate=%f"
)
%
usrp_master_clock
);
}
s
->
usrp
=
uhd
::
usrp
::
multi_usrp
::
make
(
args
);
s
->
usrp
=
uhd
::
usrp
::
multi_usrp
::
make
(
args
);
if
(
args
.
find
(
"clock_source"
)
==
std
::
string
::
npos
)
{
if
(
args
.
find
(
"clock_source"
)
==
std
::
string
::
npos
)
{
...
@@ -1103,8 +1124,13 @@ extern "C" {
...
@@ -1103,8 +1124,13 @@ extern "C" {
std
::
cerr
<<
"-- Using calibration table: calib_table_n310"
<<
std
::
endl
;
std
::
cerr
<<
"-- Using calibration table: calib_table_n310"
<<
std
::
endl
;
}
}
if
(
device
->
type
==
USRP_X400_DEV
)
{
openair0_cfg
[
0
].
rx_gain_calib_table
=
calib_table_none
;
std
::
cerr
<<
"-- Using calibration table: calib_table_none"
<<
std
::
endl
;
}
if
(
device
->
type
==
USRP_N300_DEV
||
device
->
type
==
USRP_X300_DEV
)
{
if
(
device
->
type
==
USRP_N300_DEV
||
device
->
type
==
USRP_X300_DEV
||
device
->
type
==
USRP_X400_DEV
)
{
LOG_I
(
HW
,
"%s() sample_rate:%u
\n
"
,
__FUNCTION__
,
(
int
)
openair0_cfg
[
0
].
sample_rate
);
LOG_I
(
HW
,
"%s() sample_rate:%u
\n
"
,
__FUNCTION__
,
(
int
)
openair0_cfg
[
0
].
sample_rate
);
switch
((
int
)
openair0_cfg
[
0
].
sample_rate
)
{
switch
((
int
)
openair0_cfg
[
0
].
sample_rate
)
{
...
...
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