defs.h 25.8 KB
Newer Older
1
/*******************************************************************************
2
    OpenAirInterface
ghaddab's avatar
ghaddab committed
3
    Copyright(c) 1999 - 2014 Eurecom
4

ghaddab's avatar
ghaddab committed
5 6 7 8
    OpenAirInterface is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.
9 10


ghaddab's avatar
ghaddab committed
11 12 13 14
    OpenAirInterface is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
15

ghaddab's avatar
ghaddab committed
16
    You should have received a copy of the GNU General Public License
17 18
    along with OpenAirInterface.The full GNU General Public License is
   included in this distribution in the file called "COPYING". If not,
ghaddab's avatar
ghaddab committed
19
   see <http://www.gnu.org/licenses/>.
20 21

  Contact Information
ghaddab's avatar
ghaddab committed
22 23
  OpenAirInterface Admin: openair_admin@eurecom.fr
  OpenAirInterface Tech : openair_tech@eurecom.fr
24
  OpenAirInterface Dev  : openair4g-devel@lists.eurecom.fr
25

ghaddab's avatar
ghaddab committed
26
  Address      : Eurecom, Campus SophiaTech, 450 Route des Chappes, CS 50193 - 06904 Biot Sophia Antipolis cedex, FRANCE
27

ghaddab's avatar
ghaddab committed
28
 *******************************************************************************/
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44

/*! \file PHY/LTE_TRANSPORT/defs.h
* \brief data structures for PDSCH/DLSCH/PUSCH/ULSCH physical and transport channel descriptors (TX/RX)
* \author R. Knopp
* \date 2011
* \version 0.1
* \company Eurecom
* \email: raymond.knopp@eurecom.fr, florian.kaltenberger@eurecom.fr, oscar.tonelli@yahoo.it
* \note
* \warning
*/
#ifndef __LTE_TRANSPORT_DEFS__H__
#define __LTE_TRANSPORT_DEFS__H__
#include "PHY/defs.h"
#include "dci.h"
#include "uci.h"
45
#ifndef STANDALONE_COMPILE
46
#include "UTIL/LISTS/list.h"
47
#endif
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

#define MOD_TABLE_QPSK_OFFSET 1
#define MOD_TABLE_16QAM_OFFSET 5
#define MOD_TABLE_64QAM_OFFSET 21
#define MOD_TABLE_PSS_OFFSET 85

// structures below implement 36-211 and 36-212

/** @addtogroup _PHY_TRANSPORT_
 * @{
 */



#define NSOFT 1827072
63
#define LTE_NULL 2
64

65
// maximum of 3 segments before each coding block if data length exceeds 6144 bits.
66 67 68 69 70 71 72 73 74

#define MAX_NUM_DLSCH_SEGMENTS 16
#define MAX_NUM_ULSCH_SEGMENTS MAX_NUM_DLSCH_SEGMENTS
#define MAX_DLSCH_PAYLOAD_BYTES (MAX_NUM_DLSCH_SEGMENTS*768)
#define MAX_ULSCH_PAYLOAD_BYTES (MAX_NUM_ULSCH_SEGMENTS*768)

#define MAX_NUM_CHANNEL_BITS (14*1200*6)  // 14 symbols, 1200 REs, 12 bits/RE
#define MAX_NUM_RE (14*1200)

Lionel Gauthier's avatar
Lionel Gauthier committed
75
#if !defined(SI_RNTI)
Lionel Gauthier's avatar
Lionel Gauthier committed
76
#define SI_RNTI  (rnti_t)0xffff
Lionel Gauthier's avatar
Lionel Gauthier committed
77 78
#endif
#if !defined(M_RNTI)
Lionel Gauthier's avatar
Lionel Gauthier committed
79
#define M_RNTI   (rnti_t)0xfffd
Lionel Gauthier's avatar
Lionel Gauthier committed
80 81
#endif
#if !defined(P_RNTI)
Lionel Gauthier's avatar
Lionel Gauthier committed
82
#define P_RNTI   (rnti_t)0xfffe
Lionel Gauthier's avatar
Lionel Gauthier committed
83 84
#endif
#if !defined(CBA_RNTI)
Lionel Gauthier's avatar
Lionel Gauthier committed
85
#define CBA_RNTI (rnti_t)0xfff4
Lionel Gauthier's avatar
Lionel Gauthier committed
86 87
#endif
#if !defined(C_RNTI)
Lionel Gauthier's avatar
Lionel Gauthier committed
88
#define C_RNTI   (rnti_t)0x1234
Lionel Gauthier's avatar
Lionel Gauthier committed
89
#endif
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108

#define PMI_2A_11 0
#define PMI_2A_1m1 1
#define PMI_2A_1j 2
#define PMI_2A_1mj 3

