common_lib.h 21.6 KB
Newer Older
1 2 3 4 5
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
6
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
7 8 9 10 11 12 13 14 15 16 17 18 19 20
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */
21

22 23
/*! \file common_lib.h
 * \brief common APIs for different RF frontend device
24 25 26 27 28 29 30 31
 * \author HongliangXU, Navid Nikaein
 * \date 2015
 * \version 0.2
 * \company Eurecom
 * \maintainer:  navid.nikaein@eurecom.fr
 * \note
 * \warning
 */
32

Raymond Knopp's avatar
 
Raymond Knopp committed
33 34 35
#ifndef COMMON_LIB_H
#define COMMON_LIB_H
#include <stdint.h>
36
#include <stdio.h>
37
#include <sys/types.h>
38
#include <openair1/PHY/TOOLS/tools_defs.h>
39
#include "record_player.h"
40
#include <common/utils/threadPool/thread-pool.h>
Raymond Knopp's avatar
 
Raymond Knopp committed
41

42
/* default name of shared library implementing the radio front end */
43
#define OAI_RF_LIBNAME        "oai_device"
44
/* name of shared library implementing the transport */
45
#define OAI_TP_LIBNAME        "oai_transpro"
46 47
/* name of shared library implementing a third-party transport */
#define OAI_THIRDPARTY_TP_LIBNAME        "thirdparty_transpro"
48
/* name of shared library implementing the rf simulator */
49
#define OAI_RFSIM_LIBNAME     "rfsimulator"
50 51 52
/* name of shared library implementing the iq player */
#define OAI_IQPLAYER_LIBNAME  "oai_iqplayer"

53
/* flags for BBU to determine whether the attached radio head is local or remote */
54 55
#define RAU_LOCAL_RADIO_HEAD  0
#define RAU_REMOTE_RADIO_HEAD 1
56
#define RAU_REMOTE_THIRDPARTY_RADIO_HEAD 2
WANG Tsu-Han's avatar
WANG Tsu-Han committed
57 58
#define MAX_WRITE_THREAD_PACKAGE     10
#define MAX_WRITE_THREAD_BUFFER_SIZE 8
Laurent THOMAS's avatar
Laurent THOMAS committed
59
#define MAX_CARDS 8
60

Raymond Knopp's avatar
 
Raymond Knopp committed
61
typedef int64_t openair0_timestamp;
62
typedef volatile int64_t openair0_vtimestamp;
63

64

65
/*!\brief structure holds the parameters to configure USRP devices*/
Raymond Knopp's avatar
 
Raymond Knopp committed
66
typedef struct openair0_device_t openair0_device;
67

68
//#define USRP_GAIN_OFFSET (56.0)  // 86 calibrated for USRP B210 @ 2.6 GHz to get equivalent RS EPRE in OAI to SMBV100 output
Raymond Knopp's avatar
 
Raymond Knopp committed
69

Raymond Knopp's avatar
 
Raymond Knopp committed
70 71 72 73
typedef enum {
  max_gain=0,med_gain,byp_gain
} rx_gain_t;

74 75 76 77
typedef enum {
  duplex_mode_TDD=1,duplex_mode_FDD=0
} duplex_mode_t;

78

79
/** @addtogroup _GENERIC_PHY_RF_INTERFACE_
80 81
 * @{
 */
82 83 84 85 86 87 88 89
/*!\brief RF device types
 */
typedef enum {
  MIN_RF_DEV_TYPE = 0,
  /*!\brief device is USRP B200/B210*/
  USRP_B200_DEV,
  /*!\brief device is USRP X300/X310*/
  USRP_X300_DEV,
90 91
  /*!\brief device is USRP N300/N310*/
  USRP_N300_DEV,
92 93
  /*!\brief device is USRP X400/X410*/
  USRP_X400_DEV,
94 95
  /*!\brief device is BLADE RF*/
  BLADERF_DEV,
96 97
  /*!\brief device is LMSSDR (SoDeRa)*/
  LMSSDR_DEV,
98 99
  /*!\brief device is Iris */
  IRIS_DEV,
100 101
  /*!\brief device is NONE*/
  NONE_DEV,
102 103
  /*!\brief device is UEDv2 */
  UEDv2_DEV,
Laurent Thomas's avatar
Laurent Thomas committed
104
  RFSIMULATOR,
105 106
  MAX_RF_DEV_TYPE
} dev_type_t;
107 108 109
/* list of names of devices, needs to match dev_type_t */
extern const char* devtype_names[MAX_RF_DEV_TYPE];

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
/*!\brief transport protocol types
 */
