defs.h 62.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 24 25 26 27 28 29 30 31 32 33 34

/*! \file PHY/defs.h
 \brief Top-level defines and structure definitions
 \author R. Knopp, F. Kaltenberger
 \date 2011
 \version 0.1
 \company Eurecom
 \email: knopp@eurecom.fr,florian.kaltenberger@eurecom.fr
 \note
 \warning
*/
#ifndef __PHY_DEFS__H__
#define __PHY_DEFS__H__

35

36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#define _GNU_SOURCE
#include <sched.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/types.h>
#include <sys/mman.h>
#include <linux/sched.h>
#include <signal.h>
#include <execinfo.h>
#include <getopt.h>
#include <sys/sysinfo.h>


52 53 54 55 56
#include <stdio.h>
#include <stdlib.h>
#include <malloc.h>
#include <string.h>
#include <math.h>
57
#include "common_lib.h"
58
#include "msc.h"
59

60
#include "openair2/PHY_INTERFACE/IF_Module.h"
61
#include "openair2/PHY_INTERFACE/IF_Module_UE.h"
62

63
//#include <complex.h>
64
#include "assertions.h"
65
#ifdef MEX
66
# define msg mexPrintf
67 68
#endif
//use msg in the real-time thread context
69
#define msg_nrt printf
70
//use msg_nrt in the non real-time context (for initialization, ...)
Cedric Roux's avatar
Cedric Roux committed
71 72 73 74 75 76
#ifndef malloc16
#  ifdef __AVX2__
#    define malloc16(x) memalign(32,x)
#  else
#    define malloc16(x) memalign(16,x)
#  endif
77
#endif
78 79 80 81 82
#define free16(y,x) free(y)
#define bigmalloc malloc
#define bigmalloc16 malloc16
#define openair_free(y,x) free((y))
#define PAGE_SIZE 4096
83 84 85 86 87 88
#define free_and_zero(PtR) do { \
      if (PtR) {           \
        free(PtR);         \
        PtR = NULL;        \
      }                    \
    } while (0)
89

90 91
#define RX_NB_TH_MAX 2
#define RX_NB_TH 2
92

93

94 95 96 97
//! \brief Allocate \c size bytes of memory on the heap with alignment 16 and zero it afterwards.
//! If no more memory is available, this function will terminate the program with an assertion error.
static inline void* malloc16_clear( size_t size )
{
98 99 100
#ifdef __AVX2__
  void* ptr = memalign(32, size);
#else
101
  void* ptr = memalign(16, size);
102
#endif
103 104 105 106
  DevAssert(ptr);
  memset( ptr, 0, size );
  return ptr;
}
107

108 109


110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
#define PAGE_MASK 0xfffff000
#define virt_to_phys(x) (x)

#define openair_sched_exit() exit(-1)


#define max(a,b)  ((a)>(b) ? (a) : (b))
#define min(a,b)  ((a)<(b) ? (a) : (b))


#define bzero(s,n) (memset((s),0,(n)))

#define cmax(a,b)  ((a>b) ? (a) : (b))
#define cmin(a,b)  ((a<b) ? (a) : (b))

#define cmax3(a,b,c) ((cmax(a,b)>c) ? (cmax(a,b)) : (c))

127 128 129
/// suppress compiler warning for unused arguments
#define UNUSED(x) (void)x;

130 131 132 133 134 135 136

#include "impl_defs_top.h"
#include "impl_defs_lte.h"

#include "PHY/TOOLS/time_meas.h"
#include "PHY/CODING/defs.h"
#include "PHY/TOOLS/defs.h"
137
#include "platform_types.h"
138
#define MAX_NUM_RU_PER_eNB 64 
Laurent's avatar
Laurent committed
139

140
#include "PHY/LTE_TRANSPORT/defs.h"
Raymond Knopp's avatar
 
Raymond Knopp committed
141
#include <pthread.h>
142

143
#include "targets/ARCH/COMMON/common_lib.h"
144
#include "targets/COMMON/openairinterface5g_limits.h"
145

146

147
#if defined(EXMIMO) || defined(OAI_USRP)
148 149 150 151
//#define NUMBER_OF_eNB_MAX 1
//#define NUMBER_OF_UE_MAX 16

//#define NUMBER_OF_CONNECTED_eNB_MAX 3
152 153
#else
#ifdef LARGE_SCALE
154 155 156
//#define NUMBER_OF_eNB_MAX 2
//#define NUMBER_OF_UE_MAX 120
//#define NUMBER_OF_CONNECTED_eNB_MAX 1 // to save some memory
157
#else
158 159 160 161
//#define NUMBER_OF_eNB_MAX 3
//#define NUMBER_OF_UE_MAX 16
//#define NUMBER_OF_RU_MAX 64
//#define NUMBER_OF_CONNECTED_eNB_MAX 1
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
#endif
#endif
#define NUMBER_OF_SUBBANDS_MAX 13
#define NUMBER_OF_HARQ_PID_MAX 8

#define MAX_FRAME_NUMBER 0x400



#define NUMBER_OF_RN_MAX 3
typedef enum {no_relay=1,unicast_relay_type1,unicast_relay_type2, multicast_relay} relaying_type_t;



#define MCS_COUNT 28
#define MCS_TABLE_LENGTH_MAX 64


180 181 182 183
#define NUM_DCI_MAX 32

#define NUMBER_OF_eNB_SECTORS_MAX 3

184 185
#define NB_BANDS_MAX 8

186 187 188
#define MAX_BANDS_PER_RRU 4


Laurent's avatar
Laurent committed
189 190 191
#ifdef OCP_FRAMEWORK
#include <enums.h>
#else
192
typedef enum {normal_txrx=0,rx_calib_ue=1,rx_calib_ue_med=2,rx_calib_ue_byp=3,debug_prach=4,no_L2_connect=5,calib_prach_tx=6,rx_dump_frame=7,loop_through_memory=8} runmode_t;
193

194 195 196 197 198 199 200 201
/*! \brief Extension Type */
typedef enum {
  CYCLIC_PREFIX,
  CYCLIC_SUFFIX,
  ZEROS,
  NONE
} Extension_t;
	
202
enum transmission_access_mode {
203 204 205 206 207
  NO_ACCESS=0,
  POSTPONED_ACCESS,
  CANCELED_ACCESS,
  UNKNOWN_ACCESS,
  SCHEDULED_ACCESS,
208 209
  CBA_ACCESS};

210
typedef enum  {
211
  eNodeB_3GPP=0,   // classical eNodeB function
212 213
  NGFI_RAU_IF5,    // RAU with NGFI IF5
  NGFI_RAU_IF4p5,  // RAU with NFGI IF4p5
Raymond Knopp's avatar
Raymond Knopp committed
214
  NGFI_RRU_IF5,    // NGFI_RRU (NGFI remote radio-unit,IF5)
215 216 217
  NGFI_RRU_IF4p5,  // NGFI_RRU (NGFI remote radio-unit,IF4p5)
  MBP_RRU_IF5      // Mobipass RRU
} node_function_t;
218

219
typedef enum {
220

221
  synch_to_ext_device=0,  // synch to RF or Ethernet device
222
  synch_to_other,          // synch to another source_(timer, other RU)
Cedric Roux's avatar
Cedric Roux committed
223
  synch_to_mobipass_standalone  // special case for mobipass in standalone mode
224 225
} node_timing_t;
#endif
226

227 228
typedef struct UE_SCAN_INFO_s {
  /// 10 best amplitudes (linear) for each pss signals
229
  int32_t amp[3][10];
230
  /// 10 frequency offsets (kHz) corresponding to best amplitudes, with respect do minimum DL frequency in the band
231
  int32_t freq_offset_Hz[3][10];
232 233
} UE_SCAN_INFO_t;

234 235 236 237 238 239 240 241 242 243 244 245 246 247
/// Top-level PHY Data Structure for RN
typedef struct {
  /// Module ID indicator for this instance
  uint8_t Mod_id;
  uint32_t frame;
  // phy_vars_eNB
  // phy_vars ue
  // cuurently only used to store and forward the PMCH
  uint8_t mch_avtive[10];
  uint8_t sync_area[10]; // num SF
  LTE_UE_DLSCH_t   *dlsch_rn_MCH[10];

} PHY_VARS_RN;

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
/// Context data structure for RX/TX portion of subframe processing
typedef struct {
  /// Component Carrier index
  uint8_t              CC_id;
  /// timestamp transmitted to HW
  openair0_timestamp timestamp_tx;
  /// subframe to act upon for transmission
  int subframe_tx;
  /// subframe to act upon for reception
  int subframe_rx;
  /// frame to act upon for transmission
  int frame_tx;
  /// frame to act upon for reception
  int frame_rx;
  /// \brief Instance count for RXn-TXnp4 processing thread.
  /// \internal This variable is protected by \ref mutex_rxtx.
  int instance_cnt_rxtx;
  /// pthread structure for RXn-TXnp4 processing thread
  pthread_t pthread_rxtx;
  /// pthread attributes for RXn-TXnp4 processing thread
  pthread_attr_t attr_rxtx;
  /// condition variable for tx processing thread
  pthread_cond_t cond_rxtx;
  /// mutex for RXn-TXnp4 processing thread
  pthread_mutex_t mutex_rxtx;
  /// scheduling parameters for RXn-TXnp4 thread
  struct sched_param sched_param_rxtx;
} eNB_rxtx_proc_t;
276 277 278 279 280 281 282 283 284 285 286 287 288

typedef struct {
  struct PHY_VARS_eNB_s *eNB;
  int UE_id;
  int harq_pid;
  int llr8_flag;
  int ret;
} td_params;

typedef struct {
  struct PHY_VARS_eNB_s *eNB;
  LTE_eNB_DLSCH_t *dlsch;
  int G;
289
  int harq_pid;
290 291
} te_params;