typedef enum {
  SCH_IDLE,
  ACTIVE,
  CBA_ACTIVE,
  DISABLED
} SCH_status_t;


typedef struct {
  /// Status Flag indicating for this DLSCH (idle,active,disabled)
  SCH_status_t status;
  /// Transport block size
  uint32_t TBS;
109 110
  /// The payload + CRC size in bits, "B" from 36-212
  uint32_t B;
111
  /// Pointer to the payload
112
  uint8_t *b;
113
  /// Pointers to transport block segments
114
  uint8_t *c[MAX_NUM_DLSCH_SEGMENTS];
115 116
  /// RTC values for each segment (for definition see 36-212 V8.6 2009-03, p.15)
  uint32_t RTC[MAX_NUM_DLSCH_SEGMENTS];
117 118 119 120
  /// Frame where current HARQ round was sent
  uint32_t frame;
  /// Subframe where current HARQ round was sent
  uint32_t subframe;
121 122
  /// Index of current HARQ round for this DLSCH
  uint8_t round;
123
  /// MCS format for this DLSCH
124
  uint8_t mcs;
125 126 127 128
  /// Redundancy-version of the current sub-frame
  uint8_t rvidx;
  /// MIMO mode for this DLSCH
  MIMO_mode_t mimo_mode;
129 130
  /// Current RB allocation
  uint32_t rb_alloc[4];
131 132
  /// distributed/localized flag
  vrb_t vrb_type;
133 134 135 136 137 138 139 140 141 142 143 144
  /// Current subband PMI allocation
  uint16_t pmi_alloc;
  /// Current subband RI allocation
  uint32_t ri_alloc;
  /// Current subband CQI1 allocation
  uint32_t cqi_alloc1;
  /// Current subband CQI2 allocation
  uint32_t cqi_alloc2;
  /// Current Number of RBs
  uint16_t nb_rb;
  /// downlink power offset field
  uint8_t dl_power_off;
145
  /// Concatenated "e"-sequences (for definition see 36-212 V8.6 2009-03, p.17-18)
146
  uint8_t e[MAX_NUM_CHANNEL_BITS];
147
  /// Turbo-code outputs (36-212 V8.6 2009-03, p.12
148
  uint8_t *d[MAX_NUM_DLSCH_SEGMENTS];//[(96+3+(3*6144))];
149
  /// Sub-block interleaver outputs (36-212 V8.6 2009-03, p.16-17)
150 151 152
  uint8_t w[MAX_NUM_DLSCH_SEGMENTS][3*6144];
  /// Number of code segments (for definition see 36-212 V8.6 2009-03, p.9)
  uint32_t C;
153
  /// Number of "small" code segments (for definition see 36-212 V8.6 2009-03, p.10)
154
  uint32_t Cminus;
155
  /// Number of "large" code segments (for definition see 36-212 V8.6 2009-03, p.10)
156 157 158
  uint32_t Cplus;
  /// Number of bits in "small" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Kminus;
159
  /// Number of bits in "large" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
160
  uint32_t Kplus;
161
  /// Number of "Filler" bits (for definition see 36-212 V8.6 2009-03, p.10)
162
  uint32_t F;
163
  /// Number of MIMO layers (streams) (for definition see 36-212 V8.6 2009-03, p.17, TM3-4)
164
  uint8_t Nl;
165 166 167 168
  /// Number of layers for this PDSCH transmission (TM8-10)
  uint8_t Nlayers;
  /// First layer for this PSCH transmission
  uint8_t first_layer;
169 170 171
} LTE_DL_eNB_HARQ_t;

