usrp_lib.cpp 27.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*******************************************************************************
    OpenAirInterface 
    Copyright(c) 1999 - 2014 Eurecom

    OpenAirInterface is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.


    OpenAirInterface is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with OpenAirInterface.The full GNU General Public License is 
    included in this distribution in the file called "COPYING". If not, 
    see <http://www.gnu.org/licenses/>.

   Contact Information
   OpenAirInterface Admin: openair_admin@eurecom.fr
   OpenAirInterface Tech : openair_tech@eurecom.fr
24
   OpenAirInterface Dev  : openair4g-devel@lists.eurecom.fr
25
  
ghaddab's avatar
ghaddab committed
26
   Address      : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE
27 28

 *******************************************************************************/
Raymond Knopp's avatar
 
Raymond Knopp committed
29 30 31

/** usrp_lib.cpp
 *
32
 * \author: HongliangXU : hong-liang-xu@agilent.com
Raymond Knopp's avatar
 
Raymond Knopp committed
33 34 35 36 37 38 39 40
 */

#include <string.h>
#include <pthread.h>
#include <unistd.h>
#include <stdio.h>
#include <uhd/utils/thread_priority.hpp>
#include <uhd/usrp/multi_usrp.hpp>
41
#include <uhd/version.hpp>
Raymond Knopp's avatar
 
Raymond Knopp committed
42 43 44 45 46 47
#include <boost/lexical_cast.hpp>
#include <boost/algorithm/string.hpp>
#include <iostream>
#include <complex>
#include <fstream>
#include <cmath>
48
#include <time.h>
Raymond Knopp's avatar
 
Raymond Knopp committed
49
#include "common_lib.h"
50 51 52 53 54 55 56
#ifdef __SSE4_1__
#  include <smmintrin.h>
#endif
 
#ifdef __AVX2__
#  include <immintrin.h>
#endif
57

58 59 60 61
#ifdef __arm__
#  include <arm_neon.h>
#endif

62 63 64 65 66
/** @addtogroup _USRP_PHY_RF_INTERFACE_
 * @{
 */

/*! \brief USRP Configuration */ 
Raymond Knopp's avatar
 
Raymond Knopp committed
67 68 69 70 71 72
typedef struct
{

  // --------------------------------
  // variables for USRP configuration
  // --------------------------------
73
  //! USRP device pointer
Raymond Knopp's avatar
 
Raymond Knopp committed
74 75
  uhd::usrp::multi_usrp::sptr usrp;
  //uhd::usrp::multi_usrp::sptr rx_usrp;
76
  
Raymond Knopp's avatar
 
Raymond Knopp committed
77
  //create a send streamer and a receive streamer
78
  //! USRP TX Stream
Raymond Knopp's avatar
 
Raymond Knopp committed
79
  uhd::tx_streamer::sptr tx_stream;
80
  //! USRP RX Stream
Raymond Knopp's avatar
 
Raymond Knopp committed
81 82
  uhd::rx_streamer::sptr rx_stream;

83
  //! USRP TX Metadata
Raymond Knopp's avatar
 
Raymond Knopp committed
84
  uhd::tx_metadata_t tx_md;
85
  //! USRP RX Metadata
Raymond Knopp's avatar
 
Raymond Knopp committed
86 87
  uhd::rx_metadata_t rx_md;

88
  //! USRP Timestamp Information
Raymond Knopp's avatar
 
Raymond Knopp committed
89
  uhd::time_spec_t tm_spec;
90

Raymond Knopp's avatar
 
Raymond Knopp committed
91
  //setup variables and allocate buffer
92
  //! USRP Metadata
Raymond Knopp's avatar
 
Raymond Knopp committed
93 94
  uhd::async_metadata_t async_md;

95
  //! Sampling rate
Raymond Knopp's avatar
 
Raymond Knopp committed
96
  double sample_rate;
97 98

  //! time offset between transmiter timestamp and receiver timestamp;
Raymond Knopp's avatar
 
Raymond Knopp committed
99
  double tdiff;
100 101

  //! TX forward samples. We use usrp_time_offset to get this value
Raymond Knopp's avatar
 
Raymond Knopp committed
102 103 104 105 106 107
  int tx_forward_nsamps; //166 for 20Mhz


  // --------------------------------
  // Debug and output control
  // --------------------------------
108
  //! Number of underflows
Raymond Knopp's avatar
 
Raymond Knopp committed
109
  int num_underflows;
110
  //! Number of overflows
Raymond Knopp's avatar
 
Raymond Knopp committed
111
  int num_overflows;
112 113
  
  //! Number of sequential errors
Raymond Knopp's avatar
 
Raymond Knopp committed
114
  int num_seq_errors;
115
  //! tx count
Raymond Knopp's avatar
 
Raymond Knopp committed
116
  int64_t tx_count;
117
  //! rx count
Raymond Knopp's avatar
 
Raymond Knopp committed
118
  int64_t rx_count;
119
  //! timestamp of RX packet
Raymond Knopp's avatar
 
Raymond Knopp committed
120 121 122 123
  openair0_timestamp rx_timestamp;

} usrp_state_t;

124 125 126
/*! \brief Called to start the USRP transceiver. Return 0 if OK, < 0 if error
    @param device pointer to the device structure specific to the RF hardware target
*/
Raymond Knopp's avatar
 
