defs.h 29.8 KB
Newer Older
1
/*******************************************************************************
2 3
    OpenAirInterface
    Copyright(c) 1999 - 2014 Eurecom
4

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


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

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

  Contact Information
22 23 24 25
  OpenAirInterface Admin: openair_admin@eurecom.fr
  OpenAirInterface Tech : openair_tech@eurecom.fr
  OpenAirInterface Dev  : openair4g-devel@eurecom.fr

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

*******************************************************************************/
/*! \file def.h
* \brief MAC data structures, constant, and function prototype
31
* \author Navid Nikaein and Raymond Knopp
32 33
* \date 2011
* \version 0.5
34
* \email navid.nikaein@eurecom.fr
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
* @ingroup _mac

*/

 
#ifndef __LAYER2_MAC_DEFS_H__
#define __LAYER2_MAC_DEFS_H__



#ifdef USER_MODE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#endif

//#include "COMMON/openair_defs.h"

#include "COMMON/platform_constants.h"
#include "COMMON/mac_rrc_primitives.h"
#include "PHY/defs.h"
#include "RadioResourceConfigCommon.h"
#include "RadioResourceConfigDedicated.h"
#include "MeasGapConfig.h"
#include "TDD-Config.h"
#include "RACH-ConfigCommon.h"
#include "MeasObjectToAddModList.h"
62
#include "MobilityControlInfo.h"
63 64 65 66
#ifdef Rel10
#include "MBSFN-AreaInfoList-r9.h"
#include "MBSFN-SubframeConfigList.h"
#include "PMCH-InfoList-r9.h"
Raymond Knopp's avatar
 
Raymond Knopp committed
67
#include "SCellToAddMod-r10.h"
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
#endif

//#ifdef PHY_EMUL
//#include "SIMULATION/PHY_EMULATION/impl_defs.h"
//#endif

/** @defgroup _mac_impl_ MAC Layer Reference Implementation
 * @ingroup _ref_implementation_
 * @{
 */

#define BCCH_PAYLOAD_SIZE_MAX 128  
#define CCCH_PAYLOAD_SIZE_MAX 128
 
#define SCH_PAYLOAD_SIZE_MAX 4096
/// Logical channel ids from 36-311 (Note BCCH is not specified in 36-311, uses the same as first DRB)
#define BCCH 3  // SI 
#define CCCH 0  // srb0
#define DCCH 1  // srb1
#define DCCH1 2 // srb2

89
#define DTCH 3 // LCID
90 91

#define MCCH 4 // MCCH
92
#define MTCH 1 // MTCH
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112

#ifdef Rel10

// Mask for identifying subframe for MBMS 
#define MBSFN_TDD_SF3 0x80// for TDD
#define MBSFN_TDD_SF4 0x40
#define MBSFN_TDD_SF7 0x20
#define MBSFN_TDD_SF8 0x10
#define MBSFN_TDD_SF9 0x08
#define MBSFN_FDD_SF1 0x80// for FDD
#define MBSFN_FDD_SF2 0x40
#define MBSFN_FDD_SF3 0x20
#define MBSFN_FDD_SF6 0x10
#define MBSFN_FDD_SF7 0x08
#define MBSFN_FDD_SF8 0x04

#define MAX_MBSFN_AREA 8
#define MAX_PMCH_perMBSFN 15

#define MCCH_PAYLOAD_SIZE_MAX 128
113
//#define MCH_PAYLOAD_SIZE_MAX 16384// this value is using in case mcs and TBS index are high
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
#endif

#ifdef USER_MODE
#define printk printf
#endif //USER_MODE

#define MAX_NUM_LCGID 4
#define MAX_NUM_LCID 11
//#define MAX_NUM_RB 8
#define MAX_NUM_CE 5

#define NB_RA_PROC_MAX 4

#define BSR_TABLE_SIZE 64
// The power headroom reporting range is from -23 ...+40 dB and beyond, with step 1
#define PHR_MAPPING_OFFSET 23  // if ( x>= -23 ) val = floor (x + 23) 

131 132 133 134 135
#define N_RBG_MAX 25 // for 20MHz channel BW

#define MIN_CQI_VALUE  0
#define MAX_CQI_VALUE  15

136

137 138 139 140 141 142 143 144 145 146 147
#define LCGID0 0
#define LCGID1 1
#define LCGID2 2
#define LCGID3 3

#define LCID_EMPTY 0
#define LCID_NOT_EMPTY 1

typedef enum {
  CONNECTION_OK=0,
  CONNECTION_LOST,
148 149
  PHY_RESYNCH,
  PHY_HO_PRACH
150 151 152
} UE_L2_STATE_t;

typedef struct {
153 154 155
  uint8_t RAPID:6;
  uint8_t T:1;
  uint8_t E:1;
156 157 158
} __attribute__((__packed__))RA_HEADER_RAPID;