typedef struct {
172 173 174 175
  /// Indicator of first transmission
  uint8_t first_tx;
  /// Last Ndi received for this process on DCI (used for C-RNTI only)
  uint8_t DCINdi;
176
  /// Flag indicating that this ULSCH has a new packet (start of new round)
177
  //  uint8_t Ndi;
178 179 180 181 182 183
  /// Status Flag indicating for this ULSCH (idle,active,disabled)
  SCH_status_t status;
  /// Subframe scheduling indicator (i.e. Transmission opportunity indicator)
  uint8_t subframe_scheduling_flag;
  /// Subframe cba scheduling indicator (i.e. Transmission opportunity indicator)
  uint8_t subframe_cba_scheduling_flag;
184
  /// First Allocated RB
185 186 187 188 189 190 191
  uint16_t first_rb;
  /// Current Number of RBs
  uint16_t nb_rb;
  /// Last TPC command
  uint8_t TPC;
  /// Transport block size
  uint32_t TBS;
192 193
  /// The payload + CRC size in bits, "B" from 36-212
  uint32_t B;
194 195 196
  /// Length of ACK information (bits)
  uint8_t O_ACK;
  /// Pointer to the payload
197
  uint8_t *b;
198
  /// Pointers to transport block segments
199
  uint8_t *c[MAX_NUM_ULSCH_SEGMENTS];
200 201
  /// RTC values for each segment (for definition see 36-212 V8.6 2009-03, p.15)
  uint32_t RTC[MAX_NUM_ULSCH_SEGMENTS];
202 203
  /// Index of current HARQ round for this ULSCH
  uint8_t round;
204
  /// MCS format of this ULSCH
205
  uint8_t mcs;
206 207
  /// Redundancy-version of the current sub-frame
  uint8_t rvidx;
208 209
  /// Turbo-code outputs (36-212 V8.6 2009-03, p.12
  uint8_t d[MAX_NUM_ULSCH_SEGMENTS][(96+3+(3*6144))];
210
  /// Sub-block interleaver outputs (36-212 V8.6 2009-03, p.16-17)
211 212 213
  uint8_t w[MAX_NUM_ULSCH_SEGMENTS][3*6144];
  /// Number of code segments (for definition see 36-212 V8.6 2009-03, p.9)
  uint32_t C;
214
  /// Number of "small" code segments (for definition see 36-212 V8.6 2009-03, p.10)
215
  uint32_t Cminus;
216
  /// Number of "large" code segments (for definition see 36-212 V8.6 2009-03, p.10)
217 218 219
  uint32_t Cplus;
  /// Number of bits in "small" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Kminus;
220
  /// Number of bits in "large" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
221
  uint32_t Kplus;
222 223 224
  /// Total number of bits across all segments
  uint32_t sumKr;
  /// Number of "Filler" bits (for definition see 36-212 V8.6 2009-03, p.10)
225
  uint32_t F;
226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
  /// Msc_initial, Initial number of subcarriers for ULSCH (36-212, v8.6 2009-03, p.26-27)
  uint16_t Msc_initial;
  /// Nsymb_initial, Initial number of symbols for ULSCH (36-212, v8.6 2009-03, p.26-27)
  uint8_t Nsymb_initial;
  /// n_DMRS  for cyclic shift of DMRS (36.213 Table 9.1.2-2)
  uint8_t n_DMRS;
  /// n_DMRS2 for cyclic shift of DMRS (36.211 Table 5.5.1.1.-1)
  uint8_t n_DMRS2;
  /// Flag to indicate that this is a control only ULSCH (i.e. no MAC SDU)
  uint8_t control_only;
  /// Flag to indicate that this is a calibration ULSCH (i.e. no MAC SDU and filled with TDD calibration information)
  //  int calibration_flag;
} LTE_UL_UE_HARQ_t;

typedef struct {
Raymond Knopp's avatar
 
Raymond Knopp committed
241
  /// TX buffers for UE-spec transmission (antenna ports 5 or 7..14, prior to precoding)
242
  uint32_t *txdataF[8];
243
  /// Allocated RNTI (0 means DLSCH_t is not currently used)
244
  uint16_t rnti;
245 246 247 248
  /// Active flag for baseband transmitter processing
  uint8_t active;
  /// Indicator of TX activation per subframe.  Used during PUCCH detection for ACK/NAK.
  uint8_t subframe_tx[10];
249
  /// First CCE of last PDSCH scheduling per subframe.  Again used during PUCCH detection for ACK/NAK.
250 251 252 253 254 255 256 257 258 259
  uint8_t nCCE[10];
  /// Current HARQ process id
  uint8_t current_harq_pid;
  /// Process ID's per subframe.  Used to associate received ACKs on PUSCH/PUCCH to DLSCH harq process ids
  uint8_t harq_ids[10];
  /// Window size (in outgoing transport blocks) for fine-grain rate adaptation
  uint8_t ra_window_size;
  /// First-round error threshold for fine-grain rate adaptation
  uint8_t error_threshold;
  /// Pointers to 8 HARQ processes for the DLSCH
260
  LTE_DL_eNB_HARQ_t *harq_processes[8];
261 262 263 264 265 266 267
  /// circular list of free harq PIDs (the oldest come first)
  /// (10 is arbitrary value, must be > to max number of DL HARQ processes in LTE)
  int harq_pid_freelist[10];
  /// the head position of the free list (if list is free then head=tail)
  int head_freelist;
  /// the tail position of the free list
  int tail_freelist;
268 269 270
  /// Number of soft channel bits
  uint32_t G;
  /// Codebook index for this dlsch (0,1,2,3)
271 272 273
  uint8_t codebook_index;
  /// Maximum number of HARQ rounds (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Mdlharq;
274 275
  /// MIMO transmission mode indicator for this sub-frame (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Kmimo;
276 277
  /// Nsoft parameter related to UE Category
  uint32_t Nsoft;
278
  /// amplitude of PDSCH (compared to RS) in symbols without pilots
279 280 281
  int16_t sqrt_rho_a;
  /// amplitude of PDSCH (compared to RS) in symbols containing pilots
  int16_t sqrt_rho_b;
Raymond Knopp's avatar
 
Raymond Knopp committed
282

283 284 285 286 287 288 289 290 291 292 293
} LTE_eNB_DLSCH_t;