Raymond Knopp committed
127 128 129 130 131 132
static int trx_usrp_start(openair0_device *device)
{
  usrp_state_t *s = (usrp_state_t*)device->priv;

  // init recv and send streaming
  uhd::stream_cmd_t cmd(uhd::stream_cmd_t::STREAM_MODE_START_CONTINUOUS);
Raymond Knopp's avatar
 
Raymond Knopp committed
133
  cmd.time_spec = s->usrp->get_time_now() + uhd::time_spec_t(0.05);
Raymond Knopp's avatar
 
Raymond Knopp committed
134 135 136
  cmd.stream_now = false; // start at constant delay
  s->rx_stream->issue_stream_cmd(cmd);

Raymond Knopp's avatar
 
Raymond Knopp committed
137
  s->tx_md.time_spec = cmd.time_spec + uhd::time_spec_t(1-(double)s->tx_forward_nsamps/s->sample_rate);
Raymond Knopp's avatar
 
Raymond Knopp committed
138 139 140 141 142 143 144 145
  s->tx_md.has_time_spec = true;
  s->tx_md.start_of_burst = true;
  s->tx_md.end_of_burst = false;


  s->rx_count = 0;
  s->tx_count = 0;
  s->rx_timestamp = 0;
146 147

  return 0;
Raymond Knopp's avatar
 
Raymond Knopp committed
148
}
149 150 151
/*! \brief Terminate operation of the USRP transceiver -- free all associated resources 
 * \param device the hardware to use
 */
Raymond Knopp's avatar
 
Raymond Knopp committed
152 153 154 155 156 157
static void trx_usrp_end(openair0_device *device)
{
  usrp_state_t *s = (usrp_state_t*)device->priv;

  s->rx_stream->issue_stream_cmd(uhd::stream_cmd_t::STREAM_MODE_STOP_CONTINUOUS);

navid's avatar
navid committed
158 159 160 161 162
  //send a mini EOB packet
  s->tx_md.end_of_burst = true;
  s->tx_stream->send("", 0, s->tx_md);
  s->tx_md.end_of_burst = false;
  
Raymond Knopp's avatar
 
Raymond Knopp committed
163
}
164

165 166 167 168 169 170 171 172
/*! \brief Called to send samples to the USRP RF target
      @param device pointer to the device structure specific to the RF hardware target
      @param timestamp The timestamp at whicch the first sample MUST be sent 
      @param buff Buffer which holds the samples
      @param nsamps number of samples to be sent
      @param antenna_id index of the antenna if the device has multiple anteannas
      @param flags flags must be set to TRUE if timestamp parameter needs to be applied
*/ 
173
static int trx_usrp_write(openair0_device *device, openair0_timestamp timestamp, void **buff, int nsamps, int cc, int flags)
Raymond Knopp's avatar
 
Raymond Knopp committed
174
{
175 176 177 178 179 180 181
   static long long int loop=0;
   static long time_min=0, time_max=0, time_avg=0;
   struct timespec tp_start, tp_end;
   long time_diff;
   clock_gettime(CLOCK_MONOTONIC_RAW, &tp_start);

  int ret=0, ret_i=0;
Raymond Knopp's avatar
 
Raymond Knopp committed
182
  usrp_state_t *s = (usrp_state_t*)device->priv;
Raymond Knopp's avatar
Raymond Knopp committed
183

184
  s->tx_md.time_spec = uhd::time_spec_t::from_ticks(timestamp, s->sample_rate);
Raymond Knopp's avatar
Raymond Knopp committed
185

186
  
Raymond Knopp's avatar
 
Raymond Knopp committed
187 188 189 190
  if(flags)
    s->tx_md.has_time_spec = true;
  else
    s->tx_md.has_time_spec = false;
191
  
Raymond Knopp's avatar
Raymond Knopp committed
192 193 194
  if (cc>1) {
    std::vector<void *> buff_ptrs;
    for (int i=0;i<cc;i++) buff_ptrs.push_back(buff[i]);
195
    ret = (int)s->tx_stream->send(buff_ptrs, nsamps, s->tx_md,1e-3);
Raymond Knopp's avatar
Raymond Knopp committed
196 197
  }
  else
198 199
    ret = (int)s->tx_stream->send(buff[0], nsamps, s->tx_md,1e-3);

Raymond Knopp's avatar
 
Raymond Knopp committed
200
  s->tx_md.start_of_burst = false;
201

202 203 204
  if (ret != nsamps) {
    printf("[xmit] tx samples %d != %d\n",ret,nsamps);
  }
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219

  clock_gettime(CLOCK_MONOTONIC_RAW, &tp_end);
  time_diff = (tp_end.tv_sec - tp_start.tv_sec) *1E09  + (tp_end.tv_nsec - tp_start.tv_nsec);
  if  (time_min==0 ||loop==1 || time_min > time_diff)
    time_min=time_diff;
  if  (time_max==0 ||loop==1 || time_max < time_diff)
    time_max=time_diff;
  if (time_avg ==0 ||loop==1)
    time_avg= time_diff;
  else
    time_avg=(time_diff+time_avg) /2.0;
  
  if ( loop%10000 ==0)
     printf("\n usrp_write: min(ns)=%d, max(ns)=%d, avg(ns)=%d", (int)time_min, (int)time_max,(int)time_avg);
   loop++;
220
  return ret;
Raymond Knopp's avatar
 
Raymond Knopp committed
221 222
}

