blob: d67b486038a978be6e23f6c3e17c60eb92b70cec [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001/*
2* Copyright 2008, 2009 Free Software Foundation, Inc.
3*
4* This software is distributed under the terms of the GNU Affero 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 Affero 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 Affero General Public License for more details.
19
20 You should have received a copy of the GNU Affero General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
22
23*/
24
dburgessb3a0ca42011-10-12 07:44:40 +000025#include "radioInterface.h"
Thomas Tsouc1f7c422013-10-11 13:49:55 -040026#include "Resampler.h"
dburgessb3a0ca42011-10-12 07:44:40 +000027#include <Logger.h>
28
Thomas Tsou9471d762013-08-20 21:24:24 -040029extern "C" {
30#include "convert.h"
31}
32
Thomas Tsou3952d802013-10-15 15:12:24 -040033#define CHUNK 625
34#define NUMCHUNKS 4
kurtis.heimerl9b557832011-11-26 03:18:34 +000035
dburgessb3a0ca42011-10-12 07:44:40 +000036RadioInterface::RadioInterface(RadioDevice *wRadio,
Thomas Tsoue90a42b2013-11-13 23:38:09 -050037 size_t sps, size_t chans, size_t diversity,
38 int wReceiveOffset, GSM::Time wStartTime)
39 : mRadio(wRadio), mSPSTx(sps), mSPSRx(1), mChans(chans), mMIMO(diversity),
Thomas Tsou204a9f12013-10-29 18:34:16 -040040 sendCursor(0), recvCursor(0), underrun(false), overrun(false),
Thomas Tsou477b77c2013-11-15 16:13:59 -050041 receiveOffset(wReceiveOffset), mOn(false)
dburgessb3a0ca42011-10-12 07:44:40 +000042{
dburgessb3a0ca42011-10-12 07:44:40 +000043 mClock.set(wStartTime);
dburgessb3a0ca42011-10-12 07:44:40 +000044}
45
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040046RadioInterface::~RadioInterface(void)
47{
48 close();
49}
kurtis.heimerl54354042011-11-26 03:18:49 +000050
Thomas Tsoufe269fe2013-10-14 23:56:51 -040051bool RadioInterface::init(int type)
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040052{
Thomas Tsoue90a42b2013-11-13 23:38:09 -050053 if ((type != RadioDevice::NORMAL) || (mMIMO > 1) || !mChans) {
54 LOG(ALERT) << "Invalid configuration";
Thomas Tsou204a9f12013-10-29 18:34:16 -040055 return false;
56 }
57
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040058 close();
59
Thomas Tsou204a9f12013-10-29 18:34:16 -040060 sendBuffer.resize(mChans);
61 recvBuffer.resize(mChans);
62 convertSendBuffer.resize(mChans);
63 convertRecvBuffer.resize(mChans);
64 mReceiveFIFO.resize(mChans);
Thomas Tsoucb269a32013-11-15 14:15:47 -050065 powerScaling.resize(mChans);
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040066
Thomas Tsou204a9f12013-10-29 18:34:16 -040067 for (size_t i = 0; i < mChans; i++) {
68 sendBuffer[i] = new signalVector(CHUNK * mSPSTx);
69 recvBuffer[i] = new signalVector(NUMCHUNKS * CHUNK * mSPSRx);
70
71 convertSendBuffer[i] = new short[sendBuffer[i]->size() * 2];
72 convertRecvBuffer[i] = new short[recvBuffer[i]->size() * 2];
73 }
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040074
75 sendCursor = 0;
76 recvCursor = 0;
77
78 return true;
79}
80
81void RadioInterface::close()
82{
Thomas Tsou204a9f12013-10-29 18:34:16 -040083 for (size_t i = 0; i < sendBuffer.size(); i++)
84 delete sendBuffer[i];
Thomas Tsou03e6ecf2013-08-20 20:54:54 -040085
Thomas Tsou204a9f12013-10-29 18:34:16 -040086 for (size_t i = 0; i < recvBuffer.size(); i++)
87 delete recvBuffer[i];
88
89 for (size_t i = 0; i < convertSendBuffer.size(); i++)
90 delete convertSendBuffer[i];
91
92 for (size_t i = 0; i < convertRecvBuffer.size(); i++)
93 delete convertRecvBuffer[i];
94
95 sendBuffer.resize(0);
96 recvBuffer.resize(0);
97 convertSendBuffer.resize(0);
98 convertRecvBuffer.resize(0);
dburgessb3a0ca42011-10-12 07:44:40 +000099}
100
101double RadioInterface::fullScaleInputValue(void) {
102 return mRadio->fullScaleInputValue();
103}
104
105double RadioInterface::fullScaleOutputValue(void) {
106 return mRadio->fullScaleOutputValue();
107}
108
Tom Tsoua4d1a412014-11-25 15:46:56 -0800109int RadioInterface::setPowerAttenuation(int atten, size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000110{
kurtis.heimerl16c65402011-11-26 03:18:11 +0000111 double rfGain, digAtten;
kurtis.heimerlee5347a2011-11-26 03:18:05 +0000112
Thomas Tsou204a9f12013-10-29 18:34:16 -0400113 if (chan >= mChans) {
114 LOG(ALERT) << "Invalid channel requested";
Tom Tsoua4d1a412014-11-25 15:46:56 -0800115 return -1;
Thomas Tsou204a9f12013-10-29 18:34:16 -0400116 }
117
Tom Tsoua4d1a412014-11-25 15:46:56 -0800118 if (atten < 0.0)
119 atten = 0.0;
120
121 rfGain = mRadio->setTxGain(mRadio->maxTxGain() - (double) atten, chan);
122 digAtten = (double) atten - mRadio->maxTxGain() + rfGain;
kurtis.heimerlee5347a2011-11-26 03:18:05 +0000123
124 if (digAtten < 1.0)
Thomas Tsoucb269a32013-11-15 14:15:47 -0500125 powerScaling[chan] = 1.0;
kurtis.heimerlee5347a2011-11-26 03:18:05 +0000126 else
Thomas Tsoucb269a32013-11-15 14:15:47 -0500127 powerScaling[chan] = 1.0 / sqrt(pow(10, digAtten / 10.0));
Tom Tsoua4d1a412014-11-25 15:46:56 -0800128
129 return atten;
dburgessb3a0ca42011-10-12 07:44:40 +0000130}
131
kurtis.heimerl9b557832011-11-26 03:18:34 +0000132int RadioInterface::radioifyVector(signalVector &wVector,
133 float *retVector,
kurtis.heimerl9b557832011-11-26 03:18:34 +0000134 bool zero)
dburgessb3a0ca42011-10-12 07:44:40 +0000135{
kurtis.heimerl9b557832011-11-26 03:18:34 +0000136 if (zero) {
137 memset(retVector, 0, wVector.size() * 2 * sizeof(float));
138 return wVector.size();
dburgessb3a0ca42011-10-12 07:44:40 +0000139 }
140
Thomas Tsou9471d762013-08-20 21:24:24 -0400141 memcpy(retVector, wVector.begin(), wVector.size() * 2 * sizeof(float));
kurtis.heimerl9b557832011-11-26 03:18:34 +0000142
143 return wVector.size();
dburgessb3a0ca42011-10-12 07:44:40 +0000144}
145
kurtis.heimerl9b557832011-11-26 03:18:34 +0000146int RadioInterface::unRadioifyVector(float *floatVector,
147 signalVector& newVector)
dburgessb3a0ca42011-10-12 07:44:40 +0000148{
dburgessb3a0ca42011-10-12 07:44:40 +0000149 signalVector::iterator itr = newVector.begin();
kurtis.heimerl9b557832011-11-26 03:18:34 +0000150
Thomas Tsou9471d762013-08-20 21:24:24 -0400151 if (newVector.size() > recvCursor) {
152 LOG(ALERT) << "Insufficient number of samples in receive buffer";
153 return -1;
154 }
155
Thomas Tsou3f32ab52013-11-15 16:32:54 -0500156 for (size_t i = 0; i < newVector.size(); i++) {
kurtis.heimerl9b557832011-11-26 03:18:34 +0000157 *itr++ = Complex<float>(floatVector[2 * i + 0],
158 floatVector[2 * i + 1]);
dburgessb3a0ca42011-10-12 07:44:40 +0000159 }
160
kurtis.heimerl9b557832011-11-26 03:18:34 +0000161 return newVector.size();
dburgessb3a0ca42011-10-12 07:44:40 +0000162}
163
Thomas Tsou204a9f12013-10-29 18:34:16 -0400164bool RadioInterface::tuneTx(double freq, size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000165{
Thomas Tsou204a9f12013-10-29 18:34:16 -0400166 return mRadio->setTxFreq(freq, chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000167}
168
Thomas Tsou204a9f12013-10-29 18:34:16 -0400169bool RadioInterface::tuneRx(double freq, size_t chan)
dburgessb3a0ca42011-10-12 07:44:40 +0000170{
Thomas Tsou204a9f12013-10-29 18:34:16 -0400171 return mRadio->setRxFreq(freq, chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000172}
173
174
175void RadioInterface::start()
176{
Thomas Tsou18d3b832014-02-13 14:55:23 -0500177 LOG(INFO) << "Starting radio";
Thomas Tsouf2293b82013-04-08 13:35:36 -0400178#ifdef USRP1
dburgessb3a0ca42011-10-12 07:44:40 +0000179 mAlignRadioServiceLoopThread.start((void * (*)(void*))AlignRadioServiceLoopAdapter,
180 (void*)this);
Thomas Tsouf2293b82013-04-08 13:35:36 -0400181#endif
Thomas Tsou18d3b832014-02-13 14:55:23 -0500182 mRadio->start();
dburgessb3a0ca42011-10-12 07:44:40 +0000183 writeTimestamp = mRadio->initialWriteTimestamp();
184 readTimestamp = mRadio->initialReadTimestamp();
Thomas Tsou18d3b832014-02-13 14:55:23 -0500185
186 mRadio->updateAlignment(writeTimestamp-10000);
dburgessb3a0ca42011-10-12 07:44:40 +0000187 mRadio->updateAlignment(writeTimestamp-10000);
188
dburgessb3a0ca42011-10-12 07:44:40 +0000189 mOn = true;
Thomas Tsou18d3b832014-02-13 14:55:23 -0500190 LOG(INFO) << "Radio started";
dburgessb3a0ca42011-10-12 07:44:40 +0000191}
192
Thomas Tsouf2293b82013-04-08 13:35:36 -0400193#ifdef USRP1
dburgessb3a0ca42011-10-12 07:44:40 +0000194void *AlignRadioServiceLoopAdapter(RadioInterface *radioInterface)
195{
196 while (1) {
197 radioInterface->alignRadio();
198 pthread_testcancel();
199 }
200 return NULL;
201}
202
203void RadioInterface::alignRadio() {
204 sleep(60);
205 mRadio->updateAlignment(writeTimestamp+ (TIMESTAMP) 10000);
206}
Thomas Tsouf2293b82013-04-08 13:35:36 -0400207#endif
dburgessb3a0ca42011-10-12 07:44:40 +0000208
Thomas Tsou204a9f12013-10-29 18:34:16 -0400209void RadioInterface::driveTransmitRadio(std::vector<signalVector *> &bursts,
210 std::vector<bool> &zeros)
Thomas Tsou03e6ecf2013-08-20 20:54:54 -0400211{
212 if (!mOn)
213 return;
dburgessb3a0ca42011-10-12 07:44:40 +0000214
Thomas Tsou204a9f12013-10-29 18:34:16 -0400215 for (size_t i = 0; i < mChans; i++) {
216 radioifyVector(*bursts[i],
217 (float *) (sendBuffer[i]->begin() + sendCursor), zeros[i]);
218 }
dburgessb3a0ca42011-10-12 07:44:40 +0000219
Thomas Tsou204a9f12013-10-29 18:34:16 -0400220 sendCursor += bursts[0]->size();
dburgessb3a0ca42011-10-12 07:44:40 +0000221
222 pushBuffer();
223}
224
Thomas Tsou204a9f12013-10-29 18:34:16 -0400225bool RadioInterface::driveReceiveRadio()
226{
227 radioVector *burst = NULL;
dburgessb3a0ca42011-10-12 07:44:40 +0000228
Thomas Tsou204a9f12013-10-29 18:34:16 -0400229 if (!mOn)
230 return false;
dburgessb3a0ca42011-10-12 07:44:40 +0000231
232 pullBuffer();
233
234 GSM::Time rcvClock = mClock.get();
235 rcvClock.decTN(receiveOffset);
236 unsigned tN = rcvClock.TN();
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500237 int recvSz = recvCursor;
dburgessb3a0ca42011-10-12 07:44:40 +0000238 int readSz = 0;
239 const int symbolsPerSlot = gSlotLen + 8;
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500240 int burstSize = (symbolsPerSlot + (tN % 4 == 0)) * mSPSRx;
dburgessb3a0ca42011-10-12 07:44:40 +0000241
Thomas Tsoud0f3ca32013-11-09 22:05:23 -0500242 /*
243 * Pre-allocate head room for the largest correlation size
244 * so we can later avoid a re-allocation and copy
245 * */
246 size_t head = GSM::gRACHSynchSequence.size();
247
248 /*
249 * Form receive bursts and pass up to transceiver. Use repeating
250 * pattern of 157-156-156-156 symbols per timeslot
251 */
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500252 while (recvSz > burstSize) {
Thomas Tsou204a9f12013-10-29 18:34:16 -0400253 for (size_t i = 0; i < mChans; i++) {
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500254 burst = new radioVector(rcvClock, burstSize, head, mMIMO);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400255
Thomas Tsoue90a42b2013-11-13 23:38:09 -0500256 for (size_t n = 0; n < mMIMO; n++) {
257 unRadioifyVector((float *)
258 (recvBuffer[mMIMO * i + n]->begin() + readSz),
259 *burst->getVector(n));
260 }
261
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500262 if (mReceiveFIFO[i].size() < 32)
Thomas Tsou204a9f12013-10-29 18:34:16 -0400263 mReceiveFIFO[i].write(burst);
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500264 else
Thomas Tsou204a9f12013-10-29 18:34:16 -0400265 delete burst;
dburgessb3a0ca42011-10-12 07:44:40 +0000266 }
Thomas Tsou204a9f12013-10-29 18:34:16 -0400267
268 mClock.incTN();
dburgessb3a0ca42011-10-12 07:44:40 +0000269 rcvClock.incTN();
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500270 readSz += burstSize;
271 recvSz -= burstSize;
dburgessb3a0ca42011-10-12 07:44:40 +0000272
273 tN = rcvClock.TN();
Thomas Tsoue0fa2bf2013-11-09 02:46:29 -0500274
275 burstSize = (symbolsPerSlot + (tN % 4 == 0)) * mSPSRx;
dburgessb3a0ca42011-10-12 07:44:40 +0000276 }
277
kurtis.heimerl9b557832011-11-26 03:18:34 +0000278 if (readSz > 0) {
Thomas Tsou204a9f12013-10-29 18:34:16 -0400279 for (size_t i = 0; i < recvBuffer.size(); i++) {
280 memmove(recvBuffer[i]->begin(),
281 recvBuffer[i]->begin() + readSz,
282 (recvCursor - readSz) * 2 * sizeof(float));
283 }
Thomas Tsou03e6ecf2013-08-20 20:54:54 -0400284
285 recvCursor -= readSz;
dburgessb3a0ca42011-10-12 07:44:40 +0000286 }
Thomas Tsou204a9f12013-10-29 18:34:16 -0400287
288 return true;
kurtis.heimerle724d6d2011-11-26 03:18:46 +0000289}
290
291bool RadioInterface::isUnderrun()
292{
293 bool retVal = underrun;
294 underrun = false;
295
296 return retVal;
297}
298
Thomas Tsou204a9f12013-10-29 18:34:16 -0400299VectorFIFO* RadioInterface::receiveFIFO(size_t chan)
300{
301 if (chan >= mReceiveFIFO.size())
302 return NULL;
303
304 return &mReceiveFIFO[chan];
305}
306
307double RadioInterface::setRxGain(double dB, size_t chan)
kurtis.heimerle724d6d2011-11-26 03:18:46 +0000308{
309 if (mRadio)
Thomas Tsou204a9f12013-10-29 18:34:16 -0400310 return mRadio->setRxGain(dB, chan);
kurtis.heimerle724d6d2011-11-26 03:18:46 +0000311 else
312 return -1;
313}
314
Thomas Tsou204a9f12013-10-29 18:34:16 -0400315double RadioInterface::getRxGain(size_t chan)
kurtis.heimerle724d6d2011-11-26 03:18:46 +0000316{
317 if (mRadio)
Thomas Tsou204a9f12013-10-29 18:34:16 -0400318 return mRadio->getRxGain(chan);
kurtis.heimerle724d6d2011-11-26 03:18:46 +0000319 else
320 return -1;
321}
Thomas Tsoucb69f082013-04-08 14:18:26 -0400322
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400323/* Receive a timestamped chunk from the device */
Thomas Tsoucb69f082013-04-08 14:18:26 -0400324void RadioInterface::pullBuffer()
325{
326 bool local_underrun;
Thomas Tsou3952d802013-10-15 15:12:24 -0400327 int num_recv;
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400328 float *output;
Thomas Tsoucb69f082013-04-08 14:18:26 -0400329
Thomas Tsou204a9f12013-10-29 18:34:16 -0400330 if (recvCursor > recvBuffer[0]->size() - CHUNK)
Thomas Tsou3952d802013-10-15 15:12:24 -0400331 return;
332
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400333 /* Outer buffer access size is fixed */
Thomas Tsou9471d762013-08-20 21:24:24 -0400334 num_recv = mRadio->readSamples(convertRecvBuffer,
Thomas Tsou3952d802013-10-15 15:12:24 -0400335 CHUNK,
Thomas Tsou9471d762013-08-20 21:24:24 -0400336 &overrun,
337 readTimestamp,
338 &local_underrun);
Thomas Tsou3952d802013-10-15 15:12:24 -0400339 if (num_recv != CHUNK) {
Thomas Tsou9471d762013-08-20 21:24:24 -0400340 LOG(ALERT) << "Receive error " << num_recv;
341 return;
342 }
Thomas Tsoucb69f082013-04-08 14:18:26 -0400343
Thomas Tsou204a9f12013-10-29 18:34:16 -0400344 for (size_t i = 0; i < mChans; i++) {
345 output = (float *) (recvBuffer[i]->begin() + recvCursor);
346 convert_short_float(output, convertRecvBuffer[i], 2 * num_recv);
347 }
Thomas Tsoucb69f082013-04-08 14:18:26 -0400348
349 underrun |= local_underrun;
Thomas Tsoucb69f082013-04-08 14:18:26 -0400350
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400351 readTimestamp += num_recv;
Thomas Tsou9471d762013-08-20 21:24:24 -0400352 recvCursor += num_recv;
Thomas Tsoucb69f082013-04-08 14:18:26 -0400353}
354
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400355/* Send timestamped chunk to the device with arbitrary size */
Thomas Tsoucb69f082013-04-08 14:18:26 -0400356void RadioInterface::pushBuffer()
357{
Thomas Tsou9471d762013-08-20 21:24:24 -0400358 int num_sent;
359
Thomas Tsou3952d802013-10-15 15:12:24 -0400360 if (sendCursor < CHUNK)
Thomas Tsoucb69f082013-04-08 14:18:26 -0400361 return;
362
Thomas Tsou204a9f12013-10-29 18:34:16 -0400363 if (sendCursor > sendBuffer[0]->size())
Thomas Tsou3952d802013-10-15 15:12:24 -0400364 LOG(ALERT) << "Send buffer overflow";
365
Thomas Tsou204a9f12013-10-29 18:34:16 -0400366 for (size_t i = 0; i < mChans; i++) {
367 convert_float_short(convertSendBuffer[i],
368 (float *) sendBuffer[i]->begin(),
Thomas Tsoucb269a32013-11-15 14:15:47 -0500369 powerScaling[i], 2 * sendCursor);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400370 }
Thomas Tsoucb69f082013-04-08 14:18:26 -0400371
Thomas Tsou9471d762013-08-20 21:24:24 -0400372 /* Send the all samples in the send buffer */
373 num_sent = mRadio->writeSamples(convertSendBuffer,
374 sendCursor,
375 &underrun,
376 writeTimestamp);
Thomas Tsou9471d762013-08-20 21:24:24 -0400377 writeTimestamp += num_sent;
Thomas Tsoucb69f082013-04-08 14:18:26 -0400378 sendCursor = 0;
379}