blob: 66eff7f89c1130cc98726ae2851a236a47dc30b7 [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001/*
2* Copyright 2008, 2009, 2010 Free Software Foundation, Inc.
3*
4* This software is distributed under the terms of the GNU Public License.
5* See the COPYING file in the main directory for details.
6*
7* This use of this software may be subject to additional restrictions.
8* See the LEGAL file in the main directory for details.
9
10 This program is free software: you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation, either version 3 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22*/
23
dburgessb3a0ca42011-10-12 07:44:40 +000024#include <stdio.h>
Alexander Chemerise8905a02015-06-03 23:47:56 -040025#include <iomanip> // std::setprecision
Alexander Chemerise692ce92015-06-12 00:15:31 -040026#include <fstream>
dburgessb3a0ca42011-10-12 07:44:40 +000027#include "Transceiver.h"
28#include <Logger.h>
29
ttsou2173abf2012-08-08 00:51:31 +000030#ifdef HAVE_CONFIG_H
31#include "config.h"
32#endif
dburgessb3a0ca42011-10-12 07:44:40 +000033
Alexander Chemerisd734e2d2013-06-16 14:30:58 +040034using namespace GSM;
35
kurtis.heimerlec842de2012-11-23 08:37:32 +000036#define USB_LATENCY_INTRVL 10,0
ttsou2173abf2012-08-08 00:51:31 +000037
38#if USE_UHD
kurtis.heimerlec842de2012-11-23 08:37:32 +000039# define USB_LATENCY_MIN 6,7
ttsou2173abf2012-08-08 00:51:31 +000040#else
kurtis.heimerlec842de2012-11-23 08:37:32 +000041# define USB_LATENCY_MIN 1,1
ttsou2173abf2012-08-08 00:51:31 +000042#endif
dburgessb3a0ca42011-10-12 07:44:40 +000043
Thomas Tsoufa3a7872013-10-17 21:23:34 -040044/* Number of running values use in noise average */
45#define NOISE_CNT 20
ttsoue8dde022012-12-06 15:43:55 +000046
Thomas Tsouf0782732013-10-29 15:55:47 -040047TransceiverState::TransceiverState()
Tom Tsoua4d1a412014-11-25 15:46:56 -080048 : mRetrans(false), mNoiseLev(0.0), mNoises(NOISE_CNT), mPower(0.0)
Thomas Tsouf0782732013-10-29 15:55:47 -040049{
50 for (int i = 0; i < 8; i++) {
51 chanType[i] = Transceiver::NONE;
52 fillerModulus[i] = 26;
53 chanResponse[i] = NULL;
54 DFEForward[i] = NULL;
55 DFEFeedback[i] = NULL;
56
57 for (int n = 0; n < 102; n++)
58 fillerTable[n][i] = NULL;
59 }
60}
61
62TransceiverState::~TransceiverState()
63{
64 for (int i = 0; i < 8; i++) {
65 delete chanResponse[i];
66 delete DFEForward[i];
67 delete DFEFeedback[i];
68
69 for (int n = 0; n < 102; n++)
70 delete fillerTable[n][i];
71 }
72}
73
Alexander Chemeris37c52c72016-03-25 18:28:34 +030074bool TransceiverState::init(int filler, size_t sps, float scale, size_t rtsc, unsigned rach_delay)
Tom Tsou64ad7122015-05-19 18:26:31 -070075{
Tom Tsou64ad7122015-05-19 18:26:31 -070076 signalVector *burst;
77
78 if ((sps != 1) && (sps != 4))
79 return false;
80
81 for (size_t n = 0; n < 8; n++) {
Tom Tsou64ad7122015-05-19 18:26:31 -070082 for (size_t i = 0; i < 102; i++) {
83 switch (filler) {
84 case Transceiver::FILLER_DUMMY:
Tom Tsou8ee2f382016-03-06 20:57:34 -080085 burst = generateDummyBurst(sps, n);
Tom Tsou64ad7122015-05-19 18:26:31 -070086 break;
Tom Tsouaf717b22016-03-06 22:19:15 -080087 case Transceiver::FILLER_NORM_RAND:
Tom Tsou8ee2f382016-03-06 20:57:34 -080088 burst = genRandNormalBurst(rtsc, sps, n);
Tom Tsou64ad7122015-05-19 18:26:31 -070089 break;
Tom Tsouaf717b22016-03-06 22:19:15 -080090 case Transceiver::FILLER_EDGE_RAND:
91 burst = generateEdgeBurst(rtsc);
92 break;
Alexander Chemeris5efe0502016-03-23 17:06:32 +030093 case Transceiver::FILLER_ACCESS_RAND:
Alexander Chemeris37c52c72016-03-25 18:28:34 +030094 burst = genRandAccessBurst(rach_delay, sps, n);
Alexander Chemeris5efe0502016-03-23 17:06:32 +030095 break;
Tom Tsou64ad7122015-05-19 18:26:31 -070096 case Transceiver::FILLER_ZERO:
97 default:
Tom Tsou8ee2f382016-03-06 20:57:34 -080098 burst = generateEmptyBurst(sps, n);
Tom Tsou64ad7122015-05-19 18:26:31 -070099 }
100
101 scaleVector(*burst, scale);
102 fillerTable[i][n] = burst;
103 }
104
Tom Tsouaf717b22016-03-06 22:19:15 -0800105 if ((filler == Transceiver::FILLER_NORM_RAND) ||
106 (filler == Transceiver::FILLER_EDGE_RAND)) {
Alexander Chemerisf9e78be2017-03-17 15:00:34 -0700107 chanType[n] = TSC;
Tom Tsouaf717b22016-03-06 22:19:15 -0800108 }
Thomas Tsou15d743e2014-01-25 02:34:03 -0500109 }
Tom Tsou64ad7122015-05-19 18:26:31 -0700110
111 return false;
Thomas Tsouf0782732013-10-29 15:55:47 -0400112}
113
dburgessb3a0ca42011-10-12 07:44:40 +0000114Transceiver::Transceiver(int wBasePort,
Alexander Chemerise8905a02015-06-03 23:47:56 -0400115 const char *wTRXAddress,
Tom Tsou5cd70dc2016-03-06 01:28:40 -0800116 size_t tx_sps, size_t rx_sps, size_t chans,
Alexander Chemerise8905a02015-06-03 23:47:56 -0400117 GSM::Time wTransmitLatency,
118 RadioInterface *wRadioInterface,
119 double wRssiOffset)
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800120 : mBasePort(wBasePort), mAddr(wTRXAddress),
121 mClockSocket(wBasePort, wTRXAddress, mBasePort + 100),
122 mTransmitLatency(wTransmitLatency), mRadioInterface(wRadioInterface),
Alexander Chemerise8905a02015-06-03 23:47:56 -0400123 rssiOffset(wRssiOffset),
Tom Tsou64464e62016-07-01 03:46:46 -0700124 mSPSTx(tx_sps), mSPSRx(rx_sps), mChans(chans), mEdge(false), mOn(false),
Alexander Chemeris78d1fc92016-03-19 21:16:22 +0300125 mTxFreq(0.0), mRxFreq(0.0), mTSC(0), mMaxExpectedDelayAB(0), mMaxExpectedDelayNB(0),
126 mWriteBurstToDiskMask(0)
dburgessb3a0ca42011-10-12 07:44:40 +0000127{
dburgessb3a0ca42011-10-12 07:44:40 +0000128 txFullScale = mRadioInterface->fullScaleInputValue();
129 rxFullScale = mRadioInterface->fullScaleOutputValue();
Alexander Chemeris5a068062015-06-20 01:38:47 +0300130
131 for (int i = 0; i < 8; i++) {
132 for (int j = 0; j < 8; j++)
133 mHandover[i][j] = false;
134 }
dburgessb3a0ca42011-10-12 07:44:40 +0000135}
136
137Transceiver::~Transceiver()
138{
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800139 stop();
140
dburgessb3a0ca42011-10-12 07:44:40 +0000141 sigProcLibDestroy();
Thomas Tsoud647ec52013-10-29 15:17:34 -0400142
Thomas Tsou204a9f12013-10-29 18:34:16 -0400143 for (size_t i = 0; i < mChans; i++) {
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800144 mControlServiceLoopThreads[i]->cancel();
145 mControlServiceLoopThreads[i]->join();
146 delete mControlServiceLoopThreads[i];
147
Thomas Tsou204a9f12013-10-29 18:34:16 -0400148 mTxPriorityQueues[i].clear();
149 delete mCtrlSockets[i];
150 delete mDataSockets[i];
151 }
dburgessb3a0ca42011-10-12 07:44:40 +0000152}
Thomas Tsou83e06892013-08-20 16:10:01 -0400153
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800154/*
155 * Initialize transceiver
156 *
157 * Start or restart the control loop. Any further control is handled through the
158 * socket API. Randomize the central radio clock set the downlink burst
159 * counters. Note that the clock will not update until the radio starts, but we
160 * are still expected to report clock indications through control channel
161 * activity.
162 */
Tom Tsou64464e62016-07-01 03:46:46 -0700163bool Transceiver::init(int filler, size_t rtsc, unsigned rach_delay, bool edge)
Thomas Tsou83e06892013-08-20 16:10:01 -0400164{
Thomas Tsoue1ce9252013-11-13 22:40:44 -0500165 int d_srcport, d_dstport, c_srcport, c_dstport;
Thomas Tsouf0782732013-10-29 15:55:47 -0400166
Thomas Tsou204a9f12013-10-29 18:34:16 -0400167 if (!mChans) {
168 LOG(ALERT) << "No channels assigned";
169 return false;
170 }
171
Tom Tsou2079a3c2016-03-06 00:58:56 -0800172 if (!sigProcLibSetup()) {
Thomas Tsou83e06892013-08-20 16:10:01 -0400173 LOG(ALERT) << "Failed to initialize signal processing library";
174 return false;
175 }
176
Tom Tsou64464e62016-07-01 03:46:46 -0700177 mEdge = edge;
178
Thomas Tsou204a9f12013-10-29 18:34:16 -0400179 mDataSockets.resize(mChans);
180 mCtrlSockets.resize(mChans);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400181 mControlServiceLoopThreads.resize(mChans);
182 mTxPriorityQueueServiceLoopThreads.resize(mChans);
183 mRxServiceLoopThreads.resize(mChans);
184
185 mTxPriorityQueues.resize(mChans);
186 mReceiveFIFO.resize(mChans);
187 mStates.resize(mChans);
188
Thomas Tsouccb73e12014-04-15 17:41:28 -0400189 /* Filler table retransmissions - support only on channel 0 */
Tom Tsou64ad7122015-05-19 18:26:31 -0700190 if (filler == FILLER_DUMMY)
Thomas Tsouccb73e12014-04-15 17:41:28 -0400191 mStates[0].mRetrans = true;
192
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800193 /* Setup sockets */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400194 for (size_t i = 0; i < mChans; i++) {
Thomas Tsoue1ce9252013-11-13 22:40:44 -0500195 c_srcport = mBasePort + 2 * i + 1;
196 c_dstport = mBasePort + 2 * i + 101;
197 d_srcport = mBasePort + 2 * i + 2;
198 d_dstport = mBasePort + 2 * i + 102;
199
200 mCtrlSockets[i] = new UDPSocket(c_srcport, mAddr.c_str(), c_dstport);
201 mDataSockets[i] = new UDPSocket(d_srcport, mAddr.c_str(), d_dstport);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400202 }
Thomas Tsou83e06892013-08-20 16:10:01 -0400203
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800204 /* Randomize the central clock */
205 GSM::Time startTime(random() % gHyperframe, 0);
206 mRadioInterface->getClock()->set(startTime);
207 mTransmitDeadlineClock = startTime;
208 mLastClockUpdateTime = startTime;
209 mLatencyUpdateTime = startTime;
210
211 /* Start control threads */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400212 for (size_t i = 0; i < mChans; i++) {
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800213 TransceiverChannel *chan = new TransceiverChannel(this, i);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400214 mControlServiceLoopThreads[i] = new Thread(32768);
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800215 mControlServiceLoopThreads[i]->start((void * (*)(void*))
216 ControlServiceLoopAdapter, (void*) chan);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400217
Tom Tsou64ad7122015-05-19 18:26:31 -0700218 if (i && filler == FILLER_DUMMY)
219 filler = FILLER_ZERO;
220
Alexander Chemeris37c52c72016-03-25 18:28:34 +0300221 mStates[i].init(filler, mSPSTx, txFullScale, rtsc, rach_delay);
Thomas Tsou83e06892013-08-20 16:10:01 -0400222 }
223
224 return true;
225}
dburgessb3a0ca42011-10-12 07:44:40 +0000226
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800227/*
228 * Start the transceiver
229 *
230 * Submit command(s) to the radio device to commence streaming samples and
231 * launch threads to handle sample I/O. Re-synchronize the transmit burst
232 * counters to the central radio clock here as well.
233 */
234bool Transceiver::start()
235{
236 ScopedLock lock(mLock);
237
238 if (mOn) {
239 LOG(ERR) << "Transceiver already running";
Ivan Kluchnikov194a9b12015-04-23 17:08:27 +0300240 return true;
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800241 }
242
243 LOG(NOTICE) << "Starting the transceiver";
244
245 GSM::Time time = mRadioInterface->getClock()->get();
246 mTransmitDeadlineClock = time;
247 mLastClockUpdateTime = time;
248 mLatencyUpdateTime = time;
249
250 if (!mRadioInterface->start()) {
251 LOG(ALERT) << "Device failed to start";
252 return false;
253 }
254
255 /* Device is running - launch I/O threads */
256 mRxLowerLoopThread = new Thread(32768);
257 mTxLowerLoopThread = new Thread(32768);
258 mTxLowerLoopThread->start((void * (*)(void*))
259 TxLowerLoopAdapter,(void*) this);
260 mRxLowerLoopThread->start((void * (*)(void*))
261 RxLowerLoopAdapter,(void*) this);
262
263 /* Launch uplink and downlink burst processing threads */
264 for (size_t i = 0; i < mChans; i++) {
265 TransceiverChannel *chan = new TransceiverChannel(this, i);
266 mRxServiceLoopThreads[i] = new Thread(32768);
267 mRxServiceLoopThreads[i]->start((void * (*)(void*))
268 RxUpperLoopAdapter, (void*) chan);
269
270 chan = new TransceiverChannel(this, i);
271 mTxPriorityQueueServiceLoopThreads[i] = new Thread(32768);
272 mTxPriorityQueueServiceLoopThreads[i]->start((void * (*)(void*))
273 TxUpperLoopAdapter, (void*) chan);
274 }
275
276 writeClockInterface();
277 mOn = true;
278 return true;
279}
280
281/*
282 * Stop the transceiver
283 *
284 * Perform stopping by disabling receive streaming and issuing cancellation
285 * requests to running threads. Most threads will timeout and terminate once
286 * device is disabled, but the transmit loop may block waiting on the central
287 * UMTS clock. Explicitly signal the clock to make sure that the transmit loop
288 * makes it to the thread cancellation point.
289 */
290void Transceiver::stop()
291{
292 ScopedLock lock(mLock);
293
294 if (!mOn)
295 return;
296
297 LOG(NOTICE) << "Stopping the transceiver";
298 mTxLowerLoopThread->cancel();
299 mRxLowerLoopThread->cancel();
300
301 for (size_t i = 0; i < mChans; i++) {
302 mRxServiceLoopThreads[i]->cancel();
303 mTxPriorityQueueServiceLoopThreads[i]->cancel();
304 }
305
306 LOG(INFO) << "Stopping the device";
307 mRadioInterface->stop();
308
309 for (size_t i = 0; i < mChans; i++) {
310 mRxServiceLoopThreads[i]->join();
311 mTxPriorityQueueServiceLoopThreads[i]->join();
312 delete mRxServiceLoopThreads[i];
313 delete mTxPriorityQueueServiceLoopThreads[i];
314
315 mTxPriorityQueues[i].clear();
316 }
317
318 mTxLowerLoopThread->join();
319 mRxLowerLoopThread->join();
320 delete mTxLowerLoopThread;
321 delete mRxLowerLoopThread;
322
323 mOn = false;
324 LOG(NOTICE) << "Transceiver stopped";
325}
326
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500327void Transceiver::addRadioVector(size_t chan, BitVector &bits,
Thomas Tsou204a9f12013-10-29 18:34:16 -0400328 int RSSI, GSM::Time &wTime)
dburgessb3a0ca42011-10-12 07:44:40 +0000329{
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500330 signalVector *burst;
331 radioVector *radio_burst;
332
Thomas Tsou204a9f12013-10-29 18:34:16 -0400333 if (chan >= mTxPriorityQueues.size()) {
334 LOG(ALERT) << "Invalid channel " << chan;
335 return;
336 }
337
Thomas Tsou2d0c00b2013-11-14 15:28:23 -0500338 if (wTime.TN() > 7) {
339 LOG(ALERT) << "Received burst with invalid slot " << wTime.TN();
340 return;
341 }
342
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800343 /* Use the number of bits as the EDGE burst indicator */
344 if (bits.size() == EDGE_BURST_NBITS)
345 burst = modulateEdgeBurst(bits, mSPSTx);
346 else
347 burst = modulateBurst(bits, 8 + (wTime.TN() % 4 == 0), mSPSTx);
348
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500349 scaleVector(*burst, txFullScale * pow(10, -RSSI / 10));
dburgessb3a0ca42011-10-12 07:44:40 +0000350
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500351 radio_burst = new radioVector(wTime, burst);
352
353 mTxPriorityQueues[chan].write(radio_burst);
dburgessb3a0ca42011-10-12 07:44:40 +0000354}
355
Thomas Tsou15d743e2014-01-25 02:34:03 -0500356void Transceiver::updateFillerTable(size_t chan, radioVector *burst)
357{
358 int TN, modFN;
359 TransceiverState *state = &mStates[chan];
360
361 TN = burst->getTime().TN();
362 modFN = burst->getTime().FN() % state->fillerModulus[TN];
363
364 delete state->fillerTable[modFN][TN];
365 state->fillerTable[modFN][TN] = burst->getVector();
366 burst->setVector(NULL);
367}
368
dburgessb3a0ca42011-10-12 07:44:40 +0000369void Transceiver::pushRadioVector(GSM::Time &nowTime)
370{
Thomas Tsou204a9f12013-10-29 18:34:16 -0400371 int TN, modFN;
372 radioVector *burst;
373 TransceiverState *state;
374 std::vector<signalVector *> bursts(mChans);
375 std::vector<bool> zeros(mChans);
Thomas Tsou15d743e2014-01-25 02:34:03 -0500376 std::vector<bool> filler(mChans, true);
dburgessb3a0ca42011-10-12 07:44:40 +0000377
Thomas Tsou204a9f12013-10-29 18:34:16 -0400378 for (size_t i = 0; i < mChans; i ++) {
379 state = &mStates[i];
dburgessb3a0ca42011-10-12 07:44:40 +0000380
Thomas Tsou204a9f12013-10-29 18:34:16 -0400381 while ((burst = mTxPriorityQueues[i].getStaleBurst(nowTime))) {
382 LOG(NOTICE) << "dumping STALE burst in TRX->USRP interface";
Thomas Tsou15d743e2014-01-25 02:34:03 -0500383 if (state->mRetrans)
384 updateFillerTable(i, burst);
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500385 delete burst;
Thomas Tsou204a9f12013-10-29 18:34:16 -0400386 }
387
388 TN = nowTime.TN();
389 modFN = nowTime.FN() % state->fillerModulus[TN];
390
391 bursts[i] = state->fillerTable[modFN][TN];
392 zeros[i] = state->chanType[TN] == NONE;
393
394 if ((burst = mTxPriorityQueues[i].getCurrentBurst(nowTime))) {
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500395 bursts[i] = burst->getVector();
Thomas Tsou15d743e2014-01-25 02:34:03 -0500396
397 if (state->mRetrans) {
398 updateFillerTable(i, burst);
399 } else {
400 burst->setVector(NULL);
401 filler[i] = false;
402 }
403
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500404 delete burst;
Thomas Tsou204a9f12013-10-29 18:34:16 -0400405 }
dburgessb3a0ca42011-10-12 07:44:40 +0000406 }
407
Thomas Tsou204a9f12013-10-29 18:34:16 -0400408 mRadioInterface->driveTransmitRadio(bursts, zeros);
409
Thomas Tsou15d743e2014-01-25 02:34:03 -0500410 for (size_t i = 0; i < mChans; i++) {
411 if (!filler[i])
412 delete bursts[i];
413 }
dburgessb3a0ca42011-10-12 07:44:40 +0000414}
415
Thomas Tsou204a9f12013-10-29 18:34:16 -0400416void Transceiver::setModulus(size_t timeslot, size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000417{
Thomas Tsou204a9f12013-10-29 18:34:16 -0400418 TransceiverState *state = &mStates[chan];
419
420 switch (state->chanType[timeslot]) {
dburgessb3a0ca42011-10-12 07:44:40 +0000421 case NONE:
422 case I:
423 case II:
424 case III:
425 case FILL:
Thomas Tsou204a9f12013-10-29 18:34:16 -0400426 state->fillerModulus[timeslot] = 26;
dburgessb3a0ca42011-10-12 07:44:40 +0000427 break;
428 case IV:
429 case VI:
430 case V:
Thomas Tsou204a9f12013-10-29 18:34:16 -0400431 state->fillerModulus[timeslot] = 51;
dburgessb3a0ca42011-10-12 07:44:40 +0000432 break;
433 //case V:
434 case VII:
Thomas Tsou204a9f12013-10-29 18:34:16 -0400435 state->fillerModulus[timeslot] = 102;
dburgessb3a0ca42011-10-12 07:44:40 +0000436 break;
ttsoufc40a842013-06-09 22:38:18 +0000437 case XIII:
Thomas Tsou204a9f12013-10-29 18:34:16 -0400438 state->fillerModulus[timeslot] = 52;
ttsoufc40a842013-06-09 22:38:18 +0000439 break;
dburgessb3a0ca42011-10-12 07:44:40 +0000440 default:
441 break;
442 }
443}
444
445
Alexander Chemerisf9e78be2017-03-17 15:00:34 -0700446CorrType Transceiver::expectedCorrType(GSM::Time currTime,
447 size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000448{
Alexander Chemeris5a068062015-06-20 01:38:47 +0300449 static int tchh_subslot[26] = { 0,1,0,1,0,1,0,1,0,1,0,1,0,0,1,0,1,0,1,0,1,0,1,0,1,1 };
450 static int sdcch4_subslot[102] = { 3,3,3,3,0,0,2,2,2,2,3,3,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,2,2,2,2,
451 3,3,3,3,0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,0,0,2,2,2,2 };
452 static int sdcch8_subslot[102] = { 5,5,5,5,6,6,6,6,7,7,7,7,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,0,0,0,0,
453 1,1,1,1,2,2,2,2,3,3,3,3,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,4,4,4,4 };
Thomas Tsou204a9f12013-10-29 18:34:16 -0400454 TransceiverState *state = &mStates[chan];
dburgessb3a0ca42011-10-12 07:44:40 +0000455 unsigned burstTN = currTime.TN();
456 unsigned burstFN = currTime.FN();
Alexander Chemeris5a068062015-06-20 01:38:47 +0300457 int subch;
dburgessb3a0ca42011-10-12 07:44:40 +0000458
Thomas Tsou204a9f12013-10-29 18:34:16 -0400459 switch (state->chanType[burstTN]) {
dburgessb3a0ca42011-10-12 07:44:40 +0000460 case NONE:
461 return OFF;
462 break;
463 case FILL:
464 return IDLE;
465 break;
466 case I:
Alexander Chemeris5a068062015-06-20 01:38:47 +0300467 // TODO: Are we expecting RACH on an IDLE frame?
468/* if (burstFN % 26 == 25)
469 return IDLE;*/
470 if (mHandover[burstTN][0])
471 return RACH;
dburgessb3a0ca42011-10-12 07:44:40 +0000472 return TSC;
dburgessb3a0ca42011-10-12 07:44:40 +0000473 break;
474 case II:
Alexander Chemeris5a068062015-06-20 01:38:47 +0300475 subch = tchh_subslot[burstFN % 26];
476 if (subch == 1)
477 return IDLE;
478 if (mHandover[burstTN][0])
479 return RACH;
ttsou20642972013-03-27 22:00:25 +0000480 return TSC;
dburgessb3a0ca42011-10-12 07:44:40 +0000481 break;
482 case III:
Alexander Chemeris5a068062015-06-20 01:38:47 +0300483 subch = tchh_subslot[burstFN % 26];
484 if (mHandover[burstTN][subch])
485 return RACH;
dburgessb3a0ca42011-10-12 07:44:40 +0000486 return TSC;
487 break;
488 case IV:
489 case VI:
490 return RACH;
491 break;
492 case V: {
493 int mod51 = burstFN % 51;
494 if ((mod51 <= 36) && (mod51 >= 14))
495 return RACH;
496 else if ((mod51 == 4) || (mod51 == 5))
497 return RACH;
498 else if ((mod51 == 45) || (mod51 == 46))
499 return RACH;
Alexander Chemeris5a068062015-06-20 01:38:47 +0300500 else if (mHandover[burstTN][sdcch4_subslot[burstFN % 102]])
501 return RACH;
dburgessb3a0ca42011-10-12 07:44:40 +0000502 else
503 return TSC;
504 break;
505 }
506 case VII:
507 if ((burstFN % 51 <= 14) && (burstFN % 51 >= 12))
508 return IDLE;
Alexander Chemeris5a068062015-06-20 01:38:47 +0300509 else if (mHandover[burstTN][sdcch8_subslot[burstFN % 102]])
510 return RACH;
dburgessb3a0ca42011-10-12 07:44:40 +0000511 else
512 return TSC;
513 break;
ttsoufc40a842013-06-09 22:38:18 +0000514 case XIII: {
515 int mod52 = burstFN % 52;
516 if ((mod52 == 12) || (mod52 == 38))
517 return RACH;
518 else if ((mod52 == 25) || (mod52 == 51))
519 return IDLE;
520 else
521 return TSC;
522 break;
523 }
dburgessb3a0ca42011-10-12 07:44:40 +0000524 case LOOPBACK:
525 if ((burstFN % 51 <= 50) && (burstFN % 51 >=48))
526 return IDLE;
527 else
528 return TSC;
529 break;
530 default:
531 return OFF;
532 break;
533 }
dburgessb3a0ca42011-10-12 07:44:40 +0000534}
Thomas Tsoufa3a7872013-10-17 21:23:34 -0400535
Alexander Chemerise692ce92015-06-12 00:15:31 -0400536void writeToFile(radioVector *radio_burst, size_t chan)
537{
538 GSM::Time time = radio_burst->getTime();
539 std::ostringstream fname;
540 fname << chan << "_" << time.FN() << "_" << time.TN() << ".fc";
541 std::ofstream outfile (fname.str().c_str(), std::ofstream::binary);
542 outfile.write((char*)radio_burst->getVector()->begin(), radio_burst->getVector()->size() * 2 * sizeof(float));
543 outfile.close();
544}
545
Thomas Tsou30421a72013-11-13 23:14:48 -0500546/*
547 * Pull bursts from the FIFO and handle according to the slot
548 * and burst correlation type. Equalzation is currently disabled.
549 */
Alexander Chemeris2b542102015-06-08 22:46:38 -0400550SoftVector *Transceiver::pullRadioVector(GSM::Time &wTime, double &RSSI, bool &isRssiValid,
Alexander Chemerisdbe26ab2015-06-04 00:14:51 -0400551 double &timingOffset, double &noise,
552 size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000553{
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800554 int rc;
Thomas Tsou30421a72013-11-13 23:14:48 -0500555 complex amp;
Alexander Chemeris1dd05cf2017-03-15 23:23:36 +0300556 float toa, max = -1.0, avg = 0.0;
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500557 int max_i = -1;
Thomas Tsou30421a72013-11-13 23:14:48 -0500558 signalVector *burst;
Thomas Tsouef25dba2013-11-14 15:31:24 -0500559 SoftVector *bits = NULL;
Thomas Tsoua0179e32013-11-14 15:52:04 -0500560 TransceiverState *state = &mStates[chan];
Alexander Chemeris2b542102015-06-08 22:46:38 -0400561 isRssiValid = false;
dburgessb3a0ca42011-10-12 07:44:40 +0000562
Thomas Tsou30421a72013-11-13 23:14:48 -0500563 /* Blocking FIFO read */
564 radioVector *radio_burst = mReceiveFIFO[chan]->read();
565 if (!radio_burst)
566 return NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000567
Thomas Tsou30421a72013-11-13 23:14:48 -0500568 /* Set time and determine correlation type */
569 GSM::Time time = radio_burst->getTime();
570 CorrType type = expectedCorrType(time, chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000571
Tom Tsou64464e62016-07-01 03:46:46 -0700572 /* Enable 8-PSK burst detection if EDGE is enabled */
573 if (mEdge && (type == TSC))
574 type = EDGE;
575
Alexander Chemerise692ce92015-06-12 00:15:31 -0400576 /* Debug: dump bursts to disk */
577 /* bits 0-7 - chan 0 timeslots
578 * bits 8-15 - chan 1 timeslots */
579 if (mWriteBurstToDiskMask & ((1<<time.TN()) << (8*chan)))
580 writeToFile(radio_burst, chan);
581
Alexander Chemeris2b542102015-06-08 22:46:38 -0400582 /* No processing if the timeslot is off.
583 * Not even power level or noise calculation. */
584 if (type == OFF) {
Thomas Tsou30421a72013-11-13 23:14:48 -0500585 delete radio_burst;
dburgessb3a0ca42011-10-12 07:44:40 +0000586 return NULL;
587 }
kurtis.heimerl3ed6fb72011-11-26 03:17:52 +0000588
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500589 /* Select the diversity channel with highest energy */
590 for (size_t i = 0; i < radio_burst->chans(); i++) {
Alexander Chemeris1dd05cf2017-03-15 23:23:36 +0300591 float pow = energyDetect(*radio_burst->getVector(i), 20 * mSPSRx);
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500592 if (pow > max) {
593 max = pow;
594 max_i = i;
595 }
596 avg += pow;
597 }
598
599 if (max_i < 0) {
600 LOG(ALERT) << "Received empty burst";
601 delete radio_burst;
602 return NULL;
603 }
604
Thomas Tsou30421a72013-11-13 23:14:48 -0500605 /* Average noise on diversity paths and update global levels */
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500606 burst = radio_burst->getVector(max_i);
Thomas Tsouef25dba2013-11-14 15:31:24 -0500607 avg = sqrt(avg / radio_burst->chans());
Alexander Chemeris2b542102015-06-08 22:46:38 -0400608
609 wTime = time;
610 RSSI = 20.0 * log10(rxFullScale / avg);
611
612 /* RSSI estimation are valid */
613 isRssiValid = true;
614
615 if (type == IDLE) {
616 /* Update noise levels */
617 state->mNoises.insert(avg);
618 state->mNoiseLev = state->mNoises.avg();
619 noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
620
621 delete radio_burst;
622 return NULL;
623 } else {
624 /* Do not update noise levels */
625 noise = 20.0 * log10(rxFullScale / state->mNoiseLev);
626 }
Thomas Tsoufa3a7872013-10-17 21:23:34 -0400627
Thomas Tsou30421a72013-11-13 23:14:48 -0500628 /* Detect normal or RACH bursts */
Alexander Chemeris4e6c9382017-03-17 15:24:18 -0700629 rc = detectAnyBurst(*burst, mTSC, BURST_THRESH, mSPSRx, type, amp, toa,
630 (type==RACH)?mMaxExpectedDelayAB:mMaxExpectedDelayNB);
Thomas Tsouf0782732013-10-29 15:55:47 -0400631
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800632 if (rc > 0) {
633 type = (CorrType) rc;
634 } else if (rc <= 0) {
635 if (rc == -SIGERR_CLIP) {
Alexander Chemeris954b1182015-06-04 15:39:41 -0400636 LOG(WARNING) << "Clipping detected on received RACH or Normal Burst";
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800637 } else if (rc != SIGERR_NONE) {
Alexander Chemeris954b1182015-06-04 15:39:41 -0400638 LOG(WARNING) << "Unhandled RACH or Normal Burst detection error";
Tom Tsou577cd022015-05-18 13:57:54 -0700639 }
640
Thomas Tsou30421a72013-11-13 23:14:48 -0500641 delete radio_burst;
642 return NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000643 }
dburgessb3a0ca42011-10-12 07:44:40 +0000644
Tom Tsou4609f322016-07-19 11:28:51 -0700645 timingOffset = toa;
Alexander Chemeris2b542102015-06-08 22:46:38 -0400646
Alexander Chemeris6e1dffd2017-03-17 16:13:51 -0700647 bits = demodAnyBurst(*burst, mSPSRx, amp, toa, type);
Thomas Tsouef25dba2013-11-14 15:31:24 -0500648
Thomas Tsou30421a72013-11-13 23:14:48 -0500649 delete radio_burst;
Thomas Tsou30421a72013-11-13 23:14:48 -0500650 return bits;
dburgessb3a0ca42011-10-12 07:44:40 +0000651}
652
dburgessb3a0ca42011-10-12 07:44:40 +0000653void Transceiver::reset()
654{
Thomas Tsou204a9f12013-10-29 18:34:16 -0400655 for (size_t i = 0; i < mTxPriorityQueues.size(); i++)
656 mTxPriorityQueues[i].clear();
dburgessb3a0ca42011-10-12 07:44:40 +0000657}
658
659
Thomas Tsou204a9f12013-10-29 18:34:16 -0400660void Transceiver::driveControl(size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000661{
dburgessb3a0ca42011-10-12 07:44:40 +0000662 int MAX_PACKET_LENGTH = 100;
663
664 // check control socket
665 char buffer[MAX_PACKET_LENGTH];
666 int msgLen = -1;
667 buffer[0] = '\0';
Thomas Tsoud647ec52013-10-29 15:17:34 -0400668
Tom Tsou2c650a62016-04-28 21:55:17 -0700669 msgLen = mCtrlSockets[chan]->read(buffer, sizeof(buffer));
dburgessb3a0ca42011-10-12 07:44:40 +0000670
671 if (msgLen < 1) {
672 return;
673 }
674
675 char cmdcheck[4];
676 char command[MAX_PACKET_LENGTH];
677 char response[MAX_PACKET_LENGTH];
678
679 sscanf(buffer,"%3s %s",cmdcheck,command);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400680
681 if (!chan)
682 writeClockInterface();
dburgessb3a0ca42011-10-12 07:44:40 +0000683
684 if (strcmp(cmdcheck,"CMD")!=0) {
685 LOG(WARNING) << "bogus message on control interface";
686 return;
687 }
688 LOG(INFO) << "command is " << buffer;
689
690 if (strcmp(command,"POWEROFF")==0) {
Tom Tsoueb54bdd2014-11-25 16:06:32 -0800691 stop();
692 sprintf(response,"RSP POWEROFF 0");
dburgessb3a0ca42011-10-12 07:44:40 +0000693 }
694 else if (strcmp(command,"POWERON")==0) {
Tom Tsou365bc382016-10-19 15:26:04 -0700695 if (!start()) {
dburgessb3a0ca42011-10-12 07:44:40 +0000696 sprintf(response,"RSP POWERON 1");
Tom Tsou365bc382016-10-19 15:26:04 -0700697 } else {
dburgessb3a0ca42011-10-12 07:44:40 +0000698 sprintf(response,"RSP POWERON 0");
Alexander Chemeris5a068062015-06-20 01:38:47 +0300699 for (int i = 0; i < 8; i++) {
700 for (int j = 0; j < 8; j++)
701 mHandover[i][j] = false;
702 }
Tom Tsou365bc382016-10-19 15:26:04 -0700703 }
Alexander Chemeris5a068062015-06-20 01:38:47 +0300704 }
705 else if (strcmp(command,"HANDOVER")==0){
706 int ts=0,ss=0;
707 sscanf(buffer,"%3s %s %d %d",cmdcheck,command,&ts,&ss);
708 mHandover[ts][ss] = true;
Alexander Chemeris5a068062015-06-20 01:38:47 +0300709 sprintf(response,"RSP HANDOVER 0 %d %d",ts,ss);
710 }
711 else if (strcmp(command,"NOHANDOVER")==0){
712 int ts=0,ss=0;
713 sscanf(buffer,"%3s %s %d %d",cmdcheck,command,&ts,&ss);
714 mHandover[ts][ss] = false;
Alexander Chemeris5a068062015-06-20 01:38:47 +0300715 sprintf(response,"RSP NOHANDOVER 0 %d %d",ts,ss);
dburgessb3a0ca42011-10-12 07:44:40 +0000716 }
717 else if (strcmp(command,"SETMAXDLY")==0) {
718 //set expected maximum time-of-arrival
719 int maxDelay;
720 sscanf(buffer,"%3s %s %d",cmdcheck,command,&maxDelay);
Alexander Chemeris78d1fc92016-03-19 21:16:22 +0300721 mMaxExpectedDelayAB = maxDelay; // 1 GSM symbol is approx. 1 km
dburgessb3a0ca42011-10-12 07:44:40 +0000722 sprintf(response,"RSP SETMAXDLY 0 %d",maxDelay);
723 }
Alexander Chemeris78d1fc92016-03-19 21:16:22 +0300724 else if (strcmp(command,"SETMAXDLYNB")==0) {
725 //set expected maximum time-of-arrival
726 int maxDelay;
727 sscanf(buffer,"%3s %s %d",cmdcheck,command,&maxDelay);
728 mMaxExpectedDelayNB = maxDelay; // 1 GSM symbol is approx. 1 km
729 sprintf(response,"RSP SETMAXDLYNB 0 %d",maxDelay);
730 }
dburgessb3a0ca42011-10-12 07:44:40 +0000731 else if (strcmp(command,"SETRXGAIN")==0) {
732 //set expected maximum time-of-arrival
733 int newGain;
734 sscanf(buffer,"%3s %s %d",cmdcheck,command,&newGain);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400735 newGain = mRadioInterface->setRxGain(newGain, chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000736 sprintf(response,"RSP SETRXGAIN 0 %d",newGain);
737 }
738 else if (strcmp(command,"NOISELEV")==0) {
739 if (mOn) {
Thomas Tsoua0179e32013-11-14 15:52:04 -0500740 float lev = mStates[chan].mNoiseLev;
dburgessb3a0ca42011-10-12 07:44:40 +0000741 sprintf(response,"RSP NOISELEV 0 %d",
Thomas Tsoua0179e32013-11-14 15:52:04 -0500742 (int) round(20.0 * log10(rxFullScale / lev)));
dburgessb3a0ca42011-10-12 07:44:40 +0000743 }
744 else {
745 sprintf(response,"RSP NOISELEV 1 0");
746 }
Thomas Tsoucb269a32013-11-15 14:15:47 -0500747 }
748 else if (!strcmp(command, "SETPOWER")) {
Tom Tsoua4d1a412014-11-25 15:46:56 -0800749 int power;
750 sscanf(buffer, "%3s %s %d", cmdcheck, command, &power);
751 power = mRadioInterface->setPowerAttenuation(power, chan);
752 mStates[chan].mPower = power;
753 sprintf(response, "RSP SETPOWER 0 %d", power);
dburgessb3a0ca42011-10-12 07:44:40 +0000754 }
Thomas Tsoucb269a32013-11-15 14:15:47 -0500755 else if (!strcmp(command,"ADJPOWER")) {
Tom Tsoua4d1a412014-11-25 15:46:56 -0800756 int power, step;
757 sscanf(buffer, "%3s %s %d", cmdcheck, command, &step);
758 power = mStates[chan].mPower + step;
759 power = mRadioInterface->setPowerAttenuation(power, chan);
760 mStates[chan].mPower = power;
761 sprintf(response, "RSP ADJPOWER 0 %d", power);
dburgessb3a0ca42011-10-12 07:44:40 +0000762 }
dburgessb3a0ca42011-10-12 07:44:40 +0000763 else if (strcmp(command,"RXTUNE")==0) {
764 // tune receiver
765 int freqKhz;
766 sscanf(buffer,"%3s %s %d",cmdcheck,command,&freqKhz);
Thomas Tsou477b77c2013-11-15 16:13:59 -0500767 mRxFreq = freqKhz * 1e3;
Thomas Tsou204a9f12013-10-29 18:34:16 -0400768 if (!mRadioInterface->tuneRx(mRxFreq, chan)) {
dburgessb3a0ca42011-10-12 07:44:40 +0000769 LOG(ALERT) << "RX failed to tune";
770 sprintf(response,"RSP RXTUNE 1 %d",freqKhz);
771 }
772 else
773 sprintf(response,"RSP RXTUNE 0 %d",freqKhz);
774 }
775 else if (strcmp(command,"TXTUNE")==0) {
776 // tune txmtr
777 int freqKhz;
778 sscanf(buffer,"%3s %s %d",cmdcheck,command,&freqKhz);
Thomas Tsou477b77c2013-11-15 16:13:59 -0500779 mTxFreq = freqKhz * 1e3;
Thomas Tsou204a9f12013-10-29 18:34:16 -0400780 if (!mRadioInterface->tuneTx(mTxFreq, chan)) {
dburgessb3a0ca42011-10-12 07:44:40 +0000781 LOG(ALERT) << "TX failed to tune";
782 sprintf(response,"RSP TXTUNE 1 %d",freqKhz);
783 }
784 else
785 sprintf(response,"RSP TXTUNE 0 %d",freqKhz);
786 }
Thomas Tsoud3fccea2013-11-15 14:22:53 -0500787 else if (!strcmp(command,"SETTSC")) {
dburgessb3a0ca42011-10-12 07:44:40 +0000788 // set TSC
Thomas Tsou3f32ab52013-11-15 16:32:54 -0500789 unsigned TSC;
Thomas Tsoud3fccea2013-11-15 14:22:53 -0500790 sscanf(buffer, "%3s %s %d", cmdcheck, command, &TSC);
Tom Tsou60317342017-03-30 19:36:41 -0700791 if (TSC > 7) {
Thomas Tsoud3fccea2013-11-15 14:22:53 -0500792 sprintf(response, "RSP SETTSC 1 %d", TSC);
Tom Tsou60317342017-03-30 19:36:41 -0700793 } else {
Tom Tsouc37594f2016-07-08 14:39:42 -0700794 LOG(NOTICE) << "Changing TSC from " << mTSC << " to " << TSC;
dburgessb3a0ca42011-10-12 07:44:40 +0000795 mTSC = TSC;
Thomas Tsou83e06892013-08-20 16:10:01 -0400796 sprintf(response,"RSP SETTSC 0 %d", TSC);
dburgessb3a0ca42011-10-12 07:44:40 +0000797 }
798 }
799 else if (strcmp(command,"SETSLOT")==0) {
Alexander Chemeris1fe52822015-05-20 12:02:29 -0700800 // set slot type
dburgessb3a0ca42011-10-12 07:44:40 +0000801 int corrCode;
802 int timeslot;
803 sscanf(buffer,"%3s %s %d %d",cmdcheck,command,&timeslot,&corrCode);
804 if ((timeslot < 0) || (timeslot > 7)) {
805 LOG(WARNING) << "bogus message on control interface";
806 sprintf(response,"RSP SETSLOT 1 %d %d",timeslot,corrCode);
807 return;
808 }
Thomas Tsou204a9f12013-10-29 18:34:16 -0400809 mStates[chan].chanType[timeslot] = (ChannelCombination) corrCode;
810 setModulus(timeslot, chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000811 sprintf(response,"RSP SETSLOT 0 %d %d",timeslot,corrCode);
812
813 }
Alexander Chemerise692ce92015-06-12 00:15:31 -0400814 else if (strcmp(command,"_SETBURSTTODISKMASK")==0) {
815 // debug command! may change or disapear without notice
816 // set a mask which bursts to dump to disk
817 int mask;
818 sscanf(buffer,"%3s %s %d",cmdcheck,command,&mask);
819 mWriteBurstToDiskMask = mask;
820 sprintf(response,"RSP _SETBURSTTODISKMASK 0 %d",mask);
821 }
dburgessb3a0ca42011-10-12 07:44:40 +0000822 else {
823 LOG(WARNING) << "bogus command " << command << " on control interface.";
Alexander Chemeris4438a9f2013-04-08 00:14:08 +0200824 sprintf(response,"RSP ERR 1");
dburgessb3a0ca42011-10-12 07:44:40 +0000825 }
826
Thomas Tsou204a9f12013-10-29 18:34:16 -0400827 mCtrlSockets[chan]->write(response, strlen(response) + 1);
dburgessb3a0ca42011-10-12 07:44:40 +0000828}
829
Thomas Tsou204a9f12013-10-29 18:34:16 -0400830bool Transceiver::driveTxPriorityQueue(size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000831{
Tom Tsoue8871082016-07-01 02:46:04 -0700832 int burstLen;
833 char buffer[EDGE_BURST_NBITS + 50];
dburgessb3a0ca42011-10-12 07:44:40 +0000834
835 // check data socket
Tom Tsou2c650a62016-04-28 21:55:17 -0700836 size_t msgLen = mDataSockets[chan]->read(buffer, sizeof(buffer));
dburgessb3a0ca42011-10-12 07:44:40 +0000837
Tom Tsoue8871082016-07-01 02:46:04 -0700838 if (msgLen == gSlotLen + 1 + 4 + 1) {
839 burstLen = gSlotLen;
840 } else if (msgLen == EDGE_BURST_NBITS + 1 + 4 + 1) {
841 if (mSPSTx != 4)
842 return false;
843
844 burstLen = EDGE_BURST_NBITS;
845 } else {
dburgessb3a0ca42011-10-12 07:44:40 +0000846 LOG(ERR) << "badly formatted packet on GSM->TRX interface";
847 return false;
848 }
849
850 int timeSlot = (int) buffer[0];
851 uint64_t frameNum = 0;
852 for (int i = 0; i < 4; i++)
853 frameNum = (frameNum << 8) | (0x0ff & buffer[i+1]);
dburgessb3a0ca42011-10-12 07:44:40 +0000854
dburgessb3a0ca42011-10-12 07:44:40 +0000855 LOG(DEBUG) << "rcvd. burst at: " << GSM::Time(frameNum,timeSlot);
856
857 int RSSI = (int) buffer[5];
Tom Tsou7c741ec2016-07-19 11:20:59 -0700858 BitVector newBurst(burstLen);
dburgessb3a0ca42011-10-12 07:44:40 +0000859 BitVector::iterator itr = newBurst.begin();
860 char *bufferItr = buffer+6;
861 while (itr < newBurst.end())
862 *itr++ = *bufferItr++;
863
864 GSM::Time currTime = GSM::Time(frameNum,timeSlot);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400865
866 addRadioVector(chan, newBurst, RSSI, currTime);
dburgessb3a0ca42011-10-12 07:44:40 +0000867
868 return true;
869
870
871}
dburgessb3a0ca42011-10-12 07:44:40 +0000872
Thomas Tsou204a9f12013-10-29 18:34:16 -0400873void Transceiver::driveReceiveRadio()
874{
Alexander Chemeris6a2bf0d2015-05-24 19:28:09 -0400875 if (!mRadioInterface->driveReceiveRadio()) {
Thomas Tsou204a9f12013-10-29 18:34:16 -0400876 usleep(100000);
Alexander Chemeris6a2bf0d2015-05-24 19:28:09 -0400877 } else {
878 if (mTransmitDeadlineClock > mLastClockUpdateTime + GSM::Time(216,0))
879 writeClockInterface();
880 }
Thomas Tsou204a9f12013-10-29 18:34:16 -0400881}
882
Alexander Chemeris58e95912016-03-25 18:20:28 +0300883void Transceiver::logRxBurst(size_t chan, SoftVector *burst, GSM::Time time, double dbm,
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800884 double rssi, double noise, double toa)
885{
886 LOG(DEBUG) << std::fixed << std::right
Alexander Chemeris58e95912016-03-25 18:20:28 +0300887 << " chan: " << chan
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800888 << " time: " << time
889 << " RSSI: " << std::setw(5) << std::setprecision(1) << rssi
890 << "dBFS/" << std::setw(6) << -dbm << "dBm"
891 << " noise: " << std::setw(5) << std::setprecision(1) << noise
892 << "dBFS/" << std::setw(6) << -(noise + rssiOffset) << "dBm"
893 << " TOA: " << std::setw(5) << std::setprecision(2) << toa
894 << " bits: " << *burst;
895}
896
Thomas Tsou204a9f12013-10-29 18:34:16 -0400897void Transceiver::driveReceiveFIFO(size_t chan)
898{
dburgessb3a0ca42011-10-12 07:44:40 +0000899 SoftVector *rxBurst = NULL;
Alexander Chemerise8905a02015-06-03 23:47:56 -0400900 double RSSI; // in dBFS
901 double dBm; // in dBm
902 double TOA; // in symbols
903 int TOAint; // in 1/256 symbols
Alexander Chemerisdbe26ab2015-06-04 00:14:51 -0400904 double noise; // noise level in dBFS
dburgessb3a0ca42011-10-12 07:44:40 +0000905 GSM::Time burstTime;
Alexander Chemeris2b542102015-06-08 22:46:38 -0400906 bool isRssiValid; // are RSSI, noise and burstTime valid
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800907 unsigned nbits = gSlotLen;
dburgessb3a0ca42011-10-12 07:44:40 +0000908
Alexander Chemeris2b542102015-06-08 22:46:38 -0400909 rxBurst = pullRadioVector(burstTime, RSSI, isRssiValid, TOA, noise, chan);
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800910 if (!rxBurst)
911 return;
dburgessb3a0ca42011-10-12 07:44:40 +0000912
Alexander Chemerisb61c6102017-03-17 18:22:19 -0700913 // Convert -1..+1 soft bits to 0..1 soft bits
914 vectorSlicer(rxBurst);
915
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800916 /*
917 * EDGE demodulator returns 444 (148 * 3) bits
918 */
919 if (rxBurst->size() == gSlotLen * 3)
920 nbits = gSlotLen * 3;
dburgessb3a0ca42011-10-12 07:44:40 +0000921
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800922 dBm = RSSI + rssiOffset;
Alexander Chemeris58e95912016-03-25 18:20:28 +0300923 logRxBurst(chan, rxBurst, burstTime, dBm, RSSI, noise, TOA);
Alexander Chemerisdbe26ab2015-06-04 00:14:51 -0400924
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800925 TOAint = (int) (TOA * 256.0 + 0.5); // round to closest integer
dburgessb3a0ca42011-10-12 07:44:40 +0000926
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800927 char burstString[nbits + 10];
928 burstString[0] = burstTime.TN();
929 for (int i = 0; i < 4; i++)
930 burstString[1+i] = (burstTime.FN() >> ((3-i)*8)) & 0x0ff;
931 burstString[5] = (int)dBm;
932 burstString[6] = (TOAint >> 8) & 0x0ff;
933 burstString[7] = TOAint & 0x0ff;
934 SoftVector::iterator burstItr = rxBurst->begin();
dburgessb3a0ca42011-10-12 07:44:40 +0000935
Tom Tsoub0aefcb2016-03-06 03:44:34 -0800936 for (unsigned i = 0; i < nbits; i++)
937 burstString[8 + i] = (char) round((*burstItr++) * 255.0);
938
939 burstString[nbits + 9] = '\0';
940 delete rxBurst;
941
942 mDataSockets[chan]->write(burstString, nbits + 10);
dburgessb3a0ca42011-10-12 07:44:40 +0000943}
944
Thomas Tsou204a9f12013-10-29 18:34:16 -0400945void Transceiver::driveTxFIFO()
dburgessb3a0ca42011-10-12 07:44:40 +0000946{
947
948 /**
949 Features a carefully controlled latency mechanism, to
950 assure that transmit packets arrive at the radio/USRP
951 before they need to be transmitted.
952
953 Deadline clock indicates the burst that needs to be
954 pushed into the FIFO right NOW. If transmit queue does
955 not have a burst, stick in filler data.
956 */
957
958
959 RadioClock *radioClock = (mRadioInterface->getClock());
960
961 if (mOn) {
962 //radioClock->wait(); // wait until clock updates
963 LOG(DEBUG) << "radio clock " << radioClock->get();
964 while (radioClock->get() + mTransmitLatency > mTransmitDeadlineClock) {
965 // if underrun, then we're not providing bursts to radio/USRP fast
966 // enough. Need to increase latency by one GSM frame.
Thomas Tsou02d88d12013-04-05 15:36:30 -0400967 if (mRadioInterface->getWindowType() == RadioDevice::TX_WINDOW_USRP1) {
kurtis.heimerle380af32011-11-26 03:18:55 +0000968 if (mRadioInterface->isUnderrun()) {
ttsou2173abf2012-08-08 00:51:31 +0000969 // only update latency at the defined frame interval
970 if (radioClock->get() > mLatencyUpdateTime + GSM::Time(USB_LATENCY_INTRVL)) {
kurtis.heimerle380af32011-11-26 03:18:55 +0000971 mTransmitLatency = mTransmitLatency + GSM::Time(1,0);
972 LOG(INFO) << "new latency: " << mTransmitLatency;
973 mLatencyUpdateTime = radioClock->get();
974 }
975 }
976 else {
977 // if underrun hasn't occurred in the last sec (216 frames) drop
978 // transmit latency by a timeslot
ttsou2173abf2012-08-08 00:51:31 +0000979 if (mTransmitLatency > GSM::Time(USB_LATENCY_MIN)) {
kurtis.heimerle380af32011-11-26 03:18:55 +0000980 if (radioClock->get() > mLatencyUpdateTime + GSM::Time(216,0)) {
981 mTransmitLatency.decTN();
982 LOG(INFO) << "reduced latency: " << mTransmitLatency;
983 mLatencyUpdateTime = radioClock->get();
984 }
985 }
986 }
dburgessb3a0ca42011-10-12 07:44:40 +0000987 }
dburgessb3a0ca42011-10-12 07:44:40 +0000988 // time to push burst to transmit FIFO
989 pushRadioVector(mTransmitDeadlineClock);
990 mTransmitDeadlineClock.incTN();
991 }
dburgessb3a0ca42011-10-12 07:44:40 +0000992 }
Thomas Tsou92c16df2013-09-28 18:04:19 -0400993
994 radioClock->wait();
dburgessb3a0ca42011-10-12 07:44:40 +0000995}
996
997
998
999void Transceiver::writeClockInterface()
1000{
1001 char command[50];
1002 // FIXME -- This should be adaptive.
1003 sprintf(command,"IND CLOCK %llu",(unsigned long long) (mTransmitDeadlineClock.FN()+2));
1004
1005 LOG(INFO) << "ClockInterface: sending " << command;
1006
Tom Tsoueb54bdd2014-11-25 16:06:32 -08001007 mClockSocket.write(command, strlen(command) + 1);
dburgessb3a0ca42011-10-12 07:44:40 +00001008
1009 mLastClockUpdateTime = mTransmitDeadlineClock;
1010
Thomas Tsou92c16df2013-09-28 18:04:19 -04001011}
dburgessb3a0ca42011-10-12 07:44:40 +00001012
Thomas Tsou204a9f12013-10-29 18:34:16 -04001013void *RxUpperLoopAdapter(TransceiverChannel *chan)
1014{
1015 Transceiver *trx = chan->trx;
1016 size_t num = chan->num;
1017
1018 delete chan;
1019
Thomas Tsou7553aa92013-11-08 12:50:03 -05001020 trx->setPriority(0.42);
1021
Thomas Tsou204a9f12013-10-29 18:34:16 -04001022 while (1) {
1023 trx->driveReceiveFIFO(num);
1024 pthread_testcancel();
1025 }
1026 return NULL;
1027}
1028
1029void *RxLowerLoopAdapter(Transceiver *transceiver)
dburgessb3a0ca42011-10-12 07:44:40 +00001030{
Thomas Tsou7553aa92013-11-08 12:50:03 -05001031 transceiver->setPriority(0.45);
kurtis.heimerl6b495a52011-11-26 03:17:21 +00001032
dburgessb3a0ca42011-10-12 07:44:40 +00001033 while (1) {
Thomas Tsou204a9f12013-10-29 18:34:16 -04001034 transceiver->driveReceiveRadio();
Thomas Tsou92c16df2013-09-28 18:04:19 -04001035 pthread_testcancel();
1036 }
1037 return NULL;
1038}
1039
Thomas Tsou204a9f12013-10-29 18:34:16 -04001040void *TxLowerLoopAdapter(Transceiver *transceiver)
Thomas Tsou92c16df2013-09-28 18:04:19 -04001041{
Thomas Tsou7553aa92013-11-08 12:50:03 -05001042 transceiver->setPriority(0.44);
1043
Thomas Tsou92c16df2013-09-28 18:04:19 -04001044 while (1) {
Thomas Tsou204a9f12013-10-29 18:34:16 -04001045 transceiver->driveTxFIFO();
dburgessb3a0ca42011-10-12 07:44:40 +00001046 pthread_testcancel();
1047 }
1048 return NULL;
1049}
1050
Thomas Tsou204a9f12013-10-29 18:34:16 -04001051void *ControlServiceLoopAdapter(TransceiverChannel *chan)
dburgessb3a0ca42011-10-12 07:44:40 +00001052{
Thomas Tsou204a9f12013-10-29 18:34:16 -04001053 Transceiver *trx = chan->trx;
1054 size_t num = chan->num;
1055
1056 delete chan;
1057
dburgessb3a0ca42011-10-12 07:44:40 +00001058 while (1) {
Thomas Tsou204a9f12013-10-29 18:34:16 -04001059 trx->driveControl(num);
dburgessb3a0ca42011-10-12 07:44:40 +00001060 pthread_testcancel();
1061 }
1062 return NULL;
1063}
1064
Thomas Tsou204a9f12013-10-29 18:34:16 -04001065void *TxUpperLoopAdapter(TransceiverChannel *chan)
dburgessb3a0ca42011-10-12 07:44:40 +00001066{
Thomas Tsou204a9f12013-10-29 18:34:16 -04001067 Transceiver *trx = chan->trx;
1068 size_t num = chan->num;
1069
1070 delete chan;
1071
Thomas Tsoua4cf48c2013-11-09 21:44:26 -05001072 trx->setPriority(0.40);
1073
dburgessb3a0ca42011-10-12 07:44:40 +00001074 while (1) {
Tom Tsoueb54bdd2014-11-25 16:06:32 -08001075 trx->driveTxPriorityQueue(num);
dburgessb3a0ca42011-10-12 07:44:40 +00001076 pthread_testcancel();
1077 }
1078 return NULL;
1079}