typedef enum {
  MIN_TRANSP_TYPE = 0,
  /*!\brief transport protocol ETHERNET */
  ETHERNET_TP,
  /*!\brief no transport protocol*/
  NONE_TP,
  MAX_TRANSP_TYPE
} transport_type_t;


/*!\brief  openair0 device host type */
typedef enum {
  MIN_HOST_TYPE = 0,
125
  /*!\brief device functions within a RAU */
126
  RAU_HOST,
127
  /*!\brief device functions within a RRU */
128
  RRU_HOST,
129
  MAX_HOST_TYPE
130
} host_type_t;
131

Rohit Gupta's avatar
Rohit Gupta committed
132

133
/*! \brief RF Gain clibration */
134 135 136 137 138 139
typedef struct {
  //! Frequency for which RX chain was calibrated
  double freq;
  //! Offset to be applied to RX gain
  double offset;
} rx_gain_calib_table_t;
Raymond Knopp's avatar
 
Raymond Knopp committed
140

141 142
/*! \brief Clock source types */
typedef enum {
143 144
  //! this means the paramter has not been set
  unset=-1,
145 146 147
  //! This tells the underlying hardware to use the internal reference
  internal=0,
  //! This tells the underlying hardware to use the external reference
148 149 150
  external=1,
  //! This tells the underlying hardware to use the gpsdo reference
  gpsdo=2
151 152
} clock_source_t;

153 154
/*! \brief Radio Tx burst flags */
typedef enum {
155 156 157 158 159 160 161
  TX_BURST_INVALID = 0,
  TX_BURST_MIDDLE = 1,
  TX_BURST_START = 2,
  TX_BURST_END = 3,
  TX_BURST_START_AND_END = 4,
  TX_BURST_END_NO_TIME_SPEC = 10,
} radio_tx_burst_flag_t;
162

163 164 165 166 167
/*! \brief Structure used for initializing UDP read threads */
typedef struct {
  openair0_device *device;
  int thread_id;
  pthread_t pthread;
168 169 170
  notifiedFIFO_t *resp;
} udp_ctx_t;

171

Rohit Gupta's avatar
Rohit Gupta committed
172
/*! \brief RF frontend parameters set by application */
Raymond Knopp's avatar
 