typedef struct {
159 160 161 162
  uint8_t BI:4;
  uint8_t R:2;
  uint8_t T:1;
  uint8_t E:1;
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194
} __attribute__((__packed__))RA_HEADER_BI;
/*
typedef struct {
  uint64_t padding:16;
  uint64_t t_crnti:16;
  uint64_t hopping_flag:1;
  uint64_t rb_alloc:10;
  uint64_t mcs:4;
  uint64_t TPC:3;
  uint64_t UL_delay:1;
  uint64_t cqi_req:1;
  uint64_t Timing_Advance_Command:11;  // first/2nd octet LSB
  uint64_t R:1;                        // octet MSB
  } __attribute__((__packed__))RAR_PDU;

typedef struct {
  uint64_t padding:16;
  uint64_t R:1;                        // octet MSB
  uint64_t Timing_Advance_Command:11;  // first/2nd octet LSB
  uint64_t cqi_req:1;
  uint64_t UL_delay:1;
  uint64_t TPC:3;
  uint64_t mcs:4;
  uint64_t rb_alloc:10;
  uint64_t hopping_flag:1;
  uint64_t t_crnti:16;
  } __attribute__((__packed__))RAR_PDU;

#define sizeof_RAR_PDU 6
*/

typedef struct {
195 196 197 198 199
  uint8_t LCID:5;  // octet 1 LSB
  uint8_t E:1;
  uint8_t R:2;     // octet 1 MSB
  uint8_t L:7;     // octet 2 LSB
  uint8_t F:1;     // octet 2 MSB
200 201 202
} __attribute__((__packed__))SCH_SUBHEADER_SHORT;

typedef struct {
203 204 205 206 207 208 209
  uint8_t LCID:5;   // octet 1 LSB
  uint8_t E:1;
  uint8_t R:2;      // octet 1 MSB
  uint8_t L_MSB:7;
  uint8_t F:1;      // octet 2 MSB
  uint8_t L_LSB:8;
  uint8_t padding;
210 211 212
} __attribute__((__packed__))SCH_SUBHEADER_LONG;
 
typedef struct {
213 214 215
  uint8_t LCID:5;
  uint8_t E:1;
  uint8_t R:2;
216 217 218
} __attribute__((__packed__))SCH_SUBHEADER_FIXED;

typedef struct {
219 220
  uint8_t Buffer_size:6;  // octet 1 LSB
  uint8_t LCGID:2;        // octet 1 MSB
221 222 223 224 225
} __attribute__((__packed__))BSR_SHORT;

typedef BSR_SHORT BSR_TRUNCATED;

typedef struct {
226 227 228 229 230
  uint32_t Buffer_size3:6;
  uint32_t Buffer_size2:6;
  uint32_t Buffer_size1:6;
  uint32_t Buffer_size0:6;
  uint32_t padding:8;
231 232 233 234 235
} __attribute__((__packed__))BSR_LONG;

#define BSR_LONG_SIZE  (sizeof(BSR_LONG))

typedef struct {
236 237
  uint8_t TA:6;
  uint8_t R:2;
238 239 240
} __attribute__((__packed__))TIMING_ADVANCE_CMD;

typedef struct {
241 242
  uint8_t PH:6;
  uint8_t R:2;
243 244 245
} __attribute__((__packed__))POWER_HEADROOM_CMD;

typedef struct {
246 247
  uint8_t Num_ue_spec_dci ;
  uint8_t Num_common_dci  ;
248 249 250 251 252
  unsigned int nCCE;
  DCI_ALLOC_t dci_alloc[NUM_DCI_MAX] ;
} DCI_PDU;

typedef struct {
253
  uint8_t payload[CCCH_PAYLOAD_SIZE_MAX] ;/*!< \brief CCCH payload */
254 255 256
} __attribute__((__packed__))CCCH_PDU;

typedef struct {
257
  uint8_t payload[BCCH_PAYLOAD_SIZE_MAX] ;/*!< \brief CCCH payload */
258 259 260 261
} __attribute__((__packed__))BCCH_PDU;

#ifdef Rel10
typedef struct {
262
  uint8_t payload[MCCH_PAYLOAD_SIZE_MAX] ;/*!< \brief MCCH payload */
263 264 265 266
} __attribute__((__packed__))MCCH_PDU;
#endif

typedef struct{
267 268 269
  uint8_t stop_sf_MSB:3; // octet 1 LSB
  uint8_t lcid:5;        // octet 2 MSB
  uint8_t stop_sf_LSB:8;
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
} __attribute__((__packed__))MSI_ELEMENT;

// DLSCH LCHAN IDs
#define CCCH_LCHANID 0
#define UE_CONT_RES 28
#define TIMING_ADV_CMD 29
#define DRX_CMD 30
#define SHORT_PADDING 31

#ifdef Rel10
// MCH LCHAN IDs (table6.2.1-4 TS36.321)
#define MCCH_LCHANID 0
#define MCH_SCHDL_INFO 30

#endif

// ULSCH LCHAN IDs
#define EXTENDED_POWER_HEADROOM 25
#define POWER_HEADROOM 26
#define CRNTI 27
#define TRUNCATED_BSR 28
#define SHORT_BSR 29
#define LONG_BSR 30

/*! \brief Downlink SCH PDU Structure
 */
typedef struct {
297 298
  int8_t payload[8][SCH_PAYLOAD_SIZE_MAX];
  uint16_t Pdu_size[8];
299 300 301 302 303
} __attribute__ ((__packed__)) DLSCH_PDU;

/*! \brief MCH PDU Structure
 */
typedef struct {
304 305
  int8_t payload[SCH_PAYLOAD_SIZE_MAX];
  uint16_t Pdu_size;
306
  uint8_t mcs;
307 308 309 310
  uint8_t sync_area;
  uint8_t msi_active;
  uint8_t mcch_active;
  uint8_t mtch_active;  
311 312 313 314 315
} __attribute__ ((__packed__)) MCH_PDU;