#define PUSCH_x 2
#define PUSCH_y 3

typedef struct {
  /// Current Number of Symbols
  uint8_t Nsymb_pusch;
  /// SRS active flag
  uint8_t srs_active;
  /// Pointers to 8 HARQ processes for the ULSCH
294
  LTE_UL_UE_HARQ_t *harq_processes[8];
295 296 297 298
  /// Pointer to CQI data
  uint8_t o[MAX_CQI_BYTES];
  /// Length of CQI data (bits)
  uint8_t O;
299
  /// Format of CQI data
300
  UCI_format_t uci_format;
301
  /// Rank information
302 303 304 305 306 307 308 309 310
  uint8_t o_RI[2];
  /// Length of rank information (bits)
  uint8_t O_RI;
  /// Pointer to ACK
  uint8_t o_ACK[4];
  /// Minimum number of CQI bits for PUSCH (36-212 r8.6, Sec 5.2.4.1 p. 37)
  uint8_t O_CQI_MIN;
  /// ACK/NAK Bundling flag
  uint8_t bundling;
311
  /// Concatenated "e"-sequences (for definition see 36-212 V8.6 2009-03, p.17-18)
312
  uint8_t e[MAX_NUM_CHANNEL_BITS];
313
  /// Interleaved "h"-sequences (for definition see 36-212 V8.6 2009-03, p.17-18)
314
  uint8_t h[MAX_NUM_CHANNEL_BITS];
315
  /// Scrambled "b"-sequences (for definition see 36-211 V8.6 2009-03, p.14)
316
  uint8_t b_tilde[MAX_NUM_CHANNEL_BITS];
317
  /// Modulated "d"-sequences (for definition see 36-211 V8.6 2009-03, p.14)
318
  mod_sym_t d[MAX_NUM_RE];
319
  /// Transform-coded "z"-sequences (for definition see 36-211 V8.6 2009-03, p.14-15)
320
  mod_sym_t z[MAX_NUM_RE];
321 322
  /// Maximum number of HARQ rounds (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Mdlharq;
323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350
  /// "q" sequences for CQI/PMI (for definition see 36-212 V8.6 2009-03, p.27)
  uint8_t q[MAX_CQI_PAYLOAD];
  /// coded and interleaved CQI bits
  uint8_t o_w[(MAX_CQI_BITS+8)*3];
  /// coded CQI bits
  uint8_t o_d[96+((MAX_CQI_BITS+8)*3)];
  /// coded ACK bits
  uint8_t q_ACK[MAX_ACK_PAYLOAD];
  /// coded RI bits
  uint8_t q_RI[MAX_RI_PAYLOAD];
  /// beta_offset_cqi times 8
  uint16_t beta_offset_cqi_times8;
  /// beta_offset_ri times 8
  uint16_t beta_offset_ri_times8;
  /// beta_offset_harqack times 8
  uint16_t beta_offset_harqack_times8;
  /// power_offset
  uint8_t power_offset;
  // for cooperative communication
  uint8_t cooperation_flag;
  /// RNTI attributed to this ULSCH
  uint16_t rnti;
  /// f_PUSCH parameter for PUSCH power control
  int16_t f_pusch;
  /// Po_PUSCH - target output power for PUSCH
  int16_t Po_PUSCH;
  /// PHR - current power headroom (based on last PUSCH transmission)
  int16_t PHR;
351
  /// num active cba group
352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375
  uint8_t num_active_cba_groups;
  /// num dci found for cba
  uint8_t num_cba_dci[10];
  /// allocated CBA RNTI
  uint16_t cba_rnti[4];//NUM_MAX_CBA_GROUP];
} LTE_UE_ULSCH_t;