Raymond Knopp committed
173
typedef struct {
174
  //! Module ID for this configuration
175
  int Mod_id;
Rohit Gupta's avatar
Rohit Gupta committed
176
  //! device log level
177
  int log_level;
178 179
  //! duplexing mode
  duplex_mode_t duplex_mode;
180 181
  //! number of downlink resource blocks
  int num_rb_dl;
182
  //! number of samples per frame
183
  unsigned int  samples_per_frame;
184
  //! the sample rate for both transmit and receive.
Raymond Knopp's avatar
 
Raymond Knopp committed
185
  double sample_rate;
186 187
  //! flag to indicate that the device is doing mmapped DMA transfers
  int mmapped_dma;
188 189
  //! offset in samples between TX and RX paths
  int tx_sample_advance;
190
  //! samples per packet on the fronthaul interface
191
  int samples_per_packet;
192
  //! number of RX channels (=RX antennas)
Raymond Knopp's avatar
 
Raymond Knopp committed
193
  int rx_num_channels;
194
  //! number of TX channels (=TX antennas)
Raymond Knopp's avatar
 
Raymond Knopp committed
195
  int tx_num_channels;
196 197 198 199
  //! rx daughter card
  char* rx_subdev;
  //! tx daughter card
  char* tx_subdev;
Raymond Knopp's avatar
Raymond Knopp committed
200
  //! \brief RX base addresses for mmapped_dma
201
  int32_t *rxbase[4];
202 203 204
  //! \brief RX buffer size for direct access
  int rxsize;
  //! \brief TX base addresses for mmapped_dma or direct access
205
  int32_t *txbase[4];
206 207
  //! \brief Center frequency in Hz for RX.
  //! index: [0..rx_num_channels[
Raymond Knopp's avatar
 
Raymond Knopp committed
208
  double rx_freq[4];
209 210
  //! \brief Center frequency in Hz for TX.
  //! index: [0..rx_num_channels[ !!! see lte-ue.c:427 FIXME iterates over rx_num_channels
Raymond Knopp's avatar
 
Raymond Knopp committed
211
  double tx_freq[4];
212
  double tune_offset;
213
  //! \brief memory
214 215
  //! \brief Pointer to Calibration table for RX gains
  rx_gain_calib_table_t *rx_gain_calib_table;
216
  //! mode for rxgain (ExpressMIMO2)
Raymond Knopp's avatar
 
Raymond Knopp committed
217
  rx_gain_t rxg_mode[4];
218
  //! \brief Gain for RX in dB.
219
  //! index: [0..rx_num_channels]
Raymond Knopp's avatar
 
Raymond Knopp committed
220
  double rx_gain[4];
221 222 223
  //! \brief Gain offset (for calibration) in dB
  //! index: [0..rx_num_channels]
  double rx_gain_offset[4];
224
  //! gain for TX in dB
Raymond Knopp's avatar
 
Raymond Knopp committed
225
  double tx_gain[4];
226
  //! RX bandwidth in Hz
Raymond Knopp's avatar
 
Raymond Knopp committed
227
  double rx_bw;
228
  //! TX bandwidth in Hz
Raymond Knopp's avatar
 
Raymond Knopp committed
229
  double tx_bw;
230
  //! clock source
231
  clock_source_t clock_source;
232
  //! timing_source
233
  clock_source_t time_source;
234 235
  //! Manual SDR IP address
  char *sdr_addrs;
236 237
  //! Auto calibration flag
  int autocal[4];
238
  //! rf devices work with x bits iqs when oai have its own iq format
239
  //! the two following parameters are used to convert iqs
240 241
  int iq_txshift;
  int iq_rxrescale;
242 243
  //! Configuration file for LMS7002M
  char *configFilename;
244 245 246 247 248 249 250 251
  //! remote IP/MAC addr for Ethernet interface
  char *remote_addr;
  //! remote port number for Ethernet interface
  unsigned int remote_port;
  //! local IP/MAC addr for Ethernet interface (eNB/BBU, UE)
  char *my_addr;
  //! local port number for Ethernet interface (eNB/BBU, UE)
  unsigned int my_port;
252 253 254
  //! record player configuration, definition in record_player.h
  uint32_t       recplay_mode;
  recplay_conf_t *recplay_conf;
root's avatar
root committed
255 256 257 258 259 260
  //! number of samples per tti
  unsigned int  samples_per_tti;
  //! the sample rate for receive.
  double rx_sample_rate;
  //! the sample rate for transmit.
  double tx_sample_rate;
261 262
  //! check for threequarter sampling rate
  int8_t threequarter_fs;
263 264 265 266 267 268
  //! Flag to indicate this configuration is for NR
  int nr_flag;
  //! NR band number
  int nr_band;
  //! NR scs for raster
  int nr_scs_for_raster;
269
  //! Core IDs for RX FH
270 271 272
  int rxfh_cores[4];
  //! Core IDs for TX FH
  int txfh_cores[4];
Raymond Knopp's avatar
 
Raymond Knopp committed
273 274
} openair0_config_t;

275
/*! \brief RF mapping */
276
typedef struct {
Rohit Gupta's avatar
Rohit Gupta committed
277
  //! card id
278
  int card;
Rohit Gupta's avatar
Rohit Gupta committed
279
  //! rf chain id
280 281 282 283
  int chain;
} openair0_rf_map;