/*! \brief Uplink SCH PDU Structure
 */
typedef struct {
316 317
  int8_t payload[SCH_PAYLOAD_SIZE_MAX];         /*!< \brief SACH payload */
  uint16_t Pdu_size;
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340
} __attribute__ ((__packed__)) ULSCH_PDU;

#include "PHY/impl_defs_top.h"

typedef enum {
  S_UL_NONE =0,
  S_UL_WAITING,
  S_UL_SCHEDULED, 
  S_UL_BUFFERED,  
  S_UL_NUM_STATUS
} UE_ULSCH_STATUS;

typedef enum {
  S_DL_NONE =0,
  S_DL_WAITING,
  S_DL_SCHEDULED, 
  S_DL_BUFFERED,  
  S_DL_NUM_STATUS
} UE_DLSCH_STATUS;

// temp struct for sched
typedef struct {
  
341
  rnti_t rnti;
342 343
  uint16_t subframe;
  uint16_t serving_num;
344 345 346 347 348
  UE_ULSCH_STATUS status;
} eNB_ULSCH_INFO;
// temp struct for sched
typedef struct {
  
349
  rnti_t rnti;
350 351 352
  uint16_t weight;
  uint16_t subframe;
  uint16_t serving_num;
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
  UE_DLSCH_STATUS status;
} eNB_DLSCH_INFO;
typedef struct{
  /// BW
  uint16_t num_dlactive_UEs;
  ///  available number of PRBs for a give SF
  uint16_t available_prbs;
  /// total number of PRB available for the user plane
  uint32_t total_available_prbs;
  /// aggregation 
  /// total avilable nccc : num control channel element 
  uint16_t available_ncces;
  // only for a new transmission, should be extended for retransmission  
  // current dlsch  bit rate for all transport channels 
  uint32_t dlsch_bitrate;
  //
  uint32_t dlsch_bytes_tx;
  //
  uint32_t dlsch_pdus_tx;
 //
  uint32_t total_dlsch_bitrate;
  //
  uint32_t total_dlsch_bytes_tx;
  //
  uint32_t total_dlsch_pdus_tx;

  //
  uint32_t ulsch_bitrate;
  //
  uint32_t ulsch_bytes_rx;
  //
  uint64_t ulsch_pdus_rx;
  // here for RX
}eNB_STATS;

typedef struct{

  /// CRNTI of UE
391
  rnti_t crnti; ///user id (rnti) of connected UEs
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468
  // rrc status 
  uint8_t rrc_status;
  /// harq pid
  uint8_t harq_pid;
  /// harq rounf 
  uint8_t harq_round;
  /// DL Wideband CQI index (2 TBs) 
  uint8_t dl_cqi;
  /// total available number of PRBs for a new transmission
  uint16_t rbs_used;
  /// total available number of PRBs for a retransmission
  uint16_t rbs_used_retx;
  /// total nccc used for a new transmission: num control channel element 
  uint16_t ncce_used;
  /// total avilable nccc for a retransmission: num control channel element 
  uint16_t ncce_used_retx;
 
  // mcs1 before the rate adaptaion 
  uint8_t dlsch_mcs1;
  /// Target mcs2 after rate-adaptation 
  uint8_t dlsch_mcs2;
  //  current TBS with mcs2 
  uint32_t TBS;
  //  total TBS with mcs2 
  //  uint32_t total_TBS;
 //  total rb used for a new transmission 
  uint32_t total_rbs_used;
 //  total rb used for retransmission 
  uint32_t total_rbs_used_retx;
 

  /// TX 
  /// Num pkt
  uint32_t num_pdu_tx[NB_RB_MAX];
  /// num bytes
  uint32_t num_bytes_tx[NB_RB_MAX];
  /// num retransmission / harq
  uint32_t num_retransmission;
  /// instantaneous tx throughput for each TTI
  //  uint32_t tti_throughput[NB_RB_MAX];
 
  /// overall 
  //
  uint32_t  dlsch_bitrate; 
  //total 
  uint32_t  total_dlsch_bitrate; 
  /// headers+ CE +  padding bytes for a MAC PDU 
  uint64_t overhead_bytes;
 /// headers+ CE +  padding bytes for a MAC PDU 
  uint64_t total_overhead_bytes;
 /// headers+ CE +  padding bytes for a MAC PDU 
  uint64_t avg_overhead_bytes;
  // MAC multiplexed payload 
  uint64_t total_sdu_bytes;
  // total MAC pdu bytes
  uint64_t total_pdu_bytes;
  
  // total num pdu
  uint32_t total_num_pdus;
  //
  //  uint32_t avg_pdu_size;
 
  /// RX 
  /// num rx pdu 
  uint32_t num_pdu_rx[NB_RB_MAX];
  /// num bytes rx 
  uint32_t num_bytes_rx[NB_RB_MAX];
 /// instantaneous rx throughput for each TTI
  //  uint32_t tti_goodput[NB_RB_MAX];
  /// errors 
  uint32_t num_errors_rx; 
  /// overall 

  // total MAC pdu bytes
  uint64_t total_pdu_bytes_rx;
  // total num pdu
  uint32_t total_num_pdus_rx;
469 470
  // num of error pdus 
  uint32_t total_num_errors_rx;
471 472 473 474 475

}eNB_UE_STATS;
 