292 293 294
typedef struct RU_proc_t_s {
  /// Pointer to associated RU descriptor
  struct RU_t_s *ru;
295 296 297 298 299 300
  /// timestamp received from HW
  openair0_timestamp timestamp_rx;
  /// timestamp to send to "slave rru"
  openair0_timestamp timestamp_tx;
  /// subframe to act upon for reception
  int subframe_rx;
301 302 303 304
  /// subframe to act upon for transmission
  int subframe_tx;
  /// subframe to act upon for reception of prach
  int subframe_prach;
305 306 307 308
#ifdef Rel14
  /// subframe to act upon for reception of prach BL/CE UEs
  int subframe_prach_br;
#endif
309 310
  /// frame to act upon for reception
  int frame_rx;
311 312
  /// frame to act upon for transmission
  int frame_tx;
313 314
  /// unwrapped frame count
  int frame_tx_unwrap;
315 316
  /// frame to act upon for reception of prach
  int frame_prach;
317 318 319 320
#ifdef Rel14
  /// frame to act upon for reception of prach
  int frame_prach_br;
#endif
321 322
  /// frame offset for slave RUs (to correct for frame asynchronism at startup)
  int frame_offset;
323 324 325
  /// \brief Instance count for FH processing thread.
  /// \internal This variable is protected by \ref mutex_FH.
  int instance_cnt_FH;
326 327
  /// \internal This variable is protected by \ref mutex_prach.
  int instance_cnt_prach;
328 329 330 331
#ifdef Rel14
  /// \internal This variable is protected by \ref mutex_prach.
  int instance_cnt_prach_br;
#endif
332 333 334 335
  /// \internal This variable is protected by \ref mutex_synch.
  int instance_cnt_synch;
  /// \internal This variable is protected by \ref mutex_eNBs.
  int instance_cnt_eNBs;
336 337 338
  /// \brief Instance count for rx processing thread.
  /// \internal This variable is protected by \ref mutex_asynch_rxtx.
  int instance_cnt_asynch_rxtx;
339 340
  /// \internal This variable is protected by \ref mutex_fep
  int instance_cnt_fep;
341 342
  /// \internal This variable is protected by \ref mutex_fep
  int instance_cnt_feptx;
343
  /// pthread structure for RU FH processing thread
344
  pthread_t pthread_FH;
345 346
  /// pthread structure for RU prach processing thread
  pthread_t pthread_prach;
347 348 349 350
#ifdef Rel14
  /// pthread structure for RU prach processing thread BL/CE UEs
  pthread_t pthread_prach_br;
#endif
351 352
  /// pthread struct for RU synch thread
  pthread_t pthread_synch;
353
  /// pthread struct for RU RX FEP worker thread
354
  pthread_t pthread_fep;
355 356
  /// pthread struct for RU RX FEPTX worker thread
  pthread_t pthread_feptx;
357 358 359 360 361 362
  /// pthread structure for asychronous RX/TX processing thread
  pthread_t pthread_asynch_rxtx;
  /// flag to indicate first RX acquisition
  int first_rx;
  /// flag to indicate first TX transmission
  int first_tx;
363
  /// pthread attributes for RU FH processing thread
364
  pthread_attr_t attr_FH;
365 366
  /// pthread attributes for RU prach
  pthread_attr_t attr_prach;
367 368 369 370
#ifdef Rel14
  /// pthread attributes for RU prach BL/CE UEs
  pthread_attr_t attr_prach_br;
#endif
371 372
  /// pthread attributes for RU synch thread
  pthread_attr_t attr_synch;
373 374
  /// pthread attributes for asynchronous RX thread
  pthread_attr_t attr_asynch_rxtx;
375
  /// pthread attributes for worker fep thread
376
  pthread_attr_t attr_fep;
377 378
  /// pthread attributes for worker feptx thread
  pthread_attr_t attr_feptx;
379
  /// scheduling parameters for RU FH thread
380
  struct sched_param sched_param_FH;
381 382
  /// scheduling parameters for RU prach thread
  struct sched_param sched_param_prach;
383 384 385 386
#ifdef Rel14
  /// scheduling parameters for RU prach thread BL/CE UEs
  struct sched_param sched_param_prach_br;
#endif
387 388
  /// scheduling parameters for RU synch thread
  struct sched_param sched_param_synch;
389 390
  /// scheduling parameters for asynch_rxtx thread
  struct sched_param sched_param_asynch_rxtx;
391
  /// condition variable for RU FH thread
392
  pthread_cond_t cond_FH;
393 394
  /// condition variable for RU prach thread
  pthread_cond_t cond_prach;
395 396 397 398
#ifdef Rel14
  /// condition variable for RU prach thread BL/CE UEs
  pthread_cond_t cond_prach_br;
#endif
399 400
  /// condition variable for RU synch thread
  pthread_cond_t cond_synch;
401 402
  /// condition variable for asynch RX/TX thread
  pthread_cond_t cond_asynch_rxtx;
403 404
  /// condition varaible for RU RX FEP thread
  pthread_cond_t cond_fep;
405 406
  /// condition varaible for RU RX FEPTX thread
  pthread_cond_t cond_feptx;
407 408 409
  /// condition variable for eNB signal
  pthread_cond_t cond_eNBs;
  /// mutex for RU FH
410
  pthread_mutex_t mutex_FH;
411 412
  /// mutex for RU prach
  pthread_mutex_t mutex_prach;
413 414 415 416
#ifdef Rel14
  /// mutex for RU prach BL/CE UEs
  pthread_mutex_t mutex_prach_br;
#endif
417 418 419 420
  /// mutex for RU synch
  pthread_mutex_t mutex_synch;
  /// mutex for eNB signal
  pthread_mutex_t mutex_eNBs;
421 422
  /// mutex for asynch RX/TX thread
  pthread_mutex_t mutex_asynch_rxtx;
423
  /// mutex for fep RX worker thread
424
  pthread_mutex_t mutex_fep;
425 426
  /// mutex for fep TX worker thread
  pthread_mutex_t mutex_feptx;
427 428
  /// symbol mask for IF4p5 reception per subframe
  uint32_t symbol_mask[10];
429 430 431
  /// number of slave threads
  int                  num_slaves;
  /// array of pointers to slaves
432 433
  struct RU_proc_t_s           **slave_proc;
} RU_proc_t;
434

Raymond Knopp's avatar
 
Raymond Knopp committed
435
/// Context data structure for eNB subframe processing
436
typedef struct eNB_proc_t_s {
437
  /// Component Carrier index
438
  uint8_t              CC_id;
439 440 441 442
  /// thread index
  int thread_index;
  /// timestamp received from HW
  openair0_timestamp timestamp_rx;
443 444
  /// timestamp to send to "slave rru"
  openair0_timestamp timestamp_tx;
445
  /// subframe to act upon for reception
Raymond Knopp's avatar
 
Raymond Knopp committed
446
  int subframe_rx;
447 448
  /// subframe to act upon for PRACH
  int subframe_prach;
449 450 451 452
#ifdef Rel14
  /// subframe to act upon for reception of prach BL/CE UEs
  int subframe_prach_br;
#endif
453
  /// frame to act upon for reception
Raymond Knopp's avatar
 
Raymond Knopp committed
454
  int frame_rx;
455 456
  /// frame to act upon for transmission
  int frame_tx;
457 458
  /// frame to act upon for PRACH
  int frame_prach;
459 460 461 462
#ifdef Rel14
  /// frame to act upon for PRACH BL/CE UEs
  int frame_prach_br;
#endif
463 464 465 466
  /// \internal This variable is protected by \ref mutex_td.
  int instance_cnt_td;
  /// \internal This variable is protected by \ref mutex_te.
  int instance_cnt_te;
467 468
  /// \internal This variable is protected by \ref mutex_prach.
  int instance_cnt_prach;
469 470 471 472
#ifdef Rel14
  /// \internal This variable is protected by \ref mutex_prach for BL/CE UEs.
  int instance_cnt_prach_br;
#endif
473 474
  // instance count for over-the-air eNB synchronization
  int instance_cnt_synch;
475 476
  /// \internal This variable is protected by \ref mutex_asynch_rxtx.
  int instance_cnt_asynch_rxtx;
Raymond Knopp's avatar
Raymond Knopp committed
477 478
  /// pthread structure for eNB single processing thread
  pthread_t pthread_single;
479 480
  /// pthread structure for asychronous RX/TX processing thread
  pthread_t pthread_asynch_rxtx;
481 482
  /// flag to indicate first RX acquisition
  int first_rx;
Raymond Knopp's avatar
Raymond Knopp committed
483 484
  /// flag to indicate first TX transmission
  int first_tx;
485 486 487 488
  /// pthread attributes for parallel turbo-decoder thread
  pthread_attr_t attr_td;
  /// pthread attributes for parallel turbo-encoder thread
  pthread_attr_t attr_te;
Raymond Knopp's avatar
Raymond Knopp committed
489 490
  /// pthread attributes for single eNB processing thread
  pthread_attr_t attr_single;
491 492
  /// pthread attributes for prach processing thread
  pthread_attr_t attr_prach;
493 494 495 496
#ifdef Rel14
  /// pthread attributes for prach processing thread BL/CE UEs
  pthread_attr_t attr_prach_br;
#endif
497
  /// pthread attributes for asynchronous RX thread
498
  pthread_attr_t attr_asynch_rxtx;
499 500 501 502
  /// scheduling parameters for parallel turbo-decoder thread
  struct sched_param sched_param_td;
  /// scheduling parameters for parallel turbo-encoder thread
  struct sched_param sched_param_te;
Raymond Knopp's avatar
Raymond Knopp committed
503 504
  /// scheduling parameters for single eNB thread
  struct sched_param sched_param_single;
505 506
  /// scheduling parameters for prach thread
  struct sched_param sched_param_prach;
507 508 509 510
#ifdef Rel14
  /// scheduling parameters for prach thread
  struct sched_param sched_param_prach_br;
#endif
511 512
  /// scheduling parameters for asynch_rxtx thread
  struct sched_param sched_param_asynch_rxtx;
513 514 515 516
  /// pthread structure for parallel turbo-decoder thread
  pthread_t pthread_td;
  /// pthread structure for parallel turbo-encoder thread
  pthread_t pthread_te;
517
  /// pthread structure for PRACH thread
518
  pthread_t pthread_prach;
519 520 521 522
#ifdef Rel14
  /// pthread structure for PRACH thread BL/CE UEs
  pthread_t pthread_prach_br;
#endif
523 524 525 526
  /// condition variable for parallel turbo-decoder thread
  pthread_cond_t cond_td;
  /// condition variable for parallel turbo-encoder thread
  pthread_cond_t cond_te;
527
  /// condition variable for PRACH processing thread;
528
  pthread_cond_t cond_prach;
529 530 531 532
#ifdef Rel14
  /// condition variable for PRACH processing thread BL/CE UEs;
  pthread_cond_t cond_prach_br;
#endif
533 534
  /// condition variable for asynch RX/TX thread
  pthread_cond_t cond_asynch_rxtx;
535 536 537 538
  /// mutex for parallel turbo-decoder thread
  pthread_mutex_t mutex_td;
  /// mutex for parallel turbo-encoder thread
  pthread_mutex_t mutex_te;
539
  /// mutex for PRACH thread
540
  pthread_mutex_t mutex_prach;
541 542 543 544
#ifdef Rel14
  /// mutex for PRACH thread for BL/CE UEs
  pthread_mutex_t mutex_prach_br;
#endif
545 546
  /// mutex for asynch RX/TX thread
  pthread_mutex_t mutex_asynch_rxtx;
547 548 549 550
  /// mutex for RU access to eNB processing (PDSCH/PUSCH)
  pthread_mutex_t mutex_RU;
  /// mutex for RU access to eNB processing (PRACH)
  pthread_mutex_t mutex_RU_PRACH;
551 552
  /// mutex for RU access to eNB processing (PRACH BR)
  pthread_mutex_t mutex_RU_PRACH_br;
553 554 555 556
  /// mask for RUs serving eNB (PDSCH/PUSCH)
  int RU_mask;
  /// mask for RUs serving eNB (PRACH)
  int RU_mask_prach;
557 558 559 560
#ifdef Rel14
  /// mask for RUs serving eNB (PRACH)
  int RU_mask_prach_br;
#endif
561 562 563 564
  /// parameters for turbo-decoding worker thread
  td_params tdp;
  /// parameters for turbo-encoding worker thread
  te_params tep;
565 566
  /// set of scheduling variables RXn-TXnp4 threads
  eNB_rxtx_proc_t proc_rxtx[2];
Raymond Knopp's avatar
 
Raymond Knopp committed
567 568
} eNB_proc_t;

569 570 571