223 224 225 226 227 228 229 230 231 232 233
/*! \brief Receive samples from hardware.
 * Read \ref nsamps samples from each channel to buffers. buff[0] is the array for
 * the first channel. *ptimestamp is the time at which the first sample
 * was received.
 * \param device the hardware to use
 * \param[out] ptimestamp the time at which the first sample was received.
 * \param[out] buff An array of pointers to buffers for received samples. The buffers must be large enough to hold the number of samples \ref nsamps.
 * \param nsamps Number of samples. One sample is 2 byte I + 2 byte Q => 4 byte.
 * \param antenna_id Index of antenna for which to receive samples
 * \returns the number of sample read
*/
Raymond Knopp's avatar
 
Raymond Knopp committed
234
static int trx_usrp_read(openair0_device *device, openair0_timestamp *ptimestamp, void **buff, int nsamps, int cc)
Raymond Knopp's avatar
 
Raymond Knopp committed
235
{
236 237 238 239 240
   static long long int loop=0;
   static long time_min=0, time_max=0, time_avg=0;
   struct timespec tp_start, tp_end;
   long time_diff;
   clock_gettime(CLOCK_MONOTONIC_RAW, &tp_start);
241 242 243 244 245 246
   usrp_state_t *s = (usrp_state_t*)device->priv;
   int samples_received=0,i,j;
   int nsamps2;  // aligned to upper 32 or 16 byte boundary
#if defined(__x86_64) || defined(__i386__)
#ifdef __AVX2__
   nsamps2 = (nsamps+7)>>3;
247
   __m256i buff_tmp[2][nsamps2];
248 249
#else
   nsamps2 = (nsamps+3)>>2;
250
   __m128i buff_tmp[2][nsamps2];
251 252 253
#endif
#elif defined(__arm__)
   nsamps2 = (nsamps+3)>>2;
254
   int16x8_t buff_tmp[2][nsamps2];
255 256
#endif

Raymond Knopp's avatar
 
Raymond Knopp committed
257

258
  if (device->type == USRP_B200_DEV) {  
259
    if (cc>1) {
260
    // receive multiple channels (e.g. RF A and RF B)
261
      std::vector<void *> buff_ptrs;
262
 
263 264 265
      for (int i=0;i<cc;i++) buff_ptrs.push_back(buff_tmp[i]);
      samples_received = s->rx_stream->recv(buff_ptrs, nsamps, s->rx_md);
    } else {
266
    // receive a single channel (e.g. from connector RF A)
267 268
      samples_received = s->rx_stream->recv(buff_tmp[0], nsamps, s->rx_md);
    }
269

270
  // bring RX data into 12 LSBs for softmodem RX
271 272
    for (int i=0;i<cc;i++) {
      for (int j=0; j<nsamps2; j++) {      
273 274
#if defined(__x86_64__) || defined(__i386__)
#ifdef __AVX2__
275
        ((__m256i *)buff[i])[j] = _mm256_srai_epi16(buff_tmp[i][j],4);
276
#else
277
        ((__m128i *)buff[i])[j] = _mm_srai_epi16(buff_tmp[i][j],4);
278 279
#endif
#elif defined(__arm__)
280
        ((int16x8_t*)buff[i])[j] = vshrq_n_s16(buff_tmp[i][j],4);
281
#endif
282
      }
283
    }
284
  } else if (device->type == USRP_X300_DEV) {
285
    if (cc>1) { 
286 287 288 289 290 291 292 293
    // receive multiple channels (e.g. RF A and RF B)
      std::vector<void *> buff_ptrs;
 
      for (int i=0;i<cc;i++) buff_ptrs.push_back(buff[i]);
      samples_received = s->rx_stream->recv(buff_ptrs, nsamps, s->rx_md);
    } else {
    // receive a single channel (e.g. from connector RF A)
      samples_received = s->rx_stream->recv(buff[0], nsamps, s->rx_md);
294
    }
295
  }
296

Raymond Knopp's avatar
 
Raymond Knopp committed
297 298 299 300
  if (samples_received < nsamps) {
    printf("[recv] received %d samples out of %d\n",samples_received,nsamps);
    
  }
301

Raymond Knopp's avatar
 
Raymond Knopp committed
302 303 304 305 306 307 308 309 310 311 312 313 314 315 316
  //handle the error code
  switch(s->rx_md.error_code){
  case uhd::rx_metadata_t::ERROR_CODE_NONE:
    break;
  case uhd::rx_metadata_t::ERROR_CODE_OVERFLOW:
    printf("[recv] USRP RX OVERFLOW!\n");
    s->num_overflows++;
    break;
  case uhd::rx_metadata_t::ERROR_CODE_TIMEOUT:
    printf("[recv] USRP RX TIMEOUT!\n");
    break;
  default:
    printf("[recv] Unexpected error on RX, Error code: 0x%x\n",s->rx_md.error_code);
    break;
  }
Raymond Knopp's avatar
 
Raymond Knopp committed
317 318 319
  s->rx_count += nsamps;
  s->rx_timestamp = s->rx_md.time_spec.to_ticks(s->sample_rate);
  *ptimestamp = s->rx_timestamp;
320

321 322 323 324 325 326 327 328 329 330 331 332 333 334
   clock_gettime(CLOCK_MONOTONIC_RAW, &tp_end);
   time_diff = (tp_end.tv_sec - tp_start.tv_sec) *1E09  + (tp_end.tv_nsec - tp_start.tv_nsec);
   if  (time_min==0 ||loop==1 || time_min > time_diff)
     time_min=time_diff;
   if  (time_max==0 || loop==1|| time_max < time_diff)
     time_max=time_diff;
   if (time_avg ==0 ||loop==1)
     time_avg= time_diff;
   else
     time_avg=(time_diff+time_avg) /2.0;
   if ( loop % 10000==0)
     printf("\n usrp_read: min(ns)=%d, max(ns)=%d, avg(ns)=%d", (int)time_min, (int)time_max,(int)time_avg);
   loop++;
   return samples_received;
Raymond Knopp's avatar
 
Raymond Knopp committed
335 336
}