284 285
typedef struct {
  char *remote_addr;
286 287 288 289
  //! remote port number for Ethernet interface (control)
  uint16_t remote_portc;
  //! remote port number for Ethernet interface (user)
  uint16_t remote_portd;
290
  //! local IP/MAC addr for Ethernet interface (eNB/RAU, UE)
291
  char *my_addr;
292 293 294 295
  //! local port number (control) for Ethernet interface (eNB/RAU, UE)
  uint16_t  my_portc;
  //! local port number (user) for Ethernet interface (eNB/RAU, UE)
  uint16_t  my_portd;
296
  //! local Ethernet interface (eNB/RAU, UE)
297
  char *local_if_name;
298
  //! transport type preference  (RAW/UDP)
299
  uint8_t transp_preference;
300 301
  //! compression enable (0: No comp/ 1: A-LAW)
  uint8_t if_compress;
302
} eth_params_t;
303

304
typedef struct {
305 306
  //! Tx buffer for if device, keep one per subframe now to allow multithreading
  void *tx[10];
307 308
  //! Tx buffer (PRACH) for if device
  void *tx_prach;
309 310 311 312
  //! Rx buffer for if device
  void *rx;
} if_buffer_t;

WANG Tsu-Han's avatar
WANG Tsu-Han committed
313 314
typedef struct {
  openair0_timestamp timestamp;
WANG Tsu-Han's avatar
WANG Tsu-Han committed
315
  void *buff[MAX_WRITE_THREAD_BUFFER_SIZE];// buffer to be write;
WANG Tsu-Han's avatar
WANG Tsu-Han committed
316 317 318 319
  int nsamps;
  int cc;
  signed char first_packet;
  signed char last_packet;
320
  int flags_gpio;
WANG Tsu-Han's avatar
WANG Tsu-Han committed
321 322 323
} openair0_write_package_t;

typedef struct {
WANG Tsu-Han's avatar
WANG Tsu-Han committed
324
  openair0_write_package_t write_package[MAX_WRITE_THREAD_PACKAGE];
WANG Tsu-Han's avatar
WANG Tsu-Han committed
325 326 327
  int start;
  int end;
  /// \internal This variable is protected by \ref mutex_write
WANG Tsu-Han's avatar
WANG Tsu-Han committed
328
  int count_write;
WANG Tsu-Han's avatar
WANG Tsu-Han committed
329 330 331 332 333 334 335 336
  /// pthread struct for trx write thread
  pthread_t pthread_write;
  /// pthread attributes for trx write thread
  pthread_attr_t attr_write;
  /// condition varible for trx write thread
  pthread_cond_t cond_write;
  /// mutex for trx write thread
  pthread_mutex_t mutex_write;
337 338
  /// to inform the thread to exit
  bool write_thread_exit;
WANG Tsu-Han's avatar
WANG Tsu-Han committed
339 340
} openair0_thread_t;

341 342 343 344 345 346
typedef struct fhstate_s {
  openair0_timestamp TS[8]; 
  openair0_timestamp TS0;
  openair0_timestamp olddeltaTS[8];
  openair0_timestamp oldTS[8];
  openair0_timestamp TS_read;
347
  int first_read;
348 349 350 351 352 353
  uint32_t *buff[8];
  uint32_t buff_size;
  int r[8];
  int active;
} fhstate_t;

354
/*!\brief structure holds the parameters to configure USRP devices */
Raymond Knopp's avatar
 
Raymond Knopp committed
355
struct openair0_device_t {
WANG Tsu-Han's avatar
WANG Tsu-Han committed
356 357 358
  /*!tx write thread*/
  openair0_thread_t write_thread;

359
  /*!brief Module ID of this device */
360
  int Mod_id;
361 362 363