/// Context data structure for RX/TX portion of subframe processing
typedef struct {
572 573
  /// index of the current UE RX/TX proc
  int                  proc_id;
574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598
  /// Component Carrier index
  uint8_t              CC_id;
  /// timestamp transmitted to HW
  openair0_timestamp timestamp_tx;
  /// subframe to act upon for transmission
  int subframe_tx;
  /// subframe to act upon for reception
  int subframe_rx;
  /// frame to act upon for transmission
  int frame_tx;
  /// frame to act upon for reception
  int frame_rx;
  /// \brief Instance count for RXn-TXnp4 processing thread.
  /// \internal This variable is protected by \ref mutex_rxtx.
  int instance_cnt_rxtx;
  /// pthread structure for RXn-TXnp4 processing thread
  pthread_t pthread_rxtx;
  /// pthread attributes for RXn-TXnp4 processing thread
  pthread_attr_t attr_rxtx;
  /// condition variable for tx processing thread
  pthread_cond_t cond_rxtx;
  /// mutex for RXn-TXnp4 processing thread
  pthread_mutex_t mutex_rxtx;
  /// scheduling parameters for RXn-TXnp4 thread
  struct sched_param sched_param_rxtx;
599 600

  /// internal This variable is protected by ref mutex_fep_slot1.
601 602
  //int instance_cnt_slot0_dl_processing;
  int instance_cnt_slot1_dl_processing;
603
  /// pthread descriptor fep_slot1 thread
604 605
  //pthread_t pthread_slot0_dl_processing;
  pthread_t pthread_slot1_dl_processing;
606
  /// pthread attributes for fep_slot1 processing thread
607 608
 // pthread_attr_t attr_slot0_dl_processing;
  pthread_attr_t attr_slot1_dl_processing;
609
  /// condition variable for UE fep_slot1 thread;
610 611
  //pthread_cond_t cond_slot0_dl_processing;
  pthread_cond_t cond_slot1_dl_processing;
612
  /// mutex for UE synch thread
613 614
  //pthread_mutex_t mutex_slot0_dl_processing;
  pthread_mutex_t mutex_slot1_dl_processing;
615 616
  //
  uint8_t chan_est_pilot0_slot1_available;
617
  uint8_t chan_est_slot1_available;
618 619 620
  uint8_t llr_slot1_available;
  uint8_t dci_slot0_available;
  uint8_t first_symbol_available;
tct-labo4's avatar
tct-labo4 committed
621
  //uint8_t channel_level;
622 623 624
  /// scheduling parameters for fep_slot1 thread
  struct sched_param sched_param_fep_slot1;

laurent's avatar
laurent committed
625 626 627
  int sub_frame_start;
  int sub_frame_step;
  unsigned long long gotIQs;
628 629 630 631 632 633 634 635
} UE_rxtx_proc_t;

/// Context data structure for eNB subframe processing
typedef struct {
  /// Component Carrier index
  uint8_t              CC_id;
  /// Last RX timestamp
  openair0_timestamp timestamp_rx;
Raymond Knopp's avatar
Raymond Knopp committed
636 637 638 639 640 641
  /// pthread attributes for main UE thread
  pthread_attr_t attr_ue;
  /// scheduling parameters for main UE thread
  struct sched_param sched_param_ue;
  /// pthread descriptor main UE thread
  pthread_t pthread_ue;
642

643 644 645
  /// \brief Instance count for synch thread.
  /// \internal This variable is protected by \ref mutex_synch.
  int instance_cnt_synch;
Raymond Knopp's avatar
Raymond Knopp committed
646
  /// pthread attributes for synch processing thread
647 648 649 650 651 652 653 654 655
  pthread_attr_t attr_synch;
  /// scheduling parameters for synch thread
  struct sched_param sched_param_synch;
  /// pthread descriptor synch thread
  pthread_t pthread_synch;
  /// condition variable for UE synch thread;
  pthread_cond_t cond_synch;
  /// mutex for UE synch thread
  pthread_mutex_t mutex_synch;
656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683

  /// pthread attributes for main UE thread
  pthread_attr_t attr_ueSL;
  /// scheduling parameters for main UE thread
  struct sched_param sched_param_ueSL;
  /// pthread descriptor main UE thread
  pthread_t pthread_ueSL;

  /// \brief Instance count for SL synch thread.
  /// \internal This variable is protected by \ref mutex_synch.
  int instance_cnt_synchSL;
  /// pthread attributes for SL synch processing thread
  pthread_attr_t attr_synchSL;
  /// scheduling parameters for sL synch thread
  struct sched_param sched_param_synchSL;
  /// pthread descriptor SL synch thread
  pthread_t pthread_synchSL;
  /// condition variable for UE SL synch thread;
  pthread_cond_t cond_synchSL;
  /// mutex for UE sL synch thread
  pthread_mutex_t mutex_synchSL;

  /// instance count for synchronizing UE_thread (DL/UL) with UE_threadSL
  int instance_cnt_SL;
  /// condition variable for synchronizing UE_thread (DL/UL) with UE_threadSL
  pthread_cond_t cond_SL;
  /// mutex for synchronizing UE_thread (DL/UL) with UE_threadSL
  pthread_mutex_t mutex_SL;
684 685
  /// instance count for eNBs
  int instance_cnt_eNBs;
686
  /// set of scheduling variables RXn-TXnp4 threads
687
  UE_rxtx_proc_t proc_rxtx[RX_NB_TH];
688
} UE_proc_t;
689

690 691 692

/// Panos: Structure holding timer_thread related elements (phy_stub_UE mode)
typedef struct{
693
	pthread_t pthread_timer;
694 695 696 697 698 699 700
	/// Panos: mutex for waiting SF ticking
	pthread_mutex_t mutex_ticking;
	/// Panos: \brief ticking var for ticking thread.
	/// \internal This variable is protected by \ref mutex_ticking.
	int ticking_var;
	/// condition variable for timer_thread;
	pthread_cond_t cond_ticking;
701
	//time_stats_t timer_stats;
702 703 704 705
}SF_ticking;



706 707 708 709 710
typedef enum {
  LOCAL_RF        =0,
  REMOTE_IF5      =1,
  REMOTE_MBP_IF5  =2,
  REMOTE_IF4p5    =3,
oai's avatar
oai committed
711 712
  REMOTE_IF1pp    =4,
  MAX_RU_IF_TYPES =5
713 714 715 716 717
} RU_if_south_t;

typedef struct RU_t_s{
  /// index of this ru
  uint32_t idx;
718 719
 /// Pointer to configuration file
  char *rf_config_file;
720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787
  /// southbound interface
  RU_if_south_t if_south;
  /// timing
  node_timing_t if_timing;
  /// function
  node_function_t function;
  /// Ethernet parameters for fronthaul interface
  eth_params_t eth_params;
  /// flag to indicate the RU is in synch with a master reference
  int in_synch;
  /// timing offset
  int rx_offset;        
  /// flag to indicate the RU is a slave to another source
  int is_slave;
  /// Total gain of receive chain
  uint32_t             rx_total_gain_dB;
  /// number of bands that this device can support
  int num_bands;
  /// band list
  int band[MAX_BANDS_PER_RRU];
  /// number of RX paths on device
  int nb_rx;
  /// number of TX paths on device
  int nb_tx;
  /// maximum PDSCH RS EPRE
  int max_pdschReferenceSignalPower;
  /// maximum RX gain
  int max_rxgain;
  /// Attenuation of RX paths on device
  int att_rx;
  /// Attenuation of TX paths on device
  int att_tx;
  /// flag to indicate precoding operation in RU
  int do_precoding;
  /// Frame parameters
  LTE_DL_FRAME_PARMS frame_parms;
  ///timing offset used in TDD
  int              N_TA_offset; 
  /// RF device descriptor
  openair0_device rfdevice;
  /// HW configuration
  openair0_config_t openair0_cfg;
  /// Number of eNBs using this RU
  int num_eNB;
  /// list of eNBs using this RU
  struct PHY_VARS_eNB_s *eNB_list[NUMBER_OF_eNB_MAX];
  /// Mapping of antenna ports to RF chain index
  openair0_rf_map      rf_map;
  /// IF device descriptor
  openair0_device ifdevice;
  /// Pointer for ifdevice buffer struct
  if_buffer_t ifbuffer;
  /// if prach processing is to be performed in RU
  int                  do_prach;
  /// function pointer to synchronous RX fronthaul function (RRU,3GPP_eNB)
  void                 (*fh_south_in)(struct RU_t_s *ru,int *frame, int *subframe);
  /// function pointer to synchronous TX fronthaul function
  void                 (*fh_south_out)(struct RU_t_s *ru);
  /// function pointer to synchronous RX fronthaul function (RRU)
  void                 (*fh_north_in)(struct RU_t_s *ru,int *frame, int *subframe);
  /// function pointer to synchronous RX fronthaul function (RRU)
  void                 (*fh_north_out)(struct RU_t_s *ru);
  /// function pointer to asynchronous fronthaul interface
  void                 (*fh_north_asynch_in)(struct RU_t_s *ru,int *frame, int *subframe);
  /// function pointer to asynchronous fronthaul interface
  void                 (*fh_south_asynch_in)(struct RU_t_s *ru,int *frame, int *subframe);
  /// function pointer to initialization function for radio interface
  int                  (*start_rf)(struct RU_t_s *ru);
788 789
  /// function pointer to release function for radio interface
  int                  (*stop_rf)(struct RU_t_s *ru);
790 791 792 793 794 795 796 797 798
  /// function pointer to initialization function for radio interface
  int                  (*start_if)(struct RU_t_s *ru,struct PHY_VARS_eNB_s *eNB);
  /// function pointer to RX front-end processing routine (DFTs/prefix removal or NULL)
  void                 (*feprx)(struct RU_t_s *ru);
  /// function pointer to TX front-end processing routine (IDFTs and prefix removal or NULL)
  void                 (*feptx_ofdm)(struct RU_t_s *ru);
  /// function pointer to TX front-end processing routine (PRECODING)
  void                 (*feptx_prec)(struct RU_t_s *ru);
  /// function pointer to wakeup routine in lte-enb.
Raymond Knopp's avatar
Raymond Knopp committed
799
  int (*wakeup_rxtx)(struct PHY_VARS_eNB_s *eNB, struct RU_t_s *ru);
800
  /// function pointer to wakeup routine in lte-enb.
Raymond Knopp's avatar
Raymond Knopp committed
801
  void (*wakeup_prach_eNB)(struct PHY_VARS_eNB_s *eNB,struct RU_t_s *ru,int frame,int subframe);
802
#ifdef Rel14
803
  /// function pointer to wakeup routine in lte-enb.
Raymond Knopp's avatar
Raymond Knopp committed
804
  void (*wakeup_prach_eNB_br)(struct PHY_VARS_eNB_s *eNB,struct RU_t_s *ru,int frame,int subframe);
805
#endif
806 807 808 809
  /// function pointer to eNB entry routine
  void (*eNB_top)(struct PHY_VARS_eNB_s *eNB, int frame_rx, int subframe_rx, char *string);
  /// Timing statistics
  time_stats_t ofdm_demod_stats;
810 811
  /// Timing statistics (TX)
  time_stats_t ofdm_mod_stats;
812 813 814 815
  /// Timing statistics (RX Fronthaul + Compression)
  time_stats_t rx_fhaul;
  /// Timing statistics (TX Fronthaul + Compression)
  time_stats_t tx_fhaul; 
816 817 818 819
  /// Timong statistics (Compression)
  time_stats_t compression;
  /// Timing statistics (Fronthaul transport)
  time_stats_t transport;
820 821 822
  /// RX and TX buffers for precoder output
  RU_COMMON            common;
  /// beamforming weight vectors per eNB
Raymond Knopp's avatar
Raymond Knopp committed
823
  int32_t **beam_weights[NUMBER_OF_eNB_MAX+1][15];
824 825 826

  /// received frequency-domain signal for PRACH (IF4p5 RRU) 
  int16_t              **prach_rxsigF;
827 828
  /// received frequency-domain signal for PRACH BR (IF4p5 RRU) 
  int16_t              **prach_rxsigF_br[4];
829 830 831 832 833 834
  /// sequence number for IF5
  uint8_t seqno;
  /// initial timestamp used as an offset make first real timestamp 0
  openair0_timestamp   ts_offset;
  /// process scheduling variables
  RU_proc_t            proc;
835 836
  /// stats thread pthread descriptor
  pthread_t            ru_stats_thread;
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982
} RU_t;