337 338 339
/*! \brief Get current timestamp of USRP
 * \param device the hardware to use
*/
Raymond Knopp's avatar
 
Raymond Knopp committed
340 341 342 343 344 345 346 347
openair0_timestamp get_usrp_time(openair0_device *device) 
{
 
  usrp_state_t *s = (usrp_state_t*)device->priv;
  
  return s->usrp->get_time_now().to_ticks(s->sample_rate);
} 

348 349 350 351
/*! \brief Compares two variables within precision
 * \param a first variable
 * \param b second variable
*/
Raymond Knopp's avatar
 
Raymond Knopp committed
352 353 354 355
static bool is_equal(double a, double b)
{
  return std::fabs(a-b) < std::numeric_limits<double>::epsilon();
}
Raymond Knopp's avatar
 
Raymond Knopp committed
356

357 358 359 360 361 362
/*! \brief Set frequencies (TX/RX)
 * \param device the hardware to use
 * \param openair0_cfg RF frontend parameters set by application
 * \param dummy dummy variable not used
 * \returns 0 in success 
 */
363
int trx_usrp_set_freq(openair0_device* device, openair0_config_t *openair0_cfg, int dummy) {
Raymond Knopp's avatar
 
Raymond Knopp committed
364 365 366

  usrp_state_t *s = (usrp_state_t*)device->priv;

367
  printf("Setting USRP TX Freq %f, RX Freq %f\n",openair0_cfg[0].tx_freq[0],openair0_cfg[0].rx_freq[0]);
Raymond Knopp's avatar
 
Raymond Knopp committed
368 369 370 371 372 373 374
  s->usrp->set_tx_freq(openair0_cfg[0].tx_freq[0]);
  s->usrp->set_rx_freq(openair0_cfg[0].rx_freq[0]);

  return(0);
  
}

375 376 377 378 379
/*! \brief Set RX frequencies 
 * \param device the hardware to use
 * \param openair0_cfg RF frontend parameters set by application
 * \returns 0 in success 
 */
Raymond Knopp's avatar
 
Raymond Knopp committed
380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396
int openair0_set_rx_frequencies(openair0_device* device, openair0_config_t *openair0_cfg) {

  usrp_state_t *s = (usrp_state_t*)device->priv;
  static int first_call=1;
  static double rf_freq,diff;

  uhd::tune_request_t rx_tune_req(openair0_cfg[0].rx_freq[0]);

  rx_tune_req.rf_freq_policy = uhd::tune_request_t::POLICY_MANUAL;
  rx_tune_req.rf_freq = openair0_cfg[0].rx_freq[0];
  rf_freq=openair0_cfg[0].rx_freq[0];
  s->usrp->set_rx_freq(rx_tune_req);

  return(0);
  
}

397 398 399 400 401
/*! \brief Set Gains (TX/RX)
 * \param device the hardware to use
 * \param openair0_cfg RF frontend parameters set by application
 * \returns 0 in success 
 */
402
int trx_usrp_set_gains(openair0_device* device, 
403
		       openair0_config_t *openair0_cfg) {
Raymond Knopp's avatar
 
Raymond Knopp committed
404 405 406 407

  usrp_state_t *s = (usrp_state_t*)device->priv;

  s->usrp->set_tx_gain(openair0_cfg[0].tx_gain[0]);
408 409 410 411 412 413 414 415 416
  ::uhd::gain_range_t gain_range = s->usrp->get_rx_gain_range(0);
  // limit to maximum gain
  if (openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0] > gain_range.stop()) {
    
    printf("RX Gain 0 too high, reduce by %f dB\n",
	   openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0] - gain_range.stop());	   
    exit(-1);
  }
  s->usrp->set_rx_gain(openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0]);
417
  printf("Setting USRP RX gain to %f (rx_gain %f,gain_range.stop() %f)\n", openair0_cfg[0].rx_gain[0]-openair0_cfg[0].rx_gain_offset[0],openair0_cfg[0].rx_gain[0],gain_range.stop());
418

Raymond Knopp's avatar
 
Raymond Knopp committed
419 420
  return(0);
}
421

422 423 424
/*! \brief Stop USRP
 * \param card refers to the hardware index to use
 */
425
int trx_usrp_stop(openair0_device* device) {
426 427
  return(0);
}
428

429
/*! \brief USRPB210 RX calibration table */
430
rx_gain_calib_table_t calib_table_b210[] = {
Raymond Knopp's avatar
Raymond Knopp committed
431 432 433 434 435
  {3500000000.0,44.0},
  {2660000000.0,49.0},
  {2300000000.0,50.0},
  {1880000000.0,53.0},
  {816000000.0,58.0},
436 437
  {-1,0}};