typedef struct {
  /// Flag indicating that this ULSCH has been allocated by a DCI (otherwise it is a retransmission based on PHICH NAK)
  uint8_t dci_alloc;
  /// Flag indicating that this ULSCH has been allocated by a RAR (otherwise it is a retransmission based on PHICH NAK or DCI)
  uint8_t rar_alloc;
  /// Status Flag indicating for this ULSCH (idle,active,disabled)
  SCH_status_t status;
  /// Subframe scheduling indicator (i.e. Transmission opportunity indicator)
  uint8_t subframe_scheduling_flag;
  /// Subframe cba scheduling indicator (i.e. CBA Transmission opportunity indicator)
  uint8_t subframe_cba_scheduling_flag;
  /// PHICH active flag
  uint8_t phich_active;
  /// PHICH ACK
  uint8_t phich_ACK;
  /// Last TPC command
  uint8_t TPC;
376
  /// First Allocated RB
377 378 379 380 381
  uint16_t first_rb;
  /// Current Number of RBs
  uint16_t nb_rb;
  /// Transport block size
  uint32_t TBS;
382 383
  /// The payload + CRC size in bits
  uint32_t B;
Raymond Knopp's avatar
 
Raymond Knopp committed
384 385 386 387
  /// CQI CRC status
  uint8_t cqi_crc_status;
  /// Pointer to CQI data
  uint8_t o[MAX_CQI_BYTES];
388
  /// Format of CQI data
Raymond Knopp's avatar
 
Raymond Knopp committed
389 390 391 392 393
  UCI_format_t uci_format;
  /// Length of CQI data under RI=1 assumption(bits)
  uint8_t Or1;
  /// Length of CQI data under RI=2 assumption(bits)
  uint8_t Or2;
394
  /// Rank information
Raymond Knopp's avatar
 
Raymond Knopp committed
395 396 397 398 399
  uint8_t o_RI[2];
  /// Length of rank information (bits)
  uint8_t O_RI;
  /// Pointer to ACK
  uint8_t o_ACK[4];
400 401
  /// Length of ACK information (bits)
  uint8_t O_ACK;
402
  /// The value of DAI in DCI format 0
403
  uint8_t V_UL_DAI;
Raymond Knopp's avatar
 
Raymond Knopp committed
404 405 406 407 408 409 410 411 412 413 414 415
  /// "q" sequences for CQI/PMI (for definition see 36-212 V8.6 2009-03, p.27)
  int8_t q[MAX_CQI_PAYLOAD];
  /// number of coded CQI bits after interleaving
  uint8_t o_RCC;
  /// coded and interleaved CQI bits
  int8_t o_w[(MAX_CQI_BITS+8)*3];
  /// coded CQI bits
  int8_t o_d[96+((MAX_CQI_BITS+8)*3)];
  /// coded ACK bits
  int16_t q_ACK[MAX_ACK_PAYLOAD];
  /// coded RI bits
  int16_t q_RI[MAX_RI_PAYLOAD];
416
  /// Concatenated "e"-sequences (for definition see 36-212 V8.6 2009-03, p.17-18)
Raymond Knopp's avatar
 
Raymond Knopp committed
417 418 419
  int16_t e[MAX_NUM_CHANNEL_BITS];
  /// Temporary h sequence to flag PUSCH_x/PUSCH_y symbols which are not scrambled
  uint8_t h[MAX_NUM_CHANNEL_BITS];
420
  /// Pointer to the payload
421
  uint8_t *b;
422 423
  /// Pointers to transport block segments
  uint8_t *c[MAX_NUM_ULSCH_SEGMENTS];
424 425
  /// RTC values for each segment (for definition see 36-212 V8.6 2009-03, p.15)
  uint32_t RTC[MAX_NUM_ULSCH_SEGMENTS];
Raymond Knopp's avatar
 
Raymond Knopp committed
426 427 428 429
  /// Current Number of Symbols
  uint8_t Nsymb_pusch;
  /// SRS active flag
  uint8_t srs_active;
430
  /// Index of current HARQ round for this ULSCH
431
  uint8_t round;
432
  /// MCS format for this ULSCH
433
  uint8_t mcs;
434 435
  /// Redundancy-version of the current sub-frame
  uint8_t rvidx;
436
  /// soft bits for each received segment ("w"-sequence)(for definition see 36-212 V8.6 2009-03, p.15)
437
  int16_t w[MAX_NUM_ULSCH_SEGMENTS][3*(6144+64)];
438
  /// soft bits for each received segment ("d"-sequence)(for definition see 36-212 V8.6 2009-03, p.15)
439
  int16_t *d[MAX_NUM_ULSCH_SEGMENTS];
440 441
  /// Number of code segments (for definition see 36-212 V8.6 2009-03, p.9)
  uint32_t C;
442
  /// Number of "small" code segments (for definition see 36-212 V8.6 2009-03, p.10)
443 444 445 446 447 448
  uint32_t Cminus;
  /// Number of "large" code segments (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Cplus;
  /// Number of bits in "small" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Kminus;
  /// Number of bits in "large" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
449
  uint32_t Kplus;
450 451
  /// Number of "Filler" bits (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t F;
452
  /// Number of MIMO layers (streams) (for definition see 36-212 V8.6 2009-03, p.17)
453
  uint8_t Nl;
454 455 456 457 458 459 460 461 462 463
  /// Msc_initial, Initial number of subcarriers for ULSCH (36-212, v8.6 2009-03, p.26-27)
  uint16_t Msc_initial;
  /// Nsymb_initial, Initial number of symbols for ULSCH (36-212, v8.6 2009-03, p.26-27)
  uint8_t Nsymb_initial;
  /// n_DMRS  for cyclic shift of DMRS (36.213 Table 9.1.2-2)
  uint8_t n_DMRS;
  /// n_DMRS 2 for cyclic shift of DMRS (36.211 Table 5.5.1.1.-1)
  uint8_t n_DMRS2;
  /// Flag to indicate that this ULSCH is for calibration information sent from UE (i.e. no MAC SDU to pass up)
  //  int calibration_flag;
464 465
  /// delta_TF for power control
  int32_t delta_TF;
466 467 468 469
} LTE_UL_eNB_HARQ_t;