typedef struct {
  //unsigned int   rx_power[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];     //! estimated received signal power (linear)
  //unsigned short rx_power_dB[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];  //! estimated received signal power (dB)
  //unsigned short rx_avg_power_dB[NUMBER_OF_CONNECTED_eNB_MAX];              //! estimated avg received signal power (dB)

  // RRC measurements
  uint32_t rssi;
  int n_adj_cells;
  unsigned int adj_cell_id[6];
  uint32_t rsrq[7];
  uint32_t rsrp[7];
  float rsrp_filtered[7]; // after layer 3 filtering
  float rsrq_filtered[7];
  // common measurements
  //! estimated noise power (linear)
  unsigned int   n0_power[NB_ANTENNAS_RX];
  //! estimated noise power (dB)
  unsigned short n0_power_dB[NB_ANTENNAS_RX];
  //! total estimated noise power (linear)
  unsigned int   n0_power_tot;
  //! total estimated noise power (dB)
  unsigned short n0_power_tot_dB;
  //! average estimated noise power (linear)
  unsigned int   n0_power_avg;
  //! average estimated noise power (dB)
  unsigned short n0_power_avg_dB;
  //! total estimated noise power (dBm)
  short n0_power_tot_dBm;

  // UE measurements
  //! estimated received spatial signal power (linear)
  int            rx_spatial_power[NUMBER_OF_CONNECTED_eNB_MAX][2][2];
  //! estimated received spatial signal power (dB)
  unsigned short rx_spatial_power_dB[NUMBER_OF_CONNECTED_eNB_MAX][2][2];

  /// estimated received signal power (sum over all TX antennas)
  //int            wideband_cqi[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];
  int            rx_power[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];
  /// estimated received signal power (sum over all TX antennas)
  //int            wideband_cqi_dB[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];
  unsigned short rx_power_dB[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];

  /// estimated received signal power (sum over all TX/RX antennas)
  int            rx_power_tot[NUMBER_OF_CONNECTED_eNB_MAX]; //NEW
  /// estimated received signal power (sum over all TX/RX antennas)
  unsigned short rx_power_tot_dB[NUMBER_OF_CONNECTED_eNB_MAX]; //NEW

  //! estimated received signal power (sum of all TX/RX antennas, time average)
  int            rx_power_avg[NUMBER_OF_CONNECTED_eNB_MAX];
  //! estimated received signal power (sum of all TX/RX antennas, time average, in dB)
  unsigned short rx_power_avg_dB[NUMBER_OF_CONNECTED_eNB_MAX];

  /// SINR (sum of all TX/RX antennas, in dB)
  int            wideband_cqi_tot[NUMBER_OF_CONNECTED_eNB_MAX];
  /// SINR (sum of all TX/RX antennas, time average, in dB)
  int            wideband_cqi_avg[NUMBER_OF_CONNECTED_eNB_MAX];

  //! estimated rssi (dBm)
  short          rx_rssi_dBm[NUMBER_OF_CONNECTED_eNB_MAX];
  //! estimated correlation (wideband linear) between spatial channels (computed in dlsch_demodulation)
  int            rx_correlation[NUMBER_OF_CONNECTED_eNB_MAX][2];
  //! estimated correlation (wideband dB) between spatial channels (computed in dlsch_demodulation)
  int            rx_correlation_dB[NUMBER_OF_CONNECTED_eNB_MAX][2];

  /// Wideband CQI (sum of all RX antennas, in dB, for precoded transmission modes (3,4,5,6), up to 4 spatial streams)
  int            precoded_cqi_dB[NUMBER_OF_CONNECTED_eNB_MAX+1][4];
  /// Subband CQI per RX antenna (= SINR)
  int            subband_cqi[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX][NUMBER_OF_SUBBANDS_MAX];
  /// Total Subband CQI  (= SINR)
  int            subband_cqi_tot[NUMBER_OF_CONNECTED_eNB_MAX][NUMBER_OF_SUBBANDS_MAX];
  /// Subband CQI in dB (= SINR dB)
  int            subband_cqi_dB[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX][NUMBER_OF_SUBBANDS_MAX];
  /// Total Subband CQI
  int            subband_cqi_tot_dB[NUMBER_OF_CONNECTED_eNB_MAX][NUMBER_OF_SUBBANDS_MAX];
  /// Wideband PMI for each RX antenna
  int            wideband_pmi_re[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];
  /// Wideband PMI for each RX antenna
  int            wideband_pmi_im[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];
  ///Subband PMI for each RX antenna
  int            subband_pmi_re[NUMBER_OF_CONNECTED_eNB_MAX][NUMBER_OF_SUBBANDS_MAX][NB_ANTENNAS_RX];
  ///Subband PMI for each RX antenna
  int            subband_pmi_im[NUMBER_OF_CONNECTED_eNB_MAX][NUMBER_OF_SUBBANDS_MAX][NB_ANTENNAS_RX];
  /// chosen RX antennas (1=Rx antenna 1, 2=Rx antenna 2, 3=both Rx antennas)
  unsigned char           selected_rx_antennas[NUMBER_OF_CONNECTED_eNB_MAX][NUMBER_OF_SUBBANDS_MAX];
  /// Wideband Rank indication
  unsigned char  rank[NUMBER_OF_CONNECTED_eNB_MAX];
  /// Number of RX Antennas
  unsigned char  nb_antennas_rx;
  /// DLSCH error counter
  // short          dlsch_errors;

} PHY_MEASUREMENTS;

typedef struct {
  //unsigned int   rx_power[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];     //! estimated received signal power (linear)
  //unsigned short rx_power_dB[NUMBER_OF_CONNECTED_eNB_MAX][NB_ANTENNAS_RX];  //! estimated received signal power (dB)
  //unsigned short rx_avg_power_dB[NUMBER_OF_CONNECTED_eNB_MAX];              //! estimated avg received signal power (dB)

  // common measurements
  //! estimated noise power (linear)
  unsigned int   n0_power[MAX_NUM_RU_PER_eNB];
  //! estimated noise power (dB)
  unsigned short n0_power_dB[MAX_NUM_RU_PER_eNB];
  //! total estimated noise power (linear)
  unsigned int   n0_power_tot;
  //! estimated avg noise power (dB)
  unsigned short n0_power_tot_dB;
  //! estimated avg noise power (dB)
  short n0_power_tot_dBm;
  //! estimated avg noise power per RB per RX ant (lin)
  unsigned short n0_subband_power[MAX_NUM_RU_PER_eNB][100];
  //! estimated avg noise power per RB per RX ant (dB)
  unsigned short n0_subband_power_dB[MAX_NUM_RU_PER_eNB][100];
  //! estimated avg noise power per RB (dB)
  short n0_subband_power_tot_dB[100];
  //! estimated avg noise power per RB (dBm)
  short n0_subband_power_tot_dBm[100];
  // eNB measurements (per user)
  //! estimated received spatial signal power (linear)
  unsigned int   rx_spatial_power[NUMBER_OF_UE_MAX][2][2];
  //! estimated received spatial signal power (dB)
  unsigned short rx_spatial_power_dB[NUMBER_OF_UE_MAX][2][2];
  //! estimated rssi (dBm)
  short          rx_rssi_dBm[NUMBER_OF_UE_MAX];
  //! estimated correlation (wideband linear) between spatial channels (computed in dlsch_demodulation)
  int            rx_correlation[NUMBER_OF_UE_MAX][2];
  //! estimated correlation (wideband dB) between spatial channels (computed in dlsch_demodulation)
  int            rx_correlation_dB[NUMBER_OF_UE_MAX][2];

  /// Wideband CQI (= SINR)
  int            wideband_cqi[NUMBER_OF_UE_MAX][MAX_NUM_RU_PER_eNB];
  /// Wideband CQI in dB (= SINR dB)
  int            wideband_cqi_dB[NUMBER_OF_UE_MAX][MAX_NUM_RU_PER_eNB];
  /// Wideband CQI (sum of all RX antennas, in dB)
  char           wideband_cqi_tot[NUMBER_OF_UE_MAX];
  /// Subband CQI per RX antenna and RB (= SINR)
  int            subband_cqi[NUMBER_OF_UE_MAX][MAX_NUM_RU_PER_eNB][100];
  /// Total Subband CQI and RB (= SINR)
  int            subband_cqi_tot[NUMBER_OF_UE_MAX][100];
  /// Subband CQI in dB and RB (= SINR dB)
  int            subband_cqi_dB[NUMBER_OF_UE_MAX][MAX_NUM_RU_PER_eNB][100];
  /// Total Subband CQI and RB
  int            subband_cqi_tot_dB[NUMBER_OF_UE_MAX][100];
983 984
  /// PRACH background noise level
  int            prach_I0;
985 986 987
} PHY_MEASUREMENTS_eNB;