  /*!brief Component Carrier ID of this device */
  int CC_id;
364

365
  /*!brief Type of this device */
366 367
  dev_type_t type;

368
  /*!brief Transport protocol type that the device supports (in case I/Q samples need to be transported) */
369 370
  transport_type_t transp_type;

371
  /*!brief Type of the device's host (RAU/RRU) */
372
  host_type_t host_type;
373

Aikaterini's avatar
Aikaterini committed
374
  /* !brief RF frontend parameters set by application */
375
  openair0_config_t *openair0_cfg;
376

377 378
  /* !brief ETH params set by application */
  eth_params_t *eth_params;
379 380
  //! record player data, definition in record_player.h
  recplay_state_t *recplay_state;
381 382 383 384
  /* !brief Indicates if device already initialized */
  int is_init;


385
  /*!brief Can be used by driver to hold internal structure*/
Raymond Knopp's avatar
 
Raymond Knopp committed
386 387
  void *priv;

388 389 390
  /*!brief pointer to FH state, used in ECPRI split 8*/
  fhstate_t fhstate;

391 392 393
  /*!brief message response for notification fifo*/
  notifiedFIFO_t *respudpTX;

394 395 396
  /*!brief UDP TX thread context*/
  udp_ctx_t **utx;

397
  /*!brief Used in ECPRI split 8 to indicate numerator of sampling rate ratio*/
398 399
  int sampling_rate_ratio_n;

400
  /*!brief Used in ECPRI split 8 to indicate denominator of sampling rate ratio*/
401 402
  int sampling_rate_ratio_d;

403 404 405
  /*!brief Used in ECPRI split 8 to indicate the TX/RX timing offset*/
  int txrx_offset;

Raymond Knopp's avatar
 
Raymond Knopp committed
406 407
  /* Functions API, which are called by the application*/

408 409 410
  /*! \brief Called to start the 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
411 412
  int (*trx_start_func)(openair0_device *device);

413 414 415 416 417 418 419
 /*! \brief Called to configure the device
      @param device pointer to the device structure specific to the RF hardware target  
  */


  int (*trx_config_func)(openair0_device* device, openair0_config_t *openair0_cfg);

420
  /*! \brief Called to send a request message between RAU-RRU on control port
421
      @param device pointer to the device structure specific to the RF hardware target
422
      @param msg pointer to the message structure passed between RAU-RRU
423 424
      @param msg_len length of the message
  */
425
  int (*trx_ctlsend_func)(openair0_device *device, void *msg, ssize_t msg_len);
426

427
  /*! \brief Called to receive a reply  message between RAU-RRU on control port
428
      @param device pointer to the device structure specific to the RF hardware target
429
      @param msg pointer to the message structure passed between RAU-RRU
430 431
      @param msg_len length of the message
  */
432
  int (*trx_ctlrecv_func)(openair0_device *device, void *msg, ssize_t msg_len);
433

434 435
  /*! \brief Called to send samples to the RF target
      @param device pointer to the device structure specific to the RF hardware target
436
      @param timestamp The timestamp at whicch the first sample MUST be sent
437
      @param buff Buffer which holds the samples (2 dimensional)
438
      @param nsamps number of samples to be sent
439
      @param number of antennas 
440
      @param flags flags must be set to true if timestamp parameter needs to be applied
441
  */
442
  int (*trx_write_func)(openair0_device *device, openair0_timestamp timestamp, void **buff, int nsamps,int antenna_id, int flags);
Raymond Knopp's avatar
 
Raymond Knopp committed
443

444 445 446 447 448 449
  /*! \brief Called to send samples to the 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 (1 dimensional)
      @param nsamps number of samples to be sent
      @param antenna_id index of the antenna if the device has multiple anteannas
450
      @param flags flags must be set to true if timestamp parameter needs to be applied
451
  */
452
  int (*trx_write_func2)(openair0_device *device, openair0_timestamp timestamp, void **buff, int fd_ind,int nsamps, int flags,int nant);
453

454 455
  /*! \brief Receive samples from hardware.
   * Read \ref nsamps samples from each channel to buffers. buff[0] is the array for
Raymond Knopp's avatar
 
Raymond Knopp committed
456 457
   * the first channel. *ptimestamp is the time at which the first sample
   * was received.
458 459
   * \param device the hardware to use
   * \param[out] ptimestamp the time at which the first sample was received.
Rohit Gupta's avatar
Rohit Gupta committed
460
   * \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.
461
   * \param nsamps Number of samples. One sample is 2 byte I + 2 byte Q => 4 byte.
462
   * \param num_antennas number of antennas from which to receive samples
463 464
   * \returns the number of sample read
   */
465 466 467 468 469 470 471 472 473

  int (*trx_read_func)(openair0_device *device, openair0_timestamp *ptimestamp, void **buff, int nsamps,int num_antennas);