438
/*! \brief USRPB210 RX calibration table */
439 440 441 442 443 444
rx_gain_calib_table_t calib_table_b210_38[] = {
  {3500000000.0,44.0},
  {2660000000.0,49.8},
  {2300000000.0,51.0},
  {1880000000.0,53.0},
  {816000000.0,57.0},
445 446
  {-1,0}};

447
/*! \brief USRPx310 RX calibration table */
448 449
rx_gain_calib_table_t calib_table_x310[] = {
  {3500000000.0,77.0},
450
  {2660000000.0,81.0},
451 452
  {2300000000.0,81.0},
  {1880000000.0,82.0},
453
  {816000000.0,85.0},
454 455
  {-1,0}};

456 457 458 459 460
/*! \brief Set RX gain offset 
 * \param openair0_cfg RF frontend parameters set by application
 * \param chain_index RF chain to apply settings to
 * \returns 0 in success 
 */
461
void set_rx_gain_offset(openair0_config_t *openair0_cfg, int chain_index,int bw_gain_adjust) {
462 463 464

  int i=0;
  // loop through calibration table to find best adjustment factor for RX frequency
465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
  double min_diff = 6e9,diff,gain_adj=0.0;
  if (bw_gain_adjust==1) {
    switch ((int)openair0_cfg[0].sample_rate) {
    case 30720000:      
      break;
    case 23040000:
      gain_adj=1.25;
      break;
    case 15360000:
      gain_adj=3.0;
      break;
    case 7680000:
      gain_adj=6.0;
      break;
    case 3840000:
      gain_adj=9.0;
      break;
    case 1920000:
      gain_adj=12.0;
      break;
    default:
      printf("unknown sampling rate %d\n",(int)openair0_cfg[0].sample_rate);
      exit(-1);
      break;
    }
  }
491 492
  while (openair0_cfg->rx_gain_calib_table[i].freq>0) {
    diff = fabs(openair0_cfg->rx_freq[chain_index] - openair0_cfg->rx_gain_calib_table[i].freq);
493
    printf("cal %d: freq %f, offset %f, diff %f\n",
494 495 496
	   i,
	   openair0_cfg->rx_gain_calib_table[i].freq,
	   openair0_cfg->rx_gain_calib_table[i].offset,diff);
497 498
    if (min_diff > diff) {
      min_diff = diff;
499
      openair0_cfg->rx_gain_offset[chain_index] = openair0_cfg->rx_gain_calib_table[i].offset+gain_adj;
500 501 502 503 504 505
    }
    i++;
  }
  
}

506 507 508 509
/*! \brief print the USRP statistics  
* \param device the hardware to use
* \returns  0 on success
*/
510
int trx_usrp_get_stats(openair0_device* device) {
511

512 513 514
  return(0);

}
515 516 517 518 519

/*! \brief Reset the USRP statistics  
* \param device the hardware to use
* \returns  0 on success
*/
520
int trx_usrp_reset_stats(openair0_device* device) {
521 522 523 524

  return(0);

}
525

526

527