typedef struct{
  /// C-RNTI of UE
476
  rnti_t rnti;
477 478 479 480
  /// NDI from last scheduling
  uint8_t oldNDI[8];
  /// NDI from last UL scheduling
  uint8_t oldNDI_UL[8];
481
  /// Flag to indicate UL has been scheduled at least once
Lionel Gauthier's avatar
Lionel Gauthier committed
482
  boolean_t ul_active;
Raymond Knopp's avatar
 
Raymond Knopp committed
483 484
  /// Flag to indicate UE has been configured (ACK from RRCConnectionSetup received)
  boolean_t configured;
485 486 487 488

  // PHY interface info

  /// DCI format for DLSCH
489
  uint16_t DLSCH_dci_fmt;
490 491
  
  /// Current Aggregation Level for DCI
492
  uint8_t DCI_aggregation_min;
493 494

  /// 
495
  uint8_t DLSCH_dci_size_bits;
496 497

  /// DCI buffer for DLSCH
498
  uint8_t DLSCH_DCI[8][(MAX_DCI_SIZE_BITS>>3)+1];
499 500

  /// Number of Allocated RBs for DL after scheduling (prior to frequency allocation)
501
  uint16_t nb_rb[8]; // num_max_harq
502 503

  /// Number of Allocated RBs for UL after scheduling (prior to frequency allocation)
504 505 506 507
  uint16_t nb_rb_ul[8]; // num_max_harq
  
  /// Number of Allocated RBs by the ulsch preprocessor
  uint8_t pre_allocated_nb_rb_ul;
508

509 510 511 512 513 514 515 516 517
  /// index of Allocated RBs by the ulsch preprocessor
  int8_t pre_allocated_rb_table_index_ul;
  
  /// total allocated RBs
  int8_t total_allocated_rbs;
  
  /// assigned MCS by the ulsch preprocessor
  uint8_t pre_assigned_mcs_ul;
  
518
  /// DCI buffer for ULSCH
519
  uint8_t ULSCH_DCI[8][(MAX_DCI_SIZE_BITS>>3)+1];
520 521

  /// DL DAI
522
  uint8_t DAI;
523 524

  /// UL DAI
525
  uint8_t DAI_ul[10];
526 527

  /// UL Scheduling Request Received
528
  uint8_t ul_SR;
529 530

  //Resource Block indication for each sub-band in MU-MIMO 
531
  uint8_t rballoc_subband[8][50];
532 533 534 535

  // Logical channel info for link with RLC

  /// UE BSR info for each logical channel group id
536
  uint8_t bsr_info[MAX_NUM_LCGID];
537 538

  /// phr information
539
  int8_t phr_info;
540

541 542 543
  /// phr information
  int8_t phr_info_configured;

544
  //dl buffer info
545
  uint32_t dl_buffer_info[MAX_NUM_LCID];
546

547
  uint32_t dl_buffer_total;
548

549
  uint32_t dl_pdus_total;
550

551
  uint32_t dl_pdus_in_buffer[MAX_NUM_LCID];
552
  
553
  uint32_t dl_buffer_head_sdu_creation_time[MAX_NUM_LCID];
554

555 556
  uint32_t  dl_buffer_head_sdu_creation_time_max;
  
557
  uint8_t    dl_buffer_head_sdu_is_segmented[MAX_NUM_LCID];
558

559
  uint32_t dl_buffer_head_sdu_remaining_size_to_send[MAX_NUM_LCID];
560

561 562 563 564 565 566 567 568 569
  // uplink info
  uint32_t ul_total_buffer;
  
  uint32_t ul_buffer_creation_time[MAX_NUM_LCGID];
  
  uint32_t ul_buffer_creation_time_max;

  uint32_t ul_buffer_info[MAX_NUM_LCGID];

570 571
} UE_TEMPLATE;

572 573 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 599
typedef struct{
		//UL transmission bandwidth in RBs
		uint8_t ul_bandwidth[MAX_NUM_LCID];
		//DL transmission bandwidth in RBs
		uint8_t dl_bandwidth[MAX_NUM_LCID];

		//To do GBR bearer
		uint8_t min_ul_bandwidth[MAX_NUM_LCID];
		
		uint8_t min_dl_bandwidth[MAX_NUM_LCID];

		//aggregated bit rate of non-gbr bearer per UE
		uint64_t	ue_AggregatedMaximumBitrateDL;
		//aggregated bit rate of non-gbr bearer per UE
		uint64_t	ue_AggregatedMaximumBitrateUL;
		//CQI scheduling interval in subframes.
		uint16_t cqiSchedInterval;
		//Contention resolution timer used during random access
		uint8_t mac_ContentionResolutionTimer;
		
		uint16_t max_allowed_rbs[MAX_NUM_LCID];

		uint8_t max_mcs[MAX_NUM_LCID];

		uint16_t priority[MAX_NUM_LCID];
	
} UE_sched_ctrl;

