mac_proto.h 55.8 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 21
 * 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
 */

22
/*! \file LAYER2/MAC/proto.h
23
 * \brief MAC functions prototypes for eNB and UE
24
 * \author Navid Nikaein and Raymond Knopp
25
 * \date 2010 - 2014
26
 * \email navid.nikaein@eurecom.fr
27
 * \version 1.0
28 29 30
 */
#ifndef __LAYER2_MAC_PROTO_H__
#define __LAYER2_MAC_PROTO_H__
31

32
#include "LAYER2/MAC/mac.h"
33
#include "PHY/defs_common.h" // for PRACH_RESOURCES_t and lte_subframe_t
34

35 36 37
/** \addtogroup _mac
 *  @{
 */
38

39 40 41 42 43 44 45
/** \fn void schedule_mib(module_id_t module_idP,frame_t frameP,sub_frame_t subframe);
\brief MIB scheduling for PBCH. This function requests the MIB from RRC and provides it to L1.
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act

*/
46

47 48
void schedule_mib(module_id_t module_idP,
		  frame_t frameP, sub_frame_t subframeP);
49 50

/** \fn void schedule_RA(module_id_t module_idP,frame_t frameP,sub_frame_t subframe);
51
\brief First stage of Random-Access Scheduling. Loops over the ras and checks if RAR, Msg3 or its retransmission are to be scheduled in the subframe.  It returns the total number of PRB used for RA SDUs.  For Msg3 it retrieves the L3msg from RRC and fills the appropriate buffers.  For the others it just computes the number of PRBs. Each DCI uses 3 PRBs (format 1A)
52 53 54 55 56
for the message.
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
*/
57 58


59 60
void schedule_RA(module_id_t module_idP, frame_t frameP,
		 sub_frame_t subframe);
61 62 63 64 65 66

/** \brief First stage of SI Scheduling. Gets a SI SDU from RRC if available and computes the MCS required to transport it as a function of the SDU length.  It assumes a length less than or equal to 64 bytes (MCS 6, 3 PRBs).
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
*/
67 68
void schedule_SI(module_id_t module_idP, frame_t frameP,
		 sub_frame_t subframeP);
69

70 71 72 73 74 75 76 77 78 79 80
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
/** \brief First stage of SI Scheduling. Gets a SI SDU from RRC if available and computes the MCS required to transport it as a function of the SDU length.  It assumes a length less than or equal to 64 bytes (MCS 6, 3 PRBs).
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
*/
void schedule_SI_MBMS(module_id_t module_idP, frame_t frameP,
                sub_frame_t subframeP);
#endif


81 82 83 84 85
/** \brief MBMS scheduling: Checking the position for MBSFN subframes. Create MSI, transfer MCCH from RRC to MAC, transfer MTCHs from RLC to MAC. Multiplexing MSI,MCCH&MTCHs. Return 1 if there are MBSFN data being allocated, otherwise return 0;
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
*/
86 87
int schedule_MBMS(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
		  sub_frame_t subframe);
88 89 90 91

/** \brief check the mapping between sf allocation and sync area, Currently only supports 1:1 mapping
@param Mod_id Instance ID of eNB
@param mbsfn_sync_area index of mbsfn sync area
92
@param[out] index of sf pattern
93
*/
94 95
int8_t get_mbsfn_sf_alloction(module_id_t module_idP, uint8_t CC_id,
			      uint8_t mbsfn_sync_area);
96 97 98 99 100

/** \brief check the mapping between sf allocation and sync area, Currently only supports 1:1 mapping
@param Mod_id Instance ID of eNB
@param mbsfn_sync_area index of mbsfn sync area
@param eNB_index index of eNB
101
@param[out] index of sf pattern
102
*/
103 104 105
int8_t ue_get_mbsfn_sf_alloction(module_id_t module_idP,
				 uint8_t mbsfn_sync_area,
				 unsigned char eNB_index);
106 107 108 109 110 111

/** \brief top ULSCH Scheduling for TDD (config 1-6).
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
*/
112 113
void schedule_ulsch(module_id_t module_idP, frame_t frameP,
		    sub_frame_t subframe);
114

115
/** \brief ULSCH Scheduling per RNTI
116
@param Mod_id Instance ID of eNB
117
@param slice_idx Slice instance index for this eNB
118 119 120 121
@param frame Frame index
@param subframe Subframe number on which to act
@param sched_subframe Subframe number where PUSCH is transmitted (for DAI lookup)
*/
122
void schedule_ulsch_rnti(module_id_t module_idP, int slice_idx, frame_t frameP,
123 124 125
			 sub_frame_t subframe,
			 unsigned char sched_subframe,
			 uint16_t * first_rb);
126

127 128 129 130 131 132
void schedule_ulsch_rnti_emtc(module_id_t   module_idP,
			      frame_t       frameP,
			      sub_frame_t   subframeP,
			      unsigned char sched_subframeP,
			      int          *emtc_active);

133
/** \brief Second stage of DLSCH scheduling, after schedule_SI, schedule_RA and schedule_dlsch have been called.  This routine first allocates random frequency assignments for SI and RA SDUs using distributed VRB allocations and adds the corresponding DCI SDU to the DCI buffer for PHY.  It then loops over the UE specific DCIs previously allocated and fills in the remaining DCI fields related to frequency allocation.  It assumes localized allocation of type 0 (DCI.rah=0).  The allocation is done for tranmission modes 1,2,4.
134 135 136 137 138
@param Mod_id Instance of eNB
@param frame Frame index
@param subframe Index of subframe
@param mbsfn_flag Indicates that this subframe is for MCH/MCCH
*/
139
void fill_DLSCH_dci(module_id_t module_idP,frame_t frameP,sub_frame_t subframe,int *mbsfn_flag);
140

141
/** \brief UE specific DLSCH scheduling. Retrieves next ue to be schduled from round-robin scheduler and gets the appropriate harq_pid for the subframe from PHY. If the process is active and requires a retransmission, it schedules the retransmission with the same PRB count and MCS as the first transmission. Otherwise it consults RLC for DCCH/DTCH SDUs (status with maximum number of available PRBS), builds the MAC header (timing advance sent by default) and copies
142 143 144
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe on which to act
Raymond Knopp's avatar
Raymond Knopp committed
145

146 147
@param mbsfn_flag  Indicates that MCH/MCCH is in this subframe
*/
148
void schedule_dlsch(module_id_t module_idP, frame_t frameP,
149
		      sub_frame_t subframe, int *mbsfn_flag);
150

151
void schedule_ue_spec(module_id_t module_idP, int slice_idxP,
152
		      frame_t frameP,sub_frame_t subframe, int *mbsfn_flag);
153 154 155
void schedule_ue_spec_br(module_id_t   module_idP,
			 frame_t       frameP,
			 sub_frame_t   subframeP);
156
void schedule_ue_spec_phy_test(module_id_t module_idP,frame_t frameP,sub_frame_t subframe,int *mbsfn_flag);
Wang Tsu-Han's avatar
Wang Tsu-Han committed
157
void schedule_ulsch_phy_test(module_id_t module_idP,frame_t frameP,sub_frame_t subframeP);
158

159

160 161 162 163
/** \brief Function for UE/PHY to compute PUSCH transmit power in power-control procedure.
    @param Mod_id Module id of UE
    @returns Po_NOMINAL_PUSCH (PREAMBLE_RECEIVED_TARGET_POWER+DELTA_PREAMBLE
*/
164
int8_t get_Po_NOMINAL_PUSCH(module_id_t module_idP, uint8_t CC_id);
165

166
/** \brief Function to compute DELTA_PREAMBLE from 36.321 (for RA power ramping procedure and Msg3 PUSCH power control policy)
167 168 169
    @param Mod_id Module id of UE
    @returns DELTA_PREAMBLE
*/
170
int8_t get_DELTA_PREAMBLE(module_id_t module_idP, int CC_id);
171

172
/** \brief Function for compute deltaP_rampup from 36.321 (for RA power ramping procedure and Msg3 PUSCH power control policy)
173
    @param Mod_id Module id of UE
174
    @param CC_id carrier component id of UE
175 176
    @returns deltaP_rampup
*/
177
int8_t get_deltaP_rampup(module_id_t module_idP, uint8_t CC_id);
178

