blob: 2b0ba715897ff56e11cf758362d12a24b606e720 [file] [log] [blame]
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +01001/*
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +02002 * Copyright (C) 2018-2019 sysmocom - s.f.m.c. GmbH
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +01003 * All Rights Reserved
4 *
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +02005 * SPDX-License-Identifier: AGPL-3.0+
6 *
7 * Author: Pau Espin Pedrol <pespin@sysmocom.de>
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Affero General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010012 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020017 * GNU Affero General Public License for more details.
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010018 *
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020019 * You should have received a copy of the GNU Affero General Public License
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010020 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Pau Espin Pedrole9ce77b2019-06-25 12:29:01 +020021 * See the COPYING file in the main directory for details.
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010022 */
23
24#include <string.h>
25#include <stdint.h>
26#include <inttypes.h>
27#include <netinet/in.h>
28#include <arpa/inet.h>
29
30#include <osmocom/core/talloc.h>
31#include <osmocom/core/utils.h>
32#include <osmocom/core/rate_ctr.h>
33
34#include <osmocom/vty/command.h>
Pau Espin Pedrolaebbfe02020-01-02 16:39:11 +010035#include <osmocom/vty/logging.h>
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010036#include <osmocom/vty/vty.h>
37#include <osmocom/vty/misc.h>
38
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +020039#include "trx_rate_ctr.h"
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010040#include "trx_vty.h"
41#include "../config.h"
42
43static struct trx_ctx* g_trx_ctx;
44
Pau Espin Pedrola7bf6cd2020-01-14 17:52:15 +010045const struct value_string clock_ref_names[] = {
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010046 { REF_INTERNAL, "internal" },
47 { REF_EXTERNAL, "external" },
Pau Espin Pedrolaae403f2018-08-27 16:50:19 +020048 { REF_GPS, "gpsdo" },
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010049 { 0, NULL }
50};
51
Alexander Chemeris9a87d902019-10-15 00:33:07 +030052const struct value_string filler_names[] = {
53 { FILLER_DUMMY, "Dummy bursts (C0 only)" },
54 { FILLER_ZERO, "Empty bursts" },
55 { FILLER_NORM_RAND, "GMSK Normal Bursts with random payload" },
56 { FILLER_EDGE_RAND, "8-PSK Normal Bursts with random payload" },
57 { FILLER_ACCESS_RAND, "Access Bursts with random payload" },
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010058 { 0, NULL }
59};
60
Alexander Chemeris9a87d902019-10-15 00:33:07 +030061static const struct value_string filler_types[] = {
62 { FILLER_DUMMY, "dummy" },
63 { FILLER_ZERO, "zero" },
64 { FILLER_NORM_RAND, "random-nb-gmsk" },
65 { FILLER_EDGE_RAND, "random-nb-8psk" },
66 { FILLER_ACCESS_RAND, "random-ab" },
67 { 0, NULL }
68};
69
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070070static const struct value_string filler_docs[] = {
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070071 { FILLER_DUMMY, "Send a Dummy Burst on C0 (TRX0) and empty burst on other channels" },
Vadim Yanitskiy15873072020-12-08 15:35:52 +010072 { FILLER_ZERO, "Send an empty burst (default)" },
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +070073 { FILLER_NORM_RAND, "Send a GMSK modulated Normal Burst with random bits (spectrum mask testing)" },
74 { FILLER_EDGE_RAND, "Send an 8-PSK modulated Normal Burst with random bits (spectrum mask testing)" },
75 { FILLER_ACCESS_RAND, "Send an Access Burst with random bits (Rx/Tx alignment testing)" },
76 { 0, NULL }
77};
78
Alexander Chemeris9a87d902019-10-15 00:33:07 +030079
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010080struct trx_ctx *trx_from_vty(struct vty *v)
81{
82 /* It can't hurt to force callers to continue to pass the vty instance
83 * to this function, in case we'd like to retrieve the global
84 * trx instance from the vty at some point in the future. But
85 * until then, just return the global pointer, which should have been
86 * initialized by trx_vty_init().
87 */
88 OSMO_ASSERT(g_trx_ctx);
89 return g_trx_ctx;
90}
91
92enum trx_vty_node {
93 TRX_NODE = _LAST_OSMOVTY_NODE + 1,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +010094 CHAN_NODE,
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010095};
96
97static struct cmd_node trx_node = {
98 TRX_NODE,
99 "%s(config-trx)# ",
100 1,
101};
102
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100103static struct cmd_node chan_node = {
104 CHAN_NODE,
105 "%s(config-trx-chan)# ",
106 1,
107};
108
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100109DEFUN(cfg_trx, cfg_trx_cmd,
110 "trx",
111 "Configure the TRX\n")
112{
113 struct trx_ctx *trx = trx_from_vty(vty);
114
115 if (!trx)
116 return CMD_WARNING;
117
118 vty->node = TRX_NODE;
119
120 return CMD_SUCCESS;
121}
122
123DEFUN(cfg_bind_ip, cfg_bind_ip_cmd,
Vadim Yanitskiyc620ced2020-10-30 01:47:35 +0700124 "bind-ip " VTY_IPV4_CMD,
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100125 "Set the IP address for the local bind\n"
126 "IPv4 Address\n")
127{
128 struct trx_ctx *trx = trx_from_vty(vty);
129
130 osmo_talloc_replace_string(trx, &trx->cfg.bind_addr, argv[0]);
131
132 return CMD_SUCCESS;
133}
134
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100135DEFUN(cfg_remote_ip, cfg_remote_ip_cmd,
Vadim Yanitskiyc620ced2020-10-30 01:47:35 +0700136 "remote-ip " VTY_IPV4_CMD,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100137 "Set the IP address for the remote BTS\n"
138 "IPv4 Address\n")
139{
140 struct trx_ctx *trx = trx_from_vty(vty);
141
142 osmo_talloc_replace_string(trx, &trx->cfg.remote_addr, argv[0]);
143
144 return CMD_SUCCESS;
145}
146
147DEFUN(cfg_base_port, cfg_base_port_cmd,
148 "base-port <1-65535>",
149 "Set the TRX Base Port\n"
150 "TRX Base Port\n")
151{
152 struct trx_ctx *trx = trx_from_vty(vty);
153
154 trx->cfg.base_port = atoi(argv[0]);
155
156 return CMD_SUCCESS;
157}
158
159DEFUN(cfg_dev_args, cfg_dev_args_cmd,
160 "dev-args DESC",
161 "Set the device-specific arguments to pass to the device\n"
162 "Device-specific arguments\n")
163{
164 struct trx_ctx *trx = trx_from_vty(vty);
165
166 osmo_talloc_replace_string(trx, &trx->cfg.dev_args, argv[0]);
167
168 return CMD_SUCCESS;
169}
170
171DEFUN(cfg_tx_sps, cfg_tx_sps_cmd,
172 "tx-sps (1|4)",
173 "Set the Tx Samples-per-Symbol\n"
Vadim Yanitskiyef79fd92020-10-30 01:44:29 +0700174 "Tx Samples-per-Symbol\n"
175 "1 Sample-per-Symbol\n"
176 "4 Samples-per-Symbol\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100177{
178 struct trx_ctx *trx = trx_from_vty(vty);
179
180 trx->cfg.tx_sps = atoi(argv[0]);
181
182 return CMD_SUCCESS;
183}
184
185DEFUN(cfg_rx_sps, cfg_rx_sps_cmd,
186 "rx-sps (1|4)",
187 "Set the Rx Samples-per-Symbol\n"
Vadim Yanitskiyef79fd92020-10-30 01:44:29 +0700188 "Rx Samples-per-Symbol\n"
189 "1 Sample-per-Symbol\n"
190 "4 Samples-per-Symbol\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100191{
192 struct trx_ctx *trx = trx_from_vty(vty);
193
194 trx->cfg.rx_sps = atoi(argv[0]);
195
196 return CMD_SUCCESS;
197}
198
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100199DEFUN(cfg_clock_ref, cfg_clock_ref_cmd,
200 "clock-ref (internal|external|gpsdo)",
201 "Set the Reference Clock\n"
Martin Hauke066fd042019-10-13 19:08:00 +0200202 "Enable internal reference (default)\n"
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100203 "Enable external 10 MHz reference\n"
204 "Enable GPSDO reference\n")
205{
206 struct trx_ctx *trx = trx_from_vty(vty);
207
208 trx->cfg.clock_ref = get_string_value(clock_ref_names, argv[0]);
209
210 return CMD_SUCCESS;
211}
212
213DEFUN(cfg_multi_arfcn, cfg_multi_arfcn_cmd,
214 "multi-arfcn (disable|enable)",
Vadim Yanitskiy5d6504c2020-10-30 01:50:05 +0700215 "Multi-ARFCN transceiver mode (default=disable)\n"
216 "Enable multi-ARFCN mode\n" "Disable multi-ARFCN mode\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100217{
218 struct trx_ctx *trx = trx_from_vty(vty);
219
220 if (strcmp("disable", argv[0]) == 0) {
221 trx->cfg.multi_arfcn = false;
Tom Tsoud2800452019-04-01 07:55:48 +0700222 return CMD_SUCCESS;
223 }
224
225 if (trx->cfg.num_chans > TRX_MCHAN_MAX) {
226 vty_out(vty, "Up to %i channels are supported for multi-TRX mode%s",
227 TRX_MCHAN_MAX, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100228 return CMD_WARNING;
229 }
230
Tom Tsoud2800452019-04-01 07:55:48 +0700231 trx->cfg.multi_arfcn = true;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100232 return CMD_SUCCESS;
233}
234
235DEFUN(cfg_offset, cfg_offset_cmd,
236 "offset FLOAT",
237 "Set the baseband frequency offset (default=0, auto)\n"
238 "Baseband Frequency Offset\n")
239{
240 struct trx_ctx *trx = trx_from_vty(vty);
241
242 trx->cfg.offset = atof(argv[0]);
243
244 return CMD_SUCCESS;
245}
246
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700247DEFUN_ATTR(cfg_freq_offset, cfg_freq_offset_cmd,
248 "freq-offset FLOAT",
249 "Apply an artificial offset to Rx/Tx carrier frequency\n"
250 "Frequency offset in kHz (e.g. -145300)\n",
251 CMD_ATTR_HIDDEN)
252{
253 struct trx_ctx *trx = trx_from_vty(vty);
254
255 trx->cfg.freq_offset_khz = atof(argv[0]);
256
257 return CMD_SUCCESS;
258}
259
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100260DEFUN(cfg_rssi_offset, cfg_rssi_offset_cmd,
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200261 "rssi-offset FLOAT [relative]",
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100262 "Set the RSSI to dBm offset in dB (default=0)\n"
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200263 "RSSI to dBm offset in dB\n"
264 "Add to the default rssi-offset value instead of completely replacing it\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100265{
266 struct trx_ctx *trx = trx_from_vty(vty);
267
268 trx->cfg.rssi_offset = atof(argv[0]);
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200269 trx->cfg.force_rssi_offset = (argc == 1);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100270
271 return CMD_SUCCESS;
272}
273
Ericc27fe602021-05-05 17:33:18 +0200274
275DEFUN_ATTR(cfg_ul_fn_offset, cfg_ul_fn_offset_cmd,
276 "ul-fn-offset <-10-10>",
277 "Adjusts the uplink frame FN by the specified amount\n"
278 "Frame Number offset\n",
279 CMD_ATTR_HIDDEN)
280{
281 struct trx_ctx *trx = trx_from_vty(vty);
282
283 trx->cfg.ul_fn_offset = atoi(argv[0]);
284
285 return CMD_SUCCESS;
286}
287
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100288DEFUN(cfg_swap_channels, cfg_swap_channels_cmd,
289 "swap-channels (disable|enable)",
Vadim Yanitskiy948b4e42020-10-30 01:27:21 +0700290 "Swap primary and secondary channels of the PHY (if any)\n"
291 "Do not swap primary and secondary channels (default)\n"
292 "Swap primary and secondary channels\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100293{
294 struct trx_ctx *trx = trx_from_vty(vty);
295
296 if (strcmp("disable", argv[0]) == 0) {
297 trx->cfg.swap_channels = false;
298 } else if (strcmp("enable", argv[0]) == 0) {
299 trx->cfg.swap_channels = true;
300 } else {
301 return CMD_WARNING;
302 }
303
304 return CMD_SUCCESS;
305}
306
307DEFUN(cfg_egprs, cfg_egprs_cmd,
308 "egprs (disable|enable)",
Vadim Yanitskiye0bdb6b2020-10-30 01:35:19 +0700309 "EGPRS (8-PSK demodulation) support (default=disable)\n"
310 "Disable EGPRS (8-PSK demodulation) support\n"
311 "Enable EGPRS (8-PSK demodulation) support\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100312{
313 struct trx_ctx *trx = trx_from_vty(vty);
314
315 if (strcmp("disable", argv[0]) == 0) {
316 trx->cfg.egprs = false;
317 } else if (strcmp("enable", argv[0]) == 0) {
318 trx->cfg.egprs = true;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100319 } else {
320 return CMD_WARNING;
321 }
322
323 return CMD_SUCCESS;
324}
325
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200326DEFUN(cfg_ext_rach, cfg_ext_rach_cmd,
327 "ext-rach (disable|enable)",
Vadim Yanitskiyfaacb192020-10-30 01:35:49 +0700328 "11-bit Access Burst correlation support (default=disable)\n"
329 "Disable 11-bit Access Burst (TS1 & TS2) correlation\n"
330 "Enable 11-bit Access Burst (TS1 & TS2) correlation\n")
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200331{
332 struct trx_ctx *trx = trx_from_vty(vty);
333
334 if (strcmp("disable", argv[0]) == 0)
335 trx->cfg.ext_rach = false;
336
337 if (strcmp("enable", argv[0]) == 0)
338 trx->cfg.ext_rach = true;
339
340 return CMD_SUCCESS;
341}
342
Pau Espin Pedrol553a2502020-07-29 18:05:25 +0200343DEFUN_DEPRECATED(cfg_rt_prio, cfg_rt_prio_cmd,
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100344 "rt-prio <1-32>",
345 "Set the SCHED_RR real-time priority\n"
346 "Real time priority\n")
347{
348 struct trx_ctx *trx = trx_from_vty(vty);
349
350 trx->cfg.sched_rr = atoi(argv[0]);
Pau Espin Pedrol553a2502020-07-29 18:05:25 +0200351 vty_out (vty, "%% 'rt-prio %u' is deprecated, use 'policy rr %u' under 'sched' node instead%s",
352 trx->cfg.sched_rr, trx->cfg.sched_rr, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100353
354 return CMD_SUCCESS;
355}
356
Eric Wildac0487e2019-06-17 13:02:44 +0200357DEFUN(cfg_stack_size, cfg_stack_size_cmd,
358 "stack-size <0-2147483647>",
359 "Set the stack size per thread in BYTE, 0 = OS default\n"
360 "Stack size per thread in BYTE\n")
361{
362 struct trx_ctx *trx = trx_from_vty(vty);
363
364 trx->cfg.stack_size = atoi(argv[0]);
365
366 return CMD_SUCCESS;
367}
368
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700369#define CFG_FILLER_DOC_STR \
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300370 "Filler burst settings\n"
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700371
372DEFUN(cfg_filler, cfg_filler_type_cmd,
373 "AUTO-GENERATED", "AUTO-GENERATED")
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300374{
375 struct trx_ctx *trx = trx_from_vty(vty);
376 // trx->cfg.filler is unsigned, so we need an interim int var to detect errors
377 int type = get_string_value(filler_types, argv[0]);
378
379 if (type < 0) {
380 trx->cfg.filler = FILLER_ZERO;
381 return CMD_WARNING;
382 }
383 trx->cfg.filler = type;
384
385 return CMD_SUCCESS;
386}
387
388DEFUN(cfg_test_rtsc, cfg_filler_tsc_cmd,
389 "filler tsc <0-7>",
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700390 CFG_FILLER_DOC_STR
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300391 "Set the TSC for GMSK/8-PSK Normal Burst random fillers. Used only with 'random-nb-gmsk' and"
392 " 'random-nb-8psk' filler types. (default=0)\n"
393 "TSC\n")
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100394{
395 struct trx_ctx *trx = trx_from_vty(vty);
396
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300397 trx->cfg.rtsc = atoi(argv[0]);
398
399 return CMD_SUCCESS;
400}
401
402DEFUN(cfg_test_rach_delay, cfg_filler_rach_delay_cmd,
403 "filler access-burst-delay <0-68>",
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700404 CFG_FILLER_DOC_STR
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300405 "Set the delay for Access Burst random fillers. Used only with 'random-ab' filler type. (default=0)\n"
406 "RACH delay in symbols\n")
407{
408 struct trx_ctx *trx = trx_from_vty(vty);
409
410 trx->cfg.rach_delay = atoi(argv[0]);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100411
412 return CMD_SUCCESS;
413}
414
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200415static int vty_ctr_name_2_id(const char* str) {
416 size_t i;
417 for (i = 0; trx_chan_ctr_names[i].str; i++) {
418 if (strstr(trx_chan_ctr_names[i].str, str)) {
419 return i;
420 }
421 }
422 return -1;
423}
424
425static int vty_intv_name_2_id(const char* str) {
426 size_t i;
427 for (i = 0; rate_ctr_intv[i].str; i++) {
428 if (strcmp(rate_ctr_intv[i].str, str) == 0) {
429 return i;
430 }
431 }
432 return -1;
433}
434
Pau Espin Pedrol1d0c6fe2020-07-09 18:09:10 +0200435#define THRESHOLD_ARGS "(rx_overruns|tx_underruns|rx_drop_events|rx_drop_samples|tx_drop_events|tx_drop_samples|tx_stale_bursts|tx_unavailable_bursts|tx_trxd_fn_repeated|tx_trxd_fn_outoforder|tx_trxd_fn_skipped)"
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200436#define THRESHOLD_STR_VAL(s) "Set threshold value for rate_ctr device:" OSMO_STRINGIFY_VAL(s) "\n"
437#define THRESHOLD_STRS \
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200438 THRESHOLD_STR_VAL(rx_overruns) \
439 THRESHOLD_STR_VAL(tx_underruns) \
440 THRESHOLD_STR_VAL(rx_drop_events) \
Pau Espin Pedrol68a78092019-07-29 20:11:25 +0200441 THRESHOLD_STR_VAL(rx_drop_samples) \
442 THRESHOLD_STR_VAL(tx_drop_events) \
Pau Espin Pedrol92ba59d2020-06-29 14:34:59 +0200443 THRESHOLD_STR_VAL(tx_drop_samples) \
Pau Espin Pedrolc0d6fd22020-07-09 16:51:47 +0200444 THRESHOLD_STR_VAL(tx_stale_bursts) \
Pau Espin Pedrol1d0c6fe2020-07-09 18:09:10 +0200445 THRESHOLD_STR_VAL(tx_unavailable_bursts) \
Pau Espin Pedrolc0d6fd22020-07-09 16:51:47 +0200446 THRESHOLD_STR_VAL(tx_trxd_fn_repeated) \
447 THRESHOLD_STR_VAL(tx_trxd_fn_outoforder) \
448 THRESHOLD_STR_VAL(tx_trxd_fn_skipped) \
449 ""
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200450#define INTV_ARGS "(per-second|per-minute|per-hour|per-day)"
451#define INTV_STR_VAL(s) "Threshold value sampled " OSMO_STRINGIFY_VAL(s) "\n"
452#define INTV_STRS \
453 INTV_STR_VAL(per-second) \
454 INTV_STR_VAL(per-minute) \
455 INTV_STR_VAL(per-hour) \
456 INTV_STR_VAL(per-day)
457
Philipp Maier30863e82020-09-29 22:03:51 +0200458DEFUN_ATTR(cfg_ctr_error_threshold, cfg_ctr_error_threshold_cmd,
459 "ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
460 "Threshold rate for error counter\n"
461 THRESHOLD_STRS
462 "Value to set for threshold\n"
463 INTV_STRS,
464 CMD_ATTR_IMMEDIATE)
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200465{
466 int rc;
467 struct ctr_threshold ctr;
468
469 struct trx_ctx *trx = trx_from_vty(vty);
470 rc = vty_ctr_name_2_id(argv[0]);
471 if (rc < 0) {
472 vty_out(vty, "No valid ctr_name found for ctr-error-threshold %s%s",
473 argv[0], VTY_NEWLINE);
474 return CMD_WARNING;
475 }
476 ctr.ctr_id = (enum TrxCtr)rc;
477 ctr.val = atoi(argv[1]);
478 rc = vty_intv_name_2_id(argv[2]);
479 if (rc < 0) {
480 vty_out(vty, "No valid time frame found for ctr-error-threshold %s %d %s%s",
481 argv[0], ctr.val, argv[2], VTY_NEWLINE);
482 return CMD_WARNING;
483 }
484 ctr.intv = (enum rate_ctr_intv) rc;
485 trx_rate_ctr_threshold_add(&ctr);
486
487 return CMD_SUCCESS;
488}
489
Philipp Maier30863e82020-09-29 22:03:51 +0200490DEFUN_ATTR(cfg_no_ctr_error_threshold, cfg_no_ctr_error_threshold_cmd,
491 "no ctr-error-threshold " THRESHOLD_ARGS " <0-65535> " INTV_ARGS,
492 NO_STR "Threshold rate for error counter\n"
493 THRESHOLD_STRS
494 "Value to set for threshold\n"
495 INTV_STRS,
496 CMD_ATTR_IMMEDIATE)
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200497{
498 int rc;
499 struct ctr_threshold ctr;
500
501 struct trx_ctx *trx = trx_from_vty(vty);
502 rc = vty_ctr_name_2_id(argv[0]);
503 if (rc < 0) {
504 vty_out(vty, "No valid ctr_name found for ctr-error-threshold %s%s",
505 argv[0], VTY_NEWLINE);
506 return CMD_WARNING;
507 }
508 ctr.ctr_id = (enum TrxCtr)rc;
509 ctr.val = atoi(argv[1]);
510 rc = vty_intv_name_2_id(argv[2]);
511 if (rc < 0) {
512 vty_out(vty, "No valid time frame found for ctr-error-threshold %s %d %s%s",
513 argv[0], ctr.val, argv[2], VTY_NEWLINE);
514 return CMD_WARNING;
515 }
516 ctr.intv = (enum rate_ctr_intv) rc;
517 if (trx_rate_ctr_threshold_del(&ctr) < 0) {
518 vty_out(vty, "no ctr-error-threshold: Entry to delete not found%s", VTY_NEWLINE);
519 return CMD_WARNING;
520 }
521
522 return CMD_SUCCESS;
523}
524
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100525DEFUN(cfg_chan, cfg_chan_cmd,
526 "chan <0-100>",
527 "Select a channel to configure\n"
528 "Channel index\n")
529{
530 struct trx_ctx *trx = trx_from_vty(vty);
531 int idx = atoi(argv[0]);
532
533 if (idx >= TRX_CHAN_MAX) {
534 vty_out(vty, "Chan list full.%s", VTY_NEWLINE);
535 return CMD_WARNING;
Tom Tsoud2800452019-04-01 07:55:48 +0700536 } else if (trx->cfg.multi_arfcn && trx->cfg.num_chans >= TRX_MCHAN_MAX) {
537 vty_out(vty, "Up to %i channels are supported for multi-TRX mode%s",
538 TRX_MCHAN_MAX, VTY_NEWLINE);
539 return CMD_WARNING;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100540 }
Tom Tsoud2800452019-04-01 07:55:48 +0700541
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100542 if (trx->cfg.num_chans < idx) { /* Unexisting or creating non-consecutive */
543 vty_out(vty, "Non-existent or non-consecutive chan %d.%s",
544 idx, VTY_NEWLINE);
545 return CMD_WARNING;
546 } else if (trx->cfg.num_chans == idx) { /* creating it */
547 trx->cfg.num_chans++;
548 trx->cfg.chans[idx].trx = trx;
549 trx->cfg.chans[idx].idx = idx;
550 }
551
552 vty->node = CHAN_NODE;
553 vty->index = &trx->cfg.chans[idx];
554
555 return CMD_SUCCESS;
556}
557
558DEFUN(cfg_chan_rx_path, cfg_chan_rx_path_cmd,
559 "rx-path NAME",
560 "Set the Rx Path\n"
561 "Rx Path name\n")
562{
563 struct trx_chan *chan = vty->index;
564
Vadim Yanitskiy4d436842020-09-11 18:31:08 +0700565 if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
566 vty_out(vty, "%% Setting 'rx-path' for chan %u in multi-ARFCN mode "
567 "does not make sense, because only chan 0 is used%s",
568 chan->idx, VTY_NEWLINE);
569 }
570
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100571 osmo_talloc_replace_string(chan->trx, &chan->rx_path, argv[0]);
572
573 return CMD_SUCCESS;
574}
575
576DEFUN(cfg_chan_tx_path, cfg_chan_tx_path_cmd,
577 "tx-path NAME",
578 "Set the Tx Path\n"
579 "Tx Path name\n")
580{
581 struct trx_chan *chan = vty->index;
582
Vadim Yanitskiy4d436842020-09-11 18:31:08 +0700583 if (chan->trx->cfg.multi_arfcn && chan->idx > 0) {
584 vty_out(vty, "%% Setting 'tx-path' for chan %u in multi-ARFCN mode "
585 "does not make sense, because only chan 0 is used%s",
586 chan->idx, VTY_NEWLINE);
587 }
588
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100589 osmo_talloc_replace_string(chan->trx, &chan->tx_path, argv[0]);
590
591 return CMD_SUCCESS;
592}
593
594static int dummy_config_write(struct vty *v)
595{
596 return CMD_SUCCESS;
597}
598
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100599static int config_write_trx(struct vty *vty)
600{
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100601 struct trx_chan *chan;
602 int i;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100603 struct trx_ctx *trx = trx_from_vty(vty);
604
605 vty_out(vty, "trx%s", VTY_NEWLINE);
606 if (trx->cfg.bind_addr)
607 vty_out(vty, " bind-ip %s%s", trx->cfg.bind_addr, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100608 if (trx->cfg.remote_addr)
609 vty_out(vty, " remote-ip %s%s", trx->cfg.remote_addr, VTY_NEWLINE);
610 if (trx->cfg.base_port != DEFAULT_TRX_PORT)
611 vty_out(vty, " base-port %u%s", trx->cfg.base_port, VTY_NEWLINE);
612 if (trx->cfg.dev_args)
613 vty_out(vty, " dev-args %s%s", trx->cfg.dev_args, VTY_NEWLINE);
614 if (trx->cfg.tx_sps != DEFAULT_TX_SPS)
615 vty_out(vty, " tx-sps %u%s", trx->cfg.tx_sps, VTY_NEWLINE);
616 if (trx->cfg.rx_sps != DEFAULT_RX_SPS)
617 vty_out(vty, " rx-sps %u%s", trx->cfg.rx_sps, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100618 if (trx->cfg.clock_ref != REF_INTERNAL)
619 vty_out(vty, " clock-ref %s%s", get_value_string(clock_ref_names, trx->cfg.clock_ref), VTY_NEWLINE);
620 vty_out(vty, " multi-arfcn %s%s", trx->cfg.multi_arfcn ? "enable" : "disable", VTY_NEWLINE);
621 if (trx->cfg.offset != 0)
622 vty_out(vty, " offset %f%s", trx->cfg.offset, VTY_NEWLINE);
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700623 if (trx->cfg.freq_offset_khz != 0)
624 vty_out(vty, " freq-offset %f%s", trx->cfg.freq_offset_khz, VTY_NEWLINE);
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200625 if (!(trx->cfg.rssi_offset == 0 && !trx->cfg.force_rssi_offset))
626 vty_out(vty, " rssi-offset %f%s%s", trx->cfg.rssi_offset,
627 trx->cfg.force_rssi_offset ? " relative": "", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100628 vty_out(vty, " swap-channels %s%s", trx->cfg.swap_channels ? "enable" : "disable", VTY_NEWLINE);
629 vty_out(vty, " egprs %s%s", trx->cfg.egprs ? "enable" : "disable", VTY_NEWLINE);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200630 vty_out(vty, " ext-rach %s%s", trx->cfg.ext_rach ? "enable" : "disable", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100631 if (trx->cfg.sched_rr != 0)
632 vty_out(vty, " rt-prio %u%s", trx->cfg.sched_rr, VTY_NEWLINE);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300633 if (trx->cfg.filler != FILLER_ZERO)
634 vty_out(vty, " filler type %s%s", get_value_string(filler_types, trx->cfg.filler), VTY_NEWLINE);
635 if (trx->cfg.rtsc > 0)
636 vty_out(vty, " filler tsc %u%s", trx->cfg.rtsc, VTY_NEWLINE);
637 if (trx->cfg.rach_delay > 0)
638 vty_out(vty, " filler access-burst-delay %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
Eric Wildac0487e2019-06-17 13:02:44 +0200639 if (trx->cfg.stack_size != 0)
640 vty_out(vty, " stack-size %u%s", trx->cfg.stack_size, VTY_NEWLINE);
Ericc27fe602021-05-05 17:33:18 +0200641 if (trx->cfg.ul_fn_offset != 0)
Eric0c34c642021-06-16 15:20:51 +0200642 vty_out(vty, " ul-fn-offset %d%s", trx->cfg.ul_fn_offset, VTY_NEWLINE);
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200643 trx_rate_ctr_threshold_write_config(vty, " ");
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100644
645 for (i = 0; i < trx->cfg.num_chans; i++) {
646 chan = &trx->cfg.chans[i];
647 vty_out(vty, " chan %u%s", chan->idx, VTY_NEWLINE);
648 if (chan->rx_path)
Harald Welte03b3c302018-07-31 15:48:18 +0200649 vty_out(vty, " rx-path %s%s", chan->rx_path, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100650 if (chan->tx_path)
Harald Welte03b3c302018-07-31 15:48:18 +0200651 vty_out(vty, " tx-path %s%s", chan->tx_path, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100652 }
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100653
654 return CMD_SUCCESS;
655}
656
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100657static void trx_dump_vty(struct vty *vty, struct trx_ctx *trx)
658{
659 struct trx_chan *chan;
660 int i;
661 vty_out(vty, "TRX Config:%s", VTY_NEWLINE);
662 vty_out(vty, " Local IP: %s%s", trx->cfg.bind_addr, VTY_NEWLINE);
663 vty_out(vty, " Remote IP: %s%s", trx->cfg.remote_addr, VTY_NEWLINE);
664 vty_out(vty, " TRX Base Port: %u%s", trx->cfg.base_port, VTY_NEWLINE);
665 vty_out(vty, " Device args: %s%s", trx->cfg.dev_args, VTY_NEWLINE);
666 vty_out(vty, " Tx Samples-per-Symbol: %u%s", trx->cfg.tx_sps, VTY_NEWLINE);
667 vty_out(vty, " Rx Samples-per-Symbol: %u%s", trx->cfg.rx_sps, VTY_NEWLINE);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300668 vty_out(vty, " Filler Burst Type: %s%s", get_value_string(filler_names, trx->cfg.filler), VTY_NEWLINE);
669 vty_out(vty, " Filler Burst TSC: %u%s", trx->cfg.rtsc, VTY_NEWLINE);
670 vty_out(vty, " Filler Burst RACH Delay: %u%s", trx->cfg.rach_delay, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100671 vty_out(vty, " Clock Reference: %s%s", get_value_string(clock_ref_names, trx->cfg.clock_ref), VTY_NEWLINE);
672 vty_out(vty, " Multi-Carrier: %s%s", trx->cfg.multi_arfcn ? "Enabled" : "Disabled", VTY_NEWLINE);
673 vty_out(vty, " Tuning offset: %f%s", trx->cfg.offset, VTY_NEWLINE);
674 vty_out(vty, " RSSI to dBm offset: %f%s", trx->cfg.rssi_offset, VTY_NEWLINE);
675 vty_out(vty, " Swap channels: %s%s", trx->cfg.swap_channels ? "Enabled" : "Disabled", VTY_NEWLINE);
676 vty_out(vty, " EDGE support: %s%s", trx->cfg.egprs ? "Enabled" : "Disabled", VTY_NEWLINE);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200677 vty_out(vty, " Extended RACH support: %s%s", trx->cfg.ext_rach ? "Enabled" : "Disabled", VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100678 vty_out(vty, " Real Time Priority: %u (%s)%s", trx->cfg.sched_rr,
679 trx->cfg.sched_rr ? "Enabled" : "Disabled", VTY_NEWLINE);
Eric Wildac0487e2019-06-17 13:02:44 +0200680 vty_out(vty, " Stack size per Thread in BYTE (0 = OS default): %u%s", trx->cfg.stack_size, VTY_NEWLINE);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100681 vty_out(vty, " Channels: %u%s", trx->cfg.num_chans, VTY_NEWLINE);
682 for (i = 0; i < trx->cfg.num_chans; i++) {
683 chan = &trx->cfg.chans[i];
684 vty_out(vty, " Channel %u:%s", chan->idx, VTY_NEWLINE);
685 if (chan->rx_path)
686 vty_out(vty, " Rx Path: %s%s", chan->rx_path, VTY_NEWLINE);
687 if (chan->tx_path)
688 vty_out(vty, " Tx Path: %s%s", chan->tx_path, VTY_NEWLINE);
689 }
690}
691
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100692DEFUN(show_trx, show_trx_cmd,
693 "show trx",
694 SHOW_STR "Display information on the TRX\n")
695{
696 struct trx_ctx *trx = trx_from_vty(vty);
697
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100698 trx_dump_vty(vty, trx);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100699
700 return CMD_SUCCESS;
701}
702
703static int trx_vty_is_config_node(struct vty *vty, int node)
704{
705 switch (node) {
706 case TRX_NODE:
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100707 case CHAN_NODE:
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100708 return 1;
709 default:
710 return 0;
711 }
712}
713
714static int trx_vty_go_parent(struct vty *vty)
715{
716 switch (vty->node) {
717 case TRX_NODE:
718 vty->node = CONFIG_NODE;
719 vty->index = NULL;
720 vty->index_sub = NULL;
721 break;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100722 case CHAN_NODE:
723 vty->node = TRX_NODE;
724 vty->index = NULL;
725 vty->index_sub = NULL;
726 break;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100727 default:
Vadim Yanitskiy01eea0a2018-05-09 15:19:48 +0700728 vty->node = CONFIG_NODE;
729 vty->index = NULL;
730 vty->index_sub = NULL;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100731 }
732
733 return vty->node;
734}
735
736static const char trx_copyright[] =
737 "Copyright (C) 2007-2014 Free Software Foundation, Inc.\r\n"
738 "Copyright (C) 2013 Thomas Tsou <tom@tsou.cc>\r\n"
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300739 "Copyright (C) 2013-2019 Fairwaves, Inc.\r\n"
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100740 "Copyright (C) 2015 Ettus Research LLC\r\n"
741 "Copyright (C) 2017-2018 by sysmocom s.f.m.c. GmbH <info@sysmocom.de>\r\n"
742 "License AGPLv3+: GNU AGPL version 3 or later <http://gnu.org/licenses/agpl-3.0.html>\r\n"
743 "This is free software: you are free to change and redistribute it.\r\n"
744 "There is NO WARRANTY, to the extent permitted by law.\r\n";
745
746struct vty_app_info g_vty_info = {
747 .name = "OsmoTRX",
748 .version = PACKAGE_VERSION,
749 .copyright = trx_copyright,
750 .go_parent_cb = trx_vty_go_parent,
751 .is_config_node = trx_vty_is_config_node,
752};
753
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100754struct trx_ctx *vty_trx_ctx_alloc(void *talloc_ctx)
755{
756 struct trx_ctx * trx = talloc_zero(talloc_ctx, struct trx_ctx);
757
758 trx->cfg.bind_addr = talloc_strdup(trx, DEFAULT_TRX_IP);
759 trx->cfg.remote_addr = talloc_strdup(trx, DEFAULT_TRX_IP);
760 trx->cfg.base_port = DEFAULT_TRX_PORT;
761 trx->cfg.tx_sps = DEFAULT_TX_SPS;
762 trx->cfg.rx_sps = DEFAULT_RX_SPS;
763 trx->cfg.filler = FILLER_ZERO;
Pau Espin Pedrole91544d2020-10-13 17:03:37 +0200764 trx->cfg.rssi_offset = 0.0f;
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100765
766 return trx;
767}
768
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100769int trx_vty_init(struct trx_ctx* trx)
770{
Vadim Yanitskiyc0e7ce92020-10-30 02:19:55 +0700771 cfg_filler_type_cmd.string = vty_cmd_string_from_valstr(trx, filler_types,
772 "filler type (", "|", ")", 0);
773 cfg_filler_type_cmd.doc = vty_cmd_string_from_valstr(trx, filler_docs,
774 CFG_FILLER_DOC_STR "What to do when there is nothing to send "
775 "(filler type, default=zero)\n", "\n", "", 0);
776
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100777 g_trx_ctx = trx;
778 install_element_ve(&show_trx_cmd);
779
780 install_element(CONFIG_NODE, &cfg_trx_cmd);
781
782 install_node(&trx_node, config_write_trx);
783 install_element(TRX_NODE, &cfg_bind_ip_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100784 install_element(TRX_NODE, &cfg_remote_ip_cmd);
785 install_element(TRX_NODE, &cfg_base_port_cmd);
786 install_element(TRX_NODE, &cfg_dev_args_cmd);
787 install_element(TRX_NODE, &cfg_tx_sps_cmd);
788 install_element(TRX_NODE, &cfg_rx_sps_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100789 install_element(TRX_NODE, &cfg_clock_ref_cmd);
790 install_element(TRX_NODE, &cfg_multi_arfcn_cmd);
791 install_element(TRX_NODE, &cfg_offset_cmd);
Vadim Yanitskiy3b8f7c42018-08-23 13:41:06 +0700792 install_element(TRX_NODE, &cfg_freq_offset_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100793 install_element(TRX_NODE, &cfg_rssi_offset_cmd);
794 install_element(TRX_NODE, &cfg_swap_channels_cmd);
795 install_element(TRX_NODE, &cfg_egprs_cmd);
Vadim Yanitskiya8b35652018-10-22 02:52:18 +0200796 install_element(TRX_NODE, &cfg_ext_rach_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100797 install_element(TRX_NODE, &cfg_rt_prio_cmd);
Alexander Chemeris9a87d902019-10-15 00:33:07 +0300798 install_element(TRX_NODE, &cfg_filler_type_cmd);
799 install_element(TRX_NODE, &cfg_filler_tsc_cmd);
800 install_element(TRX_NODE, &cfg_filler_rach_delay_cmd);
Pau Espin Pedrol6a305fe2019-05-24 19:58:20 +0200801 install_element(TRX_NODE, &cfg_ctr_error_threshold_cmd);
802 install_element(TRX_NODE, &cfg_no_ctr_error_threshold_cmd);
Eric Wildac0487e2019-06-17 13:02:44 +0200803 install_element(TRX_NODE, &cfg_stack_size_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100804
805 install_element(TRX_NODE, &cfg_chan_cmd);
Ericc27fe602021-05-05 17:33:18 +0200806 install_element(TRX_NODE, &cfg_ul_fn_offset_cmd);
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100807 install_node(&chan_node, dummy_config_write);
808 install_element(CHAN_NODE, &cfg_chan_rx_path_cmd);
809 install_element(CHAN_NODE, &cfg_chan_tx_path_cmd);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100810
Pau Espin Pedrolaebbfe02020-01-02 16:39:11 +0100811 logging_vty_add_deprecated_subsys(g_trx_ctx, "lms");
812
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100813 return 0;
814}