600 601
typedef struct {
  /// Flag to indicate this process is active
Lionel Gauthier's avatar
Lionel Gauthier committed
602
  boolean_t RA_active;
603
  /// Size of DCI for RA-Response (bytes)
604
  uint8_t RA_dci_size_bytes1;
605
  /// Size of DCI for RA-Response (bits)
606
  uint8_t RA_dci_size_bits1;
607
  /// Actual DCI to transmit for RA-Response
608
  uint8_t RA_alloc_pdu1[(MAX_DCI_SIZE_BITS>>3)+1];
609
  /// DCI format for RA-Response (should be 1A)
610
  uint8_t RA_dci_fmt1;
611
  /// Size of DCI for Msg4/ContRes (bytes)  
612
  uint8_t RA_dci_size_bytes2;
613
  /// Size of DCI for Msg4/ContRes (bits)  
614
  uint8_t RA_dci_size_bits2;
615
  /// Actual DCI to transmit for Msg4/ContRes
616
  uint8_t RA_alloc_pdu2[(MAX_DCI_SIZE_BITS>>3)+1];
617
  /// DCI format for Msg4/ContRes (should be 1A)
618
  uint8_t RA_dci_fmt2;
619
  /// Flag to indicate the eNB should generate RAR.  This is triggered by detection of PRACH
620
  uint8_t generate_rar;
621
  /// Subframe where preamble was received
622
  uint8_t preamble_subframe;
623
  /// Subframe where Msg3 is to be sent
624
  uint8_t Msg3_subframe;
625
  /// Flag to indicate the eNB should generate Msg4 upon reception of SDU from RRC.  This is triggered by first ULSCH reception at eNB for new user.
626
    uint8_t generate_Msg4;
627
  /// Flag to indicate the eNB should generate the DCI for Msg4, after getting the SDU from RRC.
628
  uint8_t generate_Msg4_dci;
629
  /// Flag to indicate that eNB is waiting for ACK that UE has received Msg3.
630
  uint8_t wait_ack_Msg4;
631
  /// UE RNTI allocated during RAR
632
  rnti_t rnti;
633
  /// RA RNTI allocated from received PRACH
634
  uint16_t RA_rnti;
635
  /// Received preamble_index
636
  uint8_t preamble_index;
637
  /// Received UE Contention Resolution Identifier 
638
  uint8_t cont_res_id[6];
639
  /// Timing offset indicated by PHY
640
  int16_t timing_offset;
641
  /// Timeout for RRC connection 
642
  int16_t RRC_timer;
643 644 645 646 647 648
} RA_TEMPLATE;


///subband bitmap coniguration (for ALU icic algo purpose), in test phase

typedef struct{
Raymond Knopp's avatar
 
Raymond Knopp committed
649
	uint8_t sbmap[NUMBER_OF_SUBBANDS_MAX]; //13 = number of SB MAX for 100 PRB
650 651 652 653
	uint8_t periodicity;
	uint8_t first_subframe;
	uint8_t sb_size;
	uint8_t nb_active_sb;
654 655 656 657

}SBMAP_CONF;

//end ALU's algo
Raymond Knopp's avatar
 