179 180
uint16_t mac_computeRIV(uint16_t N_RB_DL, uint16_t RBstart,
			uint16_t Lcrbs);
181

182 183
void add_msg3(module_id_t module_idP, int CC_id, RA_t * ra, frame_t frameP,
	      sub_frame_t subframeP);
184

185
//main.c
186

187 188 189 190
void init_UE_list(UE_list_t *UE_list);

void init_slice_info(slice_info_t *sli);

191 192
int mac_top_init(int eMBMS_active, char *uecap_xer,
		 uint8_t cba_group_active, uint8_t HO_active);
193

Raymond Knopp's avatar
Raymond Knopp committed
194 195
void mac_top_init_eNB(void);

196
void mac_init_cell_params(int Mod_idP, int CC_idP);
197

198 199 200 201 202 203 204 205 206 207
char layer2_init_UE(module_id_t module_idP);

char layer2_init_eNB(module_id_t module_idP, uint8_t Free_ch_index);

void mac_switch_node_function(module_id_t module_idP);

int mac_init_global_param(void);

void mac_top_cleanup(void);

208 209 210 211 212 213
void mac_UE_out_of_sync_ind(module_id_t module_idP, frame_t frameP,
			    uint16_t eNB_index);

void clear_nfapi_information(eNB_MAC_INST * eNB, int CC_idP,
			     frame_t frameP, sub_frame_t subframeP);

214 215 216 217

// eNB functions
/* \brief This function assigns pre-available RBS to each UE in specified sub-bands before scheduling is done
@param Mod_id Instance ID of eNB
218
@param slice_idxP Slice instance index for the slice in which scheduling happens
219 220 221 222 223 224
@param frame Index of frame
@param subframe Index of current subframe
@param N_RBS Number of resource block groups
 */


225
void dlsch_scheduler_pre_processor(module_id_t module_idP,
226
                                   int slice_idxP,
227 228
                                   frame_t frameP,
                                   sub_frame_t subframe,
229 230
                                   int *mbsfn_flag,
                                   uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX]);
231 232

void dlsch_scheduler_pre_processor_reset(module_id_t module_idP,
233
                                         int slice_idx,
234 235 236 237
                                         frame_t frameP,
                                         sub_frame_t subframeP,
                                         int min_rb_unit[NFAPI_CC_MAX],
                                         uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
238 239
                                         uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX],
                                         uint8_t MIMO_mode_indicator[NFAPI_CC_MAX][N_RBG_MAX],
240 241
                                         int *mbsfn_flag);

242
void dlsch_scheduler_pre_processor_partitioning(module_id_t Mod_id,
243
                                                int slice_idx,
244 245
                                                const uint8_t rbs_retx[NFAPI_CC_MAX]);

246
void dlsch_scheduler_pre_processor_accounting(module_id_t Mod_id,
247
                                              int slice_idx,
248 249 250 251
                                              frame_t frameP,
                                              sub_frame_t subframeP,
                                              int min_rb_unit[NFAPI_CC_MAX],
                                              uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
252
                                              uint16_t nb_rbs_accounted[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB]);
253 254