typedef struct {
  /// Pointers to 8 HARQ processes for the ULSCH
470 471 472
  LTE_UL_eNB_HARQ_t *harq_processes[8];
  /// Maximum number of HARQ rounds (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Mdlharq;
473 474 475 476 477 478 479 480 481 482
  /// Maximum number of iterations used in eNB turbo decoder
  uint8_t max_turbo_iterations;
  /// ACK/NAK Bundling flag
  uint8_t bundling;
  /// beta_offset_cqi times 8
  uint16_t beta_offset_cqi_times8;
  /// beta_offset_ri times 8
  uint16_t beta_offset_ri_times8;
  /// beta_offset_harqack times 8
  uint16_t beta_offset_harqack_times8;
483
  /// Flag to indicate that eNB awaits UE Msg3
484
  uint8_t Msg3_active;
485
  /// Flag to indicate that eNB should decode UE Msg3
486 487 488 489 490 491 492 493 494 495 496
  uint8_t Msg3_flag;
  /// Subframe for Msg3
  uint8_t Msg3_subframe;
  /// Frame for Msg3
  uint32_t Msg3_frame;
  /// RNTI attributed to this ULSCH
  uint16_t rnti;
  /// cyclic shift for DM RS
  uint8_t cyclicShift;
  /// cooperation flag
  uint8_t cooperation_flag;
497
  /// num active cba group
498 499 500
  uint8_t num_active_cba_groups;
  /// allocated CBA RNTI for this ulsch
  uint16_t cba_rnti[4];//NUM_MAX_CBA_GROUP];
501 502 503 504
#ifdef LOCALIZATION
  /// epoch timestamp in millisecond
  int32_t reference_timestamp_ms;
  /// aggregate physical states every n millisecond
505
  int32_t aggregation_period_ms;
506
  /// a set of lists used for localization
507 508
  struct list loc_rss_list[10], loc_rssi_list[10], loc_subcarrier_rss_list[10], loc_timing_advance_list[10], loc_timing_update_list[10];
  struct list tot_loc_rss_list, tot_loc_rssi_list, tot_loc_subcarrier_rss_list, tot_loc_timing_advance_list, tot_loc_timing_update_list;
509
#endif
510 511 512
} LTE_eNB_ULSCH_t;

typedef struct {
513 514 515 516
  /// Indicator of first transmission
  uint8_t first_tx;
  /// Last Ndi received for this process on DCI (used for C-RNTI only)
  uint8_t DCINdi;
517
  /// DLSCH status flag indicating
518 519 520
  SCH_status_t status;
  /// Transport block size
  uint32_t TBS;
521 522
  /// The payload + CRC size in bits
  uint32_t B;
523
  /// Pointer to the payload
524
  uint8_t *b;
525 526
  /// Pointers to transport block segments
  uint8_t *c[MAX_NUM_DLSCH_SEGMENTS];
527 528
  /// RTC values for each segment (for definition see 36-212 V8.6 2009-03, p.15)
  uint32_t RTC[MAX_NUM_DLSCH_SEGMENTS];
529
  /// Index of current HARQ round for this DLSCH
530
  uint8_t round;
531
  /// MCS format for this DLSCH
532
  uint8_t mcs;
533 534
  /// Qm (modulation order) for this DLSCH
  uint8_t Qm;
535 536 537 538
  /// Redundancy-version of the current sub-frame
  uint8_t rvidx;
  /// MIMO mode for this DLSCH
  MIMO_mode_t mimo_mode;
539
  /// soft bits for each received segment ("w"-sequence)(for definition see 36-212 V8.6 2009-03, p.15)
540
  int16_t w[MAX_NUM_DLSCH_SEGMENTS][3*(6144+64)];
541
  /// for abstraction soft bits for each received segment ("w"-sequence)(for definition see 36-212 V8.6 2009-03, p.15)
542
  double w_abs[MAX_NUM_DLSCH_SEGMENTS][3*(6144+64)];
543
  /// soft bits for each received segment ("d"-sequence)(for definition see 36-212 V8.6 2009-03, p.15)
544
  int16_t *d[MAX_NUM_DLSCH_SEGMENTS];
545 546
  /// Number of code segments (for definition see 36-212 V8.6 2009-03, p.9)
  uint32_t C;
547
  /// Number of "small" code segments (for definition see 36-212 V8.6 2009-03, p.10)
548 549 550 551 552 553
  uint32_t Cminus;
  /// Number of "large" code segments (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Cplus;
  /// Number of bits in "small" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t Kminus;
  /// Number of bits in "large" code segments (<6144) (for definition see 36-212 V8.6 2009-03, p.10)
554
  uint32_t Kplus;
555 556
  /// Number of "Filler" bits (for definition see 36-212 V8.6 2009-03, p.10)
  uint32_t F;
557 558 559
  /// Number of MIMO layers (streams) (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Nl;
  /// current delta_pucch
560
  int8_t delta_PUCCH;
561 562 563 564 565 566
  /// Number of soft channel bits
  uint32_t G;
  /// Current Number of RBs
  uint16_t nb_rb;
  /// Current subband PMI allocation
  uint16_t pmi_alloc;
567 568 569 570 571 572
  /// Current RB allocation (even slots)
  uint32_t rb_alloc_even[4];
  /// Current RB allocation (odd slots)
  uint32_t rb_alloc_odd[4];
  /// distributed/localized flag
  vrb_t vrb_type;
573 574 575 576
  /// downlink power offset field
  uint8_t dl_power_off;
} LTE_DL_UE_HARQ_t;

