blob: 1c40fcff78170c167fd670db0eae24917ab189aa [file] [log] [blame]
Thomas Tsou85b179d2013-11-15 21:14:33 -05001/*
2 * Copyright (C) 2013 Thomas Tsou <tom@tsou.cc>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19#ifdef HAVE_CONFIG_H
20#include "config.h"
21#endif
22
23#include "Transceiver.h"
24#include "radioDevice.h"
25
26#include <time.h>
27#include <signal.h>
28#include <stdlib.h>
29#include <unistd.h>
Harald Welte81486e02017-06-29 15:35:22 +020030#include <sched.h>
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +010031#include <vector>
32#include <string>
33#include <sstream>
34#include <iostream>
Thomas Tsou85b179d2013-11-15 21:14:33 -050035
36#include <GSMCommon.h>
37#include <Logger.h>
Thomas Tsou85b179d2013-11-15 21:14:33 -050038
Philipp Maier7e07cf22017-03-15 18:09:35 +010039extern "C" {
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010040#include <osmocom/core/talloc.h>
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +010041#include <osmocom/core/application.h>
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010042#include <osmocom/core/msgb.h>
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010043#include <osmocom/core/stats.h>
44#include <osmocom/vty/logging.h>
45#include <osmocom/vty/ports.h>
46#include <osmocom/vty/misc.h>
47#include <osmocom/vty/telnet_interface.h>
48#include <osmocom/ctrl/control_vty.h>
49#include <osmocom/ctrl/ports.h>
50#include <osmocom/ctrl/control_if.h>
51#include <osmocom/vty/stats.h>
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +020052#include <osmocom/vty/command.h>
53
Philipp Maier7e07cf22017-03-15 18:09:35 +010054#include "convolve.h"
55#include "convert.h"
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010056#include "trx_vty.h"
57#include "debug.h"
Philipp Maier7e07cf22017-03-15 18:09:35 +010058}
59
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010060#define DEFAULT_CONFIG_FILE "osmo-trx.cfg"
Thomas Tsou85b179d2013-11-15 21:14:33 -050061
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010062#define charp2str(a) ((a) ? std::string(a) : std::string(""))
63
64static char* config_file = (char*)DEFAULT_CONFIG_FILE;
Thomas Tsou85b179d2013-11-15 21:14:33 -050065
Thomas Tsou85b179d2013-11-15 21:14:33 -050066volatile bool gshutdown = false;
67
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010068static void *tall_trx_ctx;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010069static struct trx_ctx *g_trx_ctx;
70static struct ctrl_handle *g_ctrlh;
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010071
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +010072static RadioDevice *usrp;
73static RadioInterface *radio;
74static Transceiver *transceiver;
75
Thomas Tsou85b179d2013-11-15 21:14:33 -050076/* Create radio interface
77 * The interface consists of sample rate changes, frequency shifts,
78 * channel multiplexing, and other conversions. The transceiver core
79 * accepts input vectors sampled at multiples of the GSM symbol rate.
80 * The radio interface connects the main transceiver with the device
81 * object, which may be operating some other rate.
82 */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010083RadioInterface *makeRadioInterface(struct trx_ctx *trx,
Thomas Tsou85b179d2013-11-15 21:14:33 -050084 RadioDevice *usrp, int type)
85{
86 RadioInterface *radio = NULL;
87
88 switch (type) {
89 case RadioDevice::NORMAL:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010090 radio = new RadioInterface(usrp, trx->cfg.tx_sps,
91 trx->cfg.rx_sps, trx->cfg.num_chans);
Thomas Tsou85b179d2013-11-15 21:14:33 -050092 break;
93 case RadioDevice::RESAMP_64M:
94 case RadioDevice::RESAMP_100M:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010095 radio = new RadioInterfaceResamp(usrp, trx->cfg.tx_sps,
96 trx->cfg.rx_sps);
Thomas Tsou85b179d2013-11-15 21:14:33 -050097 break;
Tom Tsou76764272016-06-24 14:25:39 -070098 case RadioDevice::MULTI_ARFCN:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010099 radio = new RadioInterfaceMulti(usrp, trx->cfg.tx_sps,
100 trx->cfg.rx_sps, trx->cfg.num_chans);
Tom Tsou76764272016-06-24 14:25:39 -0700101 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500102 default:
103 LOG(ALERT) << "Unsupported radio interface configuration";
104 return NULL;
105 }
106
107 if (!radio->init(type)) {
108 LOG(ALERT) << "Failed to initialize radio interface";
109 return NULL;
110 }
111
112 return radio;
113}
114
115/* Create transceiver core
116 * The multi-threaded modem core operates at multiples of the GSM rate of
117 * 270.8333 ksps and consists of GSM specific modulation, demodulation,
118 * and decoding schemes. Also included are the socket interfaces for
119 * connecting to the upper layer stack.
120 */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100121int makeTransceiver(struct trx_ctx *trx, RadioInterface *radio)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500122{
Thomas Tsou85b179d2013-11-15 21:14:33 -0500123 VectorFIFO *fifo;
124
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100125 transceiver = new Transceiver(trx->cfg.base_port, trx->cfg.bind_addr,
126 trx->cfg.remote_addr, trx->cfg.tx_sps,
127 trx->cfg.rx_sps, trx->cfg.num_chans, GSM::Time(3,0),
128 radio, trx->cfg.rssi_offset);
129 if (!transceiver->init(trx->cfg.filler, trx->cfg.rtsc,
130 trx->cfg.rach_delay, trx->cfg.egprs)) {
Thomas Tsou85b179d2013-11-15 21:14:33 -0500131 LOG(ALERT) << "Failed to initialize transceiver";
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100132 return -1;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500133 }
134
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100135 for (size_t i = 0; i < trx->cfg.num_chans; i++) {
Thomas Tsou85b179d2013-11-15 21:14:33 -0500136 fifo = radio->receiveFIFO(i);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100137 if (fifo && transceiver->receiveFIFO(fifo, i))
Thomas Tsou85b179d2013-11-15 21:14:33 -0500138 continue;
139
140 LOG(ALERT) << "Could not attach FIFO to channel " << i;
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100141 return -1;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500142 }
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100143 return 0;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500144}
145
146static void sig_handler(int signo)
147{
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100148 fprintf(stdout, "signal %d received\n", signo);
149 switch (signo) {
150 case SIGINT:
151 case SIGTERM:
152 fprintf(stdout, "shutting down\n");
153 gshutdown = true;
154 break;
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +0100155 case SIGABRT:
156 case SIGUSR1:
157 talloc_report(tall_trx_ctx, stderr);
158 talloc_report_full(tall_trx_ctx, stderr);
159 break;
160 case SIGUSR2:
161 talloc_report_full(tall_trx_ctx, stderr);
162 break;
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100163 default:
164 break;
165 }
Thomas Tsou85b179d2013-11-15 21:14:33 -0500166}
167
168static void setup_signal_handlers()
169{
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100170 /* Handle keyboard interrupt SIGINT */
171 signal(SIGINT, &sig_handler);
172 signal(SIGTERM, &sig_handler);
173 signal(SIGABRT, &sig_handler);
174 signal(SIGUSR1, &sig_handler);
175 signal(SIGUSR2, &sig_handler);
176 osmo_init_ignore_signals();
Thomas Tsou85b179d2013-11-15 21:14:33 -0500177}
178
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100179static std::vector<std::string> comma_delimited_to_vector(char* opt)
180{
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100181 std::string str = std::string(opt);
182 std::vector<std::string> result;
183 std::stringstream ss(str);
184
185 while( ss.good() )
186 {
187 std::string substr;
188 getline(ss, substr, ',');
189 result.push_back(substr);
190 }
191 return result;
192}
193
Thomas Tsou85b179d2013-11-15 21:14:33 -0500194static void print_help()
195{
196 fprintf(stdout, "Options:\n"
197 " -h This text\n"
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100198 " -C Filename The config file to use\n"
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200199 " -V Print the version of OsmoTRX\n"
Pau Espin Pedrol3da1f832018-02-20 20:01:10 +0100200 );
Thomas Tsou85b179d2013-11-15 21:14:33 -0500201}
202
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100203static void print_deprecated(char opt)
204{
205 LOG(WARNING) << "Cmd line option '" << opt << "' is deprecated and will be soon removed."
206 << " Please use VTY cfg option instead."
207 << " All cmd line options are already being overriden by VTY options if set.";
208}
209
210static void handle_options(int argc, char **argv, struct trx_ctx* trx)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500211{
212 int option;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100213 unsigned int i;
214 std::vector<std::string> rx_paths, tx_paths;
215 bool rx_paths_set = false, tx_paths_set = false;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500216
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200217 while ((option = getopt(argc, argv, "ha:l:i:j:p:c:dmxgfo:s:b:r:A:R:Set:y:z:C:V")) != -1) {
Thomas Tsou85b179d2013-11-15 21:14:33 -0500218 switch (option) {
219 case 'h':
220 print_help();
221 exit(0);
222 break;
223 case 'a':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100224 print_deprecated(option);
225 osmo_talloc_replace_string(trx, &trx->cfg.dev_args, optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500226 break;
Pau Espin Pedrol8dffadb2018-03-06 18:38:22 +0100227 case 'l':
228 print_deprecated(option);
229 log_set_log_level(osmo_stderr_target, atoi(optarg));
230 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500231 case 'i':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100232 print_deprecated(option);
233 osmo_talloc_replace_string(trx, &trx->cfg.remote_addr, optarg);
Pau Espin Pedrol8c800952017-08-16 16:53:23 +0200234 break;
235 case 'j':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100236 print_deprecated(option);
237 osmo_talloc_replace_string(trx, &trx->cfg.bind_addr, optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500238 break;
239 case 'p':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100240 print_deprecated(option);
241 trx->cfg.base_port = atoi(optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500242 break;
243 case 'c':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100244 print_deprecated(option);
245 trx->cfg.num_chans = atoi(optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500246 break;
Tom Tsou76764272016-06-24 14:25:39 -0700247 case 'm':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100248 print_deprecated(option);
249 trx->cfg.multi_arfcn = true;
Tom Tsou76764272016-06-24 14:25:39 -0700250 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500251 case 'x':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100252 print_deprecated(option);
253 trx->cfg.clock_ref = REF_EXTERNAL;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500254 break;
Tom Tsou2f3e60b2016-07-17 19:29:08 -0700255 case 'g':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100256 print_deprecated(option);
257 trx->cfg.clock_ref = REF_GPS;
Tom Tsou2f3e60b2016-07-17 19:29:08 -0700258 break;
Thomas Tsou15d743e2014-01-25 02:34:03 -0500259 case 'f':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100260 print_deprecated(option);
261 trx->cfg.filler = FILLER_DUMMY;
Thomas Tsou15d743e2014-01-25 02:34:03 -0500262 break;
Thomas Tsou8e17df72014-03-06 14:16:11 -0500263 case 'o':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100264 print_deprecated(option);
265 trx->cfg.offset = atof(optarg);
Thomas Tsou8e17df72014-03-06 14:16:11 -0500266 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500267 case 's':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100268 print_deprecated(option);
269 trx->cfg.tx_sps = atoi(optarg);
Tom Tsou64ad7122015-05-19 18:26:31 -0700270 break;
Tom Tsou2e4ed102016-06-27 15:39:16 -0700271 case 'b':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100272 print_deprecated(option);
273 trx->cfg.rx_sps = atoi(optarg);
Tom Tsou2e4ed102016-06-27 15:39:16 -0700274 break;
Tom Tsou64ad7122015-05-19 18:26:31 -0700275 case 'r':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100276 print_deprecated(option);
277 trx->cfg.rtsc_set = true;
278 trx->cfg.rtsc = atoi(optarg);
279 if (!trx->cfg.egprs) /* Don't override egprs which sets different filler */
280 trx->cfg.filler = FILLER_NORM_RAND;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500281 break;
Alexander Chemeris5efe0502016-03-23 17:06:32 +0300282 case 'A':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100283 print_deprecated(option);
284 trx->cfg.rach_delay_set = true;
285 trx->cfg.rach_delay = atoi(optarg);
286 trx->cfg.filler = FILLER_ACCESS_RAND;
Alexander Chemeris5efe0502016-03-23 17:06:32 +0300287 break;
Alexander Chemerise8905a02015-06-03 23:47:56 -0400288 case 'R':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100289 print_deprecated(option);
290 trx->cfg.rssi_offset = atof(optarg);
Alexander Chemerise8905a02015-06-03 23:47:56 -0400291 break;
Alexander Chemeris50747dc2015-06-07 01:07:45 -0400292 case 'S':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100293 print_deprecated(option);
294 trx->cfg.swap_channels = true;
Alexander Chemeris50747dc2015-06-07 01:07:45 -0400295 break;
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800296 case 'e':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100297 print_deprecated(option);
298 trx->cfg.egprs = true;
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800299 break;
Harald Welte81486e02017-06-29 15:35:22 +0200300 case 't':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100301 print_deprecated(option);
302 trx->cfg.sched_rr = atoi(optarg);
Harald Welte81486e02017-06-29 15:35:22 +0200303 break;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100304 case 'y':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100305 print_deprecated(option);
306 tx_paths = comma_delimited_to_vector(optarg);
307 tx_paths_set = true;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100308 break;
309 case 'z':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100310 print_deprecated(option);
311 rx_paths = comma_delimited_to_vector(optarg);
312 rx_paths_set = true;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100313 break;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100314 case 'C':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100315 config_file = optarg;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100316 break;
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200317 case 'V':
318 print_version(1);
319 exit(0);
320 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500321 default:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100322 goto bad_config;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500323 }
324 }
Tom Tsou64ad7122015-05-19 18:26:31 -0700325
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100326 /* Cmd line option specific validation & setup */
Tom Tsou2e4ed102016-06-27 15:39:16 -0700327
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100328 if (trx->cfg.num_chans > TRX_CHAN_MAX) {
329 LOG(ERROR) << "Too many channels requested, maximum is " << TRX_CHAN_MAX;
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700330 goto bad_config;
331 }
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100332 if ((tx_paths_set && tx_paths.size() != trx->cfg.num_chans) ||
333 (rx_paths_set && rx_paths.size() != trx->cfg.num_chans)) {
334 LOG(ERROR) << "Num of channels and num of Rx/Tx Antennas doesn't match";
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700335 goto bad_config;
Tom Tsou64ad7122015-05-19 18:26:31 -0700336 }
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100337 for (i = 0; i < trx->cfg.num_chans; i++) {
338 trx->cfg.chans[i].trx = trx;
339 trx->cfg.chans[i].idx = i;
340 if (tx_paths_set)
341 osmo_talloc_replace_string(trx, &trx->cfg.chans[i].tx_path, tx_paths[i].c_str());
342 if (rx_paths_set)
343 osmo_talloc_replace_string(trx, &trx->cfg.chans[i].rx_path, rx_paths[i].c_str());
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100344 }
345
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700346 return;
347
348bad_config:
349 print_help();
350 exit(0);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500351}
352
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100353int trx_validate_config(struct trx_ctx *trx)
354{
355 if (trx->cfg.multi_arfcn && trx->cfg.num_chans > 5) {
356 LOG(ERROR) << "Unsupported number of channels";
357 return -1;
358 }
359
360 /* Force 4 SPS for EDGE or multi-ARFCN configurations */
361 if ((trx->cfg.egprs || trx->cfg.multi_arfcn) &&
362 (trx->cfg.tx_sps!=4 || trx->cfg.tx_sps!=4)) {
363 LOG(ERROR) << "EDGE and Multi-Carrier options require 4 tx and rx sps. Check you config.";
364 return -1;
365 }
366
367 return 0;
368}
369
370static int set_sched_rr(unsigned int prio)
Harald Welte81486e02017-06-29 15:35:22 +0200371{
372 struct sched_param param;
373 int rc;
374 memset(&param, 0, sizeof(param));
375 param.sched_priority = prio;
376 printf("Setting SCHED_RR priority(%d)\n", param.sched_priority);
377 rc = sched_setscheduler(getpid(), SCHED_RR, &param);
378 if (rc != 0) {
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100379 LOG(ERROR) << "Config: Setting SCHED_RR failed";
Harald Welte81486e02017-06-29 15:35:22 +0200380 return -1;
381 }
382 return 0;
383}
384
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100385static void print_config(struct trx_ctx *trx)
386{
387 unsigned int i;
388 std::ostringstream ost("");
389
390 ost << "Config Settings" << std::endl;
Pau Espin Pedrol8dffadb2018-03-06 18:38:22 +0100391 ost << " Log Level............... " << (unsigned int) osmo_stderr_target->loglevel << std::endl;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100392 ost << " Device args............. " << charp2str(trx->cfg.dev_args) << std::endl;
393 ost << " TRX Base Port........... " << trx->cfg.base_port << std::endl;
394 ost << " TRX Address............. " << charp2str(trx->cfg.bind_addr) << std::endl;
Harald Weltefad2e092018-04-28 21:25:09 +0200395 ost << " GSM BTS Address......... " << charp2str(trx->cfg.remote_addr) << std::endl;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100396 ost << " Channels................ " << trx->cfg.num_chans << std::endl;
397 ost << " Tx Samples-per-Symbol... " << trx->cfg.tx_sps << std::endl;
398 ost << " Rx Samples-per-Symbol... " << trx->cfg.rx_sps << std::endl;
399 ost << " EDGE support............ " << trx->cfg.egprs << std::endl;
400 ost << " Reference............... " << trx->cfg.clock_ref << std::endl;
401 ost << " C0 Filler Table......... " << trx->cfg.filler << std::endl;
402 ost << " Multi-Carrier........... " << trx->cfg.multi_arfcn << std::endl;
403 ost << " Tuning offset........... " << trx->cfg.offset << std::endl;
404 ost << " RSSI to dBm offset...... " << trx->cfg.rssi_offset << std::endl;
405 ost << " Swap channels........... " << trx->cfg.swap_channels << std::endl;
406 ost << " Tx Antennas.............";
407 for (i = 0; i < trx->cfg.num_chans; i++) {
408 std::string p = charp2str(trx->cfg.chans[i].tx_path);
409 ost << " '" << ((p != "") ? p : "<default>") << "'";
410 }
411 ost << std::endl;
412 ost << " Rx Antennas.............";
413 for (i = 0; i < trx->cfg.num_chans; i++) {
414 std::string p = charp2str(trx->cfg.chans[i].rx_path);
415 ost << " '" << ((p != "") ? p : "<default>") << "'";
416 }
417 ost << std::endl;
418
419 std::cout << ost << std::endl;
420}
421
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100422static void trx_stop()
423{
424 std::cout << "Shutting down transceiver..." << std::endl;
425
426 delete transceiver;
427 delete radio;
428 delete usrp;
429}
430
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100431static int trx_start(struct trx_ctx *trx)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500432{
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100433 int type, chans;
434 unsigned int i;
435 std::vector<std::string> rx_paths, tx_paths;
Tom Tsou05c6feb2016-06-22 16:09:44 -0700436 RadioDevice::InterfaceType iface = RadioDevice::NORMAL;
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100437
438 /* Create the low level device object */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100439 if (trx->cfg.multi_arfcn)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100440 iface = RadioDevice::MULTI_ARFCN;
441
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100442 /* Generate vector of rx/tx_path: */
443 for (i = 0; i < trx->cfg.num_chans; i++) {
444 rx_paths.push_back(charp2str(trx->cfg.chans[i].rx_path));
445 tx_paths.push_back(charp2str(trx->cfg.chans[i].tx_path));
446 }
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100447
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100448 usrp = RadioDevice::make(trx->cfg.tx_sps, trx->cfg.rx_sps, iface,
449 trx->cfg.num_chans, trx->cfg.offset,
450 tx_paths, rx_paths);
451 type = usrp->open(charp2str(trx->cfg.dev_args), trx->cfg.clock_ref, trx->cfg.swap_channels);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100452 if (type < 0) {
453 LOG(ALERT) << "Failed to create radio device" << std::endl;
454 goto shutdown;
455 }
456
457 /* Setup the appropriate device interface */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100458 radio = makeRadioInterface(trx, usrp, type);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100459 if (!radio)
460 goto shutdown;
461
462 /* Create the transceiver core */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100463 if (makeTransceiver(trx, radio) < 0)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100464 goto shutdown;
465
466 chans = transceiver->numChans();
467 std::cout << "-- Transceiver active with "
468 << chans << " channel(s)" << std::endl;
469
470 return 0;
471
472shutdown:
473 trx_stop();
474 return -1;
475}
476
477int main(int argc, char *argv[])
478{
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100479 int rc;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500480
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +0100481 tall_trx_ctx = talloc_named_const(NULL, 0, "OsmoTRX");
482 msgb_talloc_ctx_init(tall_trx_ctx, 0);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100483 g_vty_info.tall_ctx = tall_trx_ctx;
484
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100485 setup_signal_handlers();
486
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100487 g_trx_ctx = vty_trx_ctx_alloc(tall_trx_ctx);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100488
Philipp Maiere51a8f02017-03-16 12:09:34 +0100489#ifdef HAVE_SSE3
490 printf("Info: SSE3 support compiled in");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300491#ifdef HAVE___BUILTIN_CPU_SUPPORTS
Philipp Maiere51a8f02017-03-16 12:09:34 +0100492 if (__builtin_cpu_supports("sse3"))
493 printf(" and supported by CPU\n");
494 else
495 printf(", but not supported by CPU\n");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300496#else
497 printf(", but runtime SIMD detection disabled\n");
498#endif
Philipp Maiere51a8f02017-03-16 12:09:34 +0100499#endif
500
501#ifdef HAVE_SSE4_1
502 printf("Info: SSE4.1 support compiled in");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300503#ifdef HAVE___BUILTIN_CPU_SUPPORTS
Philipp Maiere51a8f02017-03-16 12:09:34 +0100504 if (__builtin_cpu_supports("sse4.1"))
505 printf(" and supported by CPU\n");
506 else
507 printf(", but not supported by CPU\n");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300508#else
509 printf(", but runtime SIMD detection disabled\n");
510#endif
Philipp Maiere51a8f02017-03-16 12:09:34 +0100511#endif
512
Philipp Maier7e07cf22017-03-15 18:09:35 +0100513 convolve_init();
514 convert_init();
515
Pau Espin Pedrole1977fc2018-04-16 14:50:11 +0200516 osmo_init_logging2(tall_trx_ctx, &log_info);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100517 osmo_stats_init(tall_trx_ctx);
518 vty_init(&g_vty_info);
519 ctrl_vty_init(tall_trx_ctx);
520 trx_vty_init(g_trx_ctx);
521
522 logging_vty_add_cmds();
523 osmo_talloc_vty_add_cmds();
524 osmo_stats_vty_add_cmds();
525
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100526 handle_options(argc, argv, g_trx_ctx);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500527
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100528 rate_ctr_init(tall_trx_ctx);
529
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100530 rc = vty_read_config_file(config_file, NULL);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100531 if (rc < 0) {
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100532 fprintf(stderr, "Failed to open config file: '%s'\n", config_file);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100533 exit(2);
534 }
535
536 rc = telnet_init_dynif(tall_trx_ctx, NULL, vty_get_bind_addr(), OSMO_VTY_PORT_TRX);
537 if (rc < 0)
538 exit(1);
539
540 g_ctrlh = ctrl_interface_setup(NULL, OSMO_CTRL_PORT_TRX, NULL);
541 if (!g_ctrlh) {
542 fprintf(stderr, "Failed to create CTRL interface.\n");
543 exit(1);
544 }
545
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100546 /* Backward compatibility: Hack to have 1 channel allocated by default.
547 * Can be Dropped once we * get rid of "-c" cmdline param */
548 if (g_trx_ctx->cfg.num_chans == 0) {
549 g_trx_ctx->cfg.num_chans = 1;
550 g_trx_ctx->cfg.chans[0].trx = g_trx_ctx;
551 g_trx_ctx->cfg.chans[0].idx = 0;
552 LOG(ERROR) << "No explicit channel config found. Make sure you" \
553 " configure channels in VTY config. Using 1 channel as default," \
554 " but expect your config to break in the future.";
Harald Welte81486e02017-06-29 15:35:22 +0200555 }
556
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100557 print_config(g_trx_ctx);
558
559 if (trx_validate_config(g_trx_ctx) < 0) {
560 LOG(ERROR) << "Config failure - exiting";
Thomas Tsou85b179d2013-11-15 21:14:33 -0500561 return EXIT_FAILURE;
562 }
563
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100564 if (g_trx_ctx->cfg.sched_rr) {
565 if (set_sched_rr(g_trx_ctx->cfg.sched_rr) < 0)
566 return EXIT_FAILURE;
567 }
568
Thomas Tsou85b179d2013-11-15 21:14:33 -0500569 srandom(time(NULL));
570
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100571 if(trx_start(g_trx_ctx) < 0)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100572 return EXIT_FAILURE;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500573
574 while (!gshutdown)
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100575 osmo_select_main(0);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500576
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100577 trx_stop();
Thomas Tsou85b179d2013-11-15 21:14:33 -0500578
579 return 0;
580}