528
extern "C" {
529 530 531 532
/*! \brief Initialize Openair USRP target. It returns 0 if OK
* \param device the hardware to use
* \param openair0_cfg RF frontend parameters set by application
*/
533
  int device_init(openair0_device* device, openair0_config_t *openair0_cfg) {
534
    
535 536 537 538 539
    uhd::set_thread_priority_safe(1.0);
    usrp_state_t *s = (usrp_state_t*)malloc(sizeof(usrp_state_t));
    memset(s, 0, sizeof(usrp_state_t));
    
    // Initialize USRP device
Raymond Knopp's avatar
 
Raymond Knopp committed
540

541
  device->openair0_cfg = openair0_cfg;
Raymond Knopp's avatar
 
Raymond Knopp committed
542

Raymond Knopp's avatar
 
Raymond Knopp committed
543
  std::string args = "type=b200";
Raymond Knopp's avatar
Raymond Knopp committed
544 545


Raymond Knopp's avatar
 
Raymond Knopp committed
546
  uhd::device_addrs_t device_adds = uhd::device::find(args);
Raymond Knopp's avatar
 
Raymond Knopp committed
547
  size_t i;
548 549 550 551 552
  
  int vers=0,subvers=0,subsubvers=0;
  int bw_gain_adjust=0;

  sscanf(uhd::get_version_string().c_str(),"%d.%d.%d",&vers,&subvers,&subsubvers);
Raymond Knopp's avatar
 
Raymond Knopp committed
553

554
  printf("Checking for USRPs : UHD %s (%d.%d.%d)\n",uhd::get_version_string().c_str(),vers,subvers,subsubvers);
555
  
Raymond Knopp's avatar
 
Raymond Knopp committed
556 557
  if(device_adds.size() == 0)
  {
558 559 560 561 562 563 564
    double usrp_master_clock = 184.32e6;

    std::string args = "type=x300";
    
    // workaround for an api problem, master clock has to be set with the constructor not via set_master_clock_rate
    args += boost::str(boost::format(",master_clock_rate=%f") % usrp_master_clock);
    
565 566
    args += ",num_send_frames=256,num_recv_frames=256, send_frame_size=4096, recv_frame_size=4096";
    
567
    uhd::device_addrs_t device_adds = uhd::device::find(args);
Raymond Knopp's avatar
 
Raymond Knopp committed
568

569 570 571 572 573
    if(device_adds.size() == 0)
    {
      std::cerr<<"No USRP Device Found. " << std::endl;
      free(s);
      return -1;
Raymond Knopp's avatar
Raymond Knopp committed
574

575
    }
Raymond Knopp's avatar
Raymond Knopp committed
576

577

578 579 580 581 582 583 584 585
    printf("Found USRP X300\n");
    s->usrp = uhd::usrp::multi_usrp::make(args);
    //  s->usrp->set_rx_subdev_spec(rx_subdev);
    //  s->usrp->set_tx_subdev_spec(tx_subdev);

    // lock mboard clocks
    s->usrp->set_clock_source("internal");
    
586
    //Setting device type to USRP X300/X310 
587
    device->type=USRP_X300_DEV;
588

589 590 591
    // this is not working yet, master clock has to be set via constructor
    // set master clock rate and sample rate for tx & rx for streaming
    //s->usrp->set_master_clock_rate(usrp_master_clock);
592 593

    openair0_cfg[0].rx_gain_calib_table = calib_table_x310;
594
    
595 596
    switch ((int)openair0_cfg[0].sample_rate) {
    case 30720000:
597
            // from usrp_time_offset
598
      //openair0_cfg[0].samples_per_packet    = 2048;
599
      openair0_cfg[0].tx_sample_advance     = 15;
600 601
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
602
      break;
603
    case 15360000:
604
      //openair0_cfg[0].samples_per_packet    = 2048;
605
      openair0_cfg[0].tx_sample_advance     = 45;
606 607
      openair0_cfg[0].tx_bw                 = 10e6;
      openair0_cfg[0].rx_bw                 = 10e6;
608
      break;
609
    case 7680000:
610
      //openair0_cfg[0].samples_per_packet    = 2048;
611
      openair0_cfg[0].tx_sample_advance     = 50;
612 613
      openair0_cfg[0].tx_bw                 = 5e6;
      openair0_cfg[0].rx_bw                 = 5e6;
614
      break;
615
    case 1920000:
616
      //openair0_cfg[0].samples_per_packet    = 2048;
617
      openair0_cfg[0].tx_sample_advance     = 50;
618 619
      openair0_cfg[0].tx_bw                 = 1.25e6;
      openair0_cfg[0].rx_bw                 = 1.25e6;
620 621 622 623 624 625 626
      break;
    default:
      printf("Error: unknown sampling rate %f\n",openair0_cfg[0].sample_rate);
      exit(-1);
      break;
    }

627 628
  } else {
    printf("Found USRP B200");
629
    args += ",num_send_frames=256,num_recv_frames=256, send_frame_size=4096, recv_frame_size=4096" ; 
630 631 632 633
    s->usrp = uhd::usrp::multi_usrp::make(args);

    //  s->usrp->set_rx_subdev_spec(rx_subdev);
    //  s->usrp->set_tx_subdev_spec(tx_subdev);
634 635 636 637
    
    // do not explicitly set the clock to "internal", because this will disable the gpsdo
    //    // lock mboard clocks
    //    s->usrp->set_clock_source("internal");
638
    // set master clock rate and sample rate for tx & rx for streaming
639

640
    device->type = USRP_B200_DEV;
641

Raymond Knopp's avatar
Raymond Knopp committed
642

643 644 645 646 647 648 649 650
    if ((vers == 3) && (subvers == 9) && (subsubvers>=2)) {
      openair0_cfg[0].rx_gain_calib_table = calib_table_b210;
      bw_gain_adjust=0;
    }
    else {
      openair0_cfg[0].rx_gain_calib_table = calib_table_b210_38;
      bw_gain_adjust=1;
    }
651

652 653
    switch ((int)openair0_cfg[0].sample_rate) {
    case 30720000:
654
      s->usrp->set_master_clock_rate(30.72e6);
655
      //openair0_cfg[0].samples_per_packet    = 1024;
656
      openair0_cfg[0].tx_sample_advance     = 115;
657 658
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
659
      break;
660
    case 23040000:
661
      s->usrp->set_master_clock_rate(23.04e6); //to be checked
662
      //openair0_cfg[0].samples_per_packet    = 1024;
663
      openair0_cfg[0].tx_sample_advance     = 113;
664 665
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
666
      break;
667
    case 15360000:
668
      s->usrp->set_master_clock_rate(30.72e06);
669
      //openair0_cfg[0].samples_per_packet    = 1024;
670
      openair0_cfg[0].tx_sample_advance     = 103; 
671 672
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
673
      break;
674
    case 7680000:
Rohit Gupta's avatar
Rohit Gupta committed
675
      s->usrp->set_master_clock_rate(30.72e6);
676
      //openair0_cfg[0].samples_per_packet    = 1024;
677
      openair0_cfg[0].tx_sample_advance     = 80;
678 679
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
680
      break;
681
    case 1920000:
682
      s->usrp->set_master_clock_rate(30.72e6);
683
      //openair0_cfg[0].samples_per_packet    = 1024;
684
      openair0_cfg[0].tx_sample_advance     = 40;
685 686
      openair0_cfg[0].tx_bw                 = 20e6;
      openair0_cfg[0].rx_bw                 = 20e6;
687 688 689 690 691 692 693
      break;
    default:
      printf("Error: unknown sampling rate %f\n",openair0_cfg[0].sample_rate);
      exit(-1);
      break;
    }
  }
Raymond Knopp's avatar
Raymond Knopp committed
694

695
  /* device specific */
696 697
  //openair0_cfg[0].txlaunch_wait = 1;//manage when TX processing is triggered
  //openair0_cfg[0].txlaunch_wait_slotcount = 1; //manage when TX processing is triggered
698 699
  openair0_cfg[0].iq_txshift = 4;//shift
  openair0_cfg[0].iq_rxrescale = 15;//rescale iqs
700
  
Raymond Knopp's avatar
 
Raymond Knopp committed
701
  for(i=0;i<s->usrp->get_rx_num_channels();i++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
702
    if (i<openair0_cfg[0].rx_num_channels) {
Raymond Knopp's avatar
Raymond Knopp committed
703
      s->usrp->set_rx_rate(openair0_cfg[0].sample_rate,i);
704 705
      //s->usrp->set_rx_bandwidth(openair0_cfg[0].rx_bw,i);
      //printf("Setting rx freq/gain on channel %lu/%lu : BW %f (readback %f)\n",i,s->usrp->get_rx_num_channels(),openair0_cfg[0].rx_bw/1e6,s->usrp->get_rx_bandwidth(i)/1e6);
Raymond Knopp's avatar
Raymond Knopp committed
706
      s->usrp->set_rx_freq(openair0_cfg[0].rx_freq[i],i);
707
      set_rx_gain_offset(&openair0_cfg[0],i,bw_gain_adjust);
708 709 710 711 712 713 714 715 716 717 718 719

      ::uhd::gain_range_t gain_range = s->usrp->get_rx_gain_range(i);
      // limit to maximum gain
      if (openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i] > gain_range.stop()) {
	
        printf("RX Gain %lu too high, lower by %f dB\n",i,openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i] - gain_range.stop());
	exit(-1);
      }
      s->usrp->set_rx_gain(openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i],i);
      printf("RX Gain %lu %f (%f) => %f (max %f)\n",i,
	     openair0_cfg[0].rx_gain[i],openair0_cfg[0].rx_gain_offset[i],
	     openair0_cfg[0].rx_gain[i]-openair0_cfg[0].rx_gain_offset[i],gain_range.stop());
Raymond Knopp's avatar
 
Raymond Knopp committed
720 721
    }
  }
