/usr/include/lime/ILimeSDRStreaming.cpp is in liblimesuite-dev 16.12.0+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 | #include "ILimeSDRStreaming.h"
#include "ErrorReporting.h"
#include <assert.h>
#include "FPGA_common.h"
#include "LMS7002M.h"
#include <ciso646>
using namespace lime;
ILimeSDRStreaming::ILimeSDRStreaming()
{
rxRunning = false;
txRunning = false;
mTimestampOffset = 0;
}
ILimeSDRStreaming::~ILimeSDRStreaming()
{
}
int ILimeSDRStreaming::SetupStream(size_t& streamID, const StreamConfig& config)
{
if(rxRunning.load() == true || txRunning.load() == true)
return ReportError(EPERM, "All streams must be stopped before doing setups");
streamID = ~0;
StreamChannel* stream = new StreamChannel(this);
stream->config = config;
//TODO check for duplicate streams
if(config.isTx)
mTxStreams.push_back(stream);
else
mRxStreams.push_back(stream);
streamID = size_t(stream);
return 0; //success
}
int ILimeSDRStreaming::CloseStream(const size_t streamID)
{
if(rxRunning.load() == true || txRunning.load() == true)
return ReportError(EPERM, "All streams must be stopped before closing");
StreamChannel *stream = (StreamChannel*)streamID;
for(auto i=mRxStreams.begin(); i!=mRxStreams.end(); ++i)
{
if(*i==stream)
{
delete *i;
mRxStreams.erase(i);
break;
}
}
for(auto i=mTxStreams.begin(); i!=mTxStreams.end(); ++i)
{
if(*i==stream)
{
delete *i;
mTxStreams.erase(i);
break;
}
}
return 0;
}
size_t ILimeSDRStreaming::GetStreamSize(const size_t streamID)
{
uint16_t channelEnables = 0;
for(uint8_t i=0; i<mRxStreams.size(); ++i)
channelEnables |= (1 << mRxStreams[i]->config.channelID);
for(uint8_t i=0; i<mTxStreams.size(); ++i)
channelEnables |= (1 << mTxStreams[i]->config.channelID);
uint8_t uniqueChannelCount = 0;
for(uint8_t i=0; i<16; ++i)
{
uniqueChannelCount += (channelEnables & 0x1);
channelEnables >>= 1;
}
//if no channels are setup return smallest number of samples in packet
if(uniqueChannelCount == 0)
return 680;
else
return 1360/uniqueChannelCount;
}
int ILimeSDRStreaming::ControlStream(const size_t streamID, const bool enable)
{
auto *stream = (IStreamChannel* )streamID;
assert(stream != nullptr);
if(enable)
return stream->Start();
else
return stream->Stop();
}
int ILimeSDRStreaming::ReadStream(const size_t streamID, void* buffs, const size_t length, const long timeout_ms, StreamMetadata& metadata)
{
assert(streamID != 0);
lime::IStreamChannel* channel = (lime::IStreamChannel*)streamID;
lime::IStreamChannel::Metadata meta;
meta.flags = 0;
meta.flags |= metadata.hasTimestamp ? lime::IStreamChannel::Metadata::SYNC_TIMESTAMP : 0;
meta.timestamp = metadata.timestamp;
int status = channel->Read(buffs, length, &meta, timeout_ms);
metadata.hasTimestamp = true;
metadata.timestamp = meta.timestamp;
return status;
}
int ILimeSDRStreaming::WriteStream(const size_t streamID, const void* buffs, const size_t length, const long timeout_ms, const StreamMetadata& metadata)
{
assert(streamID != 0);
lime::IStreamChannel* channel = (lime::IStreamChannel*)streamID;
lime::IStreamChannel::Metadata meta;
meta.flags = 0;
meta.flags |= metadata.hasTimestamp ? lime::IStreamChannel::Metadata::SYNC_TIMESTAMP : 0;
meta.timestamp = metadata.timestamp;
int status = channel->Write(buffs, length, &meta, timeout_ms);
return status;
}
int ILimeSDRStreaming::ReadStreamStatus(const size_t streamID, const long timeout_ms, StreamMetadata& metadata)
{
assert(streamID != 0);
StreamChannel* channel = (StreamChannel*)streamID;
//support late timestamp reporting
auto txLastLateTime = channel->txLastLateTime.exchange(0);
if (txLastLateTime != 0)
{
metadata.hasTimestamp = true;
metadata.timestamp = txLastLateTime;
metadata.lateTimestamp = true;
metadata.packetDropped = true;
return 0;
}
IStreamChannel::Info info = channel->GetInfo();
metadata.hasTimestamp = true;
metadata.timestamp = info.timestamp;
metadata.lateTimestamp = info.underrun > 0;
metadata.packetDropped = info.droppedPackets > 0;
return 0;
}
void ILimeSDRStreaming::EnterSelfCalibration(const size_t channel)
{
if(not rxRunning)
return;
generateData.store(true);
std::unique_lock<std::mutex> lck(streamStateLock);
//wait untill all existing USB transfers complete
safeToConfigInterface.wait_for(lck, std::chrono::milliseconds(250));
}
void ILimeSDRStreaming::ExitSelfCalibration(const size_t channel)
{
generateData.store(false);
}
uint64_t ILimeSDRStreaming::GetHardwareTimestamp(void)
{
if(not rxRunning.load() and not txRunning.load())
{
//stop streaming just in case the board has not been configured
fpga::StopStreaming(this);
fpga::ResetTimestamp(this);
mTimestampOffset = 0;
return 0;
}
else
{
return rxLastTimestamp.load()+mTimestampOffset;
}
}
void ILimeSDRStreaming::SetHardwareTimestamp(const uint64_t now)
{
mTimestampOffset = now - rxLastTimestamp.load();
}
double ILimeSDRStreaming::GetHardwareTimestampRate(void)
{
return mExpectedSampleRate;
}
int ILimeSDRStreaming::UpdateThreads()
{
bool needTx = false;
bool needRx = false;
//check which threads are needed
for(auto i : mRxStreams)
if(i->IsActive())
{
needRx = true;
break;
}
for(auto i : mTxStreams)
if(i->IsActive())
{
needTx = true;
break;
}
//stop threads if not needed
if(not needTx and txRunning.load())
{
terminateTx.store(true);
txThread.join();
txRunning.store(false);
}
if(not needRx and rxRunning.load())
{
terminateRx.store(true);
rxThread.join();
rxRunning.store(false);
}
//configure FPGA on first start, or disable FPGA when not streaming
if((needTx or needRx) && (not rxRunning.load() and not txRunning.load()))
{
//enable FPGA streaming
fpga::StopStreaming(this);
fpga::ResetTimestamp(this);
rxLastTimestamp.store(0);
//USB FIFO reset
// TODO : USB FIFO reset command for IConnection
LMS64CProtocol::GenericPacket ctrPkt;
ctrPkt.cmd = CMD_USB_FIFO_RST;
ctrPkt.outBuffer.push_back(0x00);
TransferPacket(ctrPkt);
//enable MIMO mode, 12 bit compressed values
StreamConfig config;
config.linkFormat = StreamConfig::STREAM_12_BIT_COMPRESSED;
//by default use 12 bit compressed, adjust link format for stream
for(auto i : mRxStreams)
{
if(i->config.format == StreamConfig::STREAM_12_BIT_IN_16)
{
config.linkFormat = StreamConfig::STREAM_12_BIT_IN_16;
break;
}
}
for(auto i : mTxStreams)
{
if(i->config.format == StreamConfig::STREAM_12_BIT_IN_16)
{
config.linkFormat = StreamConfig::STREAM_12_BIT_IN_16;
break;
}
}
for(auto i : mRxStreams)
i->config.linkFormat = config.linkFormat;
for(auto i : mTxStreams)
i->config.linkFormat = config.linkFormat;
uint16_t smpl_width; // 0-16 bit, 1-14 bit, 2-12 bit
if(config.linkFormat == StreamConfig::STREAM_12_BIT_IN_16)
smpl_width = 0x0;
else if(config.linkFormat == StreamConfig::STREAM_12_BIT_COMPRESSED)
smpl_width = 0x2;
else
smpl_width = 0x2;
WriteRegister(0x0008, 0x0100 | smpl_width);
uint16_t channelEnables = 0;
for(uint8_t i=0; i<mRxStreams.size(); ++i)
channelEnables |= (1 << mRxStreams[i]->config.channelID);
for(uint8_t i=0; i<mTxStreams.size(); ++i)
channelEnables |= (1 << mTxStreams[i]->config.channelID);
WriteRegister(0x0007, channelEnables);
LMS7002M lmsControl;
lmsControl.SetConnection(this);
bool fromChip = true;
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML1_MODE), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_MODE), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML1_FIDM), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_FIDM), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(PD_RX_AFE1), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(PD_TX_AFE1), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(PD_RX_AFE2), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(PD_TX_AFE2), 0, fromChip);
if (lmsControl.Get_SPI_Reg_bits(LMS7_MASK, true) == 0)
{
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S0S), 1, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S1S), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S2S), 3, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S3S), 2, fromChip);
}
else
{
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S0S), 0, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S1S), 1, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S2S), 2, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(LML2_S3S), 3, fromChip);
}
if(channelEnables & 0x2) //enable MIMO
{
uint16_t macBck = lmsControl.Get_SPI_Reg_bits(LMS7param(MAC), fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(MAC), 1, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(EN_NEXTRX_RFE), 1, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(EN_NEXTTX_TRF), 1, fromChip);
lmsControl.Modify_SPI_Reg_bits(LMS7param(MAC), macBck, fromChip);
}
fpga::StartStreaming(this);
}
else if(not needTx and not needRx)
{
//disable FPGA streaming
fpga::StopStreaming(this);
}
//FPGA should be configured and activated, start needed threads
if(needRx and not rxRunning.load())
{
ThreadData args;
args.terminate = &terminateRx;
args.dataPort = this;
args.dataRate_Bps = &rxDataRate_Bps;
args.channels = mRxStreams;
args.generateData = &generateData;
args.safeToConfigInterface = &safeToConfigInterface;
args.lastTimestamp = &rxLastTimestamp;
args.reportLateTx = std::bind(&ILimeSDRStreaming::reportLateTxTimestamp, this, std::placeholders::_1);
rxRunning.store(true);
terminateRx.store(false);
rxThread = std::thread(RxLoopFunction, args);
}
if(needTx and not txRunning.load())
{
ThreadData args;
args.terminate = &terminateTx;
args.dataPort = this;
args.dataRate_Bps = &txDataRate_Bps;
args.channels = mTxStreams;
args.generateData = &generateData;
args.safeToConfigInterface = &safeToConfigInterface;
args.lastTimestamp = nullptr;
txRunning.store(true);
terminateTx.store(false);
txThread = std::thread(TxLoopFunction, args);
}
return 0;
}
//-----------------------------------------------------------------------------
ILimeSDRStreaming::StreamChannel::StreamChannel(lime::IConnection* port) :
mActive(false)
{
this->port = dynamic_cast<ILimeSDRStreaming*>(port);
fifo = new RingFIFO(1024*8);
}
ILimeSDRStreaming::StreamChannel::~StreamChannel()
{
delete fifo;
}
int ILimeSDRStreaming::StreamChannel::Read(void* samples, const uint32_t count, Metadata* meta, const int32_t timeout_ms)
{
int popped = 0;
if(config.format == StreamConfig::STREAM_COMPLEX_FLOAT32 && !config.isTx)
{
//in place conversion
complex16_t* ptr = (complex16_t*)samples;
int16_t* samplesShort = (int16_t*)samples;
float* samplesFloat = (float*)samples;
popped = fifo->pop_samples(ptr, count, 1, &meta->timestamp, timeout_ms, &meta->flags);
for(int i=2*popped-1; i>=0; --i)
samplesFloat[i] = (float)samplesShort[i]/2048.0;
}
//else if(config.format == StreamConfig::STREAM_12_BIT_IN_16)
else
{
complex16_t* ptr = (complex16_t*)samples;
popped = fifo->pop_samples(ptr, count, 1, &meta->timestamp, timeout_ms, &meta->flags);
}
return popped;
}
int ILimeSDRStreaming::StreamChannel::Write(const void* samples, const uint32_t count, const Metadata *meta, const int32_t timeout_ms)
{
int pushed = 0;
if(config.format == StreamConfig::STREAM_COMPLEX_FLOAT32 && config.isTx)
{
const float* samplesFloat = (const float*)samples;
int16_t* samplesShort = new int16_t[2*count];
for(size_t i=0; i<2*count; ++i)
samplesShort[i] = samplesFloat[i]*2047;
const complex16_t* ptr = (const complex16_t*)samplesShort ;
pushed = fifo->push_samples(ptr, count, 1, meta->timestamp, timeout_ms, meta->flags);
delete samplesShort;
}
//else if(config.format == StreamConfig::STREAM_12_BIT_IN_16)
else
{
const complex16_t* ptr = (const complex16_t*)samples;
pushed = fifo->push_samples(ptr, count, 1, meta->timestamp, timeout_ms, meta->flags);
}
return pushed;
}
IStreamChannel::Info ILimeSDRStreaming::StreamChannel::GetInfo()
{
Info stats;
memset(&stats,0,sizeof(stats));
RingFIFO::BufferInfo info = fifo->GetInfo();
stats.fifoSize = info.size;
stats.fifoItemsCount = info.itemsFilled;
stats.active = mActive;
if(config.isTx)
stats.linkRate = port->txDataRate_Bps.load();
else
stats.linkRate = port->rxDataRate_Bps.load();
return stats;
}
bool ILimeSDRStreaming::StreamChannel::IsActive() const
{
return mActive;
}
int ILimeSDRStreaming::StreamChannel::Start()
{
mActive = true;
fifo->Clear();
return port->UpdateThreads();
}
int ILimeSDRStreaming::StreamChannel::Stop()
{
mActive = false;
return port->UpdateThreads();
}
|