Raymond Knopp committed
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672
typedef struct{
  DLSCH_PDU DLSCH_pdu[MAX_NUM_CCs][2][NUMBER_OF_UE_MAX];
  /// DCI template and MAC connection parameters for UEs
  UE_TEMPLATE UE_template[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
  /// DCI template and MAC connection for RA processes
  int pCC_id[NUMBER_OF_UE_MAX];
  int ordered_CCids[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
  int numactiveCCs[NUMBER_OF_UE_MAX];
  int ordered_ULCCids[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
  int numactiveULCCs[NUMBER_OF_UE_MAX];
  /// eNB to UE statistics 
  eNB_UE_STATS eNB_UE_stats[MAX_NUM_CCs][NUMBER_OF_UE_MAX];
  UE_sched_ctrl UE_sched_ctrl[NUMBER_OF_UE_MAX];

  int next[NUMBER_OF_UE_MAX];
673 674 675
  int head; 
  int next_ul[NUMBER_OF_UE_MAX];
  int head_ul;
Raymond Knopp's avatar
 
Raymond Knopp committed
676 677 678 679
  int avail;
  int num_UEs;
  boolean_t active[NUMBER_OF_UE_MAX];
} UE_list_t;
680 681 682 683 684 685

typedef struct{
  /// Outgoing DCI for PHY generated by eNB scheduler
  DCI_PDU DCI_pdu;
  /// Outgoing BCCH pdu for PHY
  BCCH_PDU BCCH_pdu;
686 687
  /// Outgoing BCCH DCI allocation
  uint32_t BCCH_alloc_pdu;
688 689 690 691
  /// Outgoing CCCH pdu for PHY
  CCCH_PDU CCCH_pdu;
  RA_TEMPLATE RA_template[NB_RA_PROC_MAX];
  /// BCCH active flag
692
  uint8_t bcch_active;
693 694
  /// MBSFN SubframeConfig
  struct MBSFN_SubframeConfig *mbsfn_SubframeConfig[8];
695
  /// number of subframe allocation pattern available for MBSFN sync area 
696
  uint8_t num_sf_allocation_pattern;
697 698
#ifdef Rel10 
  /// MBMS Flag
699
  uint8_t MBMS_flag;
700 701 702
  /// Outgoing MCCH pdu for PHY
  MCCH_PDU MCCH_pdu;
  /// MCCH active flag
703
  uint8_t msi_active;
704
  /// MCCH active flag
705
  uint8_t mcch_active;
706
  /// MTCH active flag
707
  uint8_t mtch_active;
708
  /// number of active MBSFN area 
709
  uint8_t num_active_mbsfn_area;
710 711 712 713 714 715 716 717 718 719 720 721 722
  /// MBSFN Area Info
  struct  MBSFN_AreaInfo_r9 *mbsfn_AreaInfo[MAX_MBSFN_AREA];
  /// PMCH Config
  struct PMCH_Config_r9 *pmch_Config[MAX_PMCH_perMBSFN];
  /// MBMS session info list
  struct MBMS_SessionInfoList_r9 *mbms_SessionList[MAX_PMCH_perMBSFN];
  /// Outgoing MCH pdu for PHY
  MCH_PDU MCH_pdu;
#endif
#ifdef CBA
  uint8_t num_active_cba_groups; 
  uint16_t cba_rnti[NUM_MAX_CBA_GROUP];
#endif 
Raymond Knopp's avatar
 
Raymond Knopp committed
723 724 725 726 727 728 729 730 731 732 733 734
}COMMON_channels_t;

typedef struct{
  /// 
  uint16_t Node_id;
  /// frame counter
  frame_t frame;
  /// subframe counter
  sub_frame_t subframe;
  /// Common cell resources
  COMMON_channels_t common_channels[MAX_NUM_CCs];
  UE_list_t UE_list;
735 736 737 738
  ///subband bitmap configuration
  SBMAP_CONF sbmap_conf;
  
  ///  active flag for Other lcid 
Raymond Knopp's avatar
 
Raymond Knopp committed
739
  //  uint8_t lcid_active[NB_RB_MAX];
740
  // eNB stats 
741
  eNB_STATS eNB_stats[MAX_NUM_CCs];
742 743 744 745 746 747 748 749 750 751 752
  // MAC function execution peformance profiler
  time_stats_t eNB_scheduler;
  time_stats_t schedule_si;
  time_stats_t schedule_ra;
  time_stats_t schedule_ulsch;
  time_stats_t fill_DLSCH_dci;
  time_stats_t schedule_dlsch_preprocessor; 
  time_stats_t schedule_dlsch; // include rlc_data_req + MAC header + preprocessor
  time_stats_t schedule_mch;
  time_stats_t rx_ulsch_sdu; // include rlc_data_ind
  
753 754 755 756
}eNB_MAC_INST;

typedef struct {
  /// buffer status for each lcgid
757
  uint8_t  BSR[MAX_NUM_LCGID]; // should be more for mesh topology
758
  /// keep the number of bytes in rlc buffer for each lcid
759
  uint16_t  BSR_bytes[MAX_NUM_LCGID];
760
  /// buffer status for each lcid
761
  uint8_t  LCID_status[MAX_NUM_LCID];
762
  /// SR pending as defined in 36.321
763
  uint8_t  SR_pending;
764
  /// SR_COUNTER as defined in 36.321
765
  uint16_t SR_COUNTER;
766
  /// logical channel group ide for each LCID
767
  uint8_t  LCGID[MAX_NUM_LCID];
768
  /// retxBSR-Timer, default value is sf2560
769
  uint16_t retxBSR_Timer;
770
  /// retxBSR_SF, number of subframe before triggering a regular BSR 
771
  int16_t retxBSR_SF;
772
  /// periodicBSR-Timer, default to infinity
773
  uint16_t periodicBSR_Timer;
774
  /// periodicBSR_SF, number of subframe before triggering a periodic BSR 
775
  int16_t periodicBSR_SF;
776
  /// default value is 0: not configured
777
  uint16_t sr_ProhibitTimer;
778
  /// sr ProhibitTime running
779
  uint8_t sr_ProhibitTimer_Running;
780
  ///  default value to n5
781
  uint16_t maxHARQ_Tx;
782
  /// default value is false
783
  uint16_t ttiBundling;
784 785 786 787 788
  /// default value is release 
  struct DRX_Config *drx_config;
  /// default value is release
  struct MAC_MainConfig__phr_Config *phr_config;
  ///timer before triggering a periodic PHR
789
  uint16_t periodicPHR_Timer;
790
  ///timer before triggering a prohibit PHR
791
  uint16_t prohibitPHR_Timer;
792
  ///DL Pathloss change value 
793
  uint16_t PathlossChange;
794
  ///number of subframe before triggering a periodic PHR
795
  int16_t periodicPHR_SF;
796
  ///number of subframe before triggering a prohibit PHR
797
  int16_t prohibitPHR_SF;
798
  ///DL Pathloss Change in db 
799
  uint16_t PathlossChange_db;
800
  //Bj bucket usage per  lcid
801
  int16_t Bj[MAX_NUM_LCID];
802
  // Bucket size per lcid
803
  int16_t bucket_size[MAX_NUM_LCID];
804 805 806
} UE_SCHEDULING_INFO;

typedef struct{
807
  uint16_t Node_id;
808
  /// frame counter
809
  frame_t     frame;
810
  /// subframe counter
811
  sub_frame_t subframe;
812
  /// C-RNTI of UE
813
  uint16_t crnti;
814
  /// C-RNTI of UE before HO
815
  rnti_t crnti_before_ho; ///user id (rnti) of connected UEs
816 817 818 819
  /// uplink active flag
  uint8_t ul_active;
  /// pointer to RRC PHY configuration 
  RadioResourceConfigCommonSIB_t *radioResourceConfigCommon;
820 821
  /// pointer to RACH_ConfigDedicated (NULL when not active, i.e. upon HO completion or T304 expiry)
  struct RACH_ConfigDedicated	*rach_ConfigDedicated;
822 823
  /// pointer to RRC PHY configuration 
  struct PhysicalConfigDedicated *physicalConfigDedicated;
Raymond Knopp's avatar
 
Raymond Knopp committed
824 825 826 827
#ifdef Rel10 
 /// pointer to RRC PHY configuration SCEll
  struct PhysicalConfigDedicatedSCell_r10	*physicalConfigDedicatedSCell_r10;
#endif 
828 829 830
  /// pointer to TDD Configuration (NULL for FDD)
  TDD_Config_t *tdd_Config;
  /// Number of adjacent cells to measure
831
  uint8_t  n_adj_cells;
832
  /// Array of adjacent physical cell ids
833
  uint32_t adj_cell_id[6];
834 835 836 837 838 839 840 841 842 843 844 845 846
  /// Pointer to RRC MAC configuration
  MAC_MainConfig_t *macConfig;
  /// Pointer to RRC Measurement gap configuration
  MeasGapConfig_t  *measGapConfig;
  /// Pointers to LogicalChannelConfig indexed by LogicalChannelIdentity. Note NULL means LCHAN is inactive.
  LogicalChannelConfig_t *logicalChannelConfig[MAX_NUM_LCID];
  /// Scheduling Information 
  UE_SCHEDULING_INFO scheduling_info;
  /// Outgoing CCCH pdu for PHY
  CCCH_PDU CCCH_pdu;
  /// Incoming DLSCH pdu for PHY
  //DLSCH_PDU DLSCH_pdu[NUMBER_OF_UE_MAX][2];
  /// number of attempt for rach
847
  uint8_t RA_attempt_number;
848
  /// Random-access procedure flag
849
  uint8_t RA_active;
850
  /// Random-access window counter
851
  int8_t RA_window_cnt;
852
  /// Random-access Msg3 size in bytes
853
  uint8_t RA_Msg3_size;
854
  /// Random-access prachMaskIndex
855
  uint8_t RA_prachMaskIndex;
856
  /// Flag indicating Preamble set (A,B) used for first Msg3 transmission
857
  uint8_t RA_usedGroupA;
858 859 860
  /// Random-access Resources
  PRACH_RESOURCES_t RA_prach_resources;
  /// Random-access PREAMBLE_TRANSMISSION_COUNTER
861
  uint8_t RA_PREAMBLE_TRANSMISSION_COUNTER;
862
  /// Random-access backoff counter
863
  int16_t RA_backoff_cnt;
864
  /// Random-access variable for window calculation (frame of last change in window counter)
865
  uint32_t RA_tx_frame;
866
  /// Random-access variable for window calculation (subframe of last change in window counter)
867
  uint8_t RA_tx_subframe;
868 869
  /// Random-access Group B maximum path-loss
  /// Random-access variable for backoff (frame of last change in backoff counter)
870
  uint32_t RA_backoff_frame;
871
  /// Random-access variable for backoff (subframe of last change in backoff counter)
872
  uint8_t RA_backoff_subframe;
873
  /// Random-access Group B maximum path-loss
874
  uint16_t RA_maxPL;
875
  /// Random-access Contention Resolution Timer active flag
876
  uint8_t RA_contention_resolution_timer_active;
877
  /// Random-access Contention Resolution Timer count value
878
  uint8_t RA_contention_resolution_cnt;
879
  /// power headroom reporitng reconfigured 
880
  uint8_t PHR_reconfigured;
881
  /// power headroom state as configured by the higher layers
882
  uint8_t PHR_state;
883
  /// power backoff due to power management (as allowed by P-MPRc) for this cell
884
  uint8_t PHR_reporting_active;
885
  /// power backoff due to power management (as allowed by P-MPRc) for this cell
886
  uint8_t power_backoff_db[NUMBER_OF_eNB_MAX];
887 888
  /// MBSFN_Subframe Configuration
  struct MBSFN_SubframeConfig *mbsfn_SubframeConfig[8];
889
  /// number of subframe allocation pattern available for MBSFN sync area 
890
  uint8_t num_sf_allocation_pattern;
891
#ifdef Rel10
892
 /// number of active MBSFN area 
893
  uint8_t num_active_mbsfn_area;
894 895 896 897 898
  /// MBSFN Area Info
  struct  MBSFN_AreaInfo_r9 *mbsfn_AreaInfo[MAX_MBSFN_AREA];
  /// PMCH Config
  struct PMCH_Config_r9 *pmch_Config[MAX_PMCH_perMBSFN];
  /// MCCH status
899
  uint8_t mcch_status;
900
  /// MSI status
901
  uint8_t msi_status;// could be an array if there are >1 MCH in one MBSFN area
902 903 904 905 906
#endif
//#ifdef CBA
  uint16_t cba_rnti[NUM_MAX_CBA_GROUP];
  uint8_t cba_last_access[NUM_MAX_CBA_GROUP];
//#endif
907 908 909 910 911 912 913 914
  
  time_stats_t ue_scheduler; // total 
  time_stats_t tx_ulsch_sdu;  // inlcude rlc_data_req + mac header gen
  time_stats_t rx_dlsch_sdu ; // include mac_rrc_data_ind or mac_rlc_status_ind+mac_rlc_data_ind and  mac header parser
  time_stats_t ue_query_mch; 
  time_stats_t rx_mch_sdu; 
  time_stats_t rx_si; // include mac_rrc_data_ind
    
915 916 917
}UE_MAC_INST;

typedef struct {
918 919
  uint16_t cell_ids[6];
  uint8_t n_adj_cells;
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
} neigh_cell_id_t;


/* \brief Generate header for DL-SCH.  This function parses the desired control elements and sdus and generates the header as described
in 36-321 MAC layer specifications.  It returns the number of bytes used for the header to be used as an offset for the payload 
in the DLSCH buffer.
@param mac_header Pointer to the first byte of the MAC header (DL-SCH buffer)
@param num_sdus Number of SDUs in the payload
@param sdu_lengths Pointer to array of SDU lengths
@param sdu_lcids Pointer to array of LCIDs (the order must be the same as the SDU length array)
@param drx_cmd dicontinous reception command 
@param timing_advancd_cmd timing advanced command
@param ue_cont_res_id Pointer to contention resolution identifier (NULL means not present in payload)
@param short_padding Number of bytes for short padding (0,1,2)
@param post_padding number of bytes for padding at the end of MAC PDU 
@returns Number of bytes used for header
*/
unsigned char generate_dlsch_header(unsigned char *mac_header,
				    unsigned char num_sdus,
				    unsigned short *sdu_lengths,
				    unsigned char *sdu_lcids,
				    unsigned char drx_cmd,
				    short timing_advance_cmd,
				    unsigned char *ue_cont_res_id,
				    unsigned char short_padding,
				    unsigned short post_padding);

/** \brief RRC Configuration primitive for PHY/MAC.  Allows configuration of PHY/MAC resources based on System Information (SI), RRCConnectionSetup and RRCConnectionReconfiguration messages.
@param Mod_id Instance ID of eNB
@param eNB_flag Indicates if this is a eNB or UE configuration
@param UE_id Index of UE if this is an eNB configuration
@param eNB_id Index of eNB if this is a UE configuration
@param radioResourceConfigCommon Structure from SIB2 for common radio parameters (if NULL keep existing configuration)
@param physcialConfigDedicated Structure from RRCConnectionSetup or RRCConnectionReconfiguration for dedicated PHY parameters (if NULL keep existing configuration)
@param measObj Structure from RRCConnectionReconfiguration for UE measurement procedures
@param mac_MainConfig Structure from RRCConnectionSetup or RRCConnectionReconfiguration for dedicated MAC parameters (if NULL keep existing configuration)
@param logicalChannelIdentity Logical channel identity index of corresponding logical channel config 
@param logicalChannelConfig Pointer to logical channel configuration
@param measGapConfig Measurement Gap configuration for MAC (if NULL keep existing configuration)
@param tdd_Config TDD Configuration from SIB1 (if NULL keep existing configuration)
960
@param mobilityControlInfo mobility control info received for Handover
961 962 963 964 965 966 967
@param SIwindowsize SI Windowsize from SIB1 (if NULL keep existing configuration)
@param SIperiod SI Period from SIB1 (if NULL keep existing configuration)
@param MBMS_Flag indicates MBMS transmission
@param mbsfn_SubframeConfigList pointer to mbsfn subframe configuration list from SIB2
@param mbsfn_AreaInfoList pointer to MBSFN Area Info list from SIB13
@param pmch_InfoList pointer to PMCH_InfoList from MBSFNAreaConfiguration Message (MCCH Message)
*/
968 969
int rrc_mac_config_req(module_id_t     module_idP,
                       eNB_flag_t eNB_flag,
970 971
                       uint8_t         UE_id,
                       uint8_t         eNB_index,
972 973
                       RadioResourceConfigCommonSIB_t *radioResourceConfigCommon,
                       struct PhysicalConfigDedicated *physicalConfigDedicated,
Raymond Knopp's avatar
 
Raymond Knopp committed
974 975 976 977
#ifdef Rel10
		       SCellToAddMod_r10_t *sCellToAddMod_r10,
		       //struct PhysicalConfigDedicatedSCell_r10 *physicalConfigDedicatedSCell_r10,
#endif
978 979 980 981 982 983 984
                       MeasObjectToAddMod_t **measObj,
                       MAC_MainConfig_t *mac_MainConfig,
                       long logicalChannelIdentity,
                       LogicalChannelConfig_t *logicalChannelConfig,
                       MeasGapConfig_t *measGapConfig,
                       TDD_Config_t *tdd_Config,
                       MobilityControlInfo_t *mobilityControlInfo,
985 986
                       uint8_t *SIwindowsize,
                       uint16_t *SIperiod,
987 988 989 990
                       ARFCN_ValueEUTRA_t *ul_CarrierFreq,
                       long *ul_Bandwidth,
                       AdditionalSpectrumEmission_t *additionalSpectrumEmission,
                       struct MBSFN_SubframeConfigList *mbsfn_SubframeConfigList
991
#ifdef Rel10
992
                       ,
993
                       uint8_t MBMS_Flag,
994 995
                       MBSFN_AreaInfoList_r9_t *mbsfn_AreaInfoList,
                       PMCH_InfoList_r9_t *pmch_InfoList
996 997 998

#endif
#ifdef CBA
999
                       ,
1000 1001
                       uint8_t num_active_cba_groups,
                       uint16_t cba_rnti
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
#endif
		       );



/*@}*/
#endif /*__LAYER2_MAC_DEFS_H__ */