aboutsummaryrefslogtreecommitdiffstats
path: root/Transceiver52M/XTRXDevice.cpp
blob: 13b8035c5e48adec1dcdba51a9f2d6a2e0419b30 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
#include <stdint.h>
#include <string.h>
#include <stdlib.h>
#include "Threads.h"
#include "XTRXDevice.h"

#include <Logger.h>
#include <errno.h>

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

using namespace std;

const double defaultRXBandwidth = 2e6;
const double defaultTXBandwidth = 3e6;

static int time_tx_corr = 60; //20+20+20+20+20;

XTRXDevice::XTRXDevice(size_t txsps, size_t rxsps)
{
  LOG(INFO) << "creating XTRX device...";

  this->txsps = txsps;
  this->rxsps = rxsps;

  rxGain = 0;

  loopback = false;
  device = NULL;
}

static int parse_config(const char* line, const char* argument, int default_value)
{
    const char* arg_found = strstr(line, argument);
    if (!arg_found)
        return default_value;

    const char* qe_pos = strchr(arg_found, '=');
    if (!qe_pos)
        return default_value;

    int res = strtol(qe_pos + 1, NULL, 10);
    if (res == 0 && errno) {
        return default_value;
    }

    return res;
}

int XTRXDevice::open(const std::string &args, int ref, bool swap_channels)
{
  LOG(INFO) << "opening XTRX device '"  << args << "'..";

  int loglevel = parse_config(args.c_str(), "loglevel", 3);
  int lb_param = parse_config(args.c_str(), "loopback", 0);
  time_tx_corr = parse_config(args.c_str(), "tcorr", time_tx_corr);
  int fref     = parse_config(args.c_str(), "refclk", 30720000);
  int rxdec    = parse_config(args.c_str(), "rxdec", 0);

  char xtrx_name[500];
  const char* lend = strchr(args.c_str(), ',');
  int len = (lend) ? (lend - args.c_str()) : sizeof(xtrx_name) - 1;
  strncpy(xtrx_name, args.c_str(), len);
  xtrx_name[len] = 0;

  if (lb_param) {
      LOG(ALERT) << "XTRX LOOPBACK mode is set!";
      loopback = true;
  }

  int res = xtrx_open(xtrx_name, loglevel, &device);
  if (res) {
    LOG(ALERT) << "XTRX creating failed, device " << xtrx_name << " code " << res;
    return -1;
  }
  double actualMasterClock = 0;

  if (fref > 0) {
	xtrx_set_ref_clk(device, fref, XTRX_CLKSRC_INT);
  }

  res = xtrx_set_samplerate(device,
							GSMRATE * (double) std::min(txsps, rxsps)  * 32 * 4 * ((rxdec) ? 2 : 1),
							GSMRATE * (double) rxsps,
							GSMRATE * (double) txsps,
							(rxdec) ? XTRX_SAMPLERATE_FORCE_RX_DECIM : 0,
                            &actualMasterClock,
                            &actualRXSampleRate,
                            &actualTXSampleRate);
  if (res) {
	  LOG(ALERT) << "XTRX failed to set samplerate RX: " << GSMRATE * (double) rxsps
				 << " TX: " << GSMRATE * (double) txsps
                 << " res: " << res;
      return -1;
  } else {
      LOG(INFO) << "XTRX set samplerate Master: " << actualMasterClock
                << " RX: " << actualRXSampleRate
                << " TX: " << actualTXSampleRate;
  }


  int i;
  double bw;
  double actualbw;

  actualbw = 0;
  bw = defaultRXBandwidth;
  for (i = 0, res = -1; res && (i < 4); i++, bw *= 1.5) {
      res = xtrx_tune_rx_bandwidth(device, XTRX_CH_AB, bw, &actualbw);
  }
  if (res) {
      LOG(ALERT) << "XTRX failed to set RX bandwidth: " << bw
                 << " res: " << res;
      return -1;
  } else {
      LOG(INFO) << "XTRX set RX bandwidth: " << actualbw;
  }

  actualbw = 0;
  bw = defaultTXBandwidth;
  for (i = 0, res = -1; res && (i < 4); i++, bw *= 1.1) {
      res = xtrx_tune_tx_bandwidth(device, XTRX_CH_AB, bw, &actualbw);
  }
  if (res) {
      LOG(ALERT) << "XTRX failed to set TX bandwidth: " << bw
                 << " res: " << res;
      return -1;
  } else {
      LOG(INFO) << "XTRX set TX bandwidth: " << actualbw;
  }

  samplesRead = 0;
  samplesWritten = 0;
  started = false;

  return NORMAL;
}