Raymond Knopp's avatar
 
Raymond Knopp committed
722
  for(i=0;i<s->usrp->get_tx_num_channels();i++) {
Raymond Knopp's avatar
 
Raymond Knopp committed
723
    if (i<openair0_cfg[0].tx_num_channels) {
Raymond Knopp's avatar
Raymond Knopp committed
724
      s->usrp->set_tx_rate(openair0_cfg[0].sample_rate,i);
725 726
      //s->usrp->set_tx_bandwidth(openair0_cfg[0].tx_bw,i);
      //printf("Setting tx freq/gain on channel %lu/%lu: BW %f (readback %f)\n",i,s->usrp->get_tx_num_channels(),openair0_cfg[0].tx_bw/1e6,s->usrp->get_tx_bandwidth(i)/1e6);
Raymond Knopp's avatar
Raymond Knopp committed
727 728
      s->usrp->set_tx_freq(openair0_cfg[0].tx_freq[i],i);
      s->usrp->set_tx_gain(openair0_cfg[0].tx_gain[i],i);
Raymond Knopp's avatar
 
Raymond Knopp committed
729 730
    }
  }
Raymond Knopp's avatar
Raymond Knopp committed
731 732


Raymond Knopp's avatar
 
Raymond Knopp committed
733 734
  // display USRP settings
  std::cout << boost::format("Actual master clock: %fMHz...") % (s->usrp->get_master_clock_rate()/1e6) << std::endl;
735 736
  
  sleep(1);
Raymond Knopp's avatar
 
Raymond Knopp committed
737 738

  // create tx & rx streamer
Raymond Knopp's avatar
 
Raymond Knopp committed
739
  uhd::stream_args_t stream_args_rx("sc16", "sc16");
Raymond Knopp's avatar
 
Raymond Knopp committed
740
  //stream_args_rx.args["spp"] = str(boost::format("%d") % 2048);//(openair0_cfg[0].rx_num_channels*openair0_cfg[0].samples_per_packet));
Raymond Knopp's avatar
 
Raymond Knopp committed
741
  for (i = 0; i<openair0_cfg[0].rx_num_channels; i++)
Raymond Knopp's avatar
 
Raymond Knopp committed
742 743 744 745 746 747 748
    stream_args_rx.channels.push_back(i);
  s->rx_stream = s->usrp->get_rx_stream(stream_args_rx);
  std::cout << boost::format("rx_max_num_samps %u") % (s->rx_stream->get_max_num_samps()) << std::endl;
  //openair0_cfg[0].samples_per_packet = s->rx_stream->get_max_num_samps();

  uhd::stream_args_t stream_args_tx("sc16", "sc16");
  //stream_args_tx.args["spp"] = str(boost::format("%d") % 2048);//(openair0_cfg[0].tx_num_channels*openair0_cfg[0].samples_per_packet));
Raymond Knopp's avatar
 
Raymond Knopp committed
749
  for (i = 0; i<openair0_cfg[0].tx_num_channels; i++)
Raymond Knopp's avatar
 
Raymond Knopp committed
750 751
      stream_args_tx.channels.push_back(i);
  s->tx_stream = s->usrp->get_tx_stream(stream_args_tx);
Raymond Knopp's avatar
 
