blob: 7f72c47f6707936b24141aff691f2d95198a7c70 [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"
Pau Espin Pedroldb936b92018-09-03 16:50:49 +020058#include "osmo_signal.h"
Philipp Maier7e07cf22017-03-15 18:09:35 +010059}
60
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010061#define DEFAULT_CONFIG_FILE "osmo-trx.cfg"
Thomas Tsou85b179d2013-11-15 21:14:33 -050062
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010063#define charp2str(a) ((a) ? std::string(a) : std::string(""))
64
65static char* config_file = (char*)DEFAULT_CONFIG_FILE;
Thomas Tsou85b179d2013-11-15 21:14:33 -050066
Thomas Tsou85b179d2013-11-15 21:14:33 -050067volatile bool gshutdown = false;
68
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010069static void *tall_trx_ctx;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +010070static struct trx_ctx *g_trx_ctx;
71static struct ctrl_handle *g_ctrlh;
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +010072
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +010073static RadioDevice *usrp;
74static RadioInterface *radio;
75static Transceiver *transceiver;
76
Thomas Tsou85b179d2013-11-15 21:14:33 -050077/* Create radio interface
78 * The interface consists of sample rate changes, frequency shifts,
79 * channel multiplexing, and other conversions. The transceiver core
80 * accepts input vectors sampled at multiples of the GSM symbol rate.
81 * The radio interface connects the main transceiver with the device
82 * object, which may be operating some other rate.
83 */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010084RadioInterface *makeRadioInterface(struct trx_ctx *trx,
Thomas Tsou85b179d2013-11-15 21:14:33 -050085 RadioDevice *usrp, int type)
86{
87 RadioInterface *radio = NULL;
88
89 switch (type) {
90 case RadioDevice::NORMAL:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010091 radio = new RadioInterface(usrp, trx->cfg.tx_sps,
92 trx->cfg.rx_sps, trx->cfg.num_chans);
Thomas Tsou85b179d2013-11-15 21:14:33 -050093 break;
94 case RadioDevice::RESAMP_64M:
95 case RadioDevice::RESAMP_100M:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +010096 radio = new RadioInterfaceResamp(usrp, trx->cfg.tx_sps,
97 trx->cfg.rx_sps);
Thomas Tsou85b179d2013-11-15 21:14:33 -050098 break;
Tom Tsou76764272016-06-24 14:25:39 -070099 case RadioDevice::MULTI_ARFCN:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100100 radio = new RadioInterfaceMulti(usrp, trx->cfg.tx_sps,
101 trx->cfg.rx_sps, trx->cfg.num_chans);
Tom Tsou76764272016-06-24 14:25:39 -0700102 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500103 default:
104 LOG(ALERT) << "Unsupported radio interface configuration";
105 return NULL;
106 }
107
108 if (!radio->init(type)) {
109 LOG(ALERT) << "Failed to initialize radio interface";
110 return NULL;
111 }
112
113 return radio;
114}
115
Pau Espin Pedroldb936b92018-09-03 16:50:49 +0200116/* Callback function to be called every time we receive a signal from TRANSC */
117static int transc_sig_cb(unsigned int subsys, unsigned int signal,
118 void *handler_data, void *signal_data)
119{
120 switch (signal) {
121 case S_TRANSC_STOP_REQUIRED:
122 gshutdown = true;
123 break;
124 default:
125 break;
126 }
127 return 0;
128}
129
Thomas Tsou85b179d2013-11-15 21:14:33 -0500130/* Create transceiver core
131 * The multi-threaded modem core operates at multiples of the GSM rate of
132 * 270.8333 ksps and consists of GSM specific modulation, demodulation,
133 * and decoding schemes. Also included are the socket interfaces for
134 * connecting to the upper layer stack.
135 */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100136int makeTransceiver(struct trx_ctx *trx, RadioInterface *radio)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500137{
Thomas Tsou85b179d2013-11-15 21:14:33 -0500138 VectorFIFO *fifo;
139
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100140 transceiver = new Transceiver(trx->cfg.base_port, trx->cfg.bind_addr,
141 trx->cfg.remote_addr, trx->cfg.tx_sps,
142 trx->cfg.rx_sps, trx->cfg.num_chans, GSM::Time(3,0),
143 radio, trx->cfg.rssi_offset);
144 if (!transceiver->init(trx->cfg.filler, trx->cfg.rtsc,
145 trx->cfg.rach_delay, trx->cfg.egprs)) {
Thomas Tsou85b179d2013-11-15 21:14:33 -0500146 LOG(ALERT) << "Failed to initialize transceiver";
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100147 return -1;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500148 }
149
Pau Espin Pedroldb936b92018-09-03 16:50:49 +0200150 transceiver->setSignalHandler(transc_sig_cb);
151
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100152 for (size_t i = 0; i < trx->cfg.num_chans; i++) {
Thomas Tsou85b179d2013-11-15 21:14:33 -0500153 fifo = radio->receiveFIFO(i);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100154 if (fifo && transceiver->receiveFIFO(fifo, i))
Thomas Tsou85b179d2013-11-15 21:14:33 -0500155 continue;
156
157 LOG(ALERT) << "Could not attach FIFO to channel " << i;
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100158 return -1;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500159 }
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100160 return 0;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500161}
162
163static void sig_handler(int signo)
164{
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100165 fprintf(stdout, "signal %d received\n", signo);
166 switch (signo) {
167 case SIGINT:
168 case SIGTERM:
169 fprintf(stdout, "shutting down\n");
170 gshutdown = true;
171 break;
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +0100172 case SIGABRT:
173 case SIGUSR1:
174 talloc_report(tall_trx_ctx, stderr);
175 talloc_report_full(tall_trx_ctx, stderr);
176 break;
177 case SIGUSR2:
178 talloc_report_full(tall_trx_ctx, stderr);
179 break;
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100180 default:
181 break;
182 }
Thomas Tsou85b179d2013-11-15 21:14:33 -0500183}
184
185static void setup_signal_handlers()
186{
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100187 /* Handle keyboard interrupt SIGINT */
188 signal(SIGINT, &sig_handler);
189 signal(SIGTERM, &sig_handler);
190 signal(SIGABRT, &sig_handler);
191 signal(SIGUSR1, &sig_handler);
192 signal(SIGUSR2, &sig_handler);
193 osmo_init_ignore_signals();
Thomas Tsou85b179d2013-11-15 21:14:33 -0500194}
195
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100196static std::vector<std::string> comma_delimited_to_vector(char* opt)
197{
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100198 std::string str = std::string(opt);
199 std::vector<std::string> result;
200 std::stringstream ss(str);
201
202 while( ss.good() )
203 {
204 std::string substr;
205 getline(ss, substr, ',');
206 result.push_back(substr);
207 }
208 return result;
209}
210
Thomas Tsou85b179d2013-11-15 21:14:33 -0500211static void print_help()
212{
213 fprintf(stdout, "Options:\n"
214 " -h This text\n"
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100215 " -C Filename The config file to use\n"
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200216 " -V Print the version of OsmoTRX\n"
Pau Espin Pedrol3da1f832018-02-20 20:01:10 +0100217 );
Thomas Tsou85b179d2013-11-15 21:14:33 -0500218}
219
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100220static void print_deprecated(char opt)
221{
222 LOG(WARNING) << "Cmd line option '" << opt << "' is deprecated and will be soon removed."
223 << " Please use VTY cfg option instead."
224 << " All cmd line options are already being overriden by VTY options if set.";
225}
226
227static void handle_options(int argc, char **argv, struct trx_ctx* trx)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500228{
229 int option;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100230 unsigned int i;
231 std::vector<std::string> rx_paths, tx_paths;
232 bool rx_paths_set = false, tx_paths_set = false;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500233
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200234 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 -0500235 switch (option) {
236 case 'h':
237 print_help();
238 exit(0);
239 break;
240 case 'a':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100241 print_deprecated(option);
242 osmo_talloc_replace_string(trx, &trx->cfg.dev_args, optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500243 break;
Pau Espin Pedrol8dffadb2018-03-06 18:38:22 +0100244 case 'l':
245 print_deprecated(option);
246 log_set_log_level(osmo_stderr_target, atoi(optarg));
247 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500248 case 'i':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100249 print_deprecated(option);
250 osmo_talloc_replace_string(trx, &trx->cfg.remote_addr, optarg);
Pau Espin Pedrol8c800952017-08-16 16:53:23 +0200251 break;
252 case 'j':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100253 print_deprecated(option);
254 osmo_talloc_replace_string(trx, &trx->cfg.bind_addr, optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500255 break;
256 case 'p':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100257 print_deprecated(option);
258 trx->cfg.base_port = atoi(optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500259 break;
260 case 'c':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100261 print_deprecated(option);
262 trx->cfg.num_chans = atoi(optarg);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500263 break;
Tom Tsou76764272016-06-24 14:25:39 -0700264 case 'm':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100265 print_deprecated(option);
266 trx->cfg.multi_arfcn = true;
Tom Tsou76764272016-06-24 14:25:39 -0700267 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500268 case 'x':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100269 print_deprecated(option);
270 trx->cfg.clock_ref = REF_EXTERNAL;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500271 break;
Tom Tsou2f3e60b2016-07-17 19:29:08 -0700272 case 'g':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100273 print_deprecated(option);
274 trx->cfg.clock_ref = REF_GPS;
Tom Tsou2f3e60b2016-07-17 19:29:08 -0700275 break;
Thomas Tsou15d743e2014-01-25 02:34:03 -0500276 case 'f':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100277 print_deprecated(option);
278 trx->cfg.filler = FILLER_DUMMY;
Thomas Tsou15d743e2014-01-25 02:34:03 -0500279 break;
Thomas Tsou8e17df72014-03-06 14:16:11 -0500280 case 'o':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100281 print_deprecated(option);
282 trx->cfg.offset = atof(optarg);
Thomas Tsou8e17df72014-03-06 14:16:11 -0500283 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500284 case 's':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100285 print_deprecated(option);
286 trx->cfg.tx_sps = atoi(optarg);
Tom Tsou64ad7122015-05-19 18:26:31 -0700287 break;
Tom Tsou2e4ed102016-06-27 15:39:16 -0700288 case 'b':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100289 print_deprecated(option);
290 trx->cfg.rx_sps = atoi(optarg);
Tom Tsou2e4ed102016-06-27 15:39:16 -0700291 break;
Tom Tsou64ad7122015-05-19 18:26:31 -0700292 case 'r':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100293 print_deprecated(option);
294 trx->cfg.rtsc_set = true;
295 trx->cfg.rtsc = atoi(optarg);
296 if (!trx->cfg.egprs) /* Don't override egprs which sets different filler */
297 trx->cfg.filler = FILLER_NORM_RAND;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500298 break;
Alexander Chemeris5efe0502016-03-23 17:06:32 +0300299 case 'A':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100300 print_deprecated(option);
301 trx->cfg.rach_delay_set = true;
302 trx->cfg.rach_delay = atoi(optarg);
303 trx->cfg.filler = FILLER_ACCESS_RAND;
Alexander Chemeris5efe0502016-03-23 17:06:32 +0300304 break;
Alexander Chemerise8905a02015-06-03 23:47:56 -0400305 case 'R':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100306 print_deprecated(option);
307 trx->cfg.rssi_offset = atof(optarg);
Alexander Chemerise8905a02015-06-03 23:47:56 -0400308 break;
Alexander Chemeris50747dc2015-06-07 01:07:45 -0400309 case 'S':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100310 print_deprecated(option);
311 trx->cfg.swap_channels = true;
Alexander Chemeris50747dc2015-06-07 01:07:45 -0400312 break;
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800313 case 'e':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100314 print_deprecated(option);
315 trx->cfg.egprs = true;
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800316 break;
Harald Welte81486e02017-06-29 15:35:22 +0200317 case 't':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100318 print_deprecated(option);
319 trx->cfg.sched_rr = atoi(optarg);
Harald Welte81486e02017-06-29 15:35:22 +0200320 break;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100321 case 'y':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100322 print_deprecated(option);
323 tx_paths = comma_delimited_to_vector(optarg);
324 tx_paths_set = true;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100325 break;
326 case 'z':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100327 print_deprecated(option);
328 rx_paths = comma_delimited_to_vector(optarg);
329 rx_paths_set = true;
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100330 break;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100331 case 'C':
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100332 config_file = optarg;
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100333 break;
Pau Espin Pedrol16e7e202018-06-15 15:19:21 +0200334 case 'V':
335 print_version(1);
336 exit(0);
337 break;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500338 default:
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100339 goto bad_config;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500340 }
341 }
Tom Tsou64ad7122015-05-19 18:26:31 -0700342
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100343 /* Cmd line option specific validation & setup */
Tom Tsou2e4ed102016-06-27 15:39:16 -0700344
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100345 if (trx->cfg.num_chans > TRX_CHAN_MAX) {
346 LOG(ERROR) << "Too many channels requested, maximum is " << TRX_CHAN_MAX;
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700347 goto bad_config;
348 }
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100349 if ((tx_paths_set && tx_paths.size() != trx->cfg.num_chans) ||
350 (rx_paths_set && rx_paths.size() != trx->cfg.num_chans)) {
351 LOG(ERROR) << "Num of channels and num of Rx/Tx Antennas doesn't match";
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700352 goto bad_config;
Tom Tsou64ad7122015-05-19 18:26:31 -0700353 }
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100354 for (i = 0; i < trx->cfg.num_chans; i++) {
355 trx->cfg.chans[i].trx = trx;
356 trx->cfg.chans[i].idx = i;
357 if (tx_paths_set)
358 osmo_talloc_replace_string(trx, &trx->cfg.chans[i].tx_path, tx_paths[i].c_str());
359 if (rx_paths_set)
360 osmo_talloc_replace_string(trx, &trx->cfg.chans[i].rx_path, rx_paths[i].c_str());
Pau Espin Pedrol77ce99a2018-02-05 13:05:06 +0100361 }
362
Tom Tsou8f0ccf62016-07-20 16:35:03 -0700363 return;
364
365bad_config:
366 print_help();
367 exit(0);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500368}
369
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100370int trx_validate_config(struct trx_ctx *trx)
371{
372 if (trx->cfg.multi_arfcn && trx->cfg.num_chans > 5) {
373 LOG(ERROR) << "Unsupported number of channels";
374 return -1;
375 }
376
377 /* Force 4 SPS for EDGE or multi-ARFCN configurations */
378 if ((trx->cfg.egprs || trx->cfg.multi_arfcn) &&
Harald Welte8fb0c3d2018-10-21 12:15:30 +0200379 (trx->cfg.tx_sps!=4 || trx->cfg.rx_sps!=4)) {
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100380 LOG(ERROR) << "EDGE and Multi-Carrier options require 4 tx and rx sps. Check you config.";
381 return -1;
382 }
383
384 return 0;
385}
386
387static int set_sched_rr(unsigned int prio)
Harald Welte81486e02017-06-29 15:35:22 +0200388{
389 struct sched_param param;
390 int rc;
391 memset(&param, 0, sizeof(param));
392 param.sched_priority = prio;
393 printf("Setting SCHED_RR priority(%d)\n", param.sched_priority);
394 rc = sched_setscheduler(getpid(), SCHED_RR, &param);
395 if (rc != 0) {
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100396 LOG(ERROR) << "Config: Setting SCHED_RR failed";
Harald Welte81486e02017-06-29 15:35:22 +0200397 return -1;
398 }
399 return 0;
400}
401
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100402static void print_config(struct trx_ctx *trx)
403{
404 unsigned int i;
405 std::ostringstream ost("");
406
407 ost << "Config Settings" << std::endl;
Pau Espin Pedrol8dffadb2018-03-06 18:38:22 +0100408 ost << " Log Level............... " << (unsigned int) osmo_stderr_target->loglevel << std::endl;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100409 ost << " Device args............. " << charp2str(trx->cfg.dev_args) << std::endl;
410 ost << " TRX Base Port........... " << trx->cfg.base_port << std::endl;
411 ost << " TRX Address............. " << charp2str(trx->cfg.bind_addr) << std::endl;
Harald Weltefad2e092018-04-28 21:25:09 +0200412 ost << " GSM BTS Address......... " << charp2str(trx->cfg.remote_addr) << std::endl;
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100413 ost << " Channels................ " << trx->cfg.num_chans << std::endl;
414 ost << " Tx Samples-per-Symbol... " << trx->cfg.tx_sps << std::endl;
415 ost << " Rx Samples-per-Symbol... " << trx->cfg.rx_sps << std::endl;
416 ost << " EDGE support............ " << trx->cfg.egprs << std::endl;
417 ost << " Reference............... " << trx->cfg.clock_ref << std::endl;
418 ost << " C0 Filler Table......... " << trx->cfg.filler << std::endl;
419 ost << " Multi-Carrier........... " << trx->cfg.multi_arfcn << std::endl;
420 ost << " Tuning offset........... " << trx->cfg.offset << std::endl;
421 ost << " RSSI to dBm offset...... " << trx->cfg.rssi_offset << std::endl;
422 ost << " Swap channels........... " << trx->cfg.swap_channels << std::endl;
423 ost << " Tx Antennas.............";
424 for (i = 0; i < trx->cfg.num_chans; i++) {
425 std::string p = charp2str(trx->cfg.chans[i].tx_path);
426 ost << " '" << ((p != "") ? p : "<default>") << "'";
427 }
428 ost << std::endl;
429 ost << " Rx Antennas.............";
430 for (i = 0; i < trx->cfg.num_chans; i++) {
431 std::string p = charp2str(trx->cfg.chans[i].rx_path);
432 ost << " '" << ((p != "") ? p : "<default>") << "'";
433 }
434 ost << std::endl;
435
436 std::cout << ost << std::endl;
437}
438
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100439static void trx_stop()
440{
441 std::cout << "Shutting down transceiver..." << std::endl;
442
443 delete transceiver;
444 delete radio;
445 delete usrp;
446}
447
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100448static int trx_start(struct trx_ctx *trx)
Thomas Tsou85b179d2013-11-15 21:14:33 -0500449{
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100450 int type, chans;
451 unsigned int i;
452 std::vector<std::string> rx_paths, tx_paths;
Tom Tsou05c6feb2016-06-22 16:09:44 -0700453 RadioDevice::InterfaceType iface = RadioDevice::NORMAL;
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100454
455 /* Create the low level device object */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100456 if (trx->cfg.multi_arfcn)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100457 iface = RadioDevice::MULTI_ARFCN;
458
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100459 /* Generate vector of rx/tx_path: */
460 for (i = 0; i < trx->cfg.num_chans; i++) {
461 rx_paths.push_back(charp2str(trx->cfg.chans[i].rx_path));
462 tx_paths.push_back(charp2str(trx->cfg.chans[i].tx_path));
463 }
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100464
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100465 usrp = RadioDevice::make(trx->cfg.tx_sps, trx->cfg.rx_sps, iface,
466 trx->cfg.num_chans, trx->cfg.offset,
467 tx_paths, rx_paths);
468 type = usrp->open(charp2str(trx->cfg.dev_args), trx->cfg.clock_ref, trx->cfg.swap_channels);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100469 if (type < 0) {
470 LOG(ALERT) << "Failed to create radio device" << std::endl;
471 goto shutdown;
472 }
473
474 /* Setup the appropriate device interface */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100475 radio = makeRadioInterface(trx, usrp, type);
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100476 if (!radio)
477 goto shutdown;
478
479 /* Create the transceiver core */
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100480 if (makeTransceiver(trx, radio) < 0)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100481 goto shutdown;
482
483 chans = transceiver->numChans();
484 std::cout << "-- Transceiver active with "
485 << chans << " channel(s)" << std::endl;
486
487 return 0;
488
489shutdown:
490 trx_stop();
491 return -1;
492}
493
494int main(int argc, char *argv[])
495{
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100496 int rc;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500497
Pau Espin Pedrol3a3b2202018-02-21 20:15:47 +0100498 tall_trx_ctx = talloc_named_const(NULL, 0, "OsmoTRX");
499 msgb_talloc_ctx_init(tall_trx_ctx, 0);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100500 g_vty_info.tall_ctx = tall_trx_ctx;
501
Pau Espin Pedrolab22f4c2018-02-21 20:15:18 +0100502 setup_signal_handlers();
503
Pau Espin Pedrola3ab8c22018-02-21 15:41:03 +0100504 g_trx_ctx = vty_trx_ctx_alloc(tall_trx_ctx);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100505
Philipp Maiere51a8f02017-03-16 12:09:34 +0100506#ifdef HAVE_SSE3
507 printf("Info: SSE3 support compiled in");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300508#ifdef HAVE___BUILTIN_CPU_SUPPORTS
Philipp Maiere51a8f02017-03-16 12:09:34 +0100509 if (__builtin_cpu_supports("sse3"))
510 printf(" and supported by CPU\n");
511 else
512 printf(", but not supported by CPU\n");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300513#else
514 printf(", but runtime SIMD detection disabled\n");
515#endif
Philipp Maiere51a8f02017-03-16 12:09:34 +0100516#endif
517
518#ifdef HAVE_SSE4_1
519 printf("Info: SSE4.1 support compiled in");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300520#ifdef HAVE___BUILTIN_CPU_SUPPORTS
Philipp Maiere51a8f02017-03-16 12:09:34 +0100521 if (__builtin_cpu_supports("sse4.1"))
522 printf(" and supported by CPU\n");
523 else
524 printf(", but not supported by CPU\n");
Vadim Yanitskiy3bd763d2017-05-20 01:46:51 +0300525#else
526 printf(", but runtime SIMD detection disabled\n");
527#endif
Philipp Maiere51a8f02017-03-16 12:09:34 +0100528#endif
529
Philipp Maier7e07cf22017-03-15 18:09:35 +0100530 convolve_init();
531 convert_init();
532
Pau Espin Pedrole1977fc2018-04-16 14:50:11 +0200533 osmo_init_logging2(tall_trx_ctx, &log_info);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100534 osmo_stats_init(tall_trx_ctx);
535 vty_init(&g_vty_info);
536 ctrl_vty_init(tall_trx_ctx);
537 trx_vty_init(g_trx_ctx);
538
539 logging_vty_add_cmds();
540 osmo_talloc_vty_add_cmds();
541 osmo_stats_vty_add_cmds();
542
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100543 handle_options(argc, argv, g_trx_ctx);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500544
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100545 rate_ctr_init(tall_trx_ctx);
546
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100547 rc = vty_read_config_file(config_file, NULL);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100548 if (rc < 0) {
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100549 fprintf(stderr, "Failed to open config file: '%s'\n", config_file);
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100550 exit(2);
551 }
552
553 rc = telnet_init_dynif(tall_trx_ctx, NULL, vty_get_bind_addr(), OSMO_VTY_PORT_TRX);
554 if (rc < 0)
555 exit(1);
556
557 g_ctrlh = ctrl_interface_setup(NULL, OSMO_CTRL_PORT_TRX, NULL);
558 if (!g_ctrlh) {
559 fprintf(stderr, "Failed to create CTRL interface.\n");
560 exit(1);
561 }
562
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100563 /* Backward compatibility: Hack to have 1 channel allocated by default.
564 * Can be Dropped once we * get rid of "-c" cmdline param */
565 if (g_trx_ctx->cfg.num_chans == 0) {
566 g_trx_ctx->cfg.num_chans = 1;
567 g_trx_ctx->cfg.chans[0].trx = g_trx_ctx;
568 g_trx_ctx->cfg.chans[0].idx = 0;
569 LOG(ERROR) << "No explicit channel config found. Make sure you" \
570 " configure channels in VTY config. Using 1 channel as default," \
571 " but expect your config to break in the future.";
Harald Welte81486e02017-06-29 15:35:22 +0200572 }
573
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100574 print_config(g_trx_ctx);
575
576 if (trx_validate_config(g_trx_ctx) < 0) {
577 LOG(ERROR) << "Config failure - exiting";
Thomas Tsou85b179d2013-11-15 21:14:33 -0500578 return EXIT_FAILURE;
579 }
580
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100581 if (g_trx_ctx->cfg.sched_rr) {
582 if (set_sched_rr(g_trx_ctx->cfg.sched_rr) < 0)
583 return EXIT_FAILURE;
584 }
585
Thomas Tsou85b179d2013-11-15 21:14:33 -0500586 srandom(time(NULL));
587
Pau Espin Pedrol408f2502018-02-21 18:47:35 +0100588 if(trx_start(g_trx_ctx) < 0)
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100589 return EXIT_FAILURE;
Thomas Tsou85b179d2013-11-15 21:14:33 -0500590
591 while (!gshutdown)
Pau Espin Pedrol5ea18172018-02-20 16:48:15 +0100592 osmo_select_main(0);
Thomas Tsou85b179d2013-11-15 21:14:33 -0500593
Pau Espin Pedrol0bbd8922018-02-21 11:59:26 +0100594 trx_stop();
Thomas Tsou85b179d2013-11-15 21:14:33 -0500595
596 return 0;
597}