XTRXDevice::~XTRXDevice()
{
    if (device) {
        xtrx_close(device);
    }
}

bool XTRXDevice::start() 
{
  LOG(INFO) << "starting XTRX...";
  if (started) {
      return false;
  }

  dataStart = 0;
  dataEnd = 0;
  timeStart = 0;
  timeEnd = 0;
  timeRx = initialReadTimestamp();
  timestampOffset = 0;
  latestWriteTimestamp = 0;
  lastPktTimestamp = 0;
  hi32Timestamp = 0;
  isAligned = false;

  //xtrx_stop(device, XTRX_TX);
  //xtrx_stop(device, XTRX_RX);

  xtrx_set_antenna(device, XTRX_TX_L);
  xtrx_set_antenna(device, XTRX_RX_L);

  xtrx_run_params_t params;
  params.dir = XTRX_TRX;
  params.nflags = (loopback) ? XTRX_RUN_DIGLOOPBACK : 0;

  params.rx.chs = XTRX_CH_AB;
  params.rx.flags = XTRX_RSP_SISO_MODE;
  params.rx.hfmt = XTRX_IQ_INT16;
  params.rx.wfmt = XTRX_WF_16;
  params.rx.paketsize = 625 * rxsps;

  params.tx.chs = XTRX_CH_AB;
  params.tx.flags = XTRX_RSP_SISO_MODE;
  params.tx.hfmt = XTRX_IQ_INT16;
  params.tx.wfmt = XTRX_WF_16;
  params.tx.paketsize = 625 * txsps;

  if (loopback) {
	params.tx.flags |= XTRX_RSP_SWAP_AB | XTRX_RSP_SWAP_IQ;
  }

  params.tx_repeat_buf = NULL;
  params.rx_stream_start = initialReadTimestamp();

  int res = xtrx_run_ex(device, &params);
  if (res) {
	  LOG(ALERT) << "XTRX start failed res: " << res;
  } else {
	  LOG(INFO) << "XTRX started";
	  started = true;
  }
  return started;
}

bool XTRXDevice::stop() 
{
  if (started) {
      int res = xtrx_stop(device, XTRX_TRX);
      if (res) {
          LOG(ALERT) << "XTRX stop failed res: " << res;
      } else {
          LOG(INFO) << "XTRX stopped";
          started = false;
      }
  }
  return !started;
}

TIMESTAMP XTRXDevice::initialWriteTimestamp()
{
	if (/*(iface == MULTI_ARFCN) || */(rxsps == txsps))
		return initialReadTimestamp();
	else
		return initialReadTimestamp() * txsps;
}

double XTRXDevice::maxTxGain()
{
  return 30;
}

double XTRXDevice::minTxGain()
{
  return 0;
}

double XTRXDevice::maxRxGain()
{
  return 30;
} 

double XTRXDevice::minRxGain()
{
  return 0;
}

double XTRXDevice::setTxGain(double dB, size_t chan)
{
  if (chan) {
    LOG(ALERT) << "Invalid channel " << chan;
    return 0.0;
  }
  double actual = 0;
  LOG(NOTICE) << "Setting TX gain to " << dB << " dB.";

  int res = xtrx_set_gain(device, XTRX_CH_AB, XTRX_TX_PAD_GAIN, -10, &actual);
  if (res) {
    LOG(ERR) << "Error setting TX gain res: " << res;
  }

  return actual;
}