577
typedef struct {
578 579 580 581
  /// time-based localization, relying on TA and TOA
  double time_based;
  /// power-based localization, relying on RSS and RSSI
  double power_based;
582
} eNB_UE_estimated_distances;
583 584 585

typedef struct {
  /// UL RSSI per receive antenna
586
  int32_t UL_rssi[NB_ANTENNAS_RX];
587
  /// PUCCH1a/b power (digital linear)
588
  uint32_t Po_PUCCH;
589 590 591
  /// PUCCH1a/b power (dBm)
  int32_t Po_PUCCH_dBm;
  /// PUCCH1 power (digital linear), conditioned on below threshold
592
  uint32_t Po_PUCCH1_below;
593
  /// PUCCH1 power (digital linear), conditioned on above threshold
594
  uint32_t Po_PUCCH1_above;
595 596
  /// Indicator that Po_PUCCH has been updated by PHY
  int32_t Po_PUCCH_update;
597 598 599 600 601 602 603 604 605 606 607 608 609
  /// DL Wideband CQI index (2 TBs)
  uint8_t DL_cqi[2];
  /// DL Subband CQI index (from HLC feedback)
  uint8_t DL_subband_cqi[2][13];
  /// DL PMI Single Stream
  uint16_t DL_pmi_single;
  /// DL PMI Dual Stream
  uint16_t DL_pmi_dual;
  /// Current RI
  uint8_t rank;
  /// CRNTI of UE
  uint16_t crnti; ///user id (rnti) of connected UEs
  /// Initial timing offset estimate from PRACH for RAR
610
  int32_t UE_timing_offset;
611
  /// Timing advance estimate from PUSCH for MAC timing advance signalling
612
  int32_t timing_advance_update;
613 614 615 616
  /// Current mode of UE (NOT SYCHED, RAR, PUSCH)
  UE_MODE_t mode;
  /// Current sector where UE is attached
  uint8_t sector;
617

Florian Kaltenberger's avatar
Florian Kaltenberger committed
618 619
  /// dlsch l2 errors
  uint32_t dlsch_l2_errors[8];
620
  /// dlsch trials per harq and round
Florian Kaltenberger's avatar
Florian Kaltenberger committed
621 622 623 624 625 626 627 628
  uint32_t dlsch_trials[8][8];
  /// dlsch ACK/NACK per hard_pid and round
  uint32_t dlsch_ACK[8][8];
  uint32_t dlsch_NAK[8][8];

  /// ulsch l2 errors per harq_pid
  uint32_t ulsch_errors[8];
  /// ulsch l2 consecutive errors per harq_pid
629
  uint32_t ulsch_consecutive_errors; //[8];
Florian Kaltenberger's avatar
Florian Kaltenberger committed
630 631 632 633 634 635
  /// ulsch trials/errors/fer per harq and round
  uint32_t ulsch_decoding_attempts[8][8];
  uint32_t ulsch_round_errors[8][8];
  uint32_t ulsch_decoding_attempts_last[8][8];
  uint32_t ulsch_round_errors_last[8][8];
  uint32_t ulsch_round_fer[8][8];
636 637 638
  uint32_t sr_received;
  uint32_t sr_total;

Florian Kaltenberger's avatar
Florian Kaltenberger committed
639 640 641
  /// dlsch sliding count and total errors in round 0 are used to compute the dlsch_mcs_offset
  uint32_t dlsch_sliding_cnt;
  uint32_t dlsch_NAK_round0;
642
  int8_t dlsch_mcs_offset;
Florian Kaltenberger's avatar
Florian Kaltenberger committed
643

644 645 646 647
  /// Target mcs1 after rate-adaptation (used by MAC layer scheduler)
  uint8_t dlsch_mcs1;
  /// Target mcs2 after rate-adaptation (used by MAC layer scheduler)
  uint8_t dlsch_mcs2;
Florian Kaltenberger's avatar
Florian Kaltenberger committed
648 649 650
  /// Total bits received from MAC on PDSCH
  int total_TBS_MAC;
  /// Total bits acknowledged on PDSCH
651
  int total_TBS;
Florian Kaltenberger's avatar
Florian Kaltenberger committed
652
  /// Total bits acknowledged on PDSCH (last interval)
653
  int total_TBS_last;
Florian Kaltenberger's avatar
Florian Kaltenberger committed
654
  /// Bitrate on the PDSCH [bps]
655
  unsigned int dlsch_bitrate;
Florian Kaltenberger's avatar
Florian Kaltenberger committed
656
  //  unsigned int total_transmitted_bits;
657 658 659 660
#ifdef LOCALIZATION
  eNB_UE_estimated_distances distance;
  int32_t *subcarrier_rssi;
#endif
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
} LTE_eNB_UE_stats;