void dlsch_scheduler_pre_processor_positioning(module_id_t Mod_id,
255
                                               int slice_idx,
256 257
                                               int min_rb_unit[NFAPI_CC_MAX],
                                               uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
258
                                               uint16_t nb_rbs_accounted[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
259
                                               uint16_t nb_rbs_remaining[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
260 261
                                               uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX],
                                               uint8_t MIMO_mode_indicator[NFAPI_CC_MAX][N_RBG_MAX]);
262

263
void dlsch_scheduler_pre_processor_intraslice_sharing(module_id_t Mod_id,
264
                                                      int slice_idx,
265 266 267 268 269 270 271
                                                      int min_rb_unit[NFAPI_CC_MAX],
                                                      uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
                                                      uint16_t nb_rbs_accounted[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
                                                      uint16_t nb_rbs_remaining[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
                                                      uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX],
                                                      uint8_t MIMO_mode_indicator[NFAPI_CC_MAX][N_RBG_MAX]);

272
void slice_priority_sort(module_id_t Mod_id, int slice_list[MAX_NUM_SLICES]);
273

274 275
void dlsch_scheduler_interslice_multiplexing(module_id_t Mod_id,
                                             int frameP,
276 277
                                             sub_frame_t subframeP,
                                             uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX]);
278

279 280 281 282
void dlsch_scheduler_qos_multiplexing(module_id_t Mod_id,
                                      int frameP,
                                      sub_frame_t subframeP);

283
void dlsch_scheduler_pre_processor_allocate(module_id_t Mod_id,
284 285 286 287 288 289
                                            int UE_id,
                                            uint8_t CC_id,
                                            int N_RBG,
                                            int min_rb_unit,
                                            uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
                                            uint16_t nb_rbs_remaining[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB],
290
                                            uint8_t rballoc_sub[NFAPI_CC_MAX][N_RBG_MAX],
291
                                            uint8_t slice_allocation_mask[NFAPI_CC_MAX][N_RBG_MAX],
292
                                            uint8_t MIMO_mode_indicator[NFAPI_CC_MAX][N_RBG_MAX]);
293 294

/* \brief Function to trigger the eNB scheduling procedure.  It is called by PHY at the beginning of each subframe, \f$n$\f
295
   and generates all DLSCH allocations for subframe \f$n\f$ and ULSCH allocations for subframe \f$n+k$\f. 
296 297 298 299
@param Mod_id Instance ID of eNB
@param subframe Index of current subframe
@param calibration_flag Flag to indicate that eNB scheduler should schedule TDD auto-calibration PUSCH.
*/
300
void eNB_dlsch_ulsch_scheduler(module_id_t module_idP, frame_t frameP, sub_frame_t subframeP);	//, int calibration_flag);
301 302 303 304

/* \brief Function to indicate a received preamble on PRACH.  It initiates the RA procedure.
@param Mod_id Instance ID of eNB
@param preamble_index index of the received RA request
305
@param timing_offset Offset in samples of the received PRACH w.r.t. eNB timing. This is used to
306 307 308
@param rnti RA rnti corresponding to this PRACH preamble
@param rach_resource type (0=non BL/CE,1 CE level 0,2 CE level 1, 3 CE level 2,4 CE level 3)
*/
309 310 311
void initiate_ra_proc(module_id_t module_idP, int CC_id, frame_t frameP,
		      sub_frame_t subframeP, uint16_t preamble_index,
		      int16_t timing_offset, uint16_t rnti
312
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
313
		      , uint8_t rach_resource_type
314
#endif
315
    );
316 317 318 319 320 321 322

/* \brief Function in eNB to fill RAR pdu when requested by PHY.  This provides a single RAR SDU for the moment and returns the t-CRNTI.
@param Mod_id Instance ID of eNB
@param dlsch_buffer Pointer to DLSCH input buffer
@param N_RB_UL Number of UL resource blocks
@returns t_CRNTI
*/
323 324 325 326 327 328 329
unsigned short fill_rar(const module_id_t module_idP,
			const int CC_id,
			RA_t *ra,
			const frame_t frameP,
			uint8_t * const dlsch_buffer,
			const uint16_t N_RB_UL,
			const uint8_t input_buffer_length);
330

331
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
332
unsigned short fill_rar_br(eNB_MAC_INST * eNB,
333
			   int CC_id,
334 335 336 337 338
			   RA_t * ra,
			   const frame_t frameP,
			   const sub_frame_t subframeP,
			   uint8_t * const dlsch_buffer,
			   const uint8_t ce_level);
339 340
#endif

341 342 343 344
/* \brief Function to indicate a failed RA response.  It removes all temporary variables related to the initial connection of a UE
@param Mod_id Instance ID of eNB
@param preamble_index index of the received RA request.
*/
345 346
void cancel_ra_proc(module_id_t module_idP, int CC_id, frame_t frameP,
		    uint16_t preamble_index);
347

348 349 350 351 352 353 354 355 356 357 358
/* \brief Function used by PHY to inform MAC that an uplink is scheduled
          for Msg3 in given subframe. This is used so that the MAC
          scheduler marks as busy the RBs used by the Msg3.
@param Mod_id        Instance ID of eNB
@param CC_id         CC ID of eNB
@param frame         current frame
@param subframe      current subframe
@param rnti          UE rnti concerned
@param Msg3_frame    frame where scheduling takes place
@param Msg3_subframe subframe where scheduling takes place
*/
359 360 361

void clear_ra_proc(module_id_t module_idP, int CC_id, frame_t frameP);

362
void set_msg3_subframe(module_id_t Mod_id,
363 364 365 366
		       int CC_id,
		       int frame,
		       int subframe,
		       int rnti, int Msg3_frame, int Msg3_subframe);
367

368 369
/* \brief Function to indicate a received SDU on ULSCH.
@param Mod_id Instance ID of eNB
370 371
@param CC_id Component carrier index
@param rnti RNTI of UE transmitting the SDU
372
@param sdu Pointer to received SDU
373 374 375
@param sdu_len Length of SDU
@param timing_advance timing advance adjustment after this pdu
@param ul_cqi Uplink CQI estimate after this pdu (SNR quantized to 8 bits, -64 ... 63.5 dB in .5dB steps)
376
*/
377
void rx_sdu(const module_id_t enb_mod_idP,
378 379
	    const int CC_idP,
	    const frame_t frameP,
380
	    const sub_frame_t subframeP,
381 382 383 384
	    const rnti_t rntiP,
	    uint8_t * sduP,
	    const uint16_t sdu_lenP,
	    const uint16_t timing_advance, const uint8_t ul_cqi);
385

386 387

/* \brief Function to indicate a scheduled schduling request (SR) was received by eNB.
388 389 390 391
@param Mod_idP Instance ID of eNB
@param CC_idP CC_id of received SR
@param frameP of received SR
@param subframeP Index of subframe where SR was received
392
@param rnti RNTI of UE transmitting the SR
393
@param ul_cqi SNR measurement of PUCCH (SNR quantized to 8 bits, -64 ... 63.5 dB in .5dB steps)
394
*/
395 396
void SR_indication(module_id_t module_idP, int CC_id, frame_t frameP,
		   sub_frame_t subframe, rnti_t rnti, uint8_t ul_cqi);
397

398 399 400 401 402 403 404
/* \brief Function to indicate a UL failure was detected by eNB PHY.
@param Mod_id Instance ID of eNB
@param CC_id Component carrier
@param frameP Frame index
@param rnti RNTI of UE transmitting the SR
@param subframe Index of subframe where SR was received
*/
405 406
void UL_failure_indication(module_id_t Mod_id, int CC_id, frame_t frameP,
			   rnti_t rnti, sub_frame_t subframe);
407

Raymond Knopp's avatar
Raymond Knopp committed
408 409 410 411 412 413 414
/* \brief Function to indicate an HARQ ACK/NAK.
@param Mod_id Instance ID of eNB
@param CC_id Component carrier
@param frameP Frame index
@param subframeP subframe index
@param harq_pdu NFAPI HARQ PDU descriptor
*/
415 416 417
void harq_indication(module_id_t mod_idP, int CC_idP, frame_t frameP,
		     sub_frame_t subframeP,
		     nfapi_harq_indication_pdu_t * harq_pdu);
Raymond Knopp's avatar
Raymond Knopp committed
418 419 420 421 422 423 424 425 426

/* \brief Function to indicate a received CQI pdu
@param Mod_id Instance ID of eNB
@param CC_id Component carrier
@param frameP Frame index
@param subframeP subframe index
@param rntiP RNTI of incoming CQI information
@param ul_cqi_information NFAPI UL CQI measurement
*/
427 428 429 430
void cqi_indication(module_id_t mod_idP, int CC_idP, frame_t frameP,
		    sub_frame_t subframeP, rnti_t rntiP,
		    nfapi_cqi_indication_rel9_t * rel9, uint8_t * pdu,
		    nfapi_ul_cqi_information_t * ul_cqi_information);
Raymond Knopp's avatar
Raymond Knopp committed
431

432 433
uint8_t *get_dlsch_sdu(module_id_t module_idP, int CC_id, frame_t frameP,
		       rnti_t rnti, uint8_t TBindex);
434 435 436 437 438

/* \brief Function to retrieve MCH transport block and MCS used for MCH in this MBSFN subframe.  Returns null if no MCH is to be transmitted
@param Mod_id Instance ID of eNB
@param frame Index of frame
@param subframe Index of current subframe
439
@param mcs Pointer to mcs used by PHY (to be filled by MAC)
440 441
@returns Pointer to MCH transport block and mcs for subframe
*/
442 443
MCH_PDU *get_mch_sdu(module_id_t Mod_id, int CC_id, frame_t frame,
		     sub_frame_t subframe);
444 445


446

447 448


449 450 451 452 453 454 455 456 457 458 459 460 461 462
void ue_mac_reset(module_id_t module_idP, uint8_t eNB_index);
void ue_init_mac(module_id_t module_idP);
void init_ue_sched_info(void);
void add_ue_ulsch_info(module_id_t module_idP, int CC_id, int UE_id,
		       sub_frame_t subframe, UE_ULSCH_STATUS status);
void add_ue_dlsch_info(module_id_t module_idP, int CC_id, int UE_id,
		       sub_frame_t subframe, UE_DLSCH_STATUS status);
int find_UE_id(module_id_t module_idP, rnti_t rnti);
int find_RA_id(module_id_t mod_idP, int CC_idP, rnti_t rntiP);
rnti_t UE_RNTI(module_id_t module_idP, int UE_id);
int UE_PCCID(module_id_t module_idP, int UE_id);
uint8_t find_active_UEs(module_id_t module_idP);
boolean_t is_UE_active(module_id_t module_idP, int UE_id);
uint8_t get_aggregation(uint8_t bw_index, uint8_t cqi, uint8_t dci_fmt);
463 464 465

int8_t find_active_UEs_with_traffic(module_id_t module_idP);

466
void init_CCE_table(int module_idP, int CC_idP);
467 468

int get_nCCE_offset(int *CCE_table,
469 470 471 472
		    const unsigned char L,
		    const int nCCE,
		    const int common_dci,
		    const unsigned short rnti,
473 474
		    const unsigned char subframe);

Xu Bo's avatar
Xu Bo committed
475
int allocate_CCEs(int module_idP, int CC_idP, frame_t frameP, sub_frame_t subframeP, int test_only);
476 477

boolean_t CCE_allocation_infeasible(int module_idP,
478 479 480 481 482 483 484 485
				    int CC_idP,
				    int common_flag,
				    int subframe,
				    int aggregation, int rnti);

void set_ue_dai(sub_frame_t subframeP,
		int UE_id,
		uint8_t CC_id, uint8_t tdd_config, UE_list_t * UE_list);
486

487
uint8_t frame_subframe2_dl_harq_pid(LTE_TDD_Config_t *tdd_Config, int abs_frameP, sub_frame_t subframeP);
488 489 490 491 492 493 494
/** \brief First stage of PCH Scheduling. Gets a PCH SDU from RRC if available and computes the MCS required to transport it as a function of the SDU length.  It assumes a length less than or equal to 64 bytes (MCS 6, 3 PRBs).
@param Mod_id Instance ID of eNB
@param frame Frame index
@param subframe Subframe number on which to act
@param paging_ue_index
*/
void schedule_PCH(module_id_t module_idP,frame_t frameP,sub_frame_t subframeP);
495 496 497 498 499

uint8_t find_num_active_UEs_in_cbagroup(module_id_t module_idP,
					unsigned char group_id);
uint8_t UE_is_to_be_scheduled(module_id_t module_idP, int CC_id,
			      uint8_t UE_id);
500 501 502 503 504
/** \brief Round-robin scheduler for ULSCH traffic.
@param Mod_id Instance ID for eNB
@param subframe Subframe number on which to act
@returns UE index that is to be scheduled if needed/room
*/
505 506
module_id_t schedule_next_ulue(module_id_t module_idP, int UE_id,
			       sub_frame_t subframe);
507 508 509 510 511 512

/** \brief Round-robin scheduler for DLSCH traffic.
@param Mod_id Instance ID for eNB
@param subframe Subframe number on which to act
@returns UE index that is to be scheduled if needed/room
*/
513 514
int schedule_next_dlue(module_id_t module_idP, int CC_id,
		       sub_frame_t subframe);
515 516 517 518

/* \brief Allocates a set of PRBS for a particular UE.  This is a simple function for the moment, later it should process frequency-domain CQI information and/or PMI information.  Currently it just returns the first PRBS that are available in the subframe based on the number requested.
@param UE_id Index of UE on which to act
@param nb_rb Number of PRBs allocated to UE by scheduler
519
@param N_RB_DL Number of PRBs on DL
520 521 522
@param rballoc Pointer to bit-map of current PRB allocation given to previous users/control channels.  This is updated for subsequent calls to the routine.
@returns an rballoc bitmap for resource type 0 allocation (DCI).
*/
523 524
uint32_t allocate_prbs(int UE_id, uint8_t nb_rb, int N_RB_DL,
		       uint32_t * rballoc);
525 526

/* \fn uint32_t req_new_ulsch(module_id_t module_idP)
527
\brief check for a new transmission in any drb
528 529 530 531 532 533 534
@param Mod_id Instance id of UE in machine
@returns 1 for new transmission, 0 for none
*/
uint32_t req_new_ulsch(module_id_t module_idP);

/* \brief Get SR payload (0,1) from UE MAC
@param Mod_id Instance id of UE in machine
Raymond Knopp's avatar
 
Raymond Knopp committed
535
@param CC_id Component Carrier index
536 537 538 539 540
@param eNB_id Index of eNB that UE is attached to
@param rnti C_RNTI of UE
@param subframe subframe number
@returns 0 for no SR, 1 for SR
*/
541 542
uint32_t ue_get_SR(module_id_t module_idP, int CC_id, frame_t frameP,
		   uint8_t eNB_id, rnti_t rnti, sub_frame_t subframe);
543

544
uint8_t get_ue_weight(module_id_t module_idP, int CC_id, int UE_id);
545 546

// UE functions
547 548
void mac_out_of_sync_ind(module_id_t module_idP, frame_t frameP,
			 uint16_t CH_index);
549

550 551
void ue_decode_si(module_id_t module_idP, int CC_id, frame_t frame,
		  uint8_t CH_index, void *pdu, uint16_t len);
552

553 554 555 556 557
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
void ue_decode_si_mbms(module_id_t module_idP, int CC_id, frame_t frame,
                 uint8_t CH_index, void *pdu, uint16_t len);
#endif

558 559
void ue_decode_p(module_id_t module_idP, int CC_id, frame_t frame,
		 uint8_t CH_index, void *pdu, uint16_t len);
560

561

562 563 564
void ue_send_sdu(module_id_t module_idP, uint8_t CC_id, frame_t frame,
		 sub_frame_t subframe, uint8_t * sdu, uint16_t sdu_len,
		 uint8_t CH_index);
565

566 567 568 569 570 571 572 573 574
void ue_send_sl_sdu(module_id_t module_idP,
		    uint8_t CC_id,
		    frame_t frameP,
		    sub_frame_t subframeP,
		    uint8_t* sdu,
		    uint16_t sdu_len,
		    uint8_t eNB_index,
	       sl_discovery_flag_t sl_discovery_flag
		    );
575

576
#if (LTE_RRC_VERSION >= MAKE_VERSION(10, 0, 0))
577 578 579 580 581 582 583 584
/* \brief Called by PHY to transfer MCH transport block to ue MAC.
@param Mod_id Index of module instance
@param frame Frame index
@param sdu Pointer to transport block
@param sdu_len Length of transport block
@param eNB_index Index of attached eNB
@param sync_area the index of MBSFN sync area
*/
585 586 587
void ue_send_mch_sdu(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
		     uint8_t * sdu, uint16_t sdu_len, uint8_t eNB_index,
		     uint8_t sync_area);
588 589 590 591 592 593 594 595 596

/*\brief Function to check if UE PHY needs to decode MCH for MAC.
@param Mod_id Index of protocol instance
@param frame Index of frame
@param subframe Index of subframe
@param eNB_index index of eNB for this MCH
@param[out] sync_area return the sync area
@param[out] mcch_active flag indicating whether this MCCH is active in this SF
*/
597
int ue_query_mch(module_id_t Mod_id, uint8_t CC_id, uint32_t frame,
598 599
		 sub_frame_t subframe, uint8_t eNB_index,
		 uint8_t * sync_area, uint8_t * mcch_active);
600 601 602

#endif

603
/* \brief Called by PHY to get sdu for PUSCH transmission.  It performs the following operations: Checks BSR for DCCH, DCCH1 and DTCH corresponding to previous values computed either in SR or BSR procedures.  It gets rlc status indications on DCCH,DCCH1 and DTCH and forms BSR elements and PHR in MAC header.  CRNTI element is not supported yet.  It computes transport block for up to 3 SDUs and generates header and forms the complete MAC SDU.
604 605 606 607 608
@param Mod_id Instance id of UE in machine
@param eNB_id Index of eNB that UE is attached to
@param rnti C_RNTI of UE
@param subframe subframe number
*/
609 610 611 612
void ue_get_sdu(module_id_t module_idP, int CC_id, frame_t frameP,
		sub_frame_t subframe, uint8_t eNB_index,
		uint8_t * ulsch_buffer, uint16_t buflen,
		uint8_t * access_mode);
613

614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637
/* \brief Called by PHY to get sdu for PSBCH/SSS/PSS transmission.
@param Mod_id Instance id of UE in machine
@param frame_tx TX frame index
@param subframe_tx TX subframe index
@returns pointer to SLSS_t descriptor
*/
SLSS_t *ue_get_slss(module_id_t module_idP, int CC_id,frame_t frameP, sub_frame_t subframe);

/* \brief Called by PHY to get sdu for PSDCH transmission.
@param Mod_id Instance id of UE in machine
@param frame_tx TX frame index
@param subframe_tx TX subframe index
@returns pointer to SLDCH_t descriptor
*/
SLDCH_t *ue_get_sldch(module_id_t module_idP, int CC_id,frame_t frameP, sub_frame_t subframe);

/* \brief Called by PHY to get sdu for PSSCH transmission.
@param Mod_id Instance id of UE in machine
@param frame_tx TX frame index
@param subframe_tx TX subframe index
@returns pointer to SLSCH_t descriptor
*/
SLSCH_t *ue_get_slsch(module_id_t module_idP, int CC_id,frame_t frameP, sub_frame_t subframe);

638 639
/* \brief Function called by PHY to retrieve information to be transmitted using the RA procedure.  If the UE is not in PUSCH mode for a particular eNB index, this is assumed to be an Msg3 and MAC attempts to retrieves the CCCH message from RRC. If the UE is in PUSCH mode for a particular eNB index and PUCCH format 0 (Scheduling Request) is not activated, the MAC may use this resource for random-access to transmit a BSR along with the C-RNTI control element (see 5.1.4 from 36.321)
@param Mod_id Index of UE instance
Raymond Knopp's avatar
 
Raymond Knopp committed
640
@param Mod_id Component Carrier Index
641 642 643
@param New_Msg3 Flag to indicate this call is for a new Msg3
@param subframe Index of subframe for PRACH transmission (0 ... 9)
@returns A pointer to a PRACH_RESOURCES_t */
644 645 646
PRACH_RESOURCES_t *ue_get_rach(module_id_t module_idP, int CC_id,
			       frame_t frameP, uint8_t new_Msg3,
			       sub_frame_t subframe);
647 648 649

/* \brief Function called by PHY to process the received RAR.  It checks that the preamble matches what was sent by the eNB and provides the timing advance and t-CRNTI.
@param Mod_id Index of UE instance
650 651 652
@param CC_id Index to a component carrier
@param frame Frame index
@param ra_rnti RA_RNTI value
653 654
@param dlsch_buffer  Pointer to dlsch_buffer containing RAR PDU
@param t_crnti Pointer to PHY variable containing the T_CRNTI
655
@param preamble_index Preamble Index used by PHY to transmit the PRACH.  This should match the received RAR to trigger the rest of
656
random-access procedure
657
@param selected_rar_buffer the output buffer for storing the selected RAR header and RAR payload
658 659
@returns timing advance or 0xffff if preamble doesn't match
*/
660
uint16_t
661 662 663 664 665 666 667 668
ue_process_rar(const module_id_t module_idP,
	       const int CC_id,
	       const frame_t frameP,
	       const rnti_t ra_rnti,
	       uint8_t * const dlsch_buffer,
	       rnti_t * const t_crnti,
	       const uint8_t preamble_index,
	       uint8_t * selected_rar_buffer);
669 670 671


/* \brief Generate header for UL-SCH.  This function parses the desired control elements and sdus and generates the header as described
672
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
673 674 675 676 677 678 679 680 681 682 683 684 685 686
in the ULSCH buffer.
@param mac_header Pointer to the first byte of the MAC header (UL-SCH buffer)
@param num_sdus Number of SDUs in the payload
@param short_padding Number of bytes for short padding (0,1,2)
@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 power_headroom Pointer to power headroom command (NULL means not present in payload)
@param crnti Pointer to CRNTI command (NULL means not present in payload)
@param truncated_bsr Pointer to Truncated BSR command (NULL means not present in payload)
@param short_bsr Pointer to Short BSR command (NULL means not present in payload)
@param long_bsr Pointer to Long BSR command (NULL means not present in payload)
@param post_padding Number of bytes for padding at the end of MAC PDU
@returns Number of bytes used for header
*/
687 688 689 690 691 692 693 694 695 696 697
unsigned char generate_ulsch_header(uint8_t * mac_header,
				    uint8_t num_sdus,
				    uint8_t short_padding,
				    uint16_t * sdu_lengths,
				    uint8_t * sdu_lcids,
				    POWER_HEADROOM_CMD * power_headroom,
				    uint16_t * crnti,
				    BSR_SHORT * truncated_bsr,
				    BSR_SHORT * short_bsr,
				    BSR_LONG * long_bsr,
				    unsigned short post_padding);
698 699

/* \brief Parse header for UL-SCH.  This function parses the received UL-SCH header as described
700
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
701 702 703 704 705 706 707 708 709
in the ULSCH buffer.
@param mac_header Pointer to the first byte of the MAC header (UL-SCH buffer)
@param num_ces Number of SDUs in the payload
@param num_sdu Number of SDUs in the payload
@param rx_ces Pointer to received CEs in the header
@param rx_lcids Pointer to array of LCIDs (the order must be the same as the SDU length array)
@param rx_lengths Pointer to array of SDU lengths
@returns Pointer to payload following header
*/
710 711 712 713 714 715
uint8_t *parse_ulsch_header(uint8_t * mac_header,
			    uint8_t * num_ce,
			    uint8_t * num_sdu,
			    uint8_t * rx_ces,
			    uint8_t * rx_lcids,
			    uint16_t * rx_lengths, uint16_t tx_lenght);
716

717 718
int to_prb(int);
int to_rbg(int);
719
int mac_init(void);
720
int add_new_ue(module_id_t Mod_id, int CC_id, rnti_t rnti, int harq_pid
721
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
722 723 724
	       , uint8_t rach_resource_type
#endif
    );
725
int rrc_mac_remove_ue(module_id_t Mod_id, rnti_t rntiP);
726

727 728
void store_dlsch_buffer(module_id_t Mod_id, int slice_idx, frame_t frameP, sub_frame_t subframeP);
void assign_rbs_required(module_id_t Mod_id, int slice_idx, frame_t frameP, sub_frame_t subframe, uint16_t nb_rbs_required[NFAPI_CC_MAX][MAX_MOBILES_PER_ENB], int min_rb_unit[NFAPI_CC_MAX]);
729

730 731 732 733 734 735 736
int maxround(module_id_t Mod_id, uint16_t rnti, int frame,
	     sub_frame_t subframe, uint8_t ul_flag);
void swap_UEs(UE_list_t * listP, int nodeiP, int nodejP, int ul_flag);
int prev(UE_list_t * listP, int nodeP, int ul_flag);
void dump_ue_list(UE_list_t * listP, int ul_flag);
int UE_num_active_CC(UE_list_t * listP, int ue_idP);
int UE_PCCID(module_id_t mod_idP, int ue_idP);
737 738
rnti_t UE_RNTI(module_id_t mod_idP, int ue_idP);

Xu Bo's avatar
Xu Bo committed
739
uint8_t find_rb_table_index(uint8_t average_rbs);
740

741 742 743 744 745
void set_ul_DAI(int module_idP,
                int UE_idP,
                int CC_idP,
                int frameP,
                int subframeP);
746

747
void ulsch_scheduler_pre_processor(module_id_t module_idP, int slice_idx, int frameP,
748
				   sub_frame_t subframeP,
749
                                   unsigned char sched_subframeP,
750 751 752 753
				   uint16_t * first_rb);
void store_ulsch_buffer(module_id_t module_idP, int frameP,
			sub_frame_t subframeP);
void sort_ue_ul(module_id_t module_idP, int frameP, sub_frame_t subframeP);
754
void assign_max_mcs_min_rb(module_id_t module_idP, int slice_idx, int frameP,
755 756 757
			   sub_frame_t subframeP, uint16_t * first_rb);
void adjust_bsr_info(int buffer_occupancy, uint16_t TBS,
		     UE_TEMPLATE * UE_template);
758

759
int phy_stats_exist(module_id_t Mod_id, int rnti);
760
void sort_UEs(module_id_t Mod_idP, int slice_idx, int frameP, sub_frame_t subframeP);
761

762
/*! \fn  UE_L2_state_t ue_scheduler(const module_id_t module_idP,const frame_t frameP, const sub_frame_t subframe, const lte_subframe_t direction,const uint8_t eNB_index)
763
   \brief UE scheduler where all the ue background tasks are done.  This function performs the following:  1) Trigger PDCP every 5ms 2) Call RRC for link status return to PHY3) Perform SR/BSR procedures for scheduling feedback 4) Perform PHR procedures.
764
\param[in] module_idP instance of the UE
765 766 767 768
\param[in] rxFrame the RX frame number
\param[in] rxSubframe the RX subframe number
\param[in] txFrame the TX frame number
\param[in] txSubframe the TX subframe number
769 770 771 772
\param[in] direction  subframe direction
\param[in] eNB_index  instance of eNB
@returns L2 state (CONNETION_OK or CONNECTION_LOST or PHY_RESYNCH)
*/
773 774 775 776 777 778 779
UE_L2_STATE_t ue_scheduler(const module_id_t module_idP,
			   const frame_t rxFrameP,
			   const sub_frame_t rxSubframe,
			   const frame_t txFrameP,
			   const sub_frame_t txSubframe,
			   const lte_subframe_t direction,
			   const uint8_t eNB_index, const int CC_id);
780

781
/*! \fn  int cba_access(module_id_t module_idP,frame_t frameP,sub_frame_t subframe, uint8_t eNB_index,uint16_t buflen);
782 783 784 785 786
\brief determine whether to use cba resource to transmit or not
\param[in] Mod_id instance of the UE
\param[in] frame the frame number
\param[in] subframe the subframe number
\param[in] eNB_index instance of eNB
787
\param[out] access(1) or postpone (0)
788
*/
789 790
int cba_access(module_id_t module_idP, frame_t frameP,
	       sub_frame_t subframe, uint8_t eNB_index, uint16_t buflen);
791 792 793 794 795 796 797 798 799 800 801 802 803 804 805

/*! \fn  BSR_SHORT *  get_bsr_short(module_id_t module_idP, uint8_t bsr_len)
\brief get short bsr level
\param[in] Mod_id instance of the UE
\param[in] bsr_len indicator for no, short, or long bsr
\param[out] bsr_s pointer to short bsr
*/
BSR_SHORT *get_bsr_short(module_id_t module_idP, uint8_t bsr_len);

/*! \fn  BSR_LONG * get_bsr_long(module_id_t module_idP, uint8_t bsr_len)
\brief get long bsr level
\param[in] Mod_id instance of the UE
\param[in] bsr_len indicator for no, short, or long bsr
\param[out] bsr_l pointer to long bsr
*/
806
BSR_LONG *get_bsr_long(module_id_t module_idP, uint8_t bsr_len);
807

808
/*! \fn  boolean_t update_bsr(module_id_t module_idP, frame_t frameP,sub_frame_t subframeP)
809
   \brief get the rlc stats and update the bsr level for each lcid
810 811 812
\param[in] Mod_id instance of the UE
\param[in] frame Frame index
*/
813 814
boolean_t update_bsr(module_id_t module_idP, frame_t frameP,
		     sub_frame_t subframeP, eNB_index_t eNB_index);
815

fnabet's avatar
fnabet committed
816
/*! \fn  locate_BsrIndexByBufferSize (int *table, int size, int value)
817
   \brief locate the BSR level in the table as defined in 36.321. This function requires that he values in table to be monotonic, either increasing or decreasing. The returned value is not less than 0, nor greater than n-1, where n is the size of table.
818 819
\param[in] *table Pointer to BSR table
\param[in] size Size of the table
820
\param[in] value Value of the buffer
821 822
\return the index in the BSR_LEVEL table
*/
823 824
uint8_t locate_BsrIndexByBufferSize(const uint32_t * table, int size,
				    int value);
825 826 827 828 829 830 831 832 833 834 835 836 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


/*! \fn  int get_sf_periodicBSRTimer(uint8_t periodicBSR_Timer)
   \brief get the number of subframe from the periodic BSR timer configured by the higher layers
\param[in] periodicBSR_Timer timer for periodic BSR
\return the number of subframe
*/
int get_sf_periodicBSRTimer(uint8_t bucketSize);

/*! \fn  int get_ms_bucketsizeduration(uint8_t bucketSize)
   \brief get the time in ms form the bucket size duration configured by the higher layer
\param[in]  bucketSize the bucket size duration
\return the time in ms
*/
int get_ms_bucketsizeduration(uint8_t bucketsizeduration);

/*! \fn  int get_sf_retxBSRTimer(uint8_t retxBSR_Timer)
   \brief get the number of subframe form the bucket size duration configured by the higher layer
\param[in]  retxBSR_Timer timer for regular BSR
\return the time in sf
*/
int get_sf_retxBSRTimer(uint8_t retxBSR_Timer);

/*! \fn  int get_sf_perioidicPHR_Timer(uint8_t perioidicPHR_Timer){
   \brief get the number of subframe form the periodic PHR timer configured by the higher layer
\param[in]  perioidicPHR_Timer timer for reguluar PHR
\return the time in sf
*/
int get_sf_perioidicPHR_Timer(uint8_t perioidicPHR_Timer);

/*! \fn  int get_sf_prohibitPHR_Timer(uint8_t prohibitPHR_Timer)
   \brief get the number of subframe form the prohibit PHR duration configured by the higher layer
\param[in]  prohibitPHR_Timer timer for  PHR
\return the time in sf
*/
int get_sf_prohibitPHR_Timer(uint8_t prohibitPHR_Timer);

/*! \fn  int get_db_dl_PathlossChange(uint8_t dl_PathlossChange)
   \brief get the db form the path loss change configured by the higher layer
\param[in]  dl_PathlossChange path loss for PHR
\return the pathloss in db
*/
int get_db_dl_PathlossChange(uint8_t dl_PathlossChange);

Raymond Knopp's avatar
 
Raymond Knopp committed
869
/*! \fn  uint8_t get_phr_mapping (module_id_t module_idP, int CC_id,uint8_t eNB_index)
870 871
   \brief get phr mapping as described in 36.313
\param[in]  Mod_id index of eNB
Raymond Knopp's avatar
 
Raymond Knopp committed
872
\param[in] CC_id Component Carrier Index
873 874
\return phr mapping
*/
875 876
uint8_t get_phr_mapping(module_id_t module_idP, int CC_id,
			uint8_t eNB_index);
877 878 879 880

/*! \fn  void update_phr (module_id_t module_idP)
   \brief update/reset the phr timers
\param[in]  Mod_id index of eNB
Raymond Knopp's avatar
 
Raymond Knopp committed
881
\param[in] CC_id Component carrier index
882 883
\return void
*/
884
void update_phr(module_id_t module_idP, int CC_id);
885 886 887 888 889

/*! \brief Function to indicate Msg3 transmission/retransmission which initiates/reset Contention Resolution Timer
\param[in] Mod_id Instance index of UE
\param[in] eNB_id Index of eNB
*/
890 891
void Msg3_tx(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
	     uint8_t eNB_id);
892 893 894 895 896 897 898


/*! \brief Function to indicate the transmission of msg1/rach
\param[in] Mod_id Instance index of UE
\param[in] eNB_id Index of eNB
*/

899 900
void Msg1_tx(module_id_t module_idP, uint8_t CC_id, frame_t frameP,
	     uint8_t eNB_id);
901

902 903 904
void dl_phy_sync_success(module_id_t module_idP,
			 frame_t frameP,
			 unsigned char eNB_index, uint8_t first_sync);
905 906 907 908 909

int dump_eNB_l2_stats(char *buffer, int length);

double uniform_rngen(int min, int max);

910
/*
911
void add_common_dci(DCI_PDU *DCI_pdu,
912 913 914 915 916 917 918
                    void *pdu,
                    rnti_t rnti,
                    unsigned char dci_size_bytes,
                    unsigned char aggregation,
                    unsigned char dci_size_bits,
                    unsigned char dci_fmt,
                    uint8_t ra_flag);
919
*/
920

921 922
uint32_t allocate_prbs_sub(int nb_rb, int N_RB_DL, int N_RBG,
			   uint8_t * rballoc);
923

924
void update_ul_dci(module_id_t module_idP, uint8_t CC_id, rnti_t rnti,
925
		   uint8_t dai, sub_frame_t subframe);
926

927 928
int get_bw_index(module_id_t module_id, uint8_t CC_id);

929 930
int get_min_rb_unit(module_id_t module_idP, uint8_t CC_id);

931
/* \brief Generate header for DL-SCH.  This function parses the desired control elements and sdus and generates the header as described
932
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
933 934 935 936 937
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)
938
@param drx_cmd dicontinous reception command
939 940 941
@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)
942
@param post_padding number of bytes for padding at the end of MAC PDU
943 944
@returns Number of bytes used for header
*/
945 946 947 948 949 950 951 952 953
int generate_dlsch_header(unsigned char *mac_header,
                          unsigned char num_sdus,
                          unsigned short *sdu_lengths,
                          unsigned char *sdu_lcids,
                          unsigned char drx_cmd,
                          unsigned short timing_advance_cmd,
                          unsigned char *ue_cont_res_id,
                          unsigned char short_padding,
                          unsigned short post_padding);
954

955
/** \brief RRC eNB Configuration primitive for PHY/MAC.  Allows configuration of PHY/MAC resources based on System Information (SI), RRCConnectionSetup and RRCConnectionReconfiguration messages.
956
@param Mod_id Instance ID of eNB
957
@param CC_id Component Carrier of the eNB
958
@param mib Pointer to MIB
959

960
@param radioResourceConfigCommon Structure from SIB2 for common radio parameters (if NULL keep existing configuration)
961
@param physicalConfigDedicated Structure from RRCConnectionSetup or RRCConnectionReconfiguration for dedicated PHY parameters (if NULL keep existing configuration)
962 963
@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)
964
@param logicalChannelIdentity Logical channel identity index of corresponding logical channel config
965 966 967 968
@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)
@param mobilityControlInfo mobility control info received for Handover
969
@param SchedInfoList SI Scheduling information
970 971 972 973
@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)
974
@param sib1_ext_r13 SI Scheduling information for SI-BR UEs         
975 976 977 978 979 980
@param mib_fembms pointer to FeMBMS MIB
@param FeMBMS_Flag indicates FeMBMS transmission
@param schedulingInfo_fembms pointer to FeMBMS SI Scheduling Information
@param non_MBSFN_SubframeConfig pointer to FeMBMS Non MBSFN Subframe Config 
@param sib1_mbms_r14_fembms pointer SI Scheduling infomration for SI-MBMS
@param mbsfn_AreaInfoList_fembms pointer to FeMBMS MBSFN Area Info list from SIB1-MBMS
981
*/
982

983 984 985 986 987 988
int rrc_mac_config_req_eNB(module_id_t module_idP,
			   int CC_id,
			   int physCellId,
			   int p_eNB,
			   int Ncp,
			   int eutra_band, uint32_t dl_CarrierFreq,
989
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
990
			   int pbch_repetition,
991
#endif
992
			   rnti_t rntiP,
993 994
			   LTE_BCCH_BCH_Message_t * mib,
			   LTE_RadioResourceConfigCommonSIB_t *
995
			   radioResourceConfigCommon,
996 997 998
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
			   LTE_RadioResourceConfigCommonSIB_t *
			   LTE_radioResourceConfigCommon_BR,
999
#endif
1000
			   struct LTE_PhysicalConfigDedicated
1001
			   *physicalConfigDedicated,
1002 1003
#if (LTE_RRC_VERSION >= MAKE_VERSION(10, 0, 0))
			   LTE_SCellToAddMod_r10_t * sCellToAddMod_r10,
1004
			   //struct PhysicalConfigDedicatedSCell_r10 *physicalConfigDedicatedSCell_r10,
1005
#endif
1006 1007
			   LTE_MeasObjectToAddMod_t ** measObj,
			   LTE_MAC_MainConfig_t * mac_MainConfig,
1008
			   long logicalChannelIdentity,
1009 1010 1011 1012 1013
			   LTE_LogicalChannelConfig_t * logicalChannelConfig,
			   LTE_MeasGapConfig_t * measGapConfig,
			   LTE_TDD_Config_t * tdd_Config,
			   LTE_MobilityControlInfo_t * mobilityControlInfo,
			   LTE_SchedulingInfoList_t * schedulingInfoList,
1014 1015
			   uint32_t ul_CarrierFreq,
			   long *ul_Bandwidth,
1016
			   LTE_AdditionalSpectrumEmission_t *
1017
			   additionalSpectrumEmission,
1018
			   struct LTE_MBSFN_SubframeConfigList
1019
			   *mbsfn_SubframeConfigList
1020
#if (LTE_RRC_VERSION >= MAKE_VERSION(9, 0, 0))
1021
			   ,
1022
			   uint8_t MBMS_Flag,
1023 1024
			   LTE_MBSFN_AreaInfoList_r9_t * mbsfn_AreaInfoList,
			   LTE_PMCH_InfoList_r9_t * pmch_InfoList
1025
#endif
1026
#if (LTE_RRC_VERSION >= MAKE_VERSION(13, 0, 0))
1027
			   ,
1028
			   LTE_SystemInformationBlockType1_v1310_IEs_t *
1029
			   sib1_ext_r13
1030 1031 1032 1033 1034 1035 1036 1037 1038
#endif
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
                           ,
                           uint8_t FeMBMS_Flag,
                           LTE_BCCH_DL_SCH_Message_MBMS_t * mib_fembms,
                           LTE_SchedulingInfo_MBMS_r14_t * schedulingInfo_fembms,
                           struct LTE_NonMBSFN_SubframeConfig_r14 * nonMBSFN_SubframeConfig,
                           LTE_SystemInformationBlockType1_MBMS_r14_t *  sib1_mbms_r14_fembms,
                           LTE_MBSFN_AreaInfoList_r9_t * mbsfn_AreaInfoList_fembms
1039
#endif
1040
    );
1041

1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061
/** \brief RRC eNB 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 ue
@param CC_id Component Carrier of the ue
@param eNB_id Index of eNB
@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)
@param mobilityControlInfo mobility control info received for Handover
@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)
*/
1062 1063 1064
int rrc_mac_config_req_ue(module_id_t module_idP,
			  int CC_id,
			  uint8_t eNB_index,
1065
			  LTE_RadioResourceConfigCommonSIB_t *
1066
			  radioResourceConfigCommon,
1067
			  struct LTE_PhysicalConfigDedicated
1068
			  *physicalConfigDedicated,
1069 1070
#if (LTE_RRC_VERSION >= MAKE_VERSION(10, 0, 0))
			  LTE_SCellToAddMod_r10_t * sCellToAddMod_r10,
1071 1072
			  //struct PhysicalConfigDedicatedSCell_r10 *physicalConfigDedicatedSCell_r10,
#endif
1073 1074
			  LTE_MeasObjectToAddMod_t ** measObj,
			  LTE_MAC_MainConfig_t * mac_MainConfig,
1075
			  long logicalChannelIdentity,
1076 1077 1078 1079
			  LTE_LogicalChannelConfig_t * logicalChannelConfig,
			  LTE_MeasGapConfig_t * measGapConfig,
			  LTE_TDD_Config_t * tdd_Config,
			  LTE_MobilityControlInfo_t * mobilityControlInfo,
1080 1081
			  uint8_t * SIwindowsize,
			  uint16_t * SIperiod,
1082
			  LTE_ARFCN_ValueEUTRA_t * ul_CarrierFreq,
1083
			  long *ul_Bandwidth,
1084
			  LTE_AdditionalSpectrumEmission_t *
1085
			  additionalSpectrumEmission,
1086
			  struct LTE_MBSFN_SubframeConfigList
1087
			  *mbsfn_SubframeConfigList
1088
#if (LTE_RRC_VERSION >= MAKE_VERSION(10, 0, 0))
1089 1090
			  ,
			  uint8_t MBMS_Flag,
1091 1092
			  LTE_MBSFN_AreaInfoList_r9_t * mbsfn_AreaInfoList,
			  LTE_PMCH_InfoList_r9_t * pmch_InfoList
1093 1094 1095
#endif
#ifdef CBA
			  ,
1096
			  uint8_t num_active_cba_groups, uint16_t cba_rnti
1097
#endif
1098
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
1099 1100 1101
			  ,config_action_t config_action
			  ,const uint32_t * const sourceL2Id
			  ,const uint32_t * const destinationL2Id
1102 1103 1104
#endif
			  );

1105

1106
uint16_t getRIV(uint16_t N_RB_DL, uint16_t RBstart, uint16_t Lcrbs);
1107

1108
int get_subbandsize(uint8_t dl_bandwidth);
1109

1110

1111
void get_Msg3allocret(COMMON_channels_t * cc,
1112 1113
		      sub_frame_t current_subframe,
		      frame_t current_frame,
1114
		      frame_t * frame, sub_frame_t * subframe);
1115

1116
void get_Msg3alloc(COMMON_channels_t * cc,
1117 1118
		   sub_frame_t current_subframe,
		   frame_t current_frame,
1119
		   frame_t * frame, sub_frame_t * subframe);
1120

1121 1122
uint16_t mac_computeRIV(uint16_t N_RB_DL, uint16_t RBstart,
			uint16_t Lcrbs);
1123

1124
int get_phich_resource_times6(COMMON_channels_t * cc);
1125

1126
uint8_t frame_subframe2_dl_harq_pid(LTE_TDD_Config_t *tdd_Config, int abs_frameP, sub_frame_t subframeP);
1127 1128 1129

uint8_t ul_subframe2_k_phich(COMMON_channels_t * cc, sub_frame_t ul_subframe);

1130
unsigned char ul_ACK_subframe2M(LTE_TDD_Config_t *tdd_Config,unsigned char subframe);
1131

1132 1133 1134 1135
int to_rbg(int dl_Bandwidth);

int to_prb(int dl_Bandwidth);

1136 1137
uint8_t get_Msg3harqpid(COMMON_channels_t * cc,
			frame_t frame, sub_frame_t current_subframe);
1138

1139 1140
uint32_t pdcchalloc2ulframe(COMMON_channels_t * ccP, uint32_t frame,
			    uint8_t n);
1141

1142
uint8_t pdcchalloc2ulsubframe(COMMON_channels_t * ccP, uint8_t n);
1143

1144
int is_UL_sf(COMMON_channels_t * ccP, sub_frame_t subframeP);
1145

1146
uint8_t getQm(uint8_t mcs);
1147

1148 1149 1150 1151 1152 1153 1154
uint8_t subframe2harqpid(COMMON_channels_t * cc, frame_t frame,
			 sub_frame_t subframe);

void get_srs_pos(COMMON_channels_t * cc, uint16_t isrs,
		 uint16_t * psrsPeriodicity, uint16_t * psrsOffset);

void get_csi_params(COMMON_channels_t * cc,
1155
		    struct LTE_CQI_ReportPeriodic *cqi_PMI_ConfigIndex,
1156 1157 1158 1159
		    uint16_t * Npd, uint16_t * N_OFFSET_CQI, int *H);

uint8_t get_rel8_dl_cqi_pmi_size(UE_sched_ctrl * sched_ctl, int CC_idP,
				 COMMON_channels_t * cc, uint8_t tmode,
1160
				 struct LTE_CQI_ReportPeriodic
1161 1162 1163 1164
				 *cqi_ReportPeriodic);

uint8_t get_dl_cqi_pmi_size_pusch(COMMON_channels_t * cc, uint8_t tmode,
				  uint8_t ri,
1165
				  LTE_CQI_ReportModeAperiodic_t *
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176
				  cqi_ReportModeAperiodic);
void extract_pucch_csi(module_id_t mod_idP, int CC_idP, int UE_id,
		       frame_t frameP, sub_frame_t subframeP,
		       uint8_t * pdu, uint8_t length);

void extract_pusch_csi(module_id_t mod_idP, int CC_idP, int UE_id,
		       frame_t frameP, sub_frame_t subframeP,
		       uint8_t * pdu, uint8_t length);

uint16_t fill_nfapi_tx_req(nfapi_tx_request_body_t * tx_req_body,
			   uint16_t absSF, uint16_t pdu_length,
1177
			   int16_t pdu_index, uint8_t * pdu);
1178 1179 1180 1181

void fill_nfapi_ulsch_config_request_rel8(nfapi_ul_config_request_pdu_t *
					  ul_config_pdu, uint8_t cqi_req,
					  COMMON_channels_t * cc,
1182
					  struct LTE_PhysicalConfigDedicated
1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
					  *physicalConfigDedicated,
					  uint8_t tmode, uint32_t handle,
					  uint16_t rnti,
					  uint8_t resource_block_start,
					  uint8_t
					  number_of_resource_blocks,
					  uint8_t mcs,
					  uint8_t cyclic_shift_2_for_drms,
					  uint8_t
					  frequency_hopping_enabled_flag,
					  uint8_t frequency_hopping_bits,
					  uint8_t new_data_indication,
					  uint8_t redundancy_version,
					  uint8_t harq_process_number,
					  uint8_t ul_tx_mode,
					  uint8_t current_tx_nb,
					  uint8_t n_srs, uint16_t size);
1200

1201
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
1202 1203 1204 1205
void fill_nfapi_ulsch_config_request_emtc(nfapi_ul_config_request_pdu_t *
					  ul_config_pdu, uint8_t ue_type,
					  uint16_t
					  total_number_of_repetitions,
1206
					  uint16_t repetition_number,
1207 1208
					  uint16_t
					  initial_transmission_sf_io);
1209 1210
#endif

1211 1212 1213
void program_dlsch_acknak(module_id_t module_idP, int CC_idP, int UE_idP,
			  frame_t frameP, sub_frame_t subframeP,
			  uint8_t cce_idx);
1214

1215 1216
void fill_nfapi_dlsch_config(eNB_MAC_INST * eNB,
			     nfapi_dl_config_request_body_t * dl_req,
1217
			     uint16_t length, int16_t pdu_index,
1218 1219
			     uint16_t rnti,
			     uint8_t resource_allocation_type,
1220 1221
			     uint8_t
			     virtual_resource_block_assignment_flag,
1222 1223 1224 1225 1226 1227 1228 1229
			     uint16_t resource_block_coding,
			     uint8_t modulation,
			     uint8_t redundancy_version,
			     uint8_t transport_blocks,
			     uint8_t transport_block_to_codeword_swap_flag,
			     uint8_t transmission_scheme,
			     uint8_t number_of_layers,
			     uint8_t number_of_subbands,
1230
			     //                      uint8_t codebook_index,
1231 1232 1233 1234 1235 1236 1237
			     uint8_t ue_category_capacity,
			     uint8_t pa,
			     uint8_t delta_power_offset_index,
			     uint8_t ngap,
			     uint8_t nprb,
			     uint8_t transmission_mode,
			     uint8_t num_bf_prb_per_subband,
1238
			     uint8_t num_bf_vector);
1239 1240 1241 1242 1243

void fill_nfapi_harq_information(module_id_t module_idP,
				 int CC_idP,
				 uint16_t rntiP,
				 uint16_t absSFP,
1244 1245
				 nfapi_ul_config_harq_information *
				 harq_information, uint8_t cce_idxP);
1246 1247 1248 1249

void fill_nfapi_ulsch_harq_information(module_id_t module_idP,
				       int CC_idP,
				       uint16_t rntiP,
1250
				       nfapi_ul_config_ulsch_harq_information
1251 1252
				       * harq_information,
				       sub_frame_t subframeP);
1253 1254 1255 1256

uint16_t fill_nfapi_uci_acknak(module_id_t module_idP,
			       int CC_idP,
			       uint16_t rntiP,
1257
			       uint16_t absSFP, uint8_t cce_idxP);
1258

1259
void fill_nfapi_dl_dci_1A(nfapi_dl_config_request_pdu_t * dl_config_pdu,
1260 1261 1262 1263 1264 1265 1266
			  uint8_t aggregation_level,
			  uint16_t rnti,
			  uint8_t rnti_type,
			  uint8_t harq_process,
			  uint8_t tpc,
			  uint16_t resource_block_coding,
			  uint8_t mcs,
1267
			  uint8_t ndi, uint8_t rv, uint8_t vrb_flag);
1268

1269 1270 1271
nfapi_ul_config_request_pdu_t *has_ul_grant(module_id_t module_idP,
					    int CC_idP, uint16_t subframeP,
					    uint16_t rnti);
1272

1273
uint8_t get_tmode(module_id_t module_idP, int CC_idP, int UE_idP);
1274

1275 1276
uint8_t get_ul_req_index(module_id_t module_idP, int CC_idP,
			 sub_frame_t subframeP);
1277

1278
#if (LTE_RRC_VERSION >= MAKE_VERSION(14, 0, 0))
1279 1280
int get_numnarrowbandbits(long dl_Bandwidth);

1281 1282 1283
int mpdcch_sf_condition(eNB_MAC_INST * eNB, int CC_id, frame_t frameP,
			sub_frame_t subframeP, int rmax,
			MPDCCH_TYPES_t mpdcch_type, int UE_id);
1284 1285

int get_numnarrowbands(long dl_Bandwidth);
1286

1287
int narrowband_to_first_rb(COMMON_channels_t * cc, int nb_index);
1288

1289 1290
#endif

1291 1292
int l2_init_eNB(void);

1293 1294 1295 1296 1297
void Msg1_transmitted(module_id_t module_idP, uint8_t CC_id,
		      frame_t frameP, uint8_t eNB_id);
void Msg3_transmitted(module_id_t module_idP, uint8_t CC_id,
		      frame_t frameP, uint8_t eNB_id);
uint32_t from_earfcn(int eutra_bandP, uint32_t dl_earfcn);
Cedric Roux's avatar
Cedric Roux committed
1298
int32_t get_uldl_offset(int eutra_bandP);
1299 1300
int l2_init_ue(int eMBMS_active, char *uecap_xer, uint8_t cba_group_active,
	       uint8_t HO_active);
1301 1302 1303 1304 1305 1306 1307
#if defined(PRE_SCD_THREAD)
void pre_scd_nb_rbs_required(    module_id_t     module_idP,
                                 frame_t         frameP,
                                 sub_frame_t     subframeP,
                                 int             min_rb_unit[MAX_NUM_CCs],
                                 uint16_t        nb_rbs_required[MAX_NUM_CCs][NUMBER_OF_UE_MAX]);
#endif
1308

1309
/*Slice related functions */
1310
uint16_t nb_rbs_allowed_slice(float rb_percentage, int total_rbs);
1311 1312
int ue_dl_slice_membership(module_id_t mod_id, int UE_id, int slice_idx);
int ue_ul_slice_membership(module_id_t mod_id, int UE_id, int slice_idx);
1313

1314 1315
/* from here: prototypes to get rid of compilation warnings: doc to be written by function author */
uint8_t ul_subframe2_k_phich(COMMON_channels_t * cc, sub_frame_t ul_subframe);
1316
#endif
1317
/** @}*/