  /*! \brief Receive samples from hardware, this version provides a single antenna at a time and returns.
   * 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.
474
   * \param[out] buff A pointer to a buffer[ant_id][] for received samples. The buffer[ant_id] must be large enough to hold the number of samples \ref nsamps * the number of packets.
475
   * \param nsamps Number of samples. One sample is 2 byte I + 2 byte Q => 4 byte.
476
   * \param packet_idx offset into
477 478 479
   * \param antenna_id Index of antenna from which samples were received
   * \returns the number of sample read
   */
480
  int (*trx_read_func2)(openair0_device *device, openair0_timestamp *ptimestamp, uint32_t **buff, int nsamps);
481

482
  /*! \brief print the device statistics
483 484 485 486 487
   * \param device the hardware to use
   * \returns  0 on success
   */
  int (*trx_get_stats_func)(openair0_device *device);

488
  /*! \brief Reset device statistics
489
   * \param device the hardware to use
490
   * \returns 0 in success
491 492
   */
  int (*trx_reset_stats_func)(openair0_device *device);
Raymond Knopp's avatar
 
Raymond Knopp committed
493

494
  /*! \brief Terminate operation of the transceiver -- free all associated resources
Rohit Gupta's avatar
Rohit Gupta committed
495 496
   * \param device the hardware to use
   */
Raymond Knopp's avatar
 
Raymond Knopp committed
497
  void (*trx_end_func)(openair0_device *device);
498

499
  /*! \brief Stop operation of the transceiver
Rohit Gupta's avatar
Rohit Gupta committed
500
   */
501
  int (*trx_stop_func)(openair0_device *device);
502 503 504

  /* Functions API related to UE*/

505
  /*! \brief Set RX feaquencies
Rohit Gupta's avatar
Rohit Gupta committed
506 507
   * \param device the hardware to use
   * \param openair0_cfg RF frontend parameters set by application
508
   * \returns 0 in success
509
   */
Robert Schmidt's avatar
Robert Schmidt committed
510
  int (*trx_set_freq_func)(openair0_device *device, openair0_config_t *openair0_cfg);
511

512
  /*! \brief Set gains
Rohit Gupta's avatar
Rohit Gupta committed
513 514
   * \param device the hardware to use
   * \param openair0_cfg RF frontend parameters set by application
515
   * \returns 0 in success
516
   */
517
  int (*trx_set_gains_func)(openair0_device *device, openair0_config_t *openair0_cfg);
518

519 520 521 522
  /*! \brief RRU Configuration callback
   * \param idx RU index
   * \param arg pointer to capabilities or configuration
   */
523
  void (*configure_rru)(int idx, void *arg);
524 525 526 527

/*! \brief Pointer to generic RRU private information
   */

528

529 530
  void *thirdparty_priv;

531 532 533 534
  /*! \brief Callback for Third-party RRU Initialization routine
     \param device the hardware configuration to use
   */
  int (*thirdparty_init)(openair0_device *device);
535 536 537 538
  /*! \brief Callback for Third-party RRU Cleanup routine
     \param device the hardware configuration to use
   */
  int (*thirdparty_cleanup)(openair0_device *device);
539 540 541 542 543 544

  /*! \brief Callback for Third-party start streaming routine
     \param device the hardware configuration to use
   */
  int (*thirdparty_startstreaming)(openair0_device *device);

WANG Tsu-Han's avatar
WANG Tsu-Han committed
545 546 547 548 549
  /*! \brief RRU Configuration callback
   * \param idx RU index
   * \param arg pointer to capabilities or configuration
   */
  int (*trx_write_init)(openair0_device *device);
550 551 552 553 554
  /* \brief Get internal parameter
   * \param id parameter to get
   * \return a pointer to the parameter
   */
  void *(*get_internal_parameter)(char *id);
555 556 557
  /* \brief timing statistics for TX fronthaul (ethernet)
   */
  time_stats_t tx_fhaul;
Raymond Knopp's avatar
 
Raymond Knopp committed
558 559
};

