Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
slapos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
107
Merge Requests
107
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
slapos
Commits
c9cbd7f3
Commit
c9cbd7f3
authored
Dec 21, 2023
by
Kirill Smelkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
804b29b2
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
13 deletions
+11
-13
software/ors-amarisoft/buildout.hash.cfg
software/ors-amarisoft/buildout.hash.cfg
+2
-2
software/ors-amarisoft/config/enb.jinja2.cfg
software/ors-amarisoft/config/enb.jinja2.cfg
+4
-8
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
+2
-1
software/ors-amarisoft/instance.cfg
software/ors-amarisoft/instance.cfg
+0
-2
software/ors-amarisoft/slaplte.jinja2
software/ors-amarisoft/slaplte.jinja2
+3
-0
No files found.
software/ors-amarisoft/buildout.hash.cfg
View file @
c9cbd7f3
...
...
@@ -88,7 +88,7 @@ md5sum = e71b1d10676e5ffa5dc96db88d6f5bae
[template-ors-enb]
_update_hash_filename_ = instance-ors-enb.jinja2.cfg
md5sum =
14f7c57a82e79f8e8ea7e545707e173c
md5sum =
0b72942cae324da8dc813f9eae8b9625
[template-ors-gnb]
_update_hash_filename_ = instance-ors-gnb.jinja2.cfg
...
...
@@ -112,7 +112,7 @@ md5sum = dcaac06553a3222b14c0013a13f4a149
[enb.jinja2.cfg]
filename = config/enb.jinja2.cfg
md5sum =
d3bcfb537e246ac241898a6da2fcad5e
md5sum =
bc3ec5c4ff7fe336d855b69ebd282586
[drb_lte.jinja2.cfg]
filename = config/drb_lte.jinja2.cfg
...
...
software/ors-amarisoft/config/enb.jinja2.cfg
View file @
c9cbd7f3
{#- XXX ORS -> provide defaults for: slave_instance_list #}
{%- import 'slaplte.jinja2' as slaplte with context %}
{%- set J = slaplte.J %}
{%- set jcell_ru_ref = slaplte.jcell_ru_ref %}
...
...
@@ -202,6 +200,8 @@
root_sequence_index: {{ cell.get('root_sequence_index',
slapparameter_dict.get('root_sequence_index',
204 + i)) }},
inactivity_timer: {{ cell.inactivity_timer }},
// Handover
{{- handover_config(cell_ref) }}
...
...
@@ -298,8 +298,7 @@
srs_hopping_bandwidth: 0,
},
{#- XXX do we want to differentiate whether it is ORS or Amarisoft SDR board ? #}
{%- if ru.ru_type == 'sdr' %}
{%- if ors %}
manual_ref_signal_power: true,
{%- endif %}
...
...
@@ -384,9 +383,6 @@
cipher_algo_pref: [],
integ_algo_pref: [2, 1],
// XXX -> cell ?
inactivity_timer: {{ slapparameter_dict.get('inactivity_timer', defaults.lte_inactivity_timer) }},
srb_config: [
{
id: 1,
...
...
@@ -468,7 +464,7 @@
{#- NOTE: NR + LTE Dual Connectivity is setup via EN-DC only - via en_dc_scg_cell_list.
nr_dc_scg_cell_list sets up NR+NR Dual Connectivity #}
// tune NR parameters for the cell
XXX -> sdr/ors ? (see lte ^^^)
// tune NR parameters for the cell
{%- if ors %}
manual_ref_signal_power: true,
{%- if ors['one-watt'] %}
...
...
software/ors-amarisoft/instance-ors-enb.jinja2.cfg
View file @
c9cbd7f3
{#- XXX automatically load this from schema #}
{%- set ors_lte_defaults = {
"bandwidth": "20MHz",
"bandwidth": "20
MHz",
"n_antenna_dl": 2,
"n_antenna_ul": 2,
"rf_mode": "tdd",
...
...
@@ -64,6 +64,7 @@
'bandwidth': slapparameter_dict.bandwidth,
'dl_earfcn': ors_version['current-earfcn'],
'tac': slapparameter_dict.tac,
'inactivity_timer': slapparameter_dict.inactivity_timer,
} |tojson
})
%}
...
...
software/ors-amarisoft/instance.cfg
View file @
c9cbd7f3
...
...
@@ -210,10 +210,8 @@ context =
# XXX temp hack -> either cell configuration, or other conf(?)
[defaults]
lte_inactivity_timer = 10000
lte-imsi = 001010123456789
lte-k = 00112233445566778899aabbccddeeff
nr_inactivity_timer = 10000
nr-imsi = 001010123456789
nr-k = 00112233445566778899aabbccddeeff
software/ors-amarisoft/slaplte.jinja2
View file @
c9cbd7f3
...
...
@@ -16,6 +16,7 @@
{#- XXX opc='milenage' is not meaningful ? #}
{#- XXX txrx_active=ACTIVE for sdr - needed ? (bwcompat for ORS) - if yes -> update ru/sdr/input-schema.json #}
{#- XXX pci/tac -> move defaults to ORS (cell/* + peercell/*) #}
{#- XXX add inactivity timer to cell schemas #}
{%- set defaults = {
'enb_id': '0x1A2D0',
'gnb_id': '0x12345',
...
...
@@ -31,6 +32,7 @@
'cell/lte': {
'pci': 1,
'tac': '0x0001',
'inactivity_timer': 10000,
},
'cell/lte/fdd': {
...
...
@@ -41,6 +43,7 @@
'cell/nr': {
'pci': 500,
'inactivity_timer': 10000,
},
'cell/nr/fdd': {
'ssb_pos_bitmap': '1000',
...
...
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