f9b0eb3eeba2ac98d491a6bf53eed3b9861a3d6f
[o-du/l2.git] / src / phy_stub / phy_stub_msg_hdl.c
1 /*******************************************************************************
2 ################################################################################
3 #   Copyright (c) [2017-2019] [Radisys]                                        #
4 #                                                                              #
5 #   Licensed under the Apache License, Version 2.0 (the "License");            #
6 #   you may not use this file except in compliance with the License.           #
7 #   You may obtain a copy of the License at                                    #
8 #                                                                              #
9 #       http://www.apache.org/licenses/LICENSE-2.0                             #
10 #                                                                              #
11 #   Unless required by applicable law or agreed to in writing, software        #
12 #   distributed under the License is distributed on an "AS IS" BASIS,          #
13 #   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   #
14 #   See the License for the specific language governing permissions and        #
15 #   limitations under the License.                                             #
16 ################################################################################
17 *******************************************************************************/
18
19 /*This file contains stub for PHY to handle messages to/from MAC CL */
20
21 #include "common_def.h"
22 #include "lrg.h"
23 #include "lrg.x"
24 #include "du_app_mac_inf.h"
25 #include "mac_sch_interface.h"
26 #include "lwr_mac.h"
27 #include "lwr_mac_fsm.h"
28 #include "lwr_mac_phy.h"
29 #ifdef INTEL_FAPI
30 #include "fapi.h"
31 #include "fapi_vendor_extension.h"
32 #endif
33 #include "lwr_mac_upr_inf.h"
34 #include "mac_utils.h"
35 #include "phy_stub.h"
36 #include "phy_stub_utils.h"
37 #include "lwr_mac_phy_stub_inf.h"
38
39 /*******************************************************************
40  *
41  * @brief Builds and sends param response to MAC CL
42  *
43  * @details
44  *
45  *    Function : l1BldAndSndParamRsp
46  *
47  *    Functionality:
48  *          - Builds and sends param response to MAC
49  *
50  * @params[in] Config request message pointer
51  * @return ROK     - success
52  *         RFAILED - failure
53  *
54  * ****************************************************************/
55 S16 l1BldAndSndParamRsp(void *msg)
56 {
57 #ifdef INTEL_FAPI
58    uint8_t index = 0;
59    uint32_t msgLen = 0;
60    fapi_param_resp_t *fapiParamRsp;
61
62    MAC_ALLOC(fapiParamRsp, sizeof(fapi_param_resp_t));
63    if(!fapiParamRsp)
64    {
65       DU_LOG("\nERROR  -->  PHY STUB: Memory allocation failed");
66       return RFAILED;
67    }
68
69    /* Cell Params */
70    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RELEASE_CAPABILITY_TAG,                         sizeof(uint16_t), 1, &msgLen);
71    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PHY_STATE_TAG,                                  sizeof(uint16_t), 0, &msgLen);
72    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_DL_CONFIG_TAG,                       sizeof(uint8_t),  0, &msgLen);
73    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_UL_CONFIG_TAG,                       sizeof(uint8_t),  0, &msgLen);
74    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_NUM_CONFIG_TLVS_TO_REPORT_TYPE_TAG,              sizeof(uint8_t),  0, &msgLen);
75
76    /* Carrier Params */
77    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CYCLIC_PREFIX_TAG,                               sizeof(uint8_t),  1, &msgLen);
78    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_DL_TAG,            sizeof(uint8_t),  1, &msgLen);
79    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_DL_TAG,                     sizeof(uint16_t), 1, &msgLen);
80    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_UL_TAG,            sizeof(uint8_t),  0, &msgLen);
81    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_UL_TAG,                     sizeof(uint16_t), 0, &msgLen);
82
83    /* PDCCH Param*/
84    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CCE_MAPPING_TYPE_TAG,                                   sizeof(uint8_t), 0, &msgLen);
85    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CORESET_OUTSIDE_FIRST_3_OFDM_SYMS_OF_SLOT_TAG,   sizeof(uint8_t), 0, &msgLen);
86    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRECODER_GRANULARITY_CORESET_TAG,               sizeof(uint8_t), 0, &msgLen);
87    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_MU_MIMO_TAG,                              sizeof(uint8_t), 0, &msgLen);
88    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_PRECODER_CYCLING_TAG,                     sizeof(uint8_t), 0, &msgLen);
89    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDCCHS_PER_SLOT_TAG,                                sizeof(uint8_t), 0, &msgLen);
90
91    /* PUCCH Param */
92    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUCCH_FORMATS_TAG,                              sizeof(uint8_t), 0, &msgLen);
93    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PUCCHS_PER_SLOT_TAG,                         sizeof(uint8_t), 0, &msgLen);
94
95    /* PDSCH Param */
96    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_MAPPING_TYPE_TAG,                         sizeof(uint8_t), 0, &msgLen);
97    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_ALLOCATION_TYPES_TAG,                      sizeof(uint8_t), 0, &msgLen);
98    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_VRB_TO_PRB_MAPPING_TAG,                   sizeof(uint8_t), 0, &msgLen);
99    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_CBG_TAG,                                  sizeof(uint8_t), 0, &msgLen);
100    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_CONFIG_TYPES_TAG,                    sizeof(uint8_t), 0, &msgLen);
101    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_MAX_LENGTH_TAG,                      sizeof(uint8_t), 0, &msgLen);
102    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_ADDITIONAL_POS_TAG,                  sizeof(uint8_t), 0, &msgLen);
103    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDSCHS_TBS_PER_SLOT_TAG,                    sizeof(uint8_t), 0, &msgLen);
104    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_PDSCH_TAG,               sizeof(uint8_t), 0, &msgLen);
105    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MAX_MODULATION_ORDER_DL_TAG,          sizeof(uint8_t), 0, &msgLen);
106    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_DL_TAG,                       sizeof(uint8_t), 0, &msgLen);
107    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DATA_IN_DMRS_SYMBOLS_TAG,                 sizeof(uint8_t), 0, &msgLen);
108    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PREMPTIONSUPPORT_TAG,                           sizeof(uint8_t), 0, &msgLen);
109    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_NON_SLOT_SUPPORT_TAG,                      sizeof(uint8_t), 0, &msgLen);
110
111    /* PUSCH Param */
112    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_MUX_ULSCH_IN_PUSCH_TAG,                     sizeof(uint8_t), 0, &msgLen);
113    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_ONLY_PUSCH_TAG,                             sizeof(uint8_t), 0, &msgLen);
114    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_FREQUENCY_HOPPING_TAG,                    sizeof(uint8_t), 0, &msgLen);
115    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_CONFIG_TYPES_TAG,                    sizeof(uint8_t), 0, &msgLen);
116    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_MAX_LEN_TAG,                         sizeof(uint8_t), 0, &msgLen);
117    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_ADDITIONAL_POS_TAG,                  sizeof(uint8_t), 0, &msgLen);
118    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_CBG_TAG,                                  sizeof(uint8_t), 0, &msgLen);
119    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAPPING_TYPE_TAG,                          sizeof(uint8_t), 0, &msgLen);
120    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_ALLOCATION_TYPES_TAG,                     sizeof(uint8_t), 0, &msgLen);
121    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_VRB_TO_PRB_MAPPING_TAG,                   sizeof(uint8_t), 0, &msgLen);
122    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAX_PTRS_PORTS_TAG,                        sizeof(uint8_t), 0, &msgLen);
123    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDUSCHS_TBS_PER_SLOT_TAG,                   sizeof(uint8_t), 0, &msgLen);
124    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_NON_CB_PUSCH_TAG,         sizeof(uint8_t), 0, &msgLen);
125    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MODULATION_ORDER_UL_TAG,               sizeof(uint8_t), 0, &msgLen);
126    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_UL_TAG,                        sizeof(uint8_t), 0, &msgLen);
127    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_DFTS_OFDM_SUPPORT_TAG,                           sizeof(uint8_t), 0, &msgLen);
128    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_AGGREGATION_FACTOR_TAG,                    sizeof(uint8_t), 0, &msgLen);
129
130    /* PRACH Params */
131    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_LONG_FORMATS_TAG,                         sizeof(uint8_t), 0, &msgLen);
132    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_SHORT_FORMATS_TAG,                         sizeof(uint8_t), 0, &msgLen);
133    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_RESTRICTED_SETS_TAG,                       sizeof(uint8_t), 0, &msgLen);
134    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PRACH_FD_OCCASIONS_IN_A_SLOT_TAG,            sizeof(uint8_t), 0, &msgLen);
135
136    /* MEASUREMENT TAG */
137    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RSSI_MEASUREMENT_SUPPORT_TAG,                    sizeof(uint8_t), 0, &msgLen);
138
139    fapiParamRsp->number_of_tlvs = index;
140    msgLen += sizeof(fapi_param_resp_t) - sizeof(fapi_msg_t);
141    fillMsgHeader(&fapiParamRsp->header, FAPI_PARAM_RESPONSE, msgLen);
142    fapiParamRsp->error_code = MSG_OK;
143
144    DU_LOG("\nINFO   -->  PHY_STUB: Sending Param Request to Lower Mac");
145    procPhyMessages(fapiParamRsp->header.msg_id, sizeof(fapi_param_resp_t), (void *)fapiParamRsp);
146    MAC_FREE(fapiParamRsp, sizeof(fapi_param_resp_t));
147 #endif
148    return ROK;
149 }
150
151 /*******************************************************************
152  *
153  * @brief Builds and sends config response to lower mac
154  *
155  * @details
156  *
157  *    Function : l1BldAndSndConfigRsp
158  *
159  *    Functionality:
160  *          - Builds and sends config response to MAC
161  *
162  * @params[in] Config request message pointer
163  * @return ROK     - success
164  *         RFAILED - failure
165  *
166  * ****************************************************************/
167
168 S16 l1BldAndSndConfigRsp(void *msg)
169 {
170 #ifdef INTEL_FAPI
171    uint32_t msgLen = 0;
172    fapi_config_resp_t *fapiConfigRsp;
173
174    MAC_ALLOC(fapiConfigRsp, sizeof(fapi_config_resp_t));
175    if(!fapiConfigRsp)
176    {
177       DU_LOG("\nERROR  -->  PHY STUB: Memory allocation failed");
178       return RFAILED;
179    }
180    memset(fapiConfigRsp, 0, sizeof(fapi_config_resp_t));
181    fapiConfigRsp->number_of_invalid_tlvs = NULLP;
182    fapiConfigRsp->number_of_inv_tlvs_idle_only = NULLP;
183    fapiConfigRsp->number_of_missing_tlvs = NULLP;
184    fapiConfigRsp->error_code = MSG_OK;
185    msgLen = sizeof(fapi_config_resp_t) - sizeof(fapi_msg_t);
186    fillMsgHeader(&fapiConfigRsp->header, FAPI_CONFIG_RESPONSE, msgLen);
187
188    DU_LOG("\nINFO   -->  PHY_STUB: Sending Config Response to Lower Mac");
189
190    procPhyMessages(fapiConfigRsp->header.msg_id, \
191          sizeof(fapi_config_resp_t), (void *)fapiConfigRsp);
192    MAC_FREE(fapiConfigRsp, sizeof(fapi_config_resp_t));
193 #endif
194    return ROK;
195 }
196 /*******************************************************************
197  *
198  * @brief Handles param request received from MAC
199  *
200  * @details
201  *
202  *    Function : l1HdlParamReq
203  *
204  *    Functionality:
205  *          -Handles param request received from MAC
206  *
207  * @params[in]   Message length
208  *               Param request message pointer
209  *
210  * @return void
211  *
212  * ****************************************************************/
213
214 void l1HdlParamReq(uint32_t msgLen, void *msg)
215 {
216 #ifdef INTEL_FAPI
217    DU_LOG("\nINFO   -->  PHY_STUB: Received Param Request in PHY");
218
219    /* Build and send PARAM RESPONSE */
220    if(l1BldAndSndParamRsp(msg)!= ROK)
221    {
222       DU_LOG("\nERROR  -->  PHY_STUB: Failed Sending Param Response");
223    }
224    MAC_FREE(msg, sizeof(fapi_param_req_t));
225 #endif
226
227
228 /*******************************************************************
229  *
230  * @brief Handles config request received from MAC
231  *
232  * @details
233  *
234  *    Function : l1HdlConfigReq
235  *
236  *    Functionality:
237  *          -Handles config request received from MAC
238  *
239  * @params[in]   Message length
240  *               config request message pointer
241  *
242  * @return void
243  *
244  * ****************************************************************/
245
246 void l1HdlConfigReq(uint32_t msgLen, void *msg)
247 {
248    memset(&ueDb, 0, sizeof(UeDb));
249
250 #ifdef INTEL_FAPI
251    p_fapi_api_queue_elem_t configReqElem = (p_fapi_api_queue_elem_t)msg;
252    fapi_config_req_t *configReq = (fapi_config_req_t *)(configReqElem +1);
253
254    DU_LOG("\nINFO   -->  PHY_STUB: Received Config Request in PHY");
255
256    /* Handling CONFIG RESPONSE */
257    if(l1BldAndSndConfigRsp(configReq)!= ROK)
258    {
259       DU_LOG("\nERROR  -->  PHY_STUB: Failed Sending config Response");
260    }
261
262    MAC_FREE(msg, msgLen);
263 #endif
264
265 }
266
267 /*******************************************************************
268  *
269  * @brief Build and Send CRC Indication
270  *
271  * @details
272  *
273  *    Function : l1BuildAndSendCrcInd
274  *
275  *    Functionality:
276  *      Build and Send CRC Indication
277  *
278  * @params[in] Slot
279  *             SFN 
280  * @return ROK     - success
281  *         RFAILED - failure
282  *
283  * ****************************************************************/
284 uint16_t l1BuildAndSendCrcInd(uint16_t slot, uint16_t sfn)
285 {
286 #ifdef INTEL_FAPI
287    uint8_t idx = 0;
288    fapi_crc_ind_t  *crcInd;
289
290    MAC_ALLOC(crcInd, sizeof(fapi_crc_ind_t));
291    if(!crcInd)
292    {
293       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for CRC Indication Message");
294       return RFAILED;
295    }
296    memset(crcInd, 0, sizeof(fapi_crc_ind_t));
297
298    /* TODO: Fill the required values. As of now only 1 CRC status PASS is filled */
299    crcInd->sfn = sfn;
300    crcInd->slot = slot;
301    crcInd->numCrcs = 1;
302
303    crcInd->crc[idx].handle = 0;
304    crcInd->crc[idx].rnti = 0;
305    crcInd->crc[idx].harqId = 0;
306    crcInd->crc[idx].tbCrcStatus = 0;
307    crcInd->crc[idx].numCb = 1;
308    crcInd->crc[idx].cbCrcStatus[0] = 0;
309    crcInd->crc[idx].ul_cqi = 0;
310    crcInd->crc[idx].timingAdvance = 0;
311    crcInd->crc[idx].rssi = 0;
312
313    fillMsgHeader(&crcInd->header, FAPI_CRC_INDICATION, \
314          sizeof(fapi_crc_ind_t) - sizeof(fapi_msg_t));
315
316    /* Sending RACH indication to MAC */
317    DU_LOG("\nINFO   -->  PHY STUB: Sending CRC Indication to MAC");
318    procPhyMessages(crcInd->header.msg_id, sizeof(fapi_crc_ind_t), (void *)crcInd);
319    MAC_FREE(crcInd, sizeof(fapi_crc_ind_t));
320 #endif
321    return ROK;
322 } /* l1BuildAndSendCrcInd */
323
324 #ifdef INTEL_FAPI
325 /*******************************************************************
326  *
327  * @brief Build and send Rx data indication
328  *
329  * @details
330  *
331  *    Function : l1BuildAndSendRxDataInd
332  *
333  *    Functionality:
334  *       Build and send Rx data indication
335  *
336  * @params[in] SFN
337  *             Slot
338  * @return ROK     - success
339  *         RFAILED - failure
340  *
341  * ****************************************************************/
342 uint16_t l1BuildAndSendRxDataInd(uint16_t slot, uint16_t sfn, fapi_ul_pusch_pdu_t puschPdu)
343 {
344    uint8_t idx = 0, ueId = 0;
345    fapi_rx_data_indication_t *rxDataInd =NULLP;
346    fapi_pdu_ind_info_t       *pduInfo =NULLP;
347    uint8_t  *pdu = NULLP;
348    uint16_t byteIdx = 0;
349    uint32_t msgLen = 0;
350    MsgType type = 0;
351
352    GET_UE_ID(puschPdu.rnti, ueId);
353    if(!ueDb.ueCb[ueId-1].msg3Sent)
354    {
355       ueDb.ueCb[ueId-1].ueId = ueId;
356       ueDb.ueCb[ueId-1].crnti = puschPdu.rnti;
357       ueDb.ueCb[ueId-1].msg3Sent = true;
358       type = MSG_TYPE_MSG3;
359       sleep(2);
360    }
361    else if(!ueDb.ueCb[ueId-1].msg5ShortBsrSent)
362    {
363       ueDb.ueCb[ueId-1].msg5ShortBsrSent = true;
364       type = MSG_TYPE_SHORT_BSR;
365    }
366    else if(!ueDb.ueCb[ueId-1].msg5Sent)
367    {
368       ueDb.ueCb[ueId-1].msg5Sent = true;
369       type = MSG_TYPE_MSG5;
370    }
371    else if(!ueDb.ueCb[ueId-1].msgRegistrationComp)
372    {
373       ueDb.ueCb[ueId-1].msgRegistrationComp = true;
374       type = MSG_TYPE_REGISTRATION_COMPLETE; 
375    }
376    else if(!ueDb.ueCb[ueId-1].msgSecurityModeComp)
377    {
378       ueDb.ueCb[ueId-1].msgSecurityModeComp = true;
379       type = MSG_TYPE_SECURITY_MODE_COMPLETE;
380    }
381    else if(!ueDb.ueCb[ueId-1].msgRrcReconfiguration)
382    {
383       ueDb.ueCb[ueId-1].msgRrcReconfiguration = true;
384       type = MSG_TYPE_RRC_RECONFIG_COMPLETE;
385    }
386    else
387       return RFAILED;
388
389    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
390    if(!rxDataInd)
391    {
392       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Indication");
393       return RFAILED;
394    }
395    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
396    
397    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
398    rxDataInd->sfn = sfn;
399    rxDataInd->slot = slot;
400    rxDataInd->numPdus = 1;
401
402    pduInfo = &rxDataInd->pdus[idx];
403    pduInfo->handle = puschPdu.handle;
404    pduInfo->rnti = puschPdu.rnti;
405    pduInfo->harqId = puschPdu.puschData.harqProcessId;
406    pduInfo->pdu_length = puschPdu.puschData.tbSize ;
407    pduInfo->ul_cqi = 0;
408    pduInfo->timingAdvance = 0;
409    pduInfo->rssi = 0;
410
411    /* Filling pdu with random values for testing */
412    pduInfo->pduData = NULL;
413    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
414    if(!pduInfo->pduData)
415    {
416       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Pdu");
417       return RFAILED;
418    }
419    memset(pduInfo->pduData, 0, pduInfo->pdu_length);
420    /* Filling PDU */
421    pdu = (uint8_t *)pduInfo->pduData;
422
423    switch(type)
424    {
425       case MSG_TYPE_MSG3: 
426          {
427             DU_LOG("\nDEBUG  -->  PHY_STUB: Forming MSG3 PDU ");
428             /* For Initial RRC setup Request,
429                MAC subheader format is R/R/LCId (1byte)
430                LCId is CCCH(0)
431                From 38.321 section 6.1.1
432              */
433             pdu[byteIdx++] = 0;
434             /* Hardcoding MAC PDU */
435             pdu[byteIdx++] = 16;
436             pdu[byteIdx++] = 00;
437             pdu[byteIdx++] = 00;
438             pdu[byteIdx++] = 00;
439             pdu[byteIdx++] = 00;
440             pdu[byteIdx++] = 103;
441
442             break;
443          }
444       case MSG_TYPE_SHORT_BSR:
445       {
446          DU_LOG("\nDEBUG  -->  PHY_STUB: Forming SHORT BSR PDU ");
447          uint8_t lcgId = 0;
448          uint8_t bufferSizeIdx = 6;
449
450          /* For Short BSR
451             MAC subheader format is R/R/LcId (1Byte)
452             LCId is 61
453             From 38.321 section 6.1.1
454           */
455          pdu[byteIdx++] = 61;    // LCID
456          pdu[byteIdx++] = (lcgId << 5) | bufferSizeIdx;
457
458          break;
459       }
460
461       case MSG_TYPE_MSG5:
462       {
463          DU_LOG("\nDEBUG  -->  PHY_STUB: Forming MSG5 PDU");
464          uint8_t  msg5PduLen = 33;
465          /* For RRC setup complete
466             MAC subheader format is R/F/LCId/L (2/3 bytes)
467             LCId is 1 for SRB1
468             L is length of PDU i.e 6bytes here 
469             From 38.321 section 6.1.1
470           */
471          uint8_t msg5[] = {1, msg5PduLen, 0, 0, 16, 0, 5, 223, 128, 16, 94, \
472             64, 3, 64, 89, 61, 138, 64, 0, 0, 0, 4, 0, 0, 4, 68, 11, 128, \
473                184, 56, 0, 0, 0, 0, 0};
474
475          msg5PduLen += 2;  /* 2bytes of header */
476          memcpy(pdu, &msg5, msg5PduLen);
477          byteIdx += msg5PduLen; /* 2 bytes of header */
478          break;
479       }
480
481       case MSG_TYPE_SECURITY_MODE_COMPLETE:
482       {
483          DU_LOG("\nDEBUG  -->  PHY_STUB: Forming SECURITY MODE COMPLETE PDU");
484          uint8_t  pduLen = 12;
485          /* For security mode complete where RRC Container is dummy
486             MAC subheader format is R/F/LCId/L (2/3 bytes)
487             LCId is 1 for SRB1
488             L is length of PDU i.e 6bytes here 
489             From 38.321 section 6.1.1
490           */
491          uint8_t msg[] = {1, pduLen, 0, 3, 0x2a, 0x40, 0, 0, 0, 0, 0, 0, 0, 0};
492
493          pduLen += 2;  /* 2bytes of header */
494          memcpy(pdu, &msg, pduLen);
495          byteIdx += pduLen; /* 2 bytes of header */
496          break;
497       }
498       case MSG_TYPE_REGISTRATION_COMPLETE:
499       {
500           
501           DU_LOG("\nDEBUG  -->  PHY_STUB: Forming RRC REGISTRATION COMPLETE PDU");
502           uint8_t  pduLen = 12;
503           /* For rrc reconfig complete where RRC Container is dummy
504           MAC subheader format is R/F/LCId/L (2/3 bytes)
505           LCId is 1 for SRB1
506           L is length of PDU i.e 6bytes here
507           From 38.321 section 6.1.1
508           */
509           uint8_t msg[] = {1, pduLen, 0, 0x04, 0x3a, 0x81, 0xbf, 0, 0x21, 0x80, 0, \
510           0, 0, 0};
511         
512           pduLen += 2;  /* 2bytes of header */
513           memcpy(pdu, &msg, pduLen);
514           byteIdx += pduLen; /* 2 bytes of header */
515           break;
516       }
517       case MSG_TYPE_RRC_RECONFIG_COMPLETE:
518       {
519          DU_LOG("\nDEBUG  -->  PHY_STUB: Forming RRC RECONFIGURATION COMPLETE PDU");
520          uint8_t  pduLen = 14;
521          /* For rrc reconfig complete where RRC Container is dummy
522          MAC subheader format is R/F/LCId/L (2/3 bytes)
523          LCId is 1 for SRB1
524          L is length of PDU i.e 6bytes here
525          From 38.321 section 6.1.1
526          */
527          uint8_t msg[] = {1, pduLen, 0, 6, 8, 64, 0, 0, 0, 0, \
528                           0, 0, 0, 0, 0};
529         
530          pduLen += 2;  /* 2bytes of header */
531          memcpy(pdu, &msg, pduLen);
532          byteIdx += pduLen; /* 2 bytes of header */
533          break;
534
535       }
536       
537       default:
538          break;
539    } /* End of switch(type) */
540    /* Filling MAC SDU for Padding bytes*/
541    if(byteIdx < pduInfo->pdu_length)
542    {
543       /* For Padding
544          MAC subheader format is R/R/LCId (1byte)
545          LCId is 63 for padding
546          From 38.321 section 6.1.1
547        */
548       pdu[byteIdx++] = 63;
549
550       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
551          pdu[byteIdx] = 0;
552    }
553    msgLen += pduInfo->pdu_length;
554
555    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
556
557    /* Sending Rx data indication to MAC */
558    DU_LOG("\nINFO   -->  PHY STUB: Sending Rx data Indication to MAC");
559    procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
560
561    if(pduInfo->pdu_length)
562       MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
563    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
564    return ROK;
565 }
566 #endif
567
568 /*******************************************************************
569  *
570  * @brief Builds and Sends RACH indication to MAC 
571  *
572  * @details
573  *
574  *    Function : l1BuildAndSendRachInd 
575  *
576  *    Functionality:
577  *      Builds and Sends RACH indication to MAC
578  *
579  * @params[in] SFN value 
580  *             slot value
581  * @return ROK     - success
582  *         RFAILED - failure
583  *
584  * ****************************************************************/
585 uint16_t l1BuildAndSendRachInd(uint16_t slot, uint16_t sfn)
586 {
587 #ifdef INTEL_FAPI
588    uint8_t   rachPduIdx = 0; 
589    uint8_t   preamIdx = 0;
590    fapi_rach_pdu_t  *rachPdu;
591    fapi_rach_indication_t  *rachInd;
592
593    /* Building RACH indication */
594    MAC_ALLOC(rachInd, sizeof(fapi_rach_indication_t));
595    if(!rachInd)
596    {
597       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rach Indication Message");
598       return RFAILED;
599    }
600    memset(rachInd, 0, sizeof(fapi_rach_indication_t)); 
601    rachInd->sfn = sfn;
602    rachInd->slot = slot;
603    rachInd->numPdus = 1;
604
605    rachPdu = &rachInd->rachPdu[rachPduIdx];
606    rachPdu->phyCellId = NR_PCI;
607    rachPdu->symbolIndex = 0;
608    rachPdu->slotIndex = slot;
609    rachPdu->freqIndex = 0;
610    rachPdu->avgRssi = 0;
611    rachPdu->avgSnr = 0;
612    rachPdu->numPreamble = 1;
613
614    rachPdu->preambleInfo[preamIdx].preambleIndex = 3;
615    rachPdu->preambleInfo[preamIdx].timingAdvance = 0;
616    rachPdu->preambleInfo[preamIdx].preamblePwr = 0;
617
618    fillMsgHeader(&rachInd->header, FAPI_RACH_INDICATION, \
619          sizeof(fapi_rach_indication_t) - sizeof(fapi_msg_t));
620
621    /* Sending RACH indication to MAC */
622    DU_LOG("\nINFO   -->  PHY STUB: Sending RACH Indication to MAC");
623    procPhyMessages(rachInd->header.msg_id, sizeof(fapi_rach_indication_t), (void *)rachInd);
624    MAC_FREE(rachInd, sizeof(fapi_rach_indication_t));
625 #endif
626    return ROK;
627 }
628
629 /*******************************************************************
630  *
631  * @brief Builds and Send the Slot Indication message to MAC
632  *
633  * @details
634  *
635  *    Function : l1BuildAndSendSlotIndication
636  *
637  *    Functionality:
638  *          -Send the Slot indication Message to MAC
639  *
640  * @params[in]   Message length
641  *               config request message pointer
642  *
643  * @return void
644  *
645  * ****************************************************************/
646 uint16_t l1BuildAndSendSlotIndication()
647 {
648    Pst pst;
649    Buffer *mBuf;
650
651 #ifdef INTEL_FAPI
652    fapi_slot_ind_t *slotIndMsg;
653
654    MAC_ALLOC_SHRABL_BUF(slotIndMsg, sizeof(fapi_slot_ind_t));
655    if(!slotIndMsg)
656    {
657       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for slot Indication Message");
658       return RFAILED;
659    }
660    else
661    {
662       memset(slotIndMsg, 0, sizeof(fapi_slot_ind_t));
663       slotIndMsg->sfn = sfnValue;
664       slotIndMsg->slot = slotValue;
665
666 #ifdef ODU_SLOT_IND_DEBUG_LOG
667       DU_LOG("\n\nDEBUG  -->  PHY_STUB: Sending Slot Indication [%d : %d] to MAC", sfnValue, slotValue);
668 #endif
669
670       /* increment for the next TTI */
671       slotValue++;
672       if(sfnValue >= MAX_SFN_VALUE && slotValue > MAX_SLOT_VALUE)
673       {
674          sfnValue = 0;
675          slotValue = 0;
676       }
677       else if(slotValue > MAX_SLOT_VALUE)
678       {
679          sfnValue++;
680          slotValue = 0;
681       }
682       fillMsgHeader(&slotIndMsg->header, FAPI_SLOT_INDICATION, \
683             sizeof(fapi_slot_ind_t) - sizeof(fapi_msg_t));
684
685       memset(&pst, 0, sizeof(Pst));
686       FILL_PST_PHY_STUB_TO_LWR_MAC(pst, EVT_PHY_STUB_SLOT_IND);
687
688       ODU_GET_MSG_BUF(pst.region, pst.pool, &mBuf);
689       if(!mBuf)
690       {
691          DU_LOG("\nERROR  --> PHY_STUB: Failed to allocate memory for slot indication buffer");
692          MAC_FREE_SHRABL_BUF(pst.region, pst.pool, slotIndMsg, sizeof(fapi_slot_ind_t));
693          return RFAILED;
694       }
695       CMCHKPK(oduPackPointer, (PTR)slotIndMsg, mBuf);
696       ODU_POST_TASK(&pst, mBuf);
697    }
698 #endif
699    return ROK;
700 }
701
702 /*******************************************************************
703  *
704  * @brief Handles start request received from MAC
705  *
706  * @details
707  *
708  *    Function : l1HdlStartReq
709  *
710  *    Functionality:
711  *          -Handles start request received from MAC
712  *
713  * @params[in]   Message length
714  *               config request message pointer
715  *
716  * @return void
717  *
718  * ****************************************************************/
719
720 S16 l1HdlStartReq(uint32_t msgLen, void *msg)
721 {
722 #ifdef INTEL_FAPI
723    if(lwrMacCb.phyState == PHY_STATE_CONFIGURED)
724    {
725       l1HdlSlotIndicaion(FALSE);
726       l1StartConsoleHandler();
727       MAC_FREE(msg, msgLen);
728    }
729    else
730    {
731       DU_LOG("\nINFO   -->  PHY_STUB: Received Start Req in PHY State %d", lwrMacCb.phyState);
732       MAC_FREE(msg, msgLen);
733       return RFAILED;
734    }
735 #endif
736    return ROK;
737 }
738
739 /*******************************************************************
740  *
741  * @brief Handles Dl Tti request received from MAC
742  *
743  * @details
744  *
745  *    Function : l1HdlDlTtiReq
746  *
747  *    Functionality:
748  *          -Handles Dl Tti request received from MAC
749  *
750  * @params[in]   Message length
751  *               Dl Tti request message pointer
752  *
753  * @return void
754  *
755  * ****************************************************************/
756
757 S16 l1HdlDlTtiReq(uint16_t msgLen, void *msg)
758 {
759 #ifdef INTEL_FAPI
760    p_fapi_api_queue_elem_t dlTtiElem = (p_fapi_api_queue_elem_t)msg;
761    fapi_dl_tti_req_t *dlTtiReq = (fapi_dl_tti_req_t *)(dlTtiElem +1);
762    
763    uint8_t pduCount = 0;
764
765 #ifdef ODU_SLOT_IND_DEBUG_LOG
766    if(dlTtiReq->nPdus == 0)
767    {
768       DU_LOG("\nDEBUG  -->  PHY_STUB: No PDU in DL TTI Request");
769    }
770    else
771    {  
772      DU_LOG("\nDEBUG  -->  PHY STUB: DL TTI Request at sfn=%d slot=%d",dlTtiReq->sfn,dlTtiReq->slot);
773    }
774 #endif 
775
776    for(pduCount=0; pduCount<dlTtiReq->nPdus; pduCount++)
777    {
778       if(dlTtiReq->pdus[pduCount].pduType == 3) //SSB_PDU_TYPE
779       {
780          DU_LOG("\nINFO   -->  PHY_STUB: SSB PDU");
781       }
782       else if(dlTtiReq->pdus[pduCount].pduType == 0)
783       {
784          DU_LOG("\nINFO   -->  PHY_STUB: PDCCH PDU");
785       }
786       else if(dlTtiReq->pdus[pduCount].pduType == 1)
787       {
788          DU_LOG("\nINFO   -->  PHY_STUB: PDSCH PDU");
789       }
790    }
791
792    /* Free FAPI message */
793    MAC_FREE(msg, msgLen);
794 #endif
795    return ROK;
796 }
797
798 /*******************************************************************
799  *
800  * @brief Handles tx_data request received from MAC
801  *
802  * @details
803  *
804  *    Function : l1HdlTxDataReq
805  *
806  *    Functionality:
807  *          -Handles tx_data request received from MAC
808  *
809  * @params[in]   Message length
810  *               tx_data request message pointer
811  *
812  * @return void
813  *
814  * ****************************************************************/
815
816 S16 l1HdlTxDataReq(uint16_t msgLen, void *msg)
817 {
818 #ifdef INTEL_FAPI
819    p_fapi_api_queue_elem_t txDataElem = (p_fapi_api_queue_elem_t)msg;
820    fapi_tx_data_req_t *txDataReq = (fapi_tx_data_req_t *)(txDataElem +1);
821
822    DU_LOG("\nINFO   -->  PHY STUB: TX DATA Request at sfn=%d slot=%d",txDataReq->sfn,txDataReq->slot);
823 /*
824    if(dlDedMsg)
825    {
826       DU_LOG("\nINFO   -->  PHY_STUB: TxDataPdu for DED MSG sent");
827       dlDedMsg = false;
828    }
829 */
830    MAC_FREE(msg, msgLen);
831 #endif
832    return ROK;
833 }
834
835 #ifdef INTEL_FAPI
836 /*******************************************************************
837  *
838  * @brief Fills Uci Ind Pdu Info carried on Pucch Format 0/Format 1
839  *
840  * @details
841  *
842  *    Function : fillPucchF0F1PduInfo
843  *
844  *    Functionality:
845  *       Fills Uci Ind Pdu Info carried on Pucch Format 0/Format 1 
846  *
847  * @params[in] fapi_uci_o_pucch_f0f1_t *
848  *             pucchPdu
849  * @return ROK     - success
850  *         RFAILED - failure
851  *
852  * ****************************************************************/
853 uint8_t fillPucchF0F1PduInfo(fapi_uci_o_pucch_f0f1_t *pduInfo, fapi_ul_pucch_pdu_t pucchPdu)
854 {
855    uint8_t idx = 0;
856
857    pduInfo->handle = pucchPdu.handle;
858    pduInfo->pduBitmap = 1;  //hardcoded for SR
859    pduInfo->pucchFormat = pucchPdu.formatType;
860    pduInfo->ul_cqi = 0;
861    pduInfo->rnti = pucchPdu.rnti;
862    pduInfo->timingAdvance = 0;
863    pduInfo->rssi = 0;
864    if(pduInfo->pduBitmap & SR_PDU_BITMASK)
865    {
866       pduInfo->srInfo.srIndication = SR_DETECTED;
867       pduInfo->srInfo.srConfidenceLevel = CONFDC_LEVEL_GOOD;
868    }
869    if(pduInfo->pduBitmap & HARQ_PDU_BITMASK)
870    {
871       pduInfo->harqInfo.numHarq++;
872       pduInfo->harqInfo.harqConfidenceLevel = CONFDC_LEVEL_GOOD;
873       for(idx = 0; idx < pduInfo->harqInfo.numHarq; idx++)
874       {
875          pduInfo->harqInfo.harqValue[idx] = HARQ_PASS;
876       }
877    }
878    return ROK;
879 }
880 /*******************************************************************
881  *
882  * @brief Fills UCI Pdu Information
883  *
884  * @details
885  *
886  *    Function : fillUciPduInfo
887  *
888  *    Functionality:
889  *       Fills UCI Pdu Information
890  *
891  * @params[in] Pointer to uciPdu
892  *             pucchPdu
893  * @return ROK     - success
894  *         RFAILED - failure
895  *
896  * ****************************************************************/
897 uint8_t fillUciPduInfo(fapi_uci_pdu_info_t *uciPdu, fapi_ul_pucch_pdu_t pucchPdu)
898 {
899    uint8_t ret = ROK;
900
901    /*TODO: The pduType is hardcoded here to support 
902      UCI Ind for PUCCH forat0/format1. This is to be
903      modified when we get SR form UE */
904    uciPdu->pduType = UCI_IND_PUCCH_F0F1;
905    switch(uciPdu->pduType)
906    {
907       case UCI_IND_PUSCH:
908          break;
909       case UCI_IND_PUCCH_F0F1:
910          {
911             fapi_uci_o_pucch_f0f1_t *pduInfo = NULLP;
912
913             pduInfo = &uciPdu->uci.uciPucchF0F1;
914             ret = fillPucchF0F1PduInfo(pduInfo, pucchPdu);
915             uciPdu->pduSize = sizeof(fapi_uci_o_pucch_f0f1_t);
916          }
917          break;
918       case UCI_IND_PUCCH_F2F3F4:
919          break;
920       default:
921          DU_LOG("\nERROR  -->  PHY_STUB: Invalid Pdu Type %d", uciPdu->pduType);
922          break;
923    }
924    return ret;
925 }
926
927 /*******************************************************************
928  *
929  * @brief Build and send Uci indication
930  *
931  * @details
932  *
933  *    Function : l1BuildAndSendUciInd
934  *
935  *    Functionality:
936  *       Build and send Uci indication
937  *
938  * @params[in] SFN
939  *             Slot
940  * @return ROK     - success
941  *         RFAILED - failure
942  *
943  * ****************************************************************/
944 uint8_t l1BuildAndSendUciInd(uint16_t slot, uint16_t sfn, fapi_ul_pucch_pdu_t pucchPdu)
945 {
946    uint8_t uciIdx = 0;
947    uint8_t nUciPdus = 0;
948    uint8_t ret = ROK;
949    uint32_t msgLen = 0;
950    fapi_uci_indication_t *uciInd =  NULLP;
951
952    MAC_ALLOC(uciInd, sizeof(fapi_uci_indication_t));
953    if(!uciInd)
954    {
955       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for UCI Indication");
956       return RFAILED;
957    }
958    memset(uciInd, 0, sizeof(fapi_uci_indication_t));
959    uciInd->sfn = sfn;
960    uciInd->slot = slot;
961    uciInd->numUcis = 1;   //consdering the UCI Ind for SR
962    nUciPdus = uciInd->numUcis;
963    while(nUciPdus)
964    {
965       ret = fillUciPduInfo(&uciInd->uciPdu[uciIdx], pucchPdu);
966       uciIdx++;
967       nUciPdus--;
968    }
969    if(ret == ROK)
970    {
971       msgLen = sizeof(fapi_uci_indication_t)- sizeof(fapi_msg_t);
972       fillMsgHeader(&uciInd->header, FAPI_UCI_INDICATION, msgLen);
973
974       /* Sending UCI indication to MAC */
975       DU_LOG("\nINFO   -->  PHY STUB: Sending UCI Indication to MAC");
976       procPhyMessages(uciInd->header.msg_id, sizeof(fapi_uci_indication_t), (void *)uciInd);
977    }
978    MAC_FREE(uciInd, sizeof(fapi_uci_indication_t));
979    return ret;
980 }
981 #endif
982
983 /*******************************************************************
984  *
985  * @brief Handles Ul Tti request received from MAC
986  *
987  * @details
988  *
989  *    Function : l1HdlUlTtiReq
990  *
991  *    Functionality:
992  *          -Handles Ul Tti request received from MAC
993  *
994  * @params[in]   Message length
995  *               Ul Tti request message pointer
996  *
997  * @return void
998  *
999  * ****************************************************************/
1000
1001 S16 l1HdlUlTtiReq(uint16_t msgLen, void *msg)
1002 {
1003 #ifdef INTEL_FAPI
1004    p_fapi_api_queue_elem_t ulTtiElem = (p_fapi_api_queue_elem_t)msg;
1005    fapi_ul_tti_req_t *ulTtiReq = (fapi_ul_tti_req_t *)(ulTtiElem +1);
1006    uint8_t numPdus = ulTtiReq->nPdus;
1007
1008 #ifdef ODU_SLOT_IND_DEBUG_LOG
1009    if(numPdus == 0)
1010    {
1011       DU_LOG("\nINFO   -->  PHY STUB: No PDU received in UL TTI Req");
1012    }
1013    else
1014    {
1015       DU_LOG("\nINFO   -->  PHY STUB: Received UL TTI Request");
1016    }
1017 #endif 
1018
1019    while(numPdus)
1020    {
1021       if(ulTtiReq->pdus[numPdus-1].pduType == 0)
1022       {
1023          DU_LOG("\nINFO   -->  PHY STUB: PRACH PDU");
1024       }
1025       if(ulTtiReq->pdus[numPdus-1].pduType == 1)
1026       {
1027          DU_LOG("\nINFO   -->  PHY STUB: PUSCH PDU");
1028          l1BuildAndSendRxDataInd(ulTtiReq->slot, ulTtiReq->sfn, \
1029                ulTtiReq->pdus[numPdus-1].pdu.pusch_pdu); 
1030       }
1031       if(ulTtiReq->pdus[numPdus-1].pduType == 2)
1032       {
1033          DU_LOG("\nINFO   -->  PHY STUB: PUCCH PDU");
1034          fapi_ul_tti_req_t ulTtiSlotInd;
1035          memset(&ulTtiSlotInd, 0, sizeof(fapi_ul_tti_req_t));
1036          ulTtiSlotInd.slot = ulTtiReq->slot;
1037          ulTtiSlotInd.sfn  = ulTtiReq->sfn;
1038          ADD_DELTA_TO_TIME(ulTtiSlotInd, ulTtiSlotInd, SLOT_DELAY);
1039          l1BuildAndSendUciInd(ulTtiSlotInd.slot, ulTtiSlotInd.sfn, \
1040                ulTtiReq->pdus[numPdus-1].pdu.pucch_pdu);
1041       }
1042       numPdus--;
1043    }
1044
1045    /* TODO: [SFN:SLOT] at which RACH Indication is sent should be calculated
1046     * based on PRACH cfg index */
1047    /* Send RACH Ind to L2 for first UE */
1048    if(ueDb.ueCb[UE_IDX_0].rachIndSent == false && ulTtiReq->sfn == 16 && ulTtiReq->slot == 6)
1049    {
1050       ueDb.ueCb[UE_IDX_0].rachIndSent = true;
1051       l1BuildAndSendRachInd(ulTtiReq->slot, ulTtiReq->sfn);
1052       ueDb.numActvUe++;
1053    }
1054    /* Send RACH Ind to L2 for second UE */
1055    if(ueDb.ueCb[UE_IDX_1].rachIndSent == false && ulTtiReq->sfn == 304 && ulTtiReq->slot == 0)
1056    {
1057       ueDb.ueCb[UE_IDX_1].rachIndSent = true;
1058       l1BuildAndSendRachInd(ulTtiReq->slot, ulTtiReq->sfn);
1059       ueDb.numActvUe++;
1060    }
1061
1062    /* Send RACH Ind to L2 for third UE */
1063    if(ueDb.ueCb[UE_IDX_2].rachIndSent == false && ulTtiReq->sfn == 526 && ulTtiReq->slot == 0)
1064    {
1065       ueDb.ueCb[UE_IDX_2].rachIndSent = true;
1066       l1BuildAndSendRachInd(ulTtiReq->slot, ulTtiReq->sfn);
1067       ueDb.numActvUe++;
1068    }
1069    MAC_FREE(msg, msgLen);
1070 #endif
1071    return ROK;
1072 }
1073
1074 /*******************************************************************
1075  *
1076  * @brief Builds and Send the stop Indication message to MAC
1077  *
1078  * @details
1079  *
1080  *    Function : l1BuildAndSendStopInd
1081  *
1082  *    Functionality:
1083  *          -Send the Stop indication Message to MAC
1084  *
1085  *
1086  * @return void
1087  *
1088  * ****************************************************************/
1089 uint16_t l1BuildAndSendStopInd()
1090 {
1091 #ifdef INTEL_FAPI
1092    Pst pst;
1093    Buffer *mBuf = NULLP;
1094    fapi_stop_ind_t *stopIndMsg = NULLP;
1095    uint32_t msgLen = 0;
1096
1097    MAC_ALLOC_SHRABL_BUF(stopIndMsg, sizeof(fapi_stop_ind_t));
1098    if(!stopIndMsg)
1099    {
1100       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for stop Indication Message");
1101       return RFAILED;
1102    }
1103    else
1104    {
1105       fillMsgHeader(&stopIndMsg->header, FAPI_STOP_INDICATION, msgLen);
1106       DU_LOG("\n\nINFO   -->  PHY_STUB: Processing Stop indication to MAC");
1107
1108       memset(&pst, 0, sizeof(Pst));
1109       FILL_PST_PHY_STUB_TO_LWR_MAC(pst, EVT_PHY_STUB_STOP_IND);
1110       ODU_GET_MSG_BUF(pst.region, pst.pool, &mBuf);
1111       if(!mBuf)
1112       {
1113          DU_LOG("\nERROR  --> PHY_STUB: Failed to allocate memory for slot indication buffer");
1114          MAC_FREE_SHRABL_BUF(pst.region, pst.pool, stopIndMsg, sizeof(fapi_stop_ind_t));
1115          return RFAILED;
1116       }
1117       CMCHKPK(oduPackPointer, (PTR)stopIndMsg, mBuf);
1118       ODU_POST_TASK(&pst, mBuf);
1119    }
1120 #endif
1121    return ROK;
1122 }
1123
1124 /*******************************************************************
1125  *
1126  * @brief Handles stop request received from MAC
1127  *
1128  * @details
1129  *
1130  *    Function : l1HdlStopReq
1131  *
1132  *    Functionality:
1133  *          -Handles stop request received from MAC
1134  *
1135  * @params[in]   Message length
1136  *               stop request message pointer
1137  *
1138  * @return void
1139  *
1140  * ****************************************************************/
1141
1142 S16 l1HdlStopReq(uint32_t msgLen, void *msg)
1143 {
1144 #ifdef INTEL_FAPI
1145    if(lwrMacCb.phyState == PHY_STATE_RUNNING)
1146    {
1147       l1HdlSlotIndicaion(TRUE);
1148
1149       /* Initialize all global variables */
1150       sfnValue = 0;
1151       slotValue = 0;
1152       memset(&ueDb, 0, sizeof(UeDb));
1153
1154       DU_LOG("\nINFO   -->  PHY_STUB: Slot Indication is stopped successfully");
1155       MAC_FREE(msg, msgLen);
1156    }
1157    else
1158    {
1159       DU_LOG("\nINFO  -->  PHY_STUB: Received Stop Req in PHY State %d", lwrMacCb.phyState);
1160       MAC_FREE(msg, msgLen);
1161       return RFAILED;
1162    }
1163 #endif
1164    return ROK;
1165 }
1166
1167 #if 0
1168 /*******************************************************************
1169  *
1170  * @brief Build And Send Rx Data Ind for Msg5
1171  *
1172  * @details
1173  *
1174  *    Function : l1BuildAndSendMsg5
1175  *
1176  *    Functionality: Build And Send Rx Data Ind for Msg5
1177  *
1178  * @params[in] SFN
1179  *             Slot
1180  * @return ROK     - success
1181  *         RFAILED - failure
1182  *
1183  * ****************************************************************/
1184 uint8_t l1BuildAndSendMsg5(uint16_t sfn, uint16_t slot)
1185 {   
1186 #ifdef INTEL_FAPI
1187    uint8_t idx = 0;
1188    fapi_rx_data_indication_t *rxDataInd;
1189    fapi_pdu_ind_info_t       *pduInfo;
1190    uint8_t  *pdu;
1191    uint16_t byteIdx = 0;
1192    uint32_t msgLen = 0;
1193
1194    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
1195    if(!rxDataInd)
1196    {
1197       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Indication for msg5");
1198       return RFAILED;
1199    }
1200    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
1201
1202    /* TODO: Fill the required values */
1203    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
1204    rxDataInd->sfn = sfn;
1205    rxDataInd->slot = slot;
1206    rxDataInd->numPdus = 1;
1207
1208    pduInfo = &rxDataInd->pdus[idx];
1209    pduInfo->handle = 100;
1210    pduInfo->rnti = 100;
1211    pduInfo->harqId = 1;
1212    pduInfo->pdu_length = 25;
1213    pduInfo->ul_cqi = 0;
1214    pduInfo->timingAdvance = 0;
1215    pduInfo->rssi = 0;
1216
1217    /* Filling pdu with random values for testing */
1218    pduInfo->pduData = NULL;
1219    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
1220    if(!pduInfo->pduData)
1221    {
1222       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Pdu");
1223       return RFAILED;
1224    }
1225
1226    /* Filling PDU */
1227    pdu = (uint8_t *)pduInfo->pduData;
1228
1229    uint8_t  msg5PduLen = 33;
1230    /* For RRC setup complete
1231       MAC subheader format is R/F/LCId/L (2/3 bytes)
1232       LCId is 1 for SRB1
1233       L is length of PDU i.e 6bytes here
1234       From 38.321 section 6.1.1
1235     */
1236    uint8_t msg5[] = {1, msg5PduLen, 0, 0, 16, 0, 5, 223, 128, 16, 94, \
1237       64, 3, 64, 89, 61, 138, 64, 0, 0, 0, 4, 0, 0, 4, 68, 11, 128, \
1238          184, 56, 0, 0, 0, 0, 0};
1239
1240    msg5PduLen += 2;  /* 2bytes of header */
1241    memcpy(pdu, &msg5, msg5PduLen);
1242    byteIdx += msg5PduLen; /* 2 bytes of header */
1243
1244    /* Filling MAC SDU for Padding bytes*/
1245    if(byteIdx < pduInfo->pdu_length)
1246    {
1247       /* For Padding
1248          MAC subheader format is R/R/LCId (1byte)
1249          LCId is 63 for padding
1250          From 38.321 section 6.1.1
1251        */
1252       pdu[byteIdx++] = 63;
1253
1254       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
1255          pdu[byteIdx] = 0;
1256    }
1257    msgLen += pduInfo->pdu_length;
1258
1259    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
1260
1261    /* Sending Rx data indication to MAC */
1262    DU_LOG("\nINFO   -->  PHY STUB: Sending Rx data Indication to MAC");
1263    procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
1264
1265    if(pduInfo->pdu_length)
1266       MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1267    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1268 #endif
1269    return ROK;
1270 }
1271 #endif
1272
1273 /*******************************************************************
1274  *
1275  * @brief Handles Ul Dci request received from MAC
1276  *
1277  * @details
1278  *
1279  *    Function : l1HdlUlDciReq
1280  *
1281  *    Functionality:
1282  *          -Handles Ul Dci request received from MAC
1283  *
1284  * @params[in]   Message length
1285  *               Ul Dci request message pointer
1286  *
1287  * @return void
1288  *
1289  * ****************************************************************/
1290
1291 S16 l1HdlUlDciReq(uint16_t msgLen, void *msg)
1292 {
1293 #ifdef INTEL_FAPI
1294    p_fapi_api_queue_elem_t ulDciElem = (p_fapi_api_queue_elem_t)msg;
1295    fapi_ul_dci_req_t *ulDciReq = (fapi_ul_dci_req_t *)(ulDciElem +1);
1296    uint8_t numPdus = ulDciReq->numPdus;
1297
1298    while(numPdus)
1299    {
1300       if(ulDciReq->pdus[numPdus-1].pduType == 0)
1301       {
1302          DU_LOG("\nINFO   -->  PHY STUB: Received UL DCI Request for PDCCH PDU");
1303          //l1BuildAndSendMsg5(ulDciReq->sfn, ulDciReq->slot);
1304          //msg5Sent = true;
1305       }
1306       numPdus--;
1307    }
1308
1309    MAC_FREE(msg, msgLen);
1310 #endif
1311    return ROK;
1312 }
1313
1314 /*******************************************************************
1315  *
1316  * @brief Send UL user data to DU
1317  *
1318  * @details
1319  *
1320  *    Function : l1SendUlUserData
1321  *
1322  *    Functionality: Send UL user data to DU
1323  *
1324  * @params[in]
1325  * @return ROK     - success
1326  *         RFAILED - failure
1327  *
1328  * ****************************************************************/
1329 uint8_t l1SendUlUserData(uint8_t drbId, uint8_t ueIdx)
1330 {
1331    uint8_t cnt = 0;
1332    fapi_rx_data_indication_t *rxDataInd;
1333    fapi_pdu_ind_info_t       *pduInfo;
1334    uint8_t  *pdu = NULLP;
1335    uint16_t byteIdx = 0;
1336    uint32_t msgLen = 0;
1337    uint8_t idx = 0;
1338    uint8_t lcId = 0;
1339
1340    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
1341    if(!rxDataInd)
1342    {
1343       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Indication");
1344       return RFAILED;
1345    }
1346    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
1347
1348    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
1349    rxDataInd->sfn = 0;
1350    rxDataInd->slot = 0;
1351    rxDataInd->numPdus = 1;
1352
1353    /* TODO : Fill pduInfo using PUSCH PDU. Currently hardcoding */
1354    pduInfo = &rxDataInd->pdus[idx];
1355    pduInfo->handle = ueIdx + ODU_START_CRNTI;
1356    pduInfo->rnti = ueIdx + ODU_START_CRNTI;
1357    pduInfo->harqId = 1;
1358    /* Since user data size = 50bytes and 2 bytes of MAC header and 3 byte of RLC header, 
1359     * setting tbsize = 56 from Table 5.1.3.2-1 spec 38.214 */
1360    pduInfo->pdu_length = 56;
1361    pduInfo->ul_cqi = 0;
1362    pduInfo->timingAdvance = 0;
1363    pduInfo->rssi = 0;
1364
1365    /* Filling pdu with random values for testing */
1366    pduInfo->pduData = NULL;
1367    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
1368    if(!pduInfo->pduData)
1369    {
1370       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Pdu");
1371       return RFAILED;
1372    }
1373
1374    /* Filling PDU */
1375    pdu = (uint8_t *)pduInfo->pduData;
1376    msgLen = 52;
1377
1378    /* For UL User data
1379       MAC subheader format is R/F/LCId/L (2/3 bytes)
1380       LCId is 4 for DRB1
1381       L is length of PDU i.e 50 bytes
1382       From 38.321 section 6.1.1
1383       From 38.322 section 6.2.2.4, 6.2.2.3 for AM, UM Header
1384     */
1385
1386     /* Below ulMsg supports 12bit SN for UM mode */
1387                                /*  SI  SN */
1388     lcId = MIN_DRB_LCID + drbId;
1389     uint8_t ulMsg[] = {lcId, msgLen,   0, 0, 0, 0, 0, 50, 0, 0, 0, 0, 0, 1, 0, 0, 192, 168, 130, 81, 192, 168, 130, 82, 84, 104,
1390     105, 115, 32, 105, 115, 32, 69, 71, 84, 80, 32, 100, 97, 116, 97, 32, 102, 114, 111, 109, 32, 68, 85, 0, 0, 0, 0, 0};
1391     msgLen += 2;  /* 2bytes of header */
1392     memcpy(pdu, &ulMsg, msgLen);
1393     byteIdx += msgLen; /* 2 bytes of header */
1394
1395    /* Filling MAC SDU for Padding bytes*/
1396    if(byteIdx < pduInfo->pdu_length)
1397    {
1398       /* For Padding
1399          MAC subheader format is R/R/LCId (1byte)
1400          LCId is 63 for padding
1401          From 38.321 section 6.1.1
1402        */
1403       pdu[byteIdx++] = 63;
1404
1405       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
1406          pdu[byteIdx] = 0;
1407    }
1408    msgLen += pduInfo->pdu_length;
1409
1410    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
1411
1412     /* Send Message to peer */
1413     while(cnt < NUM_UL_PACKETS)
1414     {
1415        DU_LOG("\nDEBUG  -->  PHY STUB : Sending UL User Data[%d][LCID:%d] at sfn %d slot %d", cnt+1, lcId, sfnValue, slotValue);
1416        /* Sending Rx data indication to MAC */
1417        rxDataInd->sfn = sfnValue;
1418        rxDataInd->slot = slotValue;
1419        procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
1420        cnt++;
1421     }
1422
1423     if(pduInfo->pdu_length)
1424        MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1425     MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1426     return ROK;
1427 }
1428
1429 /*******************************************************************
1430  *
1431  * @brief Sends RLC Status PDU to DU
1432  *
1433  * @details
1434  *
1435  *    Function : l1SendStatusPdu
1436  *
1437  *    Functionality: Send RLC Status PDU to DU
1438  *
1439  * @params[in]
1440  * @return ROK     - success
1441  *         RFAILED - failure
1442  *
1443  * ****************************************************************/
1444 uint8_t l1SendStatusPdu()
1445 {
1446    fapi_rx_data_indication_t *rxDataInd;
1447    fapi_pdu_ind_info_t       *pduInfo;
1448    uint8_t  *pdu = NULLP;
1449    uint16_t byteIdx = 0;
1450    uint32_t msgLen = 0;
1451    uint8_t idx = 0;
1452
1453    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
1454    if(!rxDataInd)
1455    {
1456       printf("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Indication");
1457       return RFAILED;
1458    }
1459    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
1460
1461    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
1462    rxDataInd->sfn = 0;
1463    rxDataInd->slot = 0;
1464    rxDataInd->numPdus = 1;
1465
1466    /* TODO : Fill pduInfo using PUSCH PDU. Currently hardcoding */
1467    pduInfo = &rxDataInd->pdus[idx];
1468    pduInfo->handle = 100;
1469    pduInfo->rnti = 100;
1470    pduInfo->harqId = 1;
1471    /* Since status pdu size = 3bytes and 2 bytes of MAC header,
1472     * setting tbsize = 24 from Table 5.1.3.2-1 spec 38.214 */
1473    pduInfo->pdu_length = 24;
1474    pduInfo->ul_cqi = 0;
1475    pduInfo->timingAdvance = 0;
1476    pduInfo->rssi = 0;
1477
1478    /* Filling pdu with random values for testing */
1479    pduInfo->pduData = NULL;
1480    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
1481    if(!pduInfo->pduData)
1482    {
1483       printf("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Pdu");
1484       return RFAILED;
1485    }
1486
1487    /* Filling PDU */
1488    pdu = (uint8_t *)pduInfo->pduData;
1489    msgLen = 3;
1490
1491    /* For RLC Status PDU
1492       MAC subheader format is R/F/LCId/L (2/3 bytes)
1493       LCId is 4 for DRB1
1494       L is length of Status PDU i.e 3 bytes
1495       From 38.321 section 6.1.1
1496     */
1497    uint8_t statusPdu[] = {4, msgLen, 0, 0, 0};
1498    msgLen += 2;  /* 2bytes of header */
1499    memcpy(pdu, &statusPdu, msgLen);
1500    byteIdx += msgLen; /* 2 bytes of header */
1501
1502
1503    /* Filling MAC SDU for Padding bytes*/
1504    if(byteIdx < pduInfo->pdu_length)
1505    {
1506       /* For Padding
1507          MAC subheader format is R/R/LCId (1byte)
1508          LCId is 63 for padding
1509          From 38.321 section 6.1.1
1510        */
1511       pdu[byteIdx++] = 63;
1512
1513       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
1514          pdu[byteIdx] = 0;
1515    }
1516    msgLen += pduInfo->pdu_length;
1517
1518    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
1519
1520     /* Send Message to peer */
1521     DU_LOG("\nDEBUG  -->  PHY STUB : Sending RLC status pdu at sfn %d slot %d", sfnValue, slotValue);
1522     /* Sending Rx data indication to MAC */
1523     rxDataInd->sfn = sfnValue;
1524     rxDataInd->slot = slotValue;
1525     procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
1526
1527     if(pduInfo->pdu_length)
1528        MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1529     MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1530     return ROK;
1531 }
1532
1533 /*******************************************************************
1534  *
1535  * @brief Receives message from MAC
1536  *
1537  * @details
1538  *
1539  *    Function :  l1ProcessFapiRequest
1540  *
1541  *    Functionality:
1542  *       - Receives message from MAC and calls handler
1543  *
1544  * @params[in] Message type
1545  *             Message length
1546  *             Message pointer
1547  *
1548  * @return void
1549  *
1550  * ****************************************************************/
1551
1552 void l1ProcessFapiRequest(uint8_t msgType, uint32_t msgLen, void *msg)
1553 {
1554    switch(msgType)
1555    {
1556 #ifdef INTEL_FAPI
1557       case FAPI_PARAM_REQUEST:
1558          l1HdlParamReq(msgLen, msg);
1559          break;
1560       case FAPI_CONFIG_REQUEST:
1561          l1HdlConfigReq(msgLen, msg);
1562          break;
1563       case FAPI_START_REQUEST:
1564          l1HdlStartReq(msgLen, msg);
1565          break;
1566       case FAPI_DL_TTI_REQUEST:
1567          l1HdlDlTtiReq(msgLen, msg);
1568          break;
1569       case FAPI_TX_DATA_REQUEST:
1570          l1HdlTxDataReq(msgLen, msg);
1571          break;
1572       case FAPI_UL_TTI_REQUEST:
1573          l1HdlUlTtiReq(msgLen, msg);
1574          break;
1575       case FAPI_STOP_REQUEST:
1576          l1HdlStopReq(msgLen, msg);
1577          break;
1578       case FAPI_UL_DCI_REQUEST:
1579          l1HdlUlDciReq(msgLen, msg);
1580          break;
1581       default:
1582          DU_LOG("\nERROR  -->  PHY_STUB: Invalid message type[%x] received at PHY", msgType);
1583          break;
1584 #endif
1585    }
1586 }
1587
1588 #ifdef INTEL_FAPI
1589 /*******************************************************************
1590  *
1591  * @brief Builds and Send the BSR message to MAC
1592  *
1593  * @details
1594  *
1595  *    Function : l1BuildAndSendBSR
1596  *
1597  *   Functionality:
1598  *          -Send the BSR Message to MAC
1599  *
1600  * @params[in]  BSR type 
1601  *              array of LCGID and BSIdx
1602  * @return void
1603  *
1604  *****************************************************************/
1605 uint16_t l1BuildAndSendBSR(uint8_t ueIdx, BsrType bsrType,\
1606              LcgBufferSize lcgBsIdx[MAX_NUM_LOGICAL_CHANNEL_GROUPS])
1607 {
1608    fapi_rx_data_indication_t *rxDataInd;
1609    fapi_pdu_ind_info_t       *pduInfo;
1610    uint8_t  *pdu = NULLP;
1611    uint16_t byteIdx = 0;
1612    uint32_t msgLen = 0;
1613    uint8_t pduIdx = 0, lcgIdx = 0, lcgIdxPos = 0;
1614
1615    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
1616    if(!rxDataInd)
1617    {
1618       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Indication");
1619       return RFAILED;
1620    }
1621    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
1622
1623    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
1624    rxDataInd->sfn = 0;
1625    rxDataInd->slot = 0;
1626    rxDataInd->numPdus = 1;
1627
1628    pduInfo = &rxDataInd->pdus[pduIdx];
1629    pduInfo->handle = (ODU_START_CRNTI + ueIdx);
1630    pduInfo->rnti = (ODU_START_CRNTI + ueIdx);
1631    pduInfo->harqId = 1;
1632
1633    /* Since status pdu size = 3bytes and 2 bytes of MAC header,
1634     * setting tbsize = 24 from Table 5.1.3.2-1 spec 38.214 */
1635    pduInfo->pdu_length = 24;
1636    pduInfo->ul_cqi = 0;
1637    pduInfo->timingAdvance = 0;
1638    pduInfo->rssi = 0;
1639
1640    /* Filling pdu with random values for testing */
1641    pduInfo->pduData = NULL;
1642    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
1643    if(!pduInfo->pduData)
1644    {
1645       DU_LOG("\nERROR  -->  PHY_STUB: Memory allocation failed for Rx Data Pdu");
1646       MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1647       return RFAILED;
1648    }
1649
1650    /* Filling PDU */
1651    pdu = (uint8_t *)pduInfo->pduData;
1652
1653    switch(bsrType)
1654    {
1655       case SHORT_BSR:
1656          {
1657             DU_LOG("\nDEBUG  -->  PHY_STUB: Forming SHORT BSR PDU ");
1658
1659             /* For Short BSR
1660              * MAC subheader format is R/R/LcId (1Byte)
1661              * LCId is 61
1662              * From 38.321 section 6.1.1
1663              */
1664             pdu[byteIdx++] = 61;    // LCID
1665             pdu[byteIdx++] = (lcgBsIdx[0].lcgId << 5) | lcgBsIdx[0].bsIdx;
1666             break;
1667          }
1668
1669       case LONG_BSR:
1670          {
1671             DU_LOG("\nDEBUG  -->  PHY_STUB: Forming LONG BSR PDU ");
1672
1673             /* For Long BSR
1674              * MAC subheader format is R/R/LcId (1Byte)
1675              * LCId is 62
1676              * From 38.321 section 6.1.1
1677              */
1678             pdu[byteIdx++] = 62;    // LCID
1679
1680             /*Octet where lcgId bitmap will be present*/
1681             lcgIdxPos = byteIdx;
1682             byteIdx++;
1683             for(lcgIdx = 0; lcgIdx < MAX_NUM_LOGICAL_CHANNEL_GROUPS; lcgIdx++)
1684             {
1685                if(lcgBsIdx[lcgIdx].bsIdx > 0)
1686                {
1687                   pdu[lcgIdxPos] |= 1 << lcgBsIdx[lcgIdx].lcgId;
1688                   pdu[byteIdx++] = lcgBsIdx[lcgIdx].bsIdx;
1689                }
1690             }
1691
1692             break;
1693          }
1694
1695       default:
1696          {
1697             DU_LOG("\nERROR  -->  PHY_STUB: Incorrect BSR type:%d!", bsrType);
1698             if(pduInfo->pdu_length)
1699                MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1700             MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1701             return RFAILED;
1702          }
1703    }
1704    /* Filling MAC SDU for Padding bytes*/
1705    if(byteIdx < pduInfo->pdu_length)
1706    {
1707       /* For Padding
1708        * MAC subheader format is R/R/LCId (1byte)
1709        * LCId is 63 for padding
1710        * From 38.321 section 6.1.1
1711        */
1712       pdu[byteIdx++] = 63;
1713
1714       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
1715          pdu[byteIdx] = 0;
1716    }
1717    msgLen += pduInfo->pdu_length;
1718    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
1719
1720    /* Sending Rx data indication to MAC */
1721    DU_LOG("\nINFO   -->  PHY STUB: Sending Rx data Indication to MAC");
1722    procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
1723
1724    if(pduInfo->pdu_length)
1725       MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1726    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1727    return ROK;
1728 }
1729 #endif
1730
1731 /**********************************************************************
1732   End of file
1733  **********************************************************************/