988
/// Top-level PHY Data Structure for eNB
989
typedef struct PHY_VARS_eNB_s {
990
  /// Module ID indicator for this instance
Raymond Knopp's avatar
 
Raymond Knopp committed
991 992
  module_id_t          Mod_id;
  uint8_t              CC_id;
993
  uint8_t              configured;
994
  eNB_proc_t           proc;
Raymond Knopp's avatar
Raymond Knopp committed
995
  int                  single_thread_flag;
996
  int                  abstraction_flag;
997 998
  int                  num_RU;
  RU_t                 *RU_list[MAX_NUM_RU_PER_eNB];
999 1000 1001 1002
  /// Ethernet parameters for northbound midhaul interface
  eth_params_t         eth_params_n;
  /// Ethernet parameters for fronthaul interface
  eth_params_t         eth_params;
1003
  int                  rx_total_gain_dB;
1004 1005
  int                  (*td)(struct PHY_VARS_eNB_s *eNB,int UE_id,int harq_pid,int llr8_flag);
  int                  (*te)(struct PHY_VARS_eNB_s *,uint8_t *,uint8_t,LTE_eNB_DLSCH_t *,int,uint8_t,time_stats_t *,time_stats_t *,time_stats_t *);
1006
  int                  (*start_if)(struct RU_t_s *ru,struct PHY_VARS_eNB_s *eNB);
Raymond Knopp's avatar
 
Raymond Knopp committed
1007
  uint8_t              local_flag;
1008
  LTE_DL_FRAME_PARMS   frame_parms;
1009 1010 1011
  PHY_MEASUREMENTS_eNB measurements;
  IF_Module_t          *if_inst;
  UL_IND_t             UL_INFO;
1012
  pthread_mutex_t      UL_INFO_mutex;
1013
  /// NFAPI RX ULSCH information
1014
  nfapi_rx_indication_pdu_t  rx_pdu_list[NFAPI_RX_IND_MAX_PDU];
1015
  /// NFAPI RX ULSCH CRC information
1016
  nfapi_crc_indication_pdu_t crc_pdu_list[NFAPI_CRC_IND_MAX_PDU];
1017 1018 1019 1020 1021 1022 1023 1024
  /// NFAPI HARQ information
  nfapi_harq_indication_pdu_t harq_pdu_list[NFAPI_HARQ_IND_MAX_PDU];
  /// NFAPI SR information
  nfapi_sr_indication_pdu_t sr_pdu_list[NFAPI_SR_IND_MAX_PDU];
  /// NFAPI CQI information
  nfapi_cqi_indication_pdu_t cqi_pdu_list[NFAPI_CQI_IND_MAX_PDU];
  /// NFAPI CQI information (raw component)
  nfapi_cqi_indication_raw_pdu_t cqi_raw_pdu_list[NFAPI_CQI_IND_MAX_PDU];
1025 1026 1027 1028 1029 1030
  /// NFAPI PRACH information
  nfapi_preamble_pdu_t preamble_list[MAX_NUM_RX_PRACH_PREAMBLES];
#ifdef Rel14
  /// NFAPI PRACH information BL/CE UEs
  nfapi_preamble_pdu_t preamble_list_br[MAX_NUM_RX_PRACH_PREAMBLES];
#endif
1031 1032
  Sched_Rsp_t          Sched_INFO;
  LTE_eNB_PDCCH        pdcch_vars[2];
1033
  LTE_eNB_PHICH        phich_vars[2];
1034
#ifdef Rel14
1035 1036
  LTE_eNB_EPDCCH       epdcch_vars[2];
  LTE_eNB_MPDCCH       mpdcch_vars[2];
1037 1038
  LTE_eNB_PRACH        prach_vars_br;
#endif
1039
  LTE_eNB_COMMON       common_vars;
1040
  LTE_eNB_UCI          uci_vars[NUMBER_OF_UE_MAX];
1041 1042 1043 1044 1045 1046
  LTE_eNB_SRS          srs_vars[NUMBER_OF_UE_MAX];
  LTE_eNB_PBCH         pbch;
  LTE_eNB_PUSCH       *pusch_vars[NUMBER_OF_UE_MAX];
  LTE_eNB_PRACH        prach_vars;
  LTE_eNB_DLSCH_t     *dlsch[NUMBER_OF_UE_MAX][2];   // Nusers times two spatial streams
  LTE_eNB_ULSCH_t     *ulsch[NUMBER_OF_UE_MAX+1];      // Nusers + number of RA
1047
  LTE_eNB_DLSCH_t     *dlsch_SI,*dlsch_ra,*dlsch_p;
1048
  LTE_eNB_DLSCH_t     *dlsch_MCH;
1049
  LTE_eNB_DLSCH_t     *dlsch_PCH;
1050 1051
  LTE_eNB_UE_stats     UE_stats[NUMBER_OF_UE_MAX];
  LTE_eNB_UE_stats    *UE_stats_ptr[NUMBER_OF_UE_MAX];
1052 1053

  /// cell-specific reference symbols
Raymond Knopp's avatar
 
Raymond Knopp committed
1054 1055
  uint32_t         lte_gold_table[20][2][14];

1056
  /// UE-specific reference symbols (p=5), TM 7
1057
  uint32_t         lte_gold_uespec_port5_table[NUMBER_OF_UE_MAX][20][38];
1058

Raymond Knopp's avatar
 
Raymond Knopp committed
1059 1060
  /// UE-specific reference symbols (p=7...14), TM 8/9/10
  uint32_t         lte_gold_uespec_table[2][20][2][21];
1061

1062
  /// mbsfn reference symbols
Raymond Knopp's avatar
 
Raymond Knopp committed
1063
  uint32_t         lte_gold_mbsfn_table[10][3][42];
1064

1065
  uint32_t X_u[64][839];
1066 1067 1068
#ifdef Rel14
  uint32_t X_u_br[4][64][839];
#endif
1069
  uint8_t pbch_configured;
1070
  uint8_t pbch_pdu[4]; //PBCH_PDU_SIZE
1071 1072 1073
  char eNB_generate_rar;

  /// Indicator set to 0 after first SR
1074
  uint8_t first_sr[NUMBER_OF_UE_MAX];
1075

1076
  uint32_t max_peak_val;
1077 1078
  int max_eNB_id, max_sync_pos;

1079 1080
  /// \brief sinr for all subcarriers of the current link (used only for abstraction).
  /// first index: ? [0..N_RB_DL*12[
1081 1082
  double *sinr_dB;

1083
  /// N0 (used for abstraction)
1084 1085 1086 1087 1088
  double N0;

  unsigned char first_run_timing_advance[NUMBER_OF_UE_MAX];
  unsigned char first_run_I0_measurements;

1089
  
1090 1091 1092 1093 1094 1095 1096 1097 1098
  unsigned char    is_secondary_eNB; // primary by default
  unsigned char    is_init_sync;     /// Flag to tell if initial synchronization is performed. This affects how often the secondary eNB will listen to the PSS from the primary system.
  unsigned char    has_valid_precoder; /// Flag to tell if secondary eNB has channel estimates to create NULL-beams from, and this B/F vector is created.
  unsigned char    PeNB_id;          /// id of Primary eNB

  /// hold the precoder for NULL beam to the primary user
  int              **dl_precoder_SeNB[3];
  char             log2_maxp; /// holds the maximum channel/precoder coefficient

1099
  /// if ==0 enables phy only test mode
1100
  int mac_enabled;
1101 1102
  /// counter to average prach energh over first 100 prach opportunities
  int prach_energy_counter;
1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124

  // PDSCH Varaibles
  PDSCH_CONFIG_DEDICATED pdsch_config_dedicated[NUMBER_OF_UE_MAX];

  // PUSCH Varaibles
  PUSCH_CONFIG_DEDICATED pusch_config_dedicated[NUMBER_OF_UE_MAX];

  // PUCCH variables
  PUCCH_CONFIG_DEDICATED pucch_config_dedicated[NUMBER_OF_UE_MAX];

  // UL-POWER-Control
  UL_POWER_CONTROL_DEDICATED ul_power_control_dedicated[NUMBER_OF_UE_MAX];

  // TPC
  TPC_PDCCH_CONFIG tpc_pdcch_config_pucch[NUMBER_OF_UE_MAX];
  TPC_PDCCH_CONFIG tpc_pdcch_config_pusch[NUMBER_OF_UE_MAX];

  // CQI reporting
  CQI_REPORT_CONFIG cqi_report_config[NUMBER_OF_UE_MAX];

  // SRS Variables
  SOUNDINGRS_UL_CONFIG_DEDICATED soundingrs_ul_config_dedicated[NUMBER_OF_UE_MAX];
1125
  uint8_t ncs_cell[20][7];
1126 1127 1128 1129 1130

  // Scheduling Request Config
  SCHEDULING_REQUEST_CONFIG scheduling_request_config[NUMBER_OF_UE_MAX];

  // Transmission mode per UE
1131
  uint8_t transmission_mode[NUMBER_OF_UE_MAX];
1132 1133 1134

  /// cba_last successful reception for each group, used for collision detection
  uint8_t cba_last_reception[4];
1135

1136 1137 1138
  // Pointers for active physicalConfigDedicated to be applied in current subframe
  struct PhysicalConfigDedicated *physicalConfigDedicated[NUMBER_OF_UE_MAX];

1139

1140 1141
  uint32_t rb_mask_ul[4];

1142 1143 1144 1145
  /// Information regarding TM5
  MU_MIMO_mode mu_mimo_mode[NUMBER_OF_UE_MAX];


1146 1147 1148 1149 1150 1151 1152 1153 1154
  /// target_ue_dl_mcs : only for debug purposes
  uint32_t target_ue_dl_mcs;
  /// target_ue_ul_mcs : only for debug purposes
  uint32_t target_ue_ul_mcs;
  /// target_ue_dl_rballoc : only for debug purposes
  uint32_t ue_dl_rb_alloc;
  /// target ul PRBs : only for debug
  uint32_t ue_ul_nb_rb;

1155
  ///check for Total Transmissions
Raymond Knopp's avatar
 
Raymond Knopp committed
1156
  uint32_t check_for_total_transmissions;
1157 1158

  ///check for MU-MIMO Transmissions
Raymond Knopp's avatar
 
Raymond Knopp committed
1159
  uint32_t check_for_MUMIMO_transmissions;
1160 1161

  ///check for SU-MIMO Transmissions
Raymond Knopp's avatar
 
Raymond Knopp committed
1162
  uint32_t check_for_SUMIMO_transmissions;
1163 1164

  ///check for FULL MU-MIMO Transmissions
Raymond Knopp's avatar
 
Raymond Knopp committed
1165
  uint32_t  FULL_MUMIMO_transmissions;
1166 1167

  /// Counter for total bitrate, bits and throughput in downlink
Raymond Knopp's avatar
 
Raymond Knopp committed
1168 1169 1170
  uint32_t total_dlsch_bitrate;
  uint32_t total_transmitted_bits;
  uint32_t total_system_throughput;
1171

1172
  int hw_timing_advance;
1173

1174 1175 1176 1177
  time_stats_t phy_proc;
  time_stats_t phy_proc_tx;
  time_stats_t phy_proc_rx;
  time_stats_t rx_prach;
1178

1179 1180 1181
  time_stats_t ofdm_mod_stats;
  time_stats_t dlsch_encoding_stats;
  time_stats_t dlsch_modulation_stats;
1182
  time_stats_t dlsch_scrambling_stats;
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203
  time_stats_t dlsch_rate_matching_stats;
  time_stats_t dlsch_turbo_encoding_stats;
  time_stats_t dlsch_interleaving_stats;

  time_stats_t rx_dft_stats;
  time_stats_t ulsch_channel_estimation_stats;
  time_stats_t ulsch_freq_offset_estimation_stats;
  time_stats_t ulsch_decoding_stats;
  time_stats_t ulsch_demodulation_stats;
  time_stats_t ulsch_rate_unmatching_stats;
  time_stats_t ulsch_turbo_decoding_stats;
  time_stats_t ulsch_deinterleaving_stats;
  time_stats_t ulsch_demultiplexing_stats;
  time_stats_t ulsch_llr_stats;
  time_stats_t ulsch_tc_init_stats;
  time_stats_t ulsch_tc_alpha_stats;
  time_stats_t ulsch_tc_beta_stats;
  time_stats_t ulsch_tc_gamma_stats;
  time_stats_t ulsch_tc_ext_stats;
  time_stats_t ulsch_tc_intl1_stats;
  time_stats_t ulsch_tc_intl2_stats;
1204

1205 1206 1207
#ifdef LOCALIZATION
  /// time state for localization
  time_stats_t localization_stats;
1208
#endif
1209

1210 1211
  int32_t pucch1_stats_cnt[NUMBER_OF_UE_MAX][10];
  int32_t pucch1_stats[NUMBER_OF_UE_MAX][10*1024];
1212
  int32_t pucch1_stats_thres[NUMBER_OF_UE_MAX][10*1024];
1213
  int32_t pucch1ab_stats_cnt[NUMBER_OF_UE_MAX][10];
1214
  int32_t pucch1ab_stats[NUMBER_OF_UE_MAX][2*10*1024];
1215 1216 1217 1218 1219
  int32_t pusch_stats_rb[NUMBER_OF_UE_MAX][10240];
  int32_t pusch_stats_round[NUMBER_OF_UE_MAX][10240];
  int32_t pusch_stats_mcs[NUMBER_OF_UE_MAX][10240];
  int32_t pusch_stats_bsr[NUMBER_OF_UE_MAX][10240];
  int32_t pusch_stats_BO[NUMBER_OF_UE_MAX][10240];
1220 1221 1222
} PHY_VARS_eNB;