typedef struct {
  /// HARQ process id
  uint8_t harq_id;
  /// ACK bits (after decoding)
  uint8_t ack;
  /// send status (for PUCCH)
  uint8_t send_harq_status;
  /// nCCE (for PUCCH)
  uint8_t nCCE;
} harq_status_t;

typedef struct {
  /// RNTI
  uint16_t rnti;
  /// Active flag for DLSCH demodulation
  uint8_t active;
  /// Transmission mode
  uint8_t mode1_flag;
  /// amplitude of PDSCH (compared to RS) in symbols without pilots
  int16_t sqrt_rho_a;
  /// amplitude of PDSCH (compared to RS) in symbols containing pilots
  int16_t sqrt_rho_b;
  /// Current HARQ process id
  uint8_t current_harq_pid;
  /// Current subband antenna selection
  uint32_t antenna_alloc;
  /// Current subband RI allocation
  uint32_t ri_alloc;
  /// Current subband CQI1 allocation
  uint32_t cqi_alloc1;
  /// Current subband CQI2 allocation
  uint32_t cqi_alloc2;
695 696
  /// saved subband PMI allocation from last PUSCH/PUCCH report
  uint16_t pmi_alloc;
697 698 699
  /// HARQ-ACKs
  harq_status_t harq_ack[10];
  /// Pointers to up to 8 HARQ processes
700
  LTE_DL_UE_HARQ_t *harq_processes[8];
701
  /// Maximum number of HARQ rounds (for definition see 36-212 V8.6 2009-03, p.17
702
  uint8_t Mdlharq;
703 704
  /// MIMO transmission mode indicator for this sub-frame (for definition see 36-212 V8.6 2009-03, p.17)
  uint8_t Kmimo;
705 706
  /// Nsoft parameter related to UE Category
  uint32_t Nsoft;
707 708
  /// Maximum number of Turbo iterations
  uint8_t max_turbo_iterations;
709 710
  /// accumulated tx power adjustment for PUCCH
  int8_t               g_pucch;
711 712 713
} LTE_UE_DLSCH_t;

typedef enum {format0,
714 715 716 717 718 719 720 721 722 723 724 725 726
              format1,
              format1A,
              format1B,
              format1C,
              format1D,
              format1E_2A_M10PRB,
              format2,
              format2A,
              format2B,
              format2C,
              format2D,
              format3
             } DCI_format_t;
727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747

typedef enum {
  SI_PDSCH=0,
  RA_PDSCH,
  PDSCH,
  PMCH
} PDSCH_t;

typedef enum {
  pucch_format1=0,
  pucch_format1a,
  pucch_format1b,
  pucch_format2,
  pucch_format2a,
  pucch_format2b
} PUCCH_FMT_t;


typedef struct {
  /// Length of DCI in bits
  uint8_t dci_length;
748
  /// Aggregation level
749 750
  uint8_t L;
  /// Position of first CCE of the dci
751
  int firstCCE;
752
  /// flag to indicate that this is a RA response
Lionel Gauthier's avatar
Lionel Gauthier committed
753
  boolean_t ra_flag;
754
  /// rnti
Lionel Gauthier's avatar
Lionel Gauthier committed
755
  rnti_t rnti;
756 757 758 759 760 761 762 763 764
  /// Format
  DCI_format_t format;
  /// DCI pdu
  uint8_t dci_pdu[8];
} DCI_ALLOC_t;


/**@}*/
#endif