560
/* type of device init function, implemented in shared lib */
561 562
typedef int(*oai_device_initfunc_t)(openair0_device *device, openair0_config_t *openair0_cfg);
/* type of transport init function, implemented in shared lib */
563
typedef int(*oai_transport_initfunc_t)(openair0_device *device, openair0_config_t *openair0_cfg, eth_params_t *eth_params);
Laurent Thomas's avatar
Laurent Thomas committed
564 565
#define UE_MAGICDL 0xA5A5A5A5A5A5A5A5  // UE DL FDD record
#define UE_MAGICUL 0x5A5A5A5A5A5A5A5A  // UE UL FDD record
566

Laurent Thomas's avatar
Laurent Thomas committed
567 568
#define ENB_MAGICDL 0xB5B5B5B5B5B5B5B5  // eNB DL FDD record
#define ENB_MAGICUL 0x5B5B5B5B5B5B5B5B  // eNB UL FDD record
569 570 571 572 573 574 575 576 577 578 579 580 581 582 583

#define OPTION_LZ4  0x00000001          // LZ4 compression (option_value is set to compressed size)


typedef struct {
  uint64_t magic;          // Magic value (see defines above)
  uint32_t size;           // Number of samples per antenna to follow this header
  uint32_t nbAnt;          // Total number of antennas following this header
  // Samples per antenna follow this header,
  // i.e. nbAnt = 2 => this header+samples_antenna_0+samples_antenna_1
  // data following this header in bytes is nbAnt*size*sizeof(sample_t)
  uint64_t timestamp;      // Timestamp value of first sample
  uint32_t option_value;   // Option value
  uint32_t option_flag;    // Option flag
} samplesBlockHeader_t;
Raymond Knopp's avatar
 
Raymond Knopp committed
584 585 586 587

#ifdef __cplusplus
extern "C"
{
588 589
#endif

590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606

#define  DEVICE_SECTION   "device"
#define  CONFIG_HLP_DEVICE  "Identifies the oai device (the interface to RF) to use, the shared lib \"lib_<name>.so\" will be loaded"

#define  CONFIG_DEVICEOPT_NAME "name"

/* inclusion for device configuration */
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*                                            config parameters for oai device                                                                                               */
/*   optname                     helpstr                paramflags                      XXXptr                  defXXXval                            type           numelt   */
/*---------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
#define DEVICE_PARAMS_DESC {\
    { CONFIG_DEVICEOPT_NAME,      CONFIG_HLP_DEVICE,          0,                strptr:&devname,                 defstrval:NULL,         TYPE_STRING,     0}\
}



607
/*! \brief get device name from device type */
608
const char *get_devname(int devtype);
609 610 611 612
/*! \brief Initialize openair RF target. It returns 0 if OK */
int openair0_device_load(openair0_device *device, openair0_config_t *openair0_cfg);
/*! \brief Initialize transport protocol . It returns 0 if OK */
int openair0_transport_load(openair0_device *device, openair0_config_t *openair0_cfg, eth_params_t *eth_params);
613

614

615 616 617 618 619 620 621 622 623 624 625
/*! \brief Get current timestamp of USRP
 * \param device the hardware to use
 */
openair0_timestamp get_usrp_time(openair0_device *device);

/*! \brief Set RX frequencies
 * \param device the hardware to use
 * \param openair0_cfg RF frontend parameters set by application
 * \returns 0 in success
 */
int openair0_set_rx_frequencies(openair0_device *device, openair0_config_t *openair0_cfg);
626 627 628 629 630
/*! \brief read the iq record/player configuration */
extern int read_recplayconfig(recplay_conf_t **recplay_conf, recplay_state_t **recplay_state);
/*! \brief store recorded iqs from memory to file. */
extern void iqrecorder_end(openair0_device *device);

Rohit Gupta's avatar
Rohit Gupta committed
631

632 633
#include <unistd.h>
#ifndef gettid
laurent's avatar
laurent committed
634
#define gettid() syscall(__NR_gettid)
635
#endif
636
/*@}*/
637

638

639

640
#ifdef __cplusplus
Raymond Knopp's avatar
 
Raymond Knopp committed
641 642 643
}
#endif

Raymond Knopp's avatar
 
Raymond Knopp committed
644
#endif // COMMON_LIB_H
645