#define debug_msg if (((mac_xface->frame%100) == 0) || (mac_xface->frame < 50)) msg
1223

1224
#define MAX_SLDCH 16
1225 1226
/// Top-level PHY Data Structure for UE
typedef struct {
Raymond Knopp's avatar
 
Raymond Knopp committed
1227
  /// \brief Module ID indicator for this instance
1228
  uint8_t Mod_id;
Raymond Knopp's avatar
 
Raymond Knopp committed
1229
  /// \brief Component carrier ID for this PHY instance
Raymond Knopp's avatar
 
Raymond Knopp committed
1230
  uint8_t CC_id;
1231 1232
  /// \brief Mapping of CC_id antennas to cards
  openair0_rf_map      rf_map;
Raymond Knopp's avatar
 
Raymond Knopp committed
1233 1234 1235 1236 1237
  //uint8_t local_flag;
  /// \brief Indicator of current run mode of UE (normal_txrx, rx_calib_ue, no_L2_connect, debug_prach)
  runmode_t mode;
  /// \brief Indicator that UE should perform band scanning
  int UE_scan;
1238 1239
  /// \brief Indicator that UE should perform coarse scanning around carrier
  int UE_scan_carrier;
Raymond Knopp's avatar
 
Raymond Knopp committed
1240
  /// \brief Indicator that UE is synchronized to an eNB
1241
  int is_synchronized;
1242 1243 1244 1245
  /// \brief Indicator that UE is synchronized to a SyncRef UE on SL
  int is_synchronizedSL;
  /// \brief Indicator that UE is an SynchRef UE
  int is_SynchRef;
1246 1247
  /// Data structure for UE process scheduling
  UE_proc_t proc;
1248 1249
  /// Flag to indicate the UE shouldn't do timing correction at all
  int no_timing_correction;
Raymond Knopp's avatar
 
Raymond Knopp committed
1250
  /// \brief Total gain of the TX chain (16-bit baseband I/Q to antenna)
Raymond Knopp's avatar
 
Raymond Knopp committed
1251
  uint32_t tx_total_gain_dB;
Raymond Knopp's avatar
 
Raymond Knopp committed
1252
  /// \brief Total gain of the RX chain (antenna to baseband I/Q) This is a function of rx_gain_mode (and the corresponding gain) and the rx_gain of the card.
1253
  uint32_t rx_total_gain_dB;
Raymond Knopp's avatar
 
Raymond Knopp committed
1254
  /// \brief Total gains with maximum RF gain stage (ExpressMIMO2/Lime)
Raymond Knopp's avatar
 
Raymond Knopp committed
1255
  uint32_t rx_gain_max[4];
Raymond Knopp's avatar
 
Raymond Knopp committed
1256
  /// \brief Total gains with medium RF gain stage (ExpressMIMO2/Lime)
Raymond Knopp's avatar
 
Raymond Knopp committed
1257
  uint32_t rx_gain_med[4];
Raymond Knopp's avatar
 
Raymond Knopp committed
1258
  /// \brief Total gains with bypassed RF gain stage (ExpressMIMO2/Lime)
Raymond Knopp's avatar
 
Raymond Knopp committed
1259
  uint32_t rx_gain_byp[4];
Raymond Knopp's avatar
 
Raymond Knopp committed
1260
  /// \brief Current transmit power
1261
  int16_t tx_power_dBm[10];
Raymond Knopp's avatar
 
Raymond Knopp committed
1262
  /// \brief Total number of REs in current transmission
1263
  int tx_total_RE[10];
Raymond Knopp's avatar
 
Raymond Knopp committed
1264
  /// \brief Maximum transmit power
1265
  int8_t tx_power_max_dBm;
Raymond Knopp's avatar
 
Raymond Knopp committed
1266
  /// \brief Number of eNB seen by UE
1267
  uint8_t n_connected_eNB;
Raymond Knopp's avatar
 
Raymond Knopp committed
1268
  /// \brief indicator that Handover procedure has been initiated
1269
  uint8_t ho_initiated;
Raymond Knopp's avatar
 
Raymond Knopp committed
1270
  /// \brief indicator that Handover procedure has been triggered
1271
  uint8_t ho_triggered;
1272
  /// \brief Measurement variables.
1273 1274
  PHY_MEASUREMENTS measurements;
  LTE_DL_FRAME_PARMS  frame_parms;
1275
  /// \brief Frame parame before ho used to recover if ho fails.
1276 1277 1278
  LTE_DL_FRAME_PARMS  frame_parms_before_ho;
  LTE_UE_COMMON    common_vars;

1279 1280 1281
  // point to the current rxTx thread index
  uint8_t current_thread_id[10];

1282
  LTE_UE_PDSCH     *pdsch_vars[RX_NB_TH_MAX][NUMBER_OF_CONNECTED_eNB_MAX+1]; // two RxTx Threads
1283 1284 1285
  LTE_UE_PDSCH_FLP *pdsch_vars_flp[NUMBER_OF_CONNECTED_eNB_MAX+1];
  LTE_UE_PDSCH     *pdsch_vars_SI[NUMBER_OF_CONNECTED_eNB_MAX+1];
  LTE_UE_PDSCH     *pdsch_vars_ra[NUMBER_OF_CONNECTED_eNB_MAX+1];
1286
  LTE_UE_PDSCH     *pdsch_vars_p[NUMBER_OF_CONNECTED_eNB_MAX+1];
1287 1288
  LTE_UE_PDSCH     *pdsch_vars_MCH[NUMBER_OF_CONNECTED_eNB_MAX];
  LTE_UE_PBCH      *pbch_vars[NUMBER_OF_CONNECTED_eNB_MAX];
1289
  LTE_UE_PDCCH     *pdcch_vars[RX_NB_TH_MAX][NUMBER_OF_CONNECTED_eNB_MAX];
1290
  LTE_UE_PRACH     *prach_vars[NUMBER_OF_CONNECTED_eNB_MAX];
Raymond Knopp's avatar
Raymond Knopp committed
1291 1292
  LTE_UE_PSCCH_TX  *pscch_vars_tx;
  LTE_UE_PSCCH_RX  *pscch_vars_rx;
1293
  LTE_UE_DLSCH_t   *dlsch[RX_NB_TH_MAX][NUMBER_OF_CONNECTED_eNB_MAX][2]; // two RxTx Threads
1294
  LTE_UE_ULSCH_t   *ulsch[NUMBER_OF_CONNECTED_eNB_MAX];
1295 1296 1297
  LTE_UE_DLSCH_t   *dlsch_SI[NUMBER_OF_CONNECTED_eNB_MAX];
  LTE_UE_DLSCH_t   *dlsch_ra[NUMBER_OF_CONNECTED_eNB_MAX];
  LTE_UE_DLSCH_t   *dlsch_p[NUMBER_OF_CONNECTED_eNB_MAX];
1298
  LTE_UE_DLSCH_t   *dlsch_MCH[NUMBER_OF_CONNECTED_eNB_MAX];
Raymond Knopp's avatar
Raymond Knopp committed
1299 1300
  // This is for SIC in the UE, to store the reencoded data
  LTE_eNB_DLSCH_t  *dlsch_eNB[NUMBER_OF_CONNECTED_eNB_MAX];
1301
  // Sidelink-specific variables
1302
  int              sl_fep_done;
Raymond Knopp's avatar
Raymond Knopp committed
1303
  SL_chan_t        sl_chan;
1304 1305 1306
  LTE_eNB_DLSCH_t  *dlsch_slsch;
  LTE_UE_ULSCH_t   *ulsch_slsch;
  LTE_eNB_PUSCH    *pusch_slsch;
1307 1308 1309
  LTE_eNB_DLSCH_t  *dlsch_sldch;
  LTE_UE_ULSCH_t   *ulsch_sldch;
  LTE_eNB_PUSCH    *pusch_sldch;
1310
  LTE_eNB_PUSCH    *pusch_slbch;
1311 1312
  LTE_eNB_PUSCH    *pusch_slcch;
  LTE_UE_DLSCH_t   *dlsch_rx_slsch;
1313 1314 1315
  LTE_UE_DLSCH_t   *dlsch_rx_sldch[MAX_SLDCH];
  int16_t          **sl_rxdataF;
  int16_t          **sl_rxdata_7_5kHz;
1316 1317
  int16_t          *slsch_dlsch_llr;
  int16_t          *slsch_ulsch_llr;
1318 1319
  int16_t          *sldch_dlsch_llr;
  int16_t          *sldch_ulsch_llr;
1320
  SLSS_t           *slss;
1321
  SLSS_t          slss_rx;
Raymond Knopp's avatar
Raymond Knopp committed
1322 1323
  SLSCH_t          *slsch;
  SLSCH_t          slsch_rx;
1324 1325
  int              slsch_active;
  int              slsch_sdu_active;
1326
  int              slsch_rx_sdu_active;
Raymond Knopp's avatar
Raymond Knopp committed
1327
  int              slcch_received;
1328
  int              slsch_decoded;
Raymond Knopp's avatar
Raymond Knopp committed
1329
  uint8_t          sidelink_l2_emulation;
1330 1331 1332
  uint32_t         slsch_txcnt;
  uint32_t         slsch_errors;
  uint32_t         slsch_rxcnt[4];
1333 1334
  SLDCH_t          *sldch;
  int              sldch_sdu_active;
1335 1336 1337
  pthread_mutex_t  slss_mutex;
  pthread_mutex_t  sldch_mutex;
  pthread_mutex_t  slsch_mutex;
1338
  int              slbch_errors;
1339 1340 1341 1342 1343
  //Paging parameters
  uint32_t              IMSImod1024;
  uint32_t              PF;
  uint32_t              PO;

1344
  // For abstraction-purposes only
1345 1346 1347
  uint8_t               sr[10];
  uint8_t               pucch_sel[10];
  uint8_t               pucch_payload[22];
1348 1349 1350

  UE_MODE_t        UE_mode[NUMBER_OF_CONNECTED_eNB_MAX];
  /// cell-specific reference symbols
Raymond Knopp's avatar
 
Raymond Knopp committed
1351 1352
  uint32_t lte_gold_table[7][20][2][14];

1353
  /// UE-specific reference symbols (p=5), TM 7
1354
  uint32_t lte_gold_uespec_port5_table[20][38];
1355

Raymond Knopp's avatar
 
Raymond Knopp committed
1356
  /// ue-specific reference symbols
1357
  uint32_t lte_gold_uespec_table[2][20][2][21];
1358

Raymond Knopp's avatar
 
Raymond Knopp committed
1359 1360
  /// mbsfn reference symbols
  uint32_t lte_gold_mbsfn_table[10][3][42];
1361

1362
  uint32_t X_u[64][839];
1363

1364
  uint32_t high_speed_flag;
Raymond Knopp's avatar
 
Raymond Knopp committed
1365
  uint32_t perfect_ce;
1366
  int16_t ch_est_alpha;
1367
  int generate_ul_signal[10][NUMBER_OF_CONNECTED_eNB_MAX];
1368

1369
  UE_SCAN_INFO_t scan_info[NB_BANDS_MAX];
1370

1371 1372
  char ulsch_no_allocation_counter[NUMBER_OF_CONNECTED_eNB_MAX];

1373 1374


1375 1376 1377
  unsigned char ulsch_Msg3_active[NUMBER_OF_CONNECTED_eNB_MAX];
  uint32_t  ulsch_Msg3_frame[NUMBER_OF_CONNECTED_eNB_MAX];
  unsigned char ulsch_Msg3_subframe[NUMBER_OF_CONNECTED_eNB_MAX];
1378 1379
  PRACH_RESOURCES_t *prach_resources[NUMBER_OF_CONNECTED_eNB_MAX];
  int turbo_iterations, turbo_cntl_iterations;
1380 1381
  /// \brief ?.
  /// - first index: eNB [0..NUMBER_OF_CONNECTED_eNB_MAX[ (hard coded)
Raymond Knopp's avatar
 
Raymond Knopp committed
1382
  uint32_t total_TBS[NUMBER_OF_CONNECTED_eNB_MAX];
1383 1384
  /// \brief ?.
  /// - first index: eNB [0..NUMBER_OF_CONNECTED_eNB_MAX[ (hard coded)
Raymond Knopp's avatar
 
Raymond Knopp committed
1385
  uint32_t total_TBS_last[NUMBER_OF_CONNECTED_eNB_MAX];
1386 1387
  /// \brief ?.
  /// - first index: eNB [0..NUMBER_OF_CONNECTED_eNB_MAX[ (hard coded)
Raymond Knopp's avatar
 
Raymond Knopp committed
1388
  uint32_t bitrate[NUMBER_OF_CONNECTED_eNB_MAX];
1389 1390
  /// \brief ?.
  /// - first index: eNB [0..NUMBER_OF_CONNECTED_eNB_MAX[ (hard coded)
Raymond Knopp's avatar
 
Raymond Knopp committed
1391
  uint32_t total_received_bits[NUMBER_OF_CONNECTED_eNB_MAX];
1392 1393 1394 1395 1396 1397 1398 1399 1400
  int dlsch_errors[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_errors_last[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_received[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_received_last[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_fer[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_SI_received[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_SI_errors[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_ra_received[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_ra_errors[NUMBER_OF_CONNECTED_eNB_MAX];
1401 1402
  int dlsch_p_received[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_p_errors[NUMBER_OF_CONNECTED_eNB_MAX];
1403 1404 1405 1406 1407 1408 1409 1410
  int dlsch_mch_received_sf[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mch_received[NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mcch_received[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mtch_received[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mcch_errors[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mtch_errors[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mcch_trials[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
  int dlsch_mtch_trials[MAX_MBSFN_AREA][NUMBER_OF_CONNECTED_eNB_MAX];
1411
  int current_dlsch_cqi[NUMBER_OF_CONNECTED_eNB_MAX];         
1412
  unsigned char first_run_timing_advance[NUMBER_OF_CONNECTED_eNB_MAX];
Raymond Knopp's avatar
Raymond Knopp committed
1413
  uint8_t               sidelink_active;
1414
  uint8_t               SLonly;
1415
  uint8_t               SLsynconly;
1416
  uint8_t               destination_id;
1417 1418
  // DMRS group-hopping sequences for PSBCH (index 0) and 256 possible PSSCH (indices 1...256)
  uint32_t              gh[257][20];
1419
  uint8_t               SLghinitialized;
Raymond Knopp's avatar
Raymond Knopp committed
1420
  uint8_t               slss_generated;
Raymond Knopp's avatar
Raymond Knopp committed
1421 1422
  uint8_t               pscch_coded;
  uint8_t               pscch_generated;
1423
  uint8_t               pssch_generated;
1424
  uint8_t               psdch_generated;
1425 1426 1427 1428
  uint8_t               generate_prach;
  uint8_t               prach_cnt;
  uint8_t               prach_PreambleIndex;
  //  uint8_t               prach_timer;
1429 1430
  uint8_t               decode_SIB;
  uint8_t               decode_MIB;
1431
  int              rx_offset; /// Timing offset
1432 1433
  /// timing offset for SL
  int rx_offsetSL;        
1434
  int              rx_offset_diff; /// Timing adjustment for ofdm symbol0 on HW USRP
1435
  int              time_sync_cell;
1436
  int              timing_advance; ///timing advance signalled from eNB
1437
  int              hw_timing_advance;
1438
  int              N_TA_offset; ///timing offset used in TDD
1439
  /// Flag to tell if UE is secondary user (cognitive mode)
1440
  unsigned char    is_secondary_ue;
1441
  /// Flag to tell if secondary eNB has channel estimates to create NULL-beams from.
1442
  unsigned char    has_valid_precoder;
1443 1444 1445
  /// hold the precoder for NULL beam to the primary eNB
  int              **ul_precoder_S_UE;
  /// holds the maximum channel/precoder coefficient
1446
  char             log2_maxp;
1447

1448 1449 1450
  /// if ==0 enables phy only test mode
  int mac_enabled;

1451
  /// Flag to initialize averaging of PHY measurements
1452
  int init_averaging;
1453

1454 1455
  /// \brief sinr for all subcarriers of the current link (used only for abstraction).
  /// - first index: ? [0..12*N_RB_DL[
1456
  double *sinr_dB;
1457

1458 1459
  /// \brief sinr for all subcarriers of first symbol for the CQI Calculation.
  /// - first index: ? [0..12*N_RB_DL[
1460 1461
  double *sinr_CQI_dB;

1462 1463 1464
  /// sinr_effective used for CQI calulcation
  double sinr_eff;

1465 1466
  /// N0 (used for abstraction)
  double N0;
1467

1468 1469 1470 1471 1472 1473
  /// Panos: Pointer to IF_Module_UE instance of the UE.
  IF_Module_UE_t *if_inst_ue;

  /// Panos: Pointer to DL.indication structure of the UE.
  UE_DL_IND_t UE_DL_INFO;

1474 1475 1476 1477 1478
  /// PDSCH Varaibles
  PDSCH_CONFIG_DEDICATED pdsch_config_dedicated[NUMBER_OF_CONNECTED_eNB_MAX];

  /// PUSCH Varaibles
  PUSCH_CONFIG_DEDICATED pusch_config_dedicated[NUMBER_OF_CONNECTED_eNB_MAX];
1479

1480 1481 1482 1483 1484 1485 1486
  /// PUSCH contention-based access vars
  PUSCH_CA_CONFIG_DEDICATED  pusch_ca_config_dedicated[NUMBER_OF_eNB_MAX]; // lola

  /// PUCCH variables

  PUCCH_CONFIG_DEDICATED pucch_config_dedicated[NUMBER_OF_CONNECTED_eNB_MAX];

1487
  uint8_t ncs_cell[20][7];
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505

  /// UL-POWER-Control
  UL_POWER_CONTROL_DEDICATED ul_power_control_dedicated[NUMBER_OF_CONNECTED_eNB_MAX];

  /// TPC
  TPC_PDCCH_CONFIG tpc_pdcch_config_pucch[NUMBER_OF_CONNECTED_eNB_MAX];
  TPC_PDCCH_CONFIG tpc_pdcch_config_pusch[NUMBER_OF_CONNECTED_eNB_MAX];

  /// CQI reporting
  CQI_REPORT_CONFIG cqi_report_config[NUMBER_OF_CONNECTED_eNB_MAX];

  /// SRS Variables
  SOUNDINGRS_UL_CONFIG_DEDICATED soundingrs_ul_config_dedicated[NUMBER_OF_CONNECTED_eNB_MAX];

  /// Scheduling Request Config
  SCHEDULING_REQUEST_CONFIG scheduling_request_config[NUMBER_OF_CONNECTED_eNB_MAX];

  /// Transmission mode per eNB
1506
  uint8_t transmission_mode[NUMBER_OF_CONNECTED_eNB_MAX];
1507

1508
  time_stats_t phy_proc[RX_NB_TH];
1509
  time_stats_t phy_proc_tx;
1510
  time_stats_t phy_proc_rx[RX_NB_TH];
1511

1512 1513
  uint32_t use_ia_receiver;

1514 1515 1516 1517 1518 1519 1520 1521 1522
  time_stats_t ofdm_mod_stats;
  time_stats_t ulsch_encoding_stats;
  time_stats_t ulsch_modulation_stats;
  time_stats_t ulsch_segmentation_stats;
  time_stats_t ulsch_rate_matching_stats;
  time_stats_t ulsch_turbo_encoding_stats;
  time_stats_t ulsch_interleaving_stats;
  time_stats_t ulsch_multiplexing_stats;

hbilel's avatar
hbilel committed
1523
  time_stats_t generic_stat;
1524
  time_stats_t generic_stat_bis[RX_NB_TH][LTE_SLOTS_PER_SUBFRAME];
1525 1526 1527 1528 1529 1530
  time_stats_t ue_front_end_stat[RX_NB_TH];
  time_stats_t ue_front_end_per_slot_stat[RX_NB_TH][LTE_SLOTS_PER_SUBFRAME];
  time_stats_t pdcch_procedures_stat[RX_NB_TH];
  time_stats_t pdsch_procedures_stat[RX_NB_TH];
  time_stats_t pdsch_procedures_per_slot_stat[RX_NB_TH][LTE_SLOTS_PER_SUBFRAME];
  time_stats_t dlsch_procedures_stat[RX_NB_TH];
hbilel's avatar
hbilel committed
1531

1532
  time_stats_t ofdm_demod_stats;
1533
  time_stats_t dlsch_rx_pdcch_stats;
1534 1535 1536
  time_stats_t rx_dft_stats;
  time_stats_t dlsch_channel_estimation_stats;
  time_stats_t dlsch_freq_offset_estimation_stats;
1537
  time_stats_t dlsch_decoding_stats[2];
1538 1539 1540 1541 1542
  time_stats_t dlsch_demodulation_stats;
  time_stats_t dlsch_rate_unmatching_stats;
  time_stats_t dlsch_turbo_decoding_stats;
  time_stats_t dlsch_deinterleaving_stats;
  time_stats_t dlsch_llr_stats;
tct-labo4's avatar
tct-labo4 committed
1543
  time_stats_t dlsch_llr_stats_parallelization[RX_NB_TH][LTE_SLOTS_PER_SUBFRAME];
1544
  time_stats_t dlsch_unscrambling_stats;
Raymond Knopp's avatar
Raymond Knopp committed
1545 1546 1547
  time_stats_t dlsch_rate_matching_stats;
  time_stats_t dlsch_turbo_encoding_stats;
  time_stats_t dlsch_interleaving_stats;
1548 1549 1550 1551 1552 1553 1554
  time_stats_t dlsch_tc_init_stats;
  time_stats_t dlsch_tc_alpha_stats;
  time_stats_t dlsch_tc_beta_stats;
  time_stats_t dlsch_tc_gamma_stats;
  time_stats_t dlsch_tc_ext_stats;
  time_stats_t dlsch_tc_intl1_stats;
  time_stats_t dlsch_tc_intl2_stats;
1555
  time_stats_t tx_prach;
1556
  time_stats_t timer_stats;
1557

1558 1559 1560 1561
  pthread_mutex_t timer_mutex;
  pthread_cond_t timer_cond;
  int instance_cnt_timer;

Raymond Knopp's avatar
Raymond Knopp committed
1562 1563
  /// RF and Interface devices per CC
  openair0_device rfdevice; 
1564 1565
} PHY_VARS_UE;

1566 1567 1568 1569 1570 1571 1572
/* this structure is used to pass both UE phy vars and
 * proc to the function UE_thread_rxn_txnp4
 */
struct rx_tx_thread_data {
  PHY_VARS_UE    *UE;
  UE_rxtx_proc_t *proc;
};
1573

1574 1575
void exit_fun(const char* s);

1576 1577 1578 1579 1580
#include "UTIL/LOG/log_extern.h"
extern pthread_cond_t sync_cond;
extern pthread_mutex_t sync_mutex;
extern int sync_var;

1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627

#define MODE_DECODE_NONE         0
#define MODE_DECODE_SSE          1
#define MODE_DECODE_C            2
#define MODE_DECODE_AVX2         3

#define DECODE_INITTD8_SSE_FPTRIDX   0
#define DECODE_INITTD16_SSE_FPTRIDX  1
#define DECODE_INITTD_AVX2_FPTRIDX   2
#define DECODE_TD8_SSE_FPTRIDX       3
#define DECODE_TD16_SSE_FPTRIDX      4
#define DECODE_TD_C_FPTRIDX          5
#define DECODE_TD16_AVX2_FPTRIDX     6
#define DECODE_FREETD8_FPTRIDX       7
#define DECODE_FREETD16_FPTRIDX      8
#define DECODE_FREETD_AVX2_FPTRIDX   9
#define ENCODE_SSE_FPTRIDX           10
#define ENCODE_C_FPTRIDX             11
#define ENCODE_INIT_SSE_FPTRIDX      12
#define DECODE_NUM_FPTR              13


typedef uint8_t(*decoder_if_t)(int16_t *y,
                               int16_t *y2,
    		               uint8_t *decoded_bytes,
    		               uint8_t *decoded_bytes2,
	   		       uint16_t n,
	   		       uint16_t f1,
	   		       uint16_t f2,
	   		       uint8_t max_iterations,
	   		       uint8_t crc_type,
	   		       uint8_t F,
	   		       time_stats_t *init_stats,
	   		       time_stats_t *alpha_stats,
	   		       time_stats_t *beta_stats,
	   		       time_stats_t *gamma_stats,
	   		       time_stats_t *ext_stats,
	   		       time_stats_t *intl1_stats,
                               time_stats_t *intl2_stats);

typedef uint8_t(*encoder_if_t)(uint8_t *input,
                               uint16_t input_length_bytes,
                               uint8_t *output,
                               uint8_t F,
                               uint16_t interleaver_f1,
                               uint16_t interleaver_f2);

1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675
#define MAX_RRU_CONFIG_SIZE 1024
typedef enum {
  RAU_tick=0,
  RRU_capabilities=1,
  RRU_config=2,
  RRU_MSG_max_num=3
} rru_config_msg_type_t;

typedef struct RRU_CONFIG_msg_s {
  rru_config_msg_type_t type;
  ssize_t len;
  uint8_t msg[MAX_RRU_CONFIG_SIZE];
} RRU_CONFIG_msg_t;

typedef enum {
  OAI_IF5_only      =0,
  OAI_IF4p5_only    =1,
  OAI_IF5_and_IF4p5 =2,
  MBP_IF5           =3,
  MAX_FH_FMTs       =4
} FH_fmt_options_t;

#define MAX_BANDS_PER_RRU 4

typedef struct RRU_capabilities_s {
  /// Fronthaul format
  FH_fmt_options_t FH_fmt;
  /// number of EUTRA bands (<=4) supported by RRU
  uint8_t          num_bands;
  /// EUTRA band list supported by RRU
  uint8_t          band_list[MAX_BANDS_PER_RRU];
  /// Number of concurrent bands (component carriers)
  uint8_t          num_concurrent_bands;
  /// Maximum TX EPRE of each band
  int8_t           max_pdschReferenceSignalPower[MAX_BANDS_PER_RRU];
  /// Maximum RX gain of each band
  uint8_t          max_rxgain[MAX_BANDS_PER_RRU];
  /// Number of RX ports of each band
  uint8_t          nb_rx[MAX_BANDS_PER_RRU];
  /// Number of TX ports of each band
  uint8_t          nb_tx[MAX_BANDS_PER_RRU]; 
  /// max DL bandwidth (1,6,15,25,50,75,100)
  uint8_t          N_RB_DL[MAX_BANDS_PER_RRU];
  /// max UL bandwidth (1,6,15,25,50,75,100)
  uint8_t          N_RB_UL[MAX_BANDS_PER_RRU];
} RRU_capabilities_t;

typedef struct RRU_config_s {
1676

1677 1678 1679 1680 1681 1682
  /// Fronthaul format
  RU_if_south_t FH_fmt;
  /// number of EUTRA bands (<=4) configured in RRU
  uint8_t num_bands;
  /// EUTRA band list configured in RRU
  uint8_t band_list[MAX_BANDS_PER_RRU];
1683 1684 1685 1686
  /// TDD configuration (0-6)
  uint8_t tdd_config[MAX_BANDS_PER_RRU];
  /// TDD special subframe configuration (0-10)
  uint8_t tdd_config_S[MAX_BANDS_PER_RRU];
1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704
  /// TX frequency
  uint32_t tx_freq[MAX_BANDS_PER_RRU];
  /// RX frequency
  uint32_t rx_freq[MAX_BANDS_PER_RRU];
  /// TX attenation w.r.t. max
  uint8_t att_tx[MAX_BANDS_PER_RRU];
  /// RX attenuation w.r.t. max
  uint8_t att_rx[MAX_BANDS_PER_RRU];
  /// DL bandwidth
  uint8_t N_RB_DL[MAX_BANDS_PER_RRU];
  /// UL bandwidth
  uint8_t N_RB_UL[MAX_BANDS_PER_RRU];
  /// 3/4 sampling rate
  uint8_t threequarter_fs[MAX_BANDS_PER_RRU];
  /// prach_FreqOffset for IF4p5
  int prach_FreqOffset[MAX_BANDS_PER_RRU];
  /// prach_ConfigIndex for IF4p5
  int prach_ConfigIndex[MAX_BANDS_PER_RRU];
1705 1706 1707 1708 1709 1710 1711
#ifdef Rel14
  int emtc_prach_CElevel_enable[MAX_BANDS_PER_RRU][4];
  /// emtc_prach_FreqOffset for IF4p5 per CE Level
  int emtc_prach_FreqOffset[MAX_BANDS_PER_RRU][4];
  /// emtc_prach_ConfigIndex for IF4p5 per CE Level
  int emtc_prach_ConfigIndex[MAX_BANDS_PER_RRU][4];
#endif
1712
} RRU_config_t;
1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728


static inline void wait_sync(char *thread_name) {

  printf( "waiting for sync (%s)\n",thread_name);
  pthread_mutex_lock( &sync_mutex );
  
  while (sync_var<0)
    pthread_cond_wait( &sync_cond, &sync_mutex );
  
  pthread_mutex_unlock(&sync_mutex);
  
  printf( "got sync (%s)\n", thread_name);

}

1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
static inline int wakeup_thread(pthread_mutex_t *mutex,pthread_cond_t *cond,int *instance_cnt,char *name) {

  if (pthread_mutex_lock(mutex) != 0) {
    LOG_E( PHY, "error locking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
  *instance_cnt = *instance_cnt + 1;
  // the thread can now be woken up
  if (pthread_cond_signal(cond) != 0) {
    LOG_E( PHY, "ERROR pthread_cond_signal\n");
    exit_fun( "ERROR pthread_cond_signal" );
    return(-1);
  }
  
  pthread_mutex_unlock(mutex);
  return(0);
}

1748
static inline int wait_on_condition(pthread_mutex_t *mutex,pthread_cond_t *cond,int *instance_cnt,char *name) {
1749 1750 1751 1752 1753
  if (pthread_mutex_lock(mutex) != 0) {
    LOG_E( PHY, "[SCHED][eNB] error locking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
1754

1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768
  while (*instance_cnt < 0) {
    // most of the time the thread is waiting here
    // proc->instance_cnt_rxtx is -1
    pthread_cond_wait(cond,mutex); // this unlocks mutex_rxtx while waiting and then locks it again
  }

  if (pthread_mutex_unlock(mutex) != 0) {
    LOG_E(PHY,"[SCHED][eNB] error unlocking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
  return(0);
}

1769
static inline int wait_on_busy_condition(pthread_mutex_t *mutex,pthread_cond_t *cond,int *instance_cnt,char *name) {
1770 1771 1772 1773 1774 1775

  if (pthread_mutex_lock(mutex) != 0) {
    LOG_E( PHY, "[SCHED][eNB] error locking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
1776

1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790
  while (*instance_cnt == 0) {
    // most of the time the thread will skip this
    // waits only if proc->instance_cnt_rxtx is 0
    pthread_cond_wait(cond,mutex); // this unlocks mutex_rxtx while waiting and then locks it again
  }

  if (pthread_mutex_unlock(mutex) != 0) {
    LOG_E(PHY,"[SCHED][eNB] error unlocking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
  return(0);
}

1791
static inline int release_thread(pthread_mutex_t *mutex,int *instance_cnt,char *name) {
1792 1793 1794 1795 1796 1797

  if (pthread_mutex_lock(mutex) != 0) {
    LOG_E( PHY, "[SCHED][eNB] error locking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
1798

1799
  //LOG_D(PHY, "%s() name:%s instance_cnt:%u - about to decrement\n", __FUNCTION__, name, *instance_cnt);
1800

1801
  *instance_cnt=*instance_cnt-1;
1802

1803 1804 1805 1806 1807 1808 1809
  if (pthread_mutex_unlock(mutex) != 0) {
    LOG_E( PHY, "[SCHED][eNB] error unlocking mutex for %s\n",name);
    exit_fun("nothing to add");
    return(-1);
  }
  return(0);
}
1810

1811 1812 1813 1814 1815 1816 1817 1818 1819

#include "PHY/INIT/defs.h"
#include "PHY/LTE_REFSIG/defs.h"
#include "PHY/MODULATION/defs.h"
#include "PHY/LTE_TRANSPORT/proto.h"
#include "PHY/LTE_ESTIMATION/defs.h"

#include "SIMULATION/ETH_TRANSPORT/defs.h"
#endif //  __PHY_DEFS__H__