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
littleBu
OpenXG-RAN
Commits
1b3667f0
Commit
1b3667f0
authored
Feb 04, 2024
by
yankuo
Committed by
yankuo
May 20, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix Bug:oxgrf_lib.c and modify config
parent
4181cfa9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
42 additions
and
42 deletions
+42
-42
radio/OXGRF/oxgrf_lib.c
radio/OXGRF/oxgrf_lib.c
+1
-1
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.2x2.oxgrf.conf
...NERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.2x2.oxgrf.conf
+9
-9
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.oxgrf.conf
...S/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.oxgrf.conf
+8
-8
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.2x2.oxgrf.conf
...NERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.2x2.oxgrf.conf
+7
-7
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.oxgrf.conf
...S/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.oxgrf.conf
+12
-12
targets/PROJECTS/GENERIC-NR-5GC/CONF/ue.conf
targets/PROJECTS/GENERIC-NR-5GC/CONF/ue.conf
+5
-5
No files found.
radio/OXGRF/oxgrf_lib.c
View file @
1b3667f0
...
...
@@ -589,7 +589,7 @@ int device_init(openair0_device *device, openair0_config_t *openair0_cfg) {
LOG_I
(
HW
,
"[oxgrf] device type: IQX%d(Split Mode)
\n
"
,
model
-
2
);
}
else
if
(
model
==
6000
||
model
==
7000
||
model
==
7100
)
{
oxgrf
->
BoardType
=
IQX7000
;
shift
=
4
;
shift
=
2
;
LOG_I
(
HW
,
"[oxgrf] device type: IQX%d
\n
"
,
model
);
}
else
{
oxgrf
->
BoardType
=
UNKNOWN
;
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.2x2.oxgrf.conf
View file @
1b3667f0
...
...
@@ -10,8 +10,8 @@ gNBs =
gNB_name
=
"gNB-OAI"
;
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
tracking_area_code
=
1
00
;
plmn_list
= ({
mcc
=
466
;
mnc
=
92
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
nr_cellid
=
12345678
L
;
...
...
@@ -32,10 +32,10 @@ gNBs =
# downlinkConfigCommon
#frequencyInfoDL
# this is 3300.60 MHz + 53*12*30e-3 MHz = 3319.68
absoluteFrequencySSB
=
6
21312
;
# 641280
absoluteFrequencySSB
=
6
41280
;
dl_frequencyBand
=
78
;
# this is 3300.60 MHz
dl_absoluteFrequencyPointA
=
6
20040
;
# 640008
dl_absoluteFrequencyPointA
=
6
40008
;
#scs-SpecificCarrierList
dl_offstToCarrier
=
0
;
# subcarrierSpacing
...
...
@@ -161,7 +161,7 @@ gNBs =
//////////
AMF
parameters
:
amf_ip_address
= ( {
ipv4
=
"1
92.168.0.80"
;
#"192.168.70.132";
amf_ip_address
= ( {
ipv4
=
"1
72.11.200.14"
;
ipv6
=
"192:168:30::17"
;
active
=
"yes"
;
preference
=
"ipv4"
;
...
...
@@ -171,10 +171,10 @@ gNBs =
NETWORK_INTERFACES
:
{
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
92.168.0.202"
;
#"192.168.70.129/24";
GNB_INTERFACE_NAME_FOR_NGU
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
92.168.0.202"
;
#"192.168.70.129/24";
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
72.11.200.1"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
72.11.200.1"
;
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
};
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.106PRB.oxgrf.conf
View file @
1b3667f0
...
...
@@ -10,8 +10,8 @@ gNBs =
gNB_name
=
"gNB-OAI"
;
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }) });
tracking_area_code
=
1
00
;
plmn_list
= ({
mcc
=
466
;
mnc
=
92
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }) });
nr_cellid
=
12345678
L
;
...
...
@@ -159,7 +159,7 @@ gNBs =
//////////
AMF
parameters
:
amf_ip_address
= ( {
ipv4
=
"1
92.168.70.132
"
;
amf_ip_address
= ( {
ipv4
=
"1
72.11.200.14
"
;
ipv6
=
"192:168:30::17"
;
active
=
"yes"
;
preference
=
"ipv4"
;
...
...
@@ -169,10 +169,10 @@ gNBs =
NETWORK_INTERFACES
:
{
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"
eno2
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
92.168.0.202/24
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"
eno2
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
92.168.0.202/24
"
;
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"
docker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
72.11.200.1
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"
docker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
72.11.200.1
"
;
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
};
...
...
@@ -214,7 +214,7 @@ RUs = (
#beamforming 1x4 matrix:
bf_weights
= [
0
x00007fff
,
0
x0000
,
0
x0000
,
0
x0000
];
sdr_addrs
=
"dev=pciex:0,auxdac1=1660"
;
clock_src
=
"internal"
;
#
clock_src = "internal";
}
);
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.2x2.oxgrf.conf
View file @
1b3667f0
...
...
@@ -10,8 +10,8 @@ gNBs =
gNB_name
=
"gNB-OAI"
;
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
tracking_area_code
=
1
00
;
plmn_list
= ({
mcc
=
466
;
mnc
=
92
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
nr_cellid
=
12345678
L
;
...
...
@@ -161,7 +161,7 @@ gNBs =
//////////
AMF
parameters
:
amf_ip_address
= ( {
ipv4
=
"1
92.168.0.80
"
;
amf_ip_address
= ( {
ipv4
=
"1
72.11.200.14
"
;
ipv6
=
"192:168:30::17"
;
active
=
"yes"
;
preference
=
"ipv4"
;
...
...
@@ -171,10 +171,10 @@ gNBs =
NETWORK_INTERFACES
:
{
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
92.168.0.201/24
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
92.168.0.201/24
"
;
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
72.11.200.1
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
72.11.200.1
"
;
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
};
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/gnb.sa.band78.fr1.273PRB.oxgrf.conf
View file @
1b3667f0
...
...
@@ -9,9 +9,9 @@ gNBs =
gNB_ID
=
0
xe00
;
gNB_name
=
"gNB-OAI"
;
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
1
;
plmn_list
= ({
mcc
=
001
;
mnc
=
01
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
//
Tracking
area
code
,
0
x0000
and
0
xfffe
are
reserved
values
tracking_area_code
=
100
;
plmn_list
= ({
mcc
=
466
;
mnc
=
92
;
mnc_length
=
2
;
snssaiList
= ({
sst
=
1
; }); });
nr_cellid
=
12345678
L
;
...
...
@@ -162,7 +162,7 @@ gNBs =
//////////
AMF
parameters
:
amf_ip_address
= ( {
ipv4
=
"1
92.168.0.80
"
;
amf_ip_address
= ( {
ipv4
=
"1
72.11.200.14
"
;
ipv6
=
"192:168:30::17"
;
active
=
"yes"
;
preference
=
"ipv4"
;
...
...
@@ -172,10 +172,10 @@ gNBs =
NETWORK_INTERFACES
:
{
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
92.168.0.201/24
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"d
emo-oai
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
92.168.0.201/24
"
;
GNB_INTERFACE_NAME_FOR_NG_AMF
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NG_AMF
=
"1
72.11.200.1
"
;
GNB_INTERFACE_NAME_FOR_NGU
=
"d
ocker-openxg
"
;
GNB_IPV4_ADDRESS_FOR_NGU
=
"1
72.11.200.1
"
;
GNB_PORT_FOR_S1U
=
2152
;
# Spec 2152
};
...
...
@@ -215,10 +215,10 @@ RUs = (
max_pdschReferenceSignalPower
= -
27
;
max_rxgain
=
102
;
eNB_instances
= [
0
];
#
#beamforming 1x2 matrix: 1 layer x 2 antennas
bf_weights
= [
0
x00007fff
,
0
x0000
];
#clock_src = "internal
";
sdr_addrs
=
"dev=pciex:0,auxdac1=1630
"
;
#
beamforming 1x4 matrix:
bf_weights
= [
0
x00007fff
,
0
x0000
,
0
x0000
,
0
x0000
];
sdr_addrs
=
"dev=pciex:0,auxdac1=340
"
;
clock_src
=
"internal
"
;
}
);
...
...
targets/PROJECTS/GENERIC-NR-5GC/CONF/ue.conf
View file @
1b3667f0
uicc0
= {
imsi
=
"
2089900007487
"
;
key
=
"
fec86ba6eb707ed08905757b1bb44b8
f"
;
opc
=
"
C42449363BBAD02B66D16BC975D77CC1
"
;
dnn
=
"
oai
"
;
imsi
=
"
466920000000001
"
;
key
=
"
00112233445566778899aabbccddeef
f"
;
opc
=
"
000102030405060708090a0b0c0d0e0f
"
;
dnn
=
"
internet
"
;
nssai_sst
=
1
;
nssai_sd
=
1
;
nssai_sd
=
0
xFFFFFF
;
}
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