double XTRXDevice::setRxGain(double dB, size_t chan)
{
    if (chan) {
      LOG(ALERT) << "Invalid channel " << chan;
      return 0.0;
    }
    double actual = 0;
    LOG(NOTICE) << "Setting RX gain to " << dB << " dB.";

	int res = xtrx_set_gain(device, XTRX_CH_AB, XTRX_RX_LNA_GAIN, 25, &actual);
    if (res) {
      LOG(ERR) << "Error setting RX gain res: " << res;
    }

    return actual;
}

// NOTE: Assumes sequential reads
int XTRXDevice::readSamples(std::vector<short *> &bufs, int len, bool *overrun,
							TIMESTAMP timestamp, bool *underrun, unsigned *RSSI)
{
	if (!started)
		return -1;

	if (RSSI) {
		*RSSI = 10; // TODO
	}

	struct xtrx_recv_ex_info ri;
	ri.samples = len;
	ri.buffer_count = bufs.size();
	ri.buffers = (void* const*)&bufs[0];
	ri.flags = 0;

	int res = xtrx_recv_sync_ex(device, &ri);
	if (res) {
		LOG(ALERT) << "xtrx_recv_sync failed res " << res << " current TS " << timeRx << " req TS" << timestamp;
		return -1;
	}
	timeRx += len;

	// TODO: remove this
	int i;
	for (i = 0; i < len * 2; i++)
			bufs[0][i] <<= 4;

	if (underrun) {
		*underrun = (ri.out_events & RCVEX_EVENT_FILLED_ZERO);
	}
	return len;

}

int XTRXDevice::writeSamples(std::vector<short *> &bufs, int len,
                             bool *underrun, unsigned long long timestamp,
                             bool isControl)
{
	if (!started)
	  return 0;

	xtrx_send_ex_info_t nfo;
	nfo.buffers = (const void* const*)&bufs[0];
	nfo.buffer_count = bufs.size();
	nfo.flags = XTRX_TX_DONT_BUFFER;
	nfo.samples = len;
	nfo.ts = timestamp - time_tx_corr;

	int res = xtrx_send_sync_ex(device, &nfo);
	if (res != 0) {
		LOG(ALERT) << "xtrx_send_sync_ex returned " << res << " len=" << len << " ts=" << timestamp;
		return 0;
	}

	if (*underrun) {
		*underrun = (nfo.out_flags & XTRX_TX_DISCARDED_TO);
	}

	return len;
}

bool XTRXDevice::updateAlignment(TIMESTAMP timestamp) 
{
	LOG(ALERT) << "Update Aligment " << timestamp;
  return true;
}

bool XTRXDevice::setTxFreq(double wFreq, size_t chan)
{
    int res;
    double actual = 0;

    if (chan) {
      LOG(ALERT) << "Invalid channel " << chan;
      return false;
    }

    if ((res = xtrx_tune(device, XTRX_TUNE_TX_FDD, wFreq, &actual)) == 0) {
      LOG(INFO) << "set RX: " << wFreq << std::endl
                << "    actual freq: " << actual << std::endl;
      return true;
    }
    else {
      LOG(ALERT) << "set RX: " << wFreq << "failed (code: " << res << ")" << std::endl;
      return false;
    }
}

bool XTRXDevice::setRxFreq(double wFreq, size_t chan)
{
  int res;
  double actual = 0;

  if (chan) {
    LOG(ALERT) << "Invalid channel " << chan;
    return false;
  }

  if ((res = xtrx_tune(device, XTRX_TUNE_RX_FDD, wFreq, &actual)) == 0) {
    LOG(INFO) << "set RX: " << wFreq << std::endl
              << "    actual freq: " << actual << std::endl;
    return true;
  }
  else {
    LOG(ALERT) << "set RX: " << wFreq << "failed (code: " << res << ")" << std::endl;
    return false;
  }
}

RadioDevice *RadioDevice::make(size_t tx_sps, size_t rx_sps, InterfaceType type,
                               size_t chans, double offset)
{
    return new XTRXDevice(tx_sps, rx_sps);
}