blob: 30b2fd3fadefbf77987a8922e39f4e4c5d724129 [file] [log] [blame]
dburgessb3a0ca42011-10-12 07:44:40 +00001/*
2* Copyright 2008 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*/
24
dburgessb3a0ca42011-10-12 07:44:40 +000025#include "radioInterface.h"
26#include "Interthread.h"
27#include "GSMCommon.h"
28#include "Sockets.h"
29
30#include <sys/types.h>
31#include <sys/socket.h>
32
Thomas Tsouf0782732013-10-29 15:55:47 -040033class Transceiver;
34
35/** Channel descriptor for transceiver object and channel number pair */
36struct TransceiverChannel {
37 TransceiverChannel(Transceiver *trx, int num)
38 {
39 this->trx = trx;
40 this->num = num;
41 }
42
43 ~TransceiverChannel()
44 {
45 }
46
47 Transceiver *trx;
48 size_t num;
49};
50
51/** Internal transceiver state variables */
52struct TransceiverState {
53 TransceiverState();
54 ~TransceiverState();
55
56 /* Initialize a multiframe slot in the filler table */
57 void init(size_t slot, signalVector *burst);
58
59 int chanType[8];
60
61 /* Last timestamp of each timeslot's channel estimate */
62 GSM::Time chanEstimateTime[8];
63
64 /* The filler table */
65 signalVector *fillerTable[102][8];
66 int fillerModulus[8];
67
68 /* Most recent channel estimate of all timeslots */
69 signalVector *chanResponse[8];
70
71 /* Most recent DFE feedback filter of all timeslots */
72 signalVector *DFEForward[8];
73 signalVector *DFEFeedback[8];
74
75 /* Most recent SNR, timing, and channel amplitude estimates */
76 float SNRestimate[8];
77 float chanRespOffset[8];
78 complex chanRespAmplitude[8];
79};
80
dburgessb3a0ca42011-10-12 07:44:40 +000081/** The Transceiver class, responsible for physical layer of basestation */
82class Transceiver {
dburgessb3a0ca42011-10-12 07:44:40 +000083private:
Thomas Tsoud647ec52013-10-29 15:17:34 -040084 int mBasePort;
85 std::string mAddr;
dburgessb3a0ca42011-10-12 07:44:40 +000086 GSM::Time mTransmitLatency; ///< latency between basestation clock and transmit deadline clock
87 GSM::Time mLatencyUpdateTime; ///< last time latency was updated
88
Thomas Tsou204a9f12013-10-29 18:34:16 -040089 std::vector<UDPSocket *> mDataSockets; ///< socket for writing to/reading from GSM core
90 std::vector<UDPSocket *> mCtrlSockets; ///< socket for writing/reading control commands from GSM core
91 UDPSocket *mClockSocket; ///< socket for writing clock updates to GSM core
dburgessb3a0ca42011-10-12 07:44:40 +000092
Thomas Tsou204a9f12013-10-29 18:34:16 -040093 std::vector<VectorQueue> mTxPriorityQueues; ///< priority queue of transmit bursts received from GSM core
94 std::vector<VectorFIFO *> mReceiveFIFO; ///< radioInterface FIFO of receive bursts
dburgessb3a0ca42011-10-12 07:44:40 +000095
Thomas Tsou204a9f12013-10-29 18:34:16 -040096 std::vector<Thread *> mRxServiceLoopThreads; ///< thread to pull bursts into receive FIFO
97 Thread *mRxLowerLoopThread; ///< thread to pull bursts into receive FIFO
98 Thread *mTxLowerLoopThread; ///< thread to push bursts into transmit FIFO
99 std::vector<Thread *> mControlServiceLoopThreads; ///< thread to process control messages from GSM core
100 std::vector<Thread *> mTxPriorityQueueServiceLoopThreads; ///< thread to process transmit bursts from GSM core
dburgessb3a0ca42011-10-12 07:44:40 +0000101
102 GSM::Time mTransmitDeadlineClock; ///< deadline for pushing bursts into transmit FIFO
103 GSM::Time mLastClockUpdateTime; ///< last time clock update was sent up to core
104
105 RadioInterface *mRadioInterface; ///< associated radioInterface object
106 double txFullScale; ///< full scale input to radio
107 double rxFullScale; ///< full scale output to radio
108
109 /** Codes for burst types of received bursts*/
110 typedef enum {
111 OFF, ///< timeslot is off
112 TSC, ///< timeslot should contain a normal burst
113 RACH, ///< timeslot should contain an access burst
114 IDLE ///< timeslot is an idle (or dummy) burst
115 } CorrType;
116
Thomas Tsoufa3a7872013-10-17 21:23:34 -0400117 float mNoiseLev; ///< Average noise level
118 noiseVector mNoises; ///< Vector holding running noise measurements
dburgessb3a0ca42011-10-12 07:44:40 +0000119
dburgessb3a0ca42011-10-12 07:44:40 +0000120 /** modulate and add a burst to the transmit queue */
Thomas Tsoua2fe91a2013-11-13 22:48:11 -0500121 void addRadioVector(size_t chan, BitVector &bits,
Thomas Tsou204a9f12013-10-29 18:34:16 -0400122 int RSSI, GSM::Time &wTime);
dburgessb3a0ca42011-10-12 07:44:40 +0000123
124 /** Push modulated burst into transmit FIFO corresponding to a particular timestamp */
125 void pushRadioVector(GSM::Time &nowTime);
126
Thomas Tsou204a9f12013-10-29 18:34:16 -0400127 /** Pull and demodulate a burst from the receive FIFO */
128 SoftVector *pullRadioVector(GSM::Time &wTime, int &RSSI,
129 int &timingOffset, size_t chan = 0);
130
dburgessb3a0ca42011-10-12 07:44:40 +0000131 /** Set modulus for specific timeslot */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400132 void setModulus(size_t timeslot, size_t chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000133
134 /** return the expected burst type for the specified timestamp */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400135 CorrType expectedCorrType(GSM::Time currTime, size_t chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000136
137 /** send messages over the clock socket */
138 void writeClockInterface(void);
139
Thomas Tsou30421a72013-11-13 23:14:48 -0500140 /** Detect RACH bursts */
141 bool detectRACH(TransceiverState *state,
142 signalVector &burst,
143 complex &amp, float &toa);
144
145 /** Detect normal bursts */
146 bool detectTSC(TransceiverState *state,
147 signalVector &burst,
148 complex &amp, float &toa, GSM::Time &time);
149
150 /** Demodulat burst and output soft bits */
151 SoftVector *demodulate(TransceiverState *state,
152 signalVector &burst, complex amp,
153 float toa, size_t tn, bool equalize);
154
155
Thomas Tsouc1f7c422013-10-11 13:49:55 -0400156 int mSPSTx; ///< number of samples per Tx symbol
157 int mSPSRx; ///< number of samples per Rx symbol
Thomas Tsou204a9f12013-10-29 18:34:16 -0400158 size_t mChans;
dburgessb3a0ca42011-10-12 07:44:40 +0000159
160 bool mOn; ///< flag to indicate that transceiver is powered on
dburgessb3a0ca42011-10-12 07:44:40 +0000161 double mTxFreq; ///< the transmit frequency
162 double mRxFreq; ///< the receive frequency
163 int mPower; ///< the transmit power in dB
164 unsigned mTSC; ///< the midamble sequence code
dburgessb3a0ca42011-10-12 07:44:40 +0000165 unsigned mMaxExpectedDelay; ///< maximum expected time-of-arrival offset in GSM symbols
166
Thomas Tsou204a9f12013-10-29 18:34:16 -0400167 std::vector<TransceiverState> mStates;
dburgessb3a0ca42011-10-12 07:44:40 +0000168
169public:
170
171 /** Transceiver constructor
172 @param wBasePort base port number of UDP sockets
173 @param TRXAddress IP address of the TRX manager, as a string
Thomas Tsoud24cc2c2013-08-20 15:41:45 -0400174 @param wSPS number of samples per GSM symbol
dburgessb3a0ca42011-10-12 07:44:40 +0000175 @param wTransmitLatency initial setting of transmit latency
176 @param radioInterface associated radioInterface object
177 */
178 Transceiver(int wBasePort,
179 const char *TRXAddress,
Thomas Tsou204a9f12013-10-29 18:34:16 -0400180 size_t wSPS, size_t chans,
dburgessb3a0ca42011-10-12 07:44:40 +0000181 GSM::Time wTransmitLatency,
182 RadioInterface *wRadioInterface);
Thomas Tsou204a9f12013-10-29 18:34:16 -0400183
dburgessb3a0ca42011-10-12 07:44:40 +0000184 /** Destructor */
185 ~Transceiver();
186
187 /** start the Transceiver */
188 void start();
Thomas Tsou83e06892013-08-20 16:10:01 -0400189 bool init();
dburgessb3a0ca42011-10-12 07:44:40 +0000190
191 /** attach the radioInterface receive FIFO */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400192 bool receiveFIFO(VectorFIFO *wFIFO, size_t chan)
193 {
194 if (chan >= mReceiveFIFO.size())
195 return false;
dburgessb3a0ca42011-10-12 07:44:40 +0000196
Thomas Tsou204a9f12013-10-29 18:34:16 -0400197 mReceiveFIFO[chan] = wFIFO;
198 return true;
199 }
dburgessb3a0ca42011-10-12 07:44:40 +0000200
Thomas Tsouf0782732013-10-29 15:55:47 -0400201 /** Codes for channel combinations */
202 typedef enum {
203 FILL, ///< Channel is transmitted, but unused
204 I, ///< TCH/FS
205 II, ///< TCH/HS, idle every other slot
206 III, ///< TCH/HS
207 IV, ///< FCCH+SCH+CCCH+BCCH, uplink RACH
208 V, ///< FCCH+SCH+CCCH+BCCH+SDCCH/4+SACCH/4, uplink RACH+SDCCH/4
209 VI, ///< CCCH+BCCH, uplink RACH
210 VII, ///< SDCCH/8 + SACCH/8
211 VIII, ///< TCH/F + FACCH/F + SACCH/M
212 IX, ///< TCH/F + SACCH/M
213 X, ///< TCH/FD + SACCH/MD
214 XI, ///< PBCCH+PCCCH+PDTCH+PACCH+PTCCH
215 XII, ///< PCCCH+PDTCH+PACCH+PTCCH
216 XIII, ///< PDTCH+PACCH+PTCCH
217 NONE, ///< Channel is inactive, default
218 LOOPBACK ///< similar go VII, used in loopback testing
219 } ChannelCombination;
220
dburgessb3a0ca42011-10-12 07:44:40 +0000221protected:
Thomas Tsou204a9f12013-10-29 18:34:16 -0400222 /** drive lower receive I/O and burst generation */
223 void driveReceiveRadio();
dburgessb3a0ca42011-10-12 07:44:40 +0000224
Thomas Tsou204a9f12013-10-29 18:34:16 -0400225 /** drive demodulation of GSM bursts */
226 void driveReceiveFIFO(size_t chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000227
228 /** drive transmission of GSM bursts */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400229 void driveTxFIFO();
dburgessb3a0ca42011-10-12 07:44:40 +0000230
231 /** drive handling of control messages from GSM core */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400232 void driveControl(size_t chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000233
234 /**
235 drive modulation and sorting of GSM bursts from GSM core
236 @return true if a burst was transferred successfully
237 */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400238 bool driveTxPriorityQueue(size_t chan);
dburgessb3a0ca42011-10-12 07:44:40 +0000239
Thomas Tsou204a9f12013-10-29 18:34:16 -0400240 friend void *RxUpperLoopAdapter(TransceiverChannel *);
Thomas Tsou92c16df2013-09-28 18:04:19 -0400241
Thomas Tsou204a9f12013-10-29 18:34:16 -0400242 friend void *TxUpperLoopAdapter(TransceiverChannel *);
dburgessb3a0ca42011-10-12 07:44:40 +0000243
Thomas Tsou204a9f12013-10-29 18:34:16 -0400244 friend void *RxLowerLoopAdapter(Transceiver *);
dburgessb3a0ca42011-10-12 07:44:40 +0000245
Thomas Tsou204a9f12013-10-29 18:34:16 -0400246 friend void *TxLowerLoopAdapter(Transceiver *);
247
248 friend void *ControlServiceLoopAdapter(TransceiverChannel *);
249
dburgessb3a0ca42011-10-12 07:44:40 +0000250
251 void reset();
kurtis.heimerl6b495a52011-11-26 03:17:21 +0000252
253 /** set priority on current thread */
Thomas Tsou7553aa92013-11-08 12:50:03 -0500254 void setPriority(float prio = 0.5) { mRadioInterface->setPriority(prio); }
kurtis.heimerl6b495a52011-11-26 03:17:21 +0000255
dburgessb3a0ca42011-10-12 07:44:40 +0000256};
257
Thomas Tsou204a9f12013-10-29 18:34:16 -0400258void *RxUpperLoopAdapter(TransceiverChannel *);
259
Thomas Tsou92c16df2013-09-28 18:04:19 -0400260/** Main drive threads */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400261void *RxLowerLoopAdapter(Transceiver *);
262void *TxLowerLoopAdapter(Transceiver *);
dburgessb3a0ca42011-10-12 07:44:40 +0000263
264/** control message handler thread loop */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400265void *ControlServiceLoopAdapter(TransceiverChannel *);
dburgessb3a0ca42011-10-12 07:44:40 +0000266
267/** transmit queueing thread loop */
Thomas Tsou204a9f12013-10-29 18:34:16 -0400268void *TxUpperLoopAdapter(TransceiverChannel *);
dburgessb3a0ca42011-10-12 07:44:40 +0000269