Raymond Knopp committed
752 753
  std::cout << boost::format("tx_max_num_samps %u") % (s->tx_stream->get_max_num_samps()) << std::endl;

Raymond Knopp's avatar
 
Raymond Knopp committed
754

755 756 757 758 759
 /* Setting TX/RX BW after streamers are created due to USRP calibration issue */
  for(i=0;i<s->usrp->get_tx_num_channels();i++) {
    if (i<openair0_cfg[0].tx_num_channels) {
      s->usrp->set_tx_bandwidth(openair0_cfg[0].tx_bw,i);
      printf("Setting tx freq/gain on channel %lu/%lu: BW %f (readback %f)\n",i,s->usrp->get_tx_num_channels(),openair0_cfg[0].tx_bw/1e6,s->usrp->get_tx_bandwidth(i)/1e6);
Rohit Gupta's avatar
Rohit Gupta committed
760 761 762 763 764
    }
  }
  for(i=0;i<s->usrp->get_rx_num_channels();i++) {
    if (i<openair0_cfg[0].rx_num_channels) {
      s->usrp->set_rx_bandwidth(openair0_cfg[0].rx_bw,i);
765 766 767 768
      printf("Setting rx freq/gain on channel %lu/%lu : BW %f (readback %f)\n",i,s->usrp->get_rx_num_channels(),openair0_cfg[0].rx_bw/1e6,s->usrp->get_rx_bandwidth(i)/1e6);
    }
  }

Raymond Knopp's avatar
 
Raymond Knopp committed
769
  s->usrp->set_time_now(uhd::time_spec_t(0.0));
770
 
771

Raymond Knopp's avatar
Raymond Knopp committed
772 773
  for (i=0;i<openair0_cfg[0].rx_num_channels;i++) {
    if (i<openair0_cfg[0].rx_num_channels) {
Raymond Knopp's avatar
 
Raymond Knopp committed
774
      printf("RX Channel %lu\n",i);
Raymond Knopp's avatar
Raymond Knopp committed
775 776 777 778 779 780 781 782 783 784 785
      std::cout << boost::format("Actual RX sample rate: %fMSps...") % (s->usrp->get_rx_rate(i)/1e6) << std::endl;
      std::cout << boost::format("Actual RX frequency: %fGHz...") % (s->usrp->get_rx_freq(i)/1e9) << std::endl;
      std::cout << boost::format("Actual RX gain: %f...") % (s->usrp->get_rx_gain(i)) << std::endl;
      std::cout << boost::format("Actual RX bandwidth: %fM...") % (s->usrp->get_rx_bandwidth(i)/1e6) << std::endl;
      std::cout << boost::format("Actual RX antenna: %s...") % (s->usrp->get_rx_antenna(i)) << std::endl;
    }
  }

  for (i=0;i<openair0_cfg[0].tx_num_channels;i++) {

    if (i<openair0_cfg[0].tx_num_channels) { 
Raymond Knopp's avatar
 
Raymond Knopp committed
786
      printf("TX Channel %lu\n",i);
Raymond Knopp's avatar
Raymond Knopp committed
787 788 789 790 791 792 793 794
      std::cout << std::endl<<boost::format("Actual TX sample rate: %fMSps...") % (s->usrp->get_tx_rate(i)/1e6) << std::endl;
      std::cout << boost::format("Actual TX frequency: %fGHz...") % (s->usrp->get_tx_freq(i)/1e9) << std::endl;
      std::cout << boost::format("Actual TX gain: %f...") % (s->usrp->get_tx_gain(i)) << std::endl;
      std::cout << boost::format("Actual TX bandwidth: %fM...") % (s->usrp->get_tx_bandwidth(i)/1e6) << std::endl;
      std::cout << boost::format("Actual TX antenna: %s...") % (s->usrp->get_tx_antenna(i)) << std::endl;
    }
  }

Raymond Knopp's avatar
 
Raymond Knopp committed
795
  std::cout << boost::format("Device timestamp: %f...") % (s->usrp->get_time_now().get_real_secs()) << std::endl;
Raymond Knopp's avatar
 
Raymond Knopp committed
796 797 798 799

  device->priv = s;
  device->trx_start_func = trx_usrp_start;
  device->trx_write_func = trx_usrp_write;
800 801 802 803 804 805 806
  device->trx_read_func  = trx_usrp_read;
  device->trx_get_stats_func = trx_usrp_get_stats;
  device->trx_reset_stats_func = trx_usrp_reset_stats;
  device->trx_end_func   = trx_usrp_end;
  device->trx_stop_func  = trx_usrp_stop;
  device->trx_set_freq_func = trx_usrp_set_freq;
  device->trx_set_gains_func   = trx_usrp_set_gains;
807 808
  device->openair0_cfg = openair0_cfg;

809
  s->sample_rate = openair0_cfg[0].sample_rate;
Raymond Knopp's avatar
 
Raymond Knopp committed
810 811 812 813 814 815 816 817 818
  // TODO:
  // init tx_forward_nsamps based usrp_time_offset ex
  if(is_equal(s->sample_rate, (double)30.72e6))
    s->tx_forward_nsamps  = 176;
  if(is_equal(s->sample_rate, (double)15.36e6))
    s->tx_forward_nsamps = 90;
  if(is_equal(s->sample_rate, (double)7.68e6))
    s->tx_forward_nsamps = 50;
  return 0;
819
  }
Raymond Knopp's avatar
 
Raymond Knopp committed
820
}
821
/*@}*/