Merge "correction in F1AP message based on wireshark logs"
[o-du/l2.git] / src / phy_stub / l1_bdy1.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_phy.h"
28 #ifdef INTEL_FAPI
29 #include "fapi.h"
30 #endif
31 #include "lphy_stub.h"
32 #include "lwr_mac_upr_inf.h"
33 #include "mac_utils.h"
34 #include "l1.h"
35
36 /*******************************************************************
37  *
38  * @brief Builds and sends param response to MAC CL
39  *
40  * @details
41  *
42  *    Function : l1BldAndSndParamRsp
43  *
44  *    Functionality:
45  *          - Builds and sends param response to MAC
46  *
47  * @params[in] Config request message pointer
48  * @return ROK     - success
49  *         RFAILED - failure
50  *
51  * ****************************************************************/
52 S16 l1BldAndSndParamRsp(void *msg)
53 {
54 #ifdef INTEL_FAPI
55    uint8_t index = 0;
56    uint32_t msgLen = 0;
57    fapi_param_resp_t *fapiParamRsp;
58
59    MAC_ALLOC(fapiParamRsp, sizeof(fapi_param_resp_t));
60    if(!fapiParamRsp)
61    {
62       DU_LOG("PHY STUB: Memory allocation failed");
63       return RFAILED;
64    }
65
66    /* Cell Params */
67    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RELEASE_CAPABILITY_TAG,                         sizeof(uint16_t), 1, &msgLen);
68    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PHY_STATE_TAG,                                  sizeof(uint16_t), 0, &msgLen);
69    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_DL_CONFIG_TAG,                       sizeof(uint8_t),  0, &msgLen);
70    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_UL_CONFIG_TAG,                       sizeof(uint8_t),  0, &msgLen);
71    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_NUM_CONFIG_TLVS_TO_REPORT_TYPE_TAG,              sizeof(uint8_t),  0, &msgLen);
72
73    /* Carrier Params */
74    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CYCLIC_PREFIX_TAG,                               sizeof(uint8_t),  1, &msgLen);
75    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_DL_TAG,            sizeof(uint8_t),  1, &msgLen);
76    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_DL_TAG,                     sizeof(uint16_t), 1, &msgLen);
77    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_UL_TAG,            sizeof(uint8_t),  0, &msgLen);
78    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_UL_TAG,                     sizeof(uint16_t), 0, &msgLen);
79
80    /* PDCCH Param*/
81    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CCE_MAPPING_TYPE_TAG,                                   sizeof(uint8_t), 0, &msgLen);
82    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CORESET_OUTSIDE_FIRST_3_OFDM_SYMS_OF_SLOT_TAG,   sizeof(uint8_t), 0, &msgLen);
83    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRECODER_GRANULARITY_CORESET_TAG,               sizeof(uint8_t), 0, &msgLen);
84    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_MU_MIMO_TAG,                              sizeof(uint8_t), 0, &msgLen);
85    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_PRECODER_CYCLING_TAG,                     sizeof(uint8_t), 0, &msgLen);
86    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDCCHS_PER_SLOT_TAG,                                sizeof(uint8_t), 0, &msgLen);
87
88    /* PUCCH Param */
89    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUCCH_FORMATS_TAG,                              sizeof(uint8_t), 0, &msgLen);
90    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PUCCHS_PER_SLOT_TAG,                         sizeof(uint8_t), 0, &msgLen);
91
92    /* PDSCH Param */
93    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_MAPPING_TYPE_TAG,                         sizeof(uint8_t), 0, &msgLen);
94    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_ALLOCATION_TYPES_TAG,                      sizeof(uint8_t), 0, &msgLen);
95    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_VRB_TO_PRB_MAPPING_TAG,                   sizeof(uint8_t), 0, &msgLen);
96    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_CBG_TAG,                                  sizeof(uint8_t), 0, &msgLen);
97    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_CONFIG_TYPES_TAG,                    sizeof(uint8_t), 0, &msgLen);
98    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_MAX_LENGTH_TAG,                      sizeof(uint8_t), 0, &msgLen);
99    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_ADDITIONAL_POS_TAG,                  sizeof(uint8_t), 0, &msgLen);
100    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDSCHS_TBS_PER_SLOT_TAG,                    sizeof(uint8_t), 0, &msgLen);
101    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_PDSCH_TAG,               sizeof(uint8_t), 0, &msgLen);
102    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MAX_MODULATION_ORDER_DL_TAG,          sizeof(uint8_t), 0, &msgLen);
103    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_DL_TAG,                       sizeof(uint8_t), 0, &msgLen);
104    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DATA_IN_DMRS_SYMBOLS_TAG,                 sizeof(uint8_t), 0, &msgLen);
105    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PREMPTIONSUPPORT_TAG,                           sizeof(uint8_t), 0, &msgLen);
106    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_NON_SLOT_SUPPORT_TAG,                      sizeof(uint8_t), 0, &msgLen);
107
108    /* PUSCH Param */
109    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_MUX_ULSCH_IN_PUSCH_TAG,                     sizeof(uint8_t), 0, &msgLen);
110    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_ONLY_PUSCH_TAG,                             sizeof(uint8_t), 0, &msgLen);
111    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_FREQUENCY_HOPPING_TAG,                    sizeof(uint8_t), 0, &msgLen);
112    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_CONFIG_TYPES_TAG,                    sizeof(uint8_t), 0, &msgLen);
113    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_MAX_LEN_TAG,                         sizeof(uint8_t), 0, &msgLen);
114    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_ADDITIONAL_POS_TAG,                  sizeof(uint8_t), 0, &msgLen);
115    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_CBG_TAG,                                  sizeof(uint8_t), 0, &msgLen);
116    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAPPING_TYPE_TAG,                          sizeof(uint8_t), 0, &msgLen);
117    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_ALLOCATION_TYPES_TAG,                     sizeof(uint8_t), 0, &msgLen);
118    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_VRB_TO_PRB_MAPPING_TAG,                   sizeof(uint8_t), 0, &msgLen);
119    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAX_PTRS_PORTS_TAG,                        sizeof(uint8_t), 0, &msgLen);
120    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDUSCHS_TBS_PER_SLOT_TAG,                   sizeof(uint8_t), 0, &msgLen);
121    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_NON_CB_PUSCH_TAG,         sizeof(uint8_t), 0, &msgLen);
122    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MODULATION_ORDER_UL_TAG,               sizeof(uint8_t), 0, &msgLen);
123    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_UL_TAG,                        sizeof(uint8_t), 0, &msgLen);
124    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_DFTS_OFDM_SUPPORT_TAG,                           sizeof(uint8_t), 0, &msgLen);
125    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_AGGREGATION_FACTOR_TAG,                    sizeof(uint8_t), 0, &msgLen);
126
127    /* PRACH Params */
128    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_LONG_FORMATS_TAG,                         sizeof(uint8_t), 0, &msgLen);
129    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_SHORT_FORMATS_TAG,                         sizeof(uint8_t), 0, &msgLen);
130    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_RESTRICTED_SETS_TAG,                       sizeof(uint8_t), 0, &msgLen);
131    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PRACH_FD_OCCASIONS_IN_A_SLOT_TAG,            sizeof(uint8_t), 0, &msgLen);
132
133    /* MEASUREMENT TAG */
134    fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RSSI_MEASUREMENT_SUPPORT_TAG,                    sizeof(uint8_t), 0, &msgLen);
135
136    fapiParamRsp->number_of_tlvs = index;
137    msgLen += sizeof(fapi_param_resp_t) - sizeof(fapi_msg_t);
138    fillMsgHeader(&fapiParamRsp->header, FAPI_PARAM_RESPONSE, msgLen);
139    fapiParamRsp->error_code = MSG_OK;
140
141    DU_LOG("\nPHY_STUB: Sending Param Request to Lower Mac");
142    procPhyMessages(fapiParamRsp->header.msg_id, sizeof(fapi_param_resp_t), (void *)fapiParamRsp);
143    MAC_FREE(fapiParamRsp, sizeof(fapi_param_resp_t));
144 #endif
145    return ROK;
146 }
147
148 /*******************************************************************
149  *
150  * @brief Builds and sends config response to lower mac
151  *
152  * @details
153  *
154  *    Function : l1BldAndSndConfigRsp
155  *
156  *    Functionality:
157  *          - Builds and sends config response to MAC
158  *
159  * @params[in] Config request message pointer
160  * @return ROK     - success
161  *         RFAILED - failure
162  *
163  * ****************************************************************/
164
165 S16 l1BldAndSndConfigRsp(void *msg)
166 {
167 #ifdef INTEL_FAPI
168    uint32_t msgLen = 0;
169    fapi_config_resp_t *fapiConfigRsp;
170
171    MAC_ALLOC(fapiConfigRsp, sizeof(fapi_config_resp_t));
172    if(!fapiConfigRsp)
173    {
174       DU_LOG("PHY STUB: Memory allocation failed");
175       return RFAILED;
176    }
177    memset(fapiConfigRsp, 0, sizeof(fapi_config_resp_t));
178    fapiConfigRsp->number_of_invalid_tlvs = NULLP;
179    fapiConfigRsp->number_of_inv_tlvs_idle_only = NULLP;
180    fapiConfigRsp->number_of_missing_tlvs = NULLP;
181    fapiConfigRsp->error_code = MSG_OK;
182    msgLen = sizeof(fapi_config_resp_t) - sizeof(fapi_msg_t);
183    fillMsgHeader(&fapiConfigRsp->header, FAPI_CONFIG_RESPONSE, msgLen);
184
185    DU_LOG("\nPHY_STUB: Sending Config Response to Lower Mac");
186
187    procPhyMessages(fapiConfigRsp->header.msg_id, \
188          sizeof(fapi_config_resp_t), (void *)fapiConfigRsp);
189    MAC_FREE(fapiConfigRsp, sizeof(fapi_config_resp_t));
190 #endif
191    return ROK;
192 }
193 /*******************************************************************
194  *
195  * @brief Handles param request received from MAC
196  *
197  * @details
198  *
199  *    Function : l1HdlParamReq
200  *
201  *    Functionality:
202  *          -Handles param request received from MAC
203  *
204  * @params[in]   Message length
205  *               Param request message pointer
206  *
207  * @return void
208  *
209  * ****************************************************************/
210
211 void l1HdlParamReq(uint32_t msgLen, void *msg)
212 {
213 #ifdef INTEL_FAPI
214    DU_LOG("\nPHY_STUB: Received Param Request in PHY");
215
216    /* Build and send PARAM RESPONSE */
217    if(l1BldAndSndParamRsp(msg)!= ROK)
218    {
219       DU_LOG("\nPHY_STUB: Failed Sending Param Response");
220    }
221    MAC_FREE(msg, sizeof(fapi_param_req_t));
222 #endif
223
224
225 /*******************************************************************
226  *
227  * @brief Handles config request received from MAC
228  *
229  * @details
230  *
231  *    Function : l1HdlConfigReq
232  *
233  *    Functionality:
234  *          -Handles config request received from MAC
235  *
236  * @params[in]   Message length
237  *               config request message pointer
238  *
239  * @return void
240  *
241  * ****************************************************************/
242
243 void l1HdlConfigReq(uint32_t msgLen, void *msg)
244 {
245 #ifdef INTEL_FAPI
246    fapi_config_req_t *configReq = (fapi_config_req_t *)msg;
247
248    DU_LOG("\nPHY_STUB: Received Config Request in PHY");
249
250    /* Handling CONFIG RESPONSE */
251    if(l1BldAndSndConfigRsp(msg)!= ROK)
252    {
253       printf("\nPHY_STUB: Failed Sending config Response");
254    }
255
256    MAC_FREE(configReq, msgLen);
257 #endif
258
259 }
260
261 /*******************************************************************
262  *
263  * @brief Build and Send CRC Indication
264  *
265  * @details
266  *
267  *    Function : l1BuildAndSendCrcInd
268  *
269  *    Functionality:
270  *      Build and Send CRC Indication
271  *
272  * @params[in] Slot
273  *             SFN 
274  * @return ROK     - success
275  *         RFAILED - failure
276  *
277  * ****************************************************************/
278 uint16_t l1BuildAndSendCrcInd(uint16_t slot, uint16_t sfn)
279 {
280 #ifdef INTEL_FAPI
281    uint8_t idx = 0;
282    fapi_crc_ind_t  *crcInd;
283
284    MAC_ALLOC(crcInd, sizeof(fapi_crc_ind_t));
285    if(!crcInd)
286    {
287       printf("\nPHY_STUB: Memory allocation failed for CRC Indication Message");
288       return RFAILED;
289    }
290    memset(crcInd, 0, sizeof(fapi_crc_ind_t));
291
292    /* TODO: Fill the required values. As of now only 1 CRC status PASS is filled */
293    crcInd->sfn = sfn;
294    crcInd->slot = slot;
295    crcInd->numCrcs = 1;
296
297    crcInd->crc[idx].handle = 0;
298    crcInd->crc[idx].rnti = 0;
299    crcInd->crc[idx].harqId = 0;
300    crcInd->crc[idx].tbCrcStatus = 0;
301    crcInd->crc[idx].numCb = 1;
302    crcInd->crc[idx].cbCrcStatus[0] = 0;
303    crcInd->crc[idx].ul_cqi = 0;
304    crcInd->crc[idx].timingAdvance = 0;
305    crcInd->crc[idx].rssi = 0;
306
307    fillMsgHeader(&crcInd->header, FAPI_CRC_INDICATION, \
308          sizeof(fapi_crc_ind_t) - sizeof(fapi_msg_t));
309
310    /* Sending RACH indication to MAC */
311    DU_LOG("\nPHY STUB: Sending CRC Indication to MAC");
312    procPhyMessages(crcInd->header.msg_id, sizeof(fapi_crc_ind_t), (void *)crcInd);
313    MAC_FREE(crcInd, sizeof(fapi_crc_ind_t));
314 #endif
315    return ROK;
316 } /* l1BuildAndSendCrcInd */
317
318 #ifdef INTEL_FAPI
319 /*******************************************************************
320  *
321  * @brief Build and send Rx data indication
322  *
323  * @details
324  *
325  *    Function : l1BuildAndSendRxDataInd
326  *
327  *    Functionality:
328  *       Build and send Rx data indication
329  *
330  * @params[in] SFN
331  *             Slot
332  * @return ROK     - success
333  *         RFAILED - failure
334  *
335  * ****************************************************************/
336 uint16_t l1BuildAndSendRxDataInd(uint16_t slot, uint16_t sfn, fapi_ul_pusch_pdu_t puschPdu)
337 {
338    uint8_t idx = 0;
339    fapi_rx_data_indication_t *rxDataInd;
340    fapi_pdu_ind_info_t       *pduInfo;
341    uint8_t  *pdu = NULLP;
342    uint16_t byteIdx = 0;
343    uint32_t msgLen = 0;
344    MsgType type;
345
346    if(!msg3Sent)
347    {
348       msg3Sent = true;
349       type = MSG_TYPE_MSG3;
350    }
351    else if(!msg5ShortBsrSent)
352    {
353       msg5ShortBsrSent = true;
354       type = MSG_TYPE_SHORT_BSR;
355    }
356    else if(!msg5Sent)
357    {
358       msg5Sent = true;
359       type = MSG_TYPE_MSG5;
360    }
361    else if(!msgSecurityModeComp)
362    {
363       msgSecurityModeComp = true;
364       type = MSG_TYPE_SECURITY_MODE_COMPLETE;
365    }
366    else
367       return RFAILED;
368
369    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
370    if(!rxDataInd)
371    {
372       printf("\nPHY_STUB: Memory allocation failed for Rx Data Indication");
373       return RFAILED;
374    }
375    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
376
377    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
378    rxDataInd->sfn = sfn;
379    rxDataInd->slot = slot;
380    rxDataInd->numPdus = 1;
381
382    pduInfo = &rxDataInd->pdus[idx];
383    pduInfo->handle = puschPdu.handle;
384    pduInfo->rnti = puschPdu.rnti;
385    pduInfo->harqId = puschPdu.puschData.harqProcessId;
386    pduInfo->pdu_length = puschPdu.puschData.tbSize ;
387    pduInfo->ul_cqi = 0;
388    pduInfo->timingAdvance = 0;
389    pduInfo->rssi = 0;
390
391    /* Filling pdu with random values for testing */
392    pduInfo->pduData = NULL;
393    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
394    if(!pduInfo->pduData)
395    {
396       printf("\nPHY_STUB: Memory allocation failed for Rx Data Pdu");
397       return RFAILED;
398    }
399
400    /* Filling PDU */
401    pdu = (uint8_t *)pduInfo->pduData;
402
403    switch(type)
404    {
405       case MSG_TYPE_MSG3: 
406          {
407             DU_LOG("\nPHY_STUB: Forming MSG3 PDU ");
408             /* For Initial RRC setup Request,
409                MAC subheader format is R/R/LCId (1byte)
410                LCId is CCCH(0)
411                From 38.321 section 6.1.1
412              */
413             pdu[byteIdx++] = 0;
414             /* Hardcoding MAC PDU */
415             pdu[byteIdx++] = 181;
416             pdu[byteIdx++] = 99;
417             pdu[byteIdx++] = 20;
418             pdu[byteIdx++] = 170;
419             pdu[byteIdx++] = 132;
420             pdu[byteIdx++] = 96;
421
422             break;
423          }
424
425       case MSG_TYPE_SHORT_BSR:
426          {
427             DU_LOG("\nPHY_STUB: Forming SHORT BSR PDU ");
428             uint8_t lcgId = 0;
429             uint8_t bufferSizeIdx = 6;
430             
431             /* For Short BSR
432                MAC subheader format is R/R/LcId (1Byte)
433                LCId is 61
434                From 38.321 section 6.1.1
435              */
436             pdu[byteIdx++] = 61;    // LCID
437             pdu[byteIdx++] = (lcgId << 5) | bufferSizeIdx;
438
439             break;
440          }
441
442       case MSG_TYPE_MSG5:
443          {
444             DU_LOG("\nPHY_STUB: Forming MSG5 PDU");
445             uint8_t  msg5PduLen = 33;
446             /* For RRC setup complete
447                MAC subheader format is R/F/LCId/L (2/3 bytes)
448                LCId is 1 for SRB1
449                L is length of PDU i.e 6bytes here 
450                From 38.321 section 6.1.1
451              */
452             uint8_t msg5[] = {1, msg5PduLen, 0, 0, 16, 0, 5, 223, 128, 16, 94, \
453                64, 3, 64, 89, 61, 138, 64, 0, 0, 0, 4, 0, 0, 4, 68, 11, 128, \
454                184, 56, 0, 0, 0, 0, 0};
455
456             msg5PduLen += 2;  /* 2bytes of header */
457             memcpy(pdu, &msg5, msg5PduLen);
458             byteIdx += msg5PduLen; /* 2 bytes of header */
459             break;
460          }
461
462       case MSG_TYPE_SECURITY_MODE_COMPLETE:
463          {
464             DU_LOG("\nPHY_STUB: Forming SECURITY MODE COMPLETE PDU");
465             uint8_t  pduLen = 33;
466             /* For security mode complete
467                MAC subheader format is R/F/LCId/L (2/3 bytes)
468                LCId is 1 for SRB1
469                L is length of PDU i.e 6bytes here 
470                From 38.321 section 6.1.1
471              */
472             uint8_t msg[] = {1, pduLen, 0, 0, 16, 0, 5, 223, 128, 16, 94, \
473                64, 3, 64, 89, 61, 138, 64, 0, 0, 0, 4, 0, 0, 4, 68, 11, 128, \
474                184, 56, 0, 0, 0, 0, 0};
475
476             pduLen += 2;  /* 2bytes of header */
477             memcpy(pdu, &msg, pduLen);
478             byteIdx += pduLen; /* 2 bytes of header */
479             break;
480          }
481       default:
482          break;
483    } /* End of switch(type) */
484    /* Filling MAC SDU for Padding bytes*/
485    if(byteIdx < pduInfo->pdu_length)
486    {
487       /* For Padding
488          MAC subheader format is R/R/LCId (1byte)
489          LCId is 63 for padding
490          From 38.321 section 6.1.1
491        */
492       pdu[byteIdx++] = 63;
493
494       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
495          pdu[byteIdx] = 0;
496    }
497    msgLen += pduInfo->pdu_length;
498
499    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
500
501    /* Sending Rx data indication to MAC */
502    DU_LOG("\nPHY STUB: Sending Rx data Indication to MAC");
503    procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
504
505    if(pduInfo->pdu_length)
506       MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
507    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
508    return ROK;
509 }
510 #endif
511
512 /*******************************************************************
513  *
514  * @brief Builds and Sends RACH indication to MAC 
515  *
516  * @details
517  *
518  *    Function : l1BuildAndSendRachInd 
519  *
520  *    Functionality:
521  *      Builds and Sends RACH indication to MAC
522  *
523  * @params[in] SFN value 
524  *             slot value
525  * @return ROK     - success
526  *         RFAILED - failure
527  *
528  * ****************************************************************/
529 uint16_t l1BuildAndSendRachInd(uint16_t slot, uint16_t sfn)
530 {
531 #ifdef INTEL_FAPI
532    uint8_t   rachPduIdx = 0; 
533    uint8_t   preamIdx = 0;
534    fapi_rach_pdu_t  *rachPdu;
535    fapi_rach_indication_t  *rachInd;
536
537    /* Building RACH indication */
538    MAC_ALLOC(rachInd, sizeof(fapi_rach_indication_t));
539    if(!rachInd)
540    {
541       printf("\nPHY_STUB: Memory allocation failed for Rach Indication Message");
542       return RFAILED;
543    }
544    memset(rachInd, 0, sizeof(fapi_rach_indication_t)); 
545    rachInd->sfn = sfn;
546    rachInd->slot = slot;
547    rachInd->numPdus = 1;
548
549    rachPdu = &rachInd->rachPdu[rachPduIdx];
550    rachPdu->phyCellId = NR_PCI;
551    rachPdu->symbolIndex = 0;
552    rachPdu->slotIndex = slot;
553    rachPdu->freqIndex = 0;
554    rachPdu->avgRssi = 0;
555    rachPdu->avgSnr = 0;
556    rachPdu->numPreamble = 1;
557
558    rachPdu->preambleInfo[preamIdx].preambleIndex = 3;
559    rachPdu->preambleInfo[preamIdx].timingAdvance = 0;
560    rachPdu->preambleInfo[preamIdx].preamblePwr = 0;
561
562    fillMsgHeader(&rachInd->header, FAPI_RACH_INDICATION, \
563          sizeof(fapi_rach_indication_t) - sizeof(fapi_msg_t));
564
565    /* Sending RACH indication to MAC */
566    DU_LOG("\nPHY STUB: Sending RACH Indication to MAC");
567    procPhyMessages(rachInd->header.msg_id, sizeof(fapi_rach_indication_t), (void *)rachInd);
568    MAC_FREE(rachInd, sizeof(fapi_rach_indication_t));
569 #endif
570    return ROK;
571 }
572
573 /*******************************************************************
574  *
575  * @brief Builds and Send the Slot Indication message to MAC
576  *
577  * @details
578  *
579  *    Function : l1BuildAndSendSlotIndication
580  *
581  *    Functionality:
582  *          -Send the Slot indication Message to MAC
583  *
584  * @params[in]   Message length
585  *               config request message pointer
586  *
587  * @return void
588  *
589  * ****************************************************************/
590 uint16_t l1BuildAndSendSlotIndication()
591 {
592 #ifdef INTEL_FAPI
593    fapi_slot_ind_t *slotIndMsg;
594
595    MAC_ALLOC(slotIndMsg, sizeof(fapi_slot_ind_t));
596    if(!slotIndMsg)
597    {
598       DU_LOG("\nPHY_STUB: Memory allocation failed for slot Indication Message");
599       return RFAILED;
600    }
601    else
602    {
603       memset(slotIndMsg, 0, sizeof(fapi_slot_ind_t));
604       slotIndMsg->sfn = sfnValue;
605       slotIndMsg->slot = slotValue;
606
607 #ifdef ODU_SLOT_IND_DEBUG_LOG
608       DU_LOG("\n\nPHY_STUB: SLOT indication [%d:%d]",sfnValue,slotValue);
609 #endif
610       /* increment for the next TTI */
611       slotValue++;
612       if(sfnValue >= MAX_SFN_VALUE && slotValue > MAX_SLOT_VALUE)
613       {
614          sfnValue = 0;
615          slotValue = 0;
616       }
617       else if(slotValue > MAX_SLOT_VALUE)
618       {
619          sfnValue++;
620          slotValue = 0;
621       }
622       fillMsgHeader(&slotIndMsg->header, FAPI_SLOT_INDICATION, \
623             sizeof(fapi_slot_ind_t) - sizeof(fapi_msg_t));
624       procPhyMessages(slotIndMsg->header.msg_id, sizeof(fapi_slot_ind_t), (void*)slotIndMsg);
625       MAC_FREE(slotIndMsg, sizeof(fapi_slot_ind_t));
626    }
627 #endif
628    return ROK;
629 }
630
631 /*******************************************************************
632  *
633  * @brief Handles start request received from MAC
634  *
635  * @details
636  *
637  *    Function : l1HdlStartReq
638  *
639  *    Functionality:
640  *          -Handles start request received from MAC
641  *
642  * @params[in]   Message length
643  *               config request message pointer
644  *
645  * @return void
646  *
647  * ****************************************************************/
648
649 S16 l1HdlStartReq(uint32_t msgLen, void *msg)
650 {
651 #ifdef INTEL_FAPI
652    fapi_start_req_t *startReq = (fapi_start_req_t *)msg;
653
654    if(lwrMacCb.phyState == PHY_STATE_CONFIGURED)
655    {
656       l1HdlSlotIndicaion(FALSE);
657       MAC_FREE(startReq, sizeof(fapi_start_req_t));
658    }
659    else
660    {
661       DU_LOG("\nPHY_STUB: Received Start Req in PHY State %d", lwrMacCb.phyState);
662       return RFAILED;
663    }
664 #endif
665    return ROK;
666 }
667
668 /*******************************************************************
669  *
670  * @brief Handles Dl Tti request received from MAC
671  *
672  * @details
673  *
674  *    Function : l1HdlDlTtiReq
675  *
676  *    Functionality:
677  *          -Handles Dl Tti request received from MAC
678  *
679  * @params[in]   Message length
680  *               Dl Tti request message pointer
681  *
682  * @return void
683  *
684  * ****************************************************************/
685
686 S16 l1HdlDlTtiReq(uint16_t msgLen, void *msg)
687 {
688 #ifdef INTEL_FAPI
689    fapi_dl_tti_req_t *dlTtiReq;
690    dlTtiReq = (fapi_dl_tti_req_t *)msg;
691    
692    uint8_t pduCount = 0;
693
694 #ifdef ODU_SLOT_IND_DEBUG_LOG
695    if(dlTtiReq->nPdus == 0)
696    {
697       DU_LOG("\nPHY_STUB: No PDU in DL TTI Request");
698    }
699    else
700    {  
701      DU_LOG("\nPHY STUB: DL TTI Request at sfn=%d slot=%d",dlTtiReq->sfn,dlTtiReq->slot);
702    }
703 #endif 
704
705    for(pduCount=0; pduCount<dlTtiReq->nPdus; pduCount++)
706    {
707       if(dlTtiReq->pdus[pduCount].pduType == 3) //SSB_PDU_TYPE
708       {
709          DU_LOG("\nPHY_STUB: SSB PDU");
710       }
711       else if(dlTtiReq->pdus[pduCount].pduType == 0)
712       {
713          DU_LOG("\nPHY_STUB: PDCCH PDU");
714          if(dlTtiReq->pdus[pduCount].pdu.pdcch_pdu.\
715             coreSetType == 1)
716          {
717             dlDedMsg = true;
718          }
719       }
720       else if(dlTtiReq->pdus[pduCount].pduType == 1)
721       {
722          DU_LOG("\nPHY_STUB: PDSCH PDU");
723       }
724    }
725
726    /* Free FAPI message */
727    MAC_FREE(dlTtiReq, msgLen);
728
729 #endif
730    return ROK;
731 }
732
733 /*******************************************************************
734  *
735  * @brief Handles tx_data request received from MAC
736  *
737  * @details
738  *
739  *    Function : l1HdlTxDataReq
740  *
741  *    Functionality:
742  *          -Handles tx_data request received from MAC
743  *
744  * @params[in]   Message length
745  *               tx_data request message pointer
746  *
747  * @return void
748  *
749  * ****************************************************************/
750
751 S16 l1HdlTxDataReq(uint16_t msgLen, void *msg)
752 {
753 #ifdef INTEL_FAPI
754    fapi_tx_data_req_t *txDataReq;
755    txDataReq = (fapi_tx_data_req_t *)msg;
756    DU_LOG("\nPHY STUB: TX DATA Request at sfn=%d slot=%d",txDataReq->sfn,txDataReq->slot);
757    if(dlDedMsg)
758    {
759       DU_LOG("\nPHY_STUB: TxDataPdu for DED MSG sent");
760       dlDedMsg = false;
761    }
762    MAC_FREE(txDataReq, msgLen);
763 #endif
764    return ROK;
765 }
766
767 #ifdef INTEL_FAPI
768 /*******************************************************************
769  *
770  * @brief Fills Uci Ind Pdu Info carried on Pucch Format 0/Format 1
771  *
772  * @details
773  *
774  *    Function : fillPucchF0F1PduInfo
775  *
776  *    Functionality:
777  *       Fills Uci Ind Pdu Info carried on Pucch Format 0/Format 1 
778  *
779  * @params[in] fapi_uci_o_pucch_f0f1_t *
780  *             pucchPdu
781  * @return ROK     - success
782  *         RFAILED - failure
783  *
784  * ****************************************************************/
785 uint8_t fillPucchF0F1PduInfo(fapi_uci_o_pucch_f0f1_t *pduInfo, fapi_ul_pucch_pdu_t pucchPdu)
786 {
787    uint8_t idx = 0;
788
789    pduInfo->handle = pucchPdu.handle;
790    pduInfo->pduBitmap = 1;  //hardcoded for SR
791    pduInfo->pucchFormat = pucchPdu.formatType;
792    pduInfo->ul_cqi = 0;
793    pduInfo->rnti = pucchPdu.rnti;
794    pduInfo->timingAdvance = 0;
795    pduInfo->rssi = 0;
796    pduInfo->uciBits[idx] = 0;   //TODO: FAPI spec ver. 222.10.01 has no info about UCI Bits
797    if(pduInfo->pduBitmap & SR_PDU_BITMASK)
798    {
799       pduInfo->srInfo.srIndication = SR_DETECTED;
800       pduInfo->srInfo.srConfidenceLevel = CONFDC_LEVEL_GOOD;
801    }
802    if(pduInfo->pduBitmap & HARQ_PDU_BITMASK)
803    {
804       pduInfo->harqInfo.numHarq++;
805       pduInfo->harqInfo.harqConfidenceLevel = CONFDC_LEVEL_GOOD;
806       for(idx = 0; idx < pduInfo->harqInfo.numHarq; idx++)
807       {
808          pduInfo->harqInfo.harqValue[idx] = HARQ_PASS;
809       }
810    }
811    return ROK;
812 }
813 /*******************************************************************
814  *
815  * @brief Fills UCI Pdu Information
816  *
817  * @details
818  *
819  *    Function : fillUciPduInfo
820  *
821  *    Functionality:
822  *       Fills UCI Pdu Information
823  *
824  * @params[in] Pointer to uciPdu
825  *             pucchPdu
826  * @return ROK     - success
827  *         RFAILED - failure
828  *
829  * ****************************************************************/
830 uint8_t fillUciPduInfo(fapi_uci_pdu_info_t *uciPdu, fapi_ul_pucch_pdu_t pucchPdu)
831 {
832    uint8_t ret = ROK;
833
834    /*TODO: The pduType is hardcoded here to support 
835      UCI Ind for PUCCH forat0/format1. This is to be
836      modified when we get SR form UE */
837    uciPdu->pduType = UCI_IND_PUCCH_F0F1;
838    switch(uciPdu->pduType)
839    {
840       case UCI_IND_PUSCH:
841          break;
842       case UCI_IND_PUCCH_F0F1:
843          {
844             fapi_uci_o_pucch_f0f1_t *pduInfo = NULLP;
845
846             pduInfo = &uciPdu->uci.uciPucchF0F1;
847             ret = fillPucchF0F1PduInfo(pduInfo, pucchPdu);
848             uciPdu->pduSize = sizeof(fapi_uci_o_pucch_f0f1_t);
849          }
850          break;
851       case UCI_IND_PUCCH_F2F3F4:
852          break;
853       default:
854          DU_LOG("\nPHY_STUB: Invalid Pdu Type %d", uciPdu->pduType);
855          break;
856    }
857    return ret;
858 }
859
860 /*******************************************************************
861  *
862  * @brief Build and send Uci indication
863  *
864  * @details
865  *
866  *    Function : l1BuildAndSendUciInd
867  *
868  *    Functionality:
869  *       Build and send Uci indication
870  *
871  * @params[in] SFN
872  *             Slot
873  * @return ROK     - success
874  *         RFAILED - failure
875  *
876  * ****************************************************************/
877 uint8_t l1BuildAndSendUciInd(uint16_t slot, uint16_t sfn, fapi_ul_pucch_pdu_t pucchPdu)
878 {
879    uint8_t uciIdx = 0;
880    uint8_t nUciPdus = 0;
881    uint8_t ret = ROK;
882    uint32_t msgLen = 0;
883    fapi_uci_indication_t *uciInd =  NULLP;
884
885    MAC_ALLOC(uciInd, sizeof(fapi_uci_indication_t));
886    if(!uciInd)
887    {
888       printf("\nPHY_STUB: Memory allocation failed for UCI Indication");
889       return RFAILED;
890    }
891    memset(uciInd, 0, sizeof(fapi_uci_indication_t));
892    uciInd->sfn = sfn;
893    uciInd->slot = slot;
894    uciInd->numUcis = 1;   //consdering the UCI Ind for SR
895    nUciPdus = uciInd->numUcis;
896    while(nUciPdus)
897    {
898       ret = fillUciPduInfo(&uciInd->uciPdu[uciIdx], pucchPdu);
899       uciIdx++;
900       nUciPdus--;
901    }
902    if(ret == ROK)
903    {
904       msgLen = sizeof(fapi_uci_indication_t)- sizeof(fapi_msg_t);
905       fillMsgHeader(&uciInd->header, FAPI_UCI_INDICATION, msgLen);
906
907       /* Sending UCI indication to MAC */
908       DU_LOG("\nPHY STUB: Sending UCI Indication to MAC");
909       procPhyMessages(uciInd->header.msg_id, sizeof(fapi_uci_indication_t), (void *)uciInd);
910    }
911    MAC_FREE(uciInd, sizeof(fapi_uci_indication_t));
912    return ret;
913 }
914 #endif
915
916 /*******************************************************************
917  *
918  * @brief Handles Ul Tti request received from MAC
919  *
920  * @details
921  *
922  *    Function : l1HdlUlTtiReq
923  *
924  *    Functionality:
925  *          -Handles Ul Tti request received from MAC
926  *
927  * @params[in]   Message length
928  *               Ul Tti request message pointer
929  *
930  * @return void
931  *
932  * ****************************************************************/
933
934 S16 l1HdlUlTtiReq(uint16_t msgLen, void *msg)
935 {
936 #ifdef INTEL_FAPI
937    fapi_ul_tti_req_t *ulTtiReq = NULLP;
938    ulTtiReq = (fapi_ul_tti_req_t *)msg;
939    uint8_t numPdus = ulTtiReq->nPdus;
940
941 #ifdef ODU_SLOT_IND_DEBUG_LOG
942    if(numPdus == 0)
943    {
944       DU_LOG("\nPHY STUB: No PDU received in UL TTI Req");
945    }
946    else
947    {
948       DU_LOG("\nPHY STUB: Received UL TTI Request");
949    }
950 #endif 
951
952    while(numPdus)
953    {
954       if(ulTtiReq->pdus[numPdus-1].pduType == 0)
955       {
956          DU_LOG("\nPHY STUB: PRACH PDU");
957       }
958       if(ulTtiReq->pdus[numPdus-1].pduType == 1)
959       {
960          DU_LOG("\nPHY STUB: PUSCH PDU");                       
961          l1BuildAndSendRxDataInd(ulTtiReq->slot, ulTtiReq->sfn, \
962                ulTtiReq->pdus[numPdus-1].pdu.pusch_pdu); 
963       }
964       if(ulTtiReq->pdus[numPdus-1].pduType == 2)
965       {
966          DU_LOG("\nPHY STUB: PUCCH PDU");
967          fapi_ul_tti_req_t ulTtiSlotInd;
968          memset(&ulTtiSlotInd, 0, sizeof(fapi_ul_tti_req_t));
969          ulTtiSlotInd.slot = ulTtiReq->slot;
970          ulTtiSlotInd.sfn  = ulTtiReq->sfn;
971          ADD_DELTA_TO_TIME(ulTtiSlotInd, ulTtiSlotInd, SLOT_DELAY);
972          l1BuildAndSendUciInd(ulTtiSlotInd.slot, ulTtiSlotInd.sfn, \
973                ulTtiReq->pdus[numPdus-1].pdu.pucch_pdu);
974       }
975       numPdus--;
976    }
977
978    if(rachIndSent == false && ulTtiReq->sfn == 2 && ulTtiReq->slot == 6)
979    {
980       rachIndSent = true;
981       l1BuildAndSendRachInd(ulTtiReq->slot, ulTtiReq->sfn);
982    }
983
984    MAC_FREE(ulTtiReq, msgLen);
985 #endif
986    return ROK;
987 }
988
989 /*******************************************************************
990  *
991  * @brief Builds and Send the stop Indication message to MAC
992  *
993  * @details
994  *
995  *    Function : l1BuildAndSendStopInd
996  *
997  *    Functionality:
998  *          -Send the Stop indication Message to MAC
999  *
1000  *
1001  * @return void
1002  *
1003  * ****************************************************************/
1004 uint16_t l1BuildAndSendStopInd()
1005 {
1006 #ifdef INTEL_FAPI
1007    fapi_stop_ind_t *stopIndMsg = NULLP;
1008    uint32_t msgLen = 0;
1009
1010    MAC_ALLOC(stopIndMsg, sizeof(fapi_stop_ind_t));
1011    if(!stopIndMsg)
1012    {
1013       DU_LOG("\nPHY_STUB: Memory allocation failed for stop Indication Message");
1014       return RFAILED;
1015    }
1016    else
1017    {
1018       fillMsgHeader(&stopIndMsg->header, FAPI_STOP_INDICATION, msgLen);
1019       DU_LOG("\n\nPHY_STUB: Processing Stop indication to MAC");
1020       procPhyMessages(stopIndMsg->header.msg_id,\
1021             sizeof(fapi_stop_ind_t), (void*)stopIndMsg);
1022       MAC_FREE(stopIndMsg, sizeof(fapi_stop_ind_t));
1023    }
1024 #endif
1025    return ROK;
1026 }
1027
1028 /*******************************************************************
1029  *
1030  * @brief Handles stop request received from MAC
1031  *
1032  * @details
1033  *
1034  *    Function : l1HdlStopReq
1035  *
1036  *    Functionality:
1037  *          -Handles stop request received from MAC
1038  *
1039  * @params[in]   Message length
1040  *               stop request message pointer
1041  *
1042  * @return void
1043  *
1044  * ****************************************************************/
1045
1046 S16 l1HdlStopReq(uint32_t msgLen, void *msg)
1047 {
1048 #ifdef INTEL_FAPI
1049    fapi_stop_req_t *stopReq = (fapi_stop_req_t *)msg;
1050
1051    if(lwrMacCb.phyState == PHY_STATE_RUNNING)
1052    {
1053       l1HdlSlotIndicaion(TRUE);
1054       DU_LOG("\nPHY_STUB: Slot Indication is stopped successfully");
1055       l1BuildAndSendStopInd();
1056       MAC_FREE(stopReq, msgLen);
1057    }
1058    else
1059    {
1060       DU_LOG("\nPHY_STUB: Received Stop Req in PHY State %d", lwrMacCb.phyState);
1061       return RFAILED;
1062    }
1063 #endif
1064    return ROK;
1065 }
1066
1067 /*******************************************************************
1068  *
1069  * @brief Build And Send Rx Data Ind for Msg5
1070  *
1071  * @details
1072  *
1073  *    Function : l1BuildAndSendMsg5
1074  *
1075  *    Functionality: Build And Send Rx Data Ind for Msg5
1076  *
1077  * @params[in] SFN
1078  *             Slot
1079  * @return ROK     - success
1080  *         RFAILED - failure
1081  *
1082  * ****************************************************************/
1083 uint8_t l1BuildAndSendMsg5(uint16_t sfn, uint16_t slot)
1084 {   
1085 #ifdef INTEL_FAPI
1086    uint8_t idx = 0;
1087    fapi_rx_data_indication_t *rxDataInd;
1088    fapi_pdu_ind_info_t       *pduInfo;
1089    uint8_t  *pdu;
1090    uint16_t byteIdx = 0;
1091    uint32_t msgLen = 0;
1092
1093    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
1094    if(!rxDataInd)
1095    {
1096       printf("\nPHY_STUB: Memory allocation failed for Rx Data Indication for msg5");
1097       return RFAILED;
1098    }
1099    memset(rxDataInd, 0, sizeof(fapi_rx_data_indication_t));
1100
1101    /* TODO: Fill the required values */
1102    msgLen = sizeof(fapi_rx_data_indication_t) - sizeof(fapi_msg_t);
1103    rxDataInd->sfn = sfn;
1104    rxDataInd->slot = slot;
1105    rxDataInd->numPdus = 1;
1106
1107    pduInfo = &rxDataInd->pdus[idx];
1108    pduInfo->handle = 100;
1109    pduInfo->rnti = 100;
1110    pduInfo->harqId = 1;
1111    pduInfo->pdu_length = 25;
1112    pduInfo->ul_cqi = 0;
1113    pduInfo->timingAdvance = 0;
1114    pduInfo->rssi = 0;
1115
1116    /* Filling pdu with random values for testing */
1117    pduInfo->pduData = NULL;
1118    MAC_ALLOC(pduInfo->pduData, pduInfo->pdu_length);
1119    if(!pduInfo->pduData)
1120    {
1121       printf("\nPHY_STUB: Memory allocation failed for Rx Data Pdu");
1122       return RFAILED;
1123    }
1124
1125    /* Filling PDU */
1126    pdu = (uint8_t *)pduInfo->pduData;
1127
1128    uint8_t  msg5PduLen = 33;
1129    /* For RRC setup complete
1130       MAC subheader format is R/F/LCId/L (2/3 bytes)
1131       LCId is 1 for SRB1
1132       L is length of PDU i.e 6bytes here
1133       From 38.321 section 6.1.1
1134     */
1135    uint8_t msg5[] = {1, msg5PduLen, 0, 0, 16, 0, 5, 223, 128, 16, 94, \
1136       64, 3, 64, 89, 61, 138, 64, 0, 0, 0, 4, 0, 0, 4, 68, 11, 128, \
1137          184, 56, 0, 0, 0, 0, 0};
1138
1139    msg5PduLen += 2;  /* 2bytes of header */
1140    memcpy(pdu, &msg5, msg5PduLen);
1141    byteIdx += msg5PduLen; /* 2 bytes of header */
1142
1143    /* Filling MAC SDU for Padding bytes*/
1144    if(byteIdx < pduInfo->pdu_length)
1145    {
1146       /* For Padding
1147          MAC subheader format is R/R/LCId (1byte)
1148          LCId is 63 for padding
1149          From 38.321 section 6.1.1
1150        */
1151       pdu[byteIdx++] = 63;
1152
1153       for(; byteIdx < pduInfo->pdu_length; byteIdx++)
1154          pdu[byteIdx] = 0;
1155    }
1156    msgLen += pduInfo->pdu_length;
1157
1158    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, msgLen);
1159
1160    /* Sending Rx data indication to MAC */
1161    DU_LOG("\nPHY STUB: Sending Rx data Indication to MAC");
1162    procPhyMessages(rxDataInd->header.msg_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
1163
1164    if(pduInfo->pdu_length)
1165       MAC_FREE(pduInfo->pduData, pduInfo->pdu_length);
1166    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
1167 #endif
1168    return ROK;
1169 }
1170
1171 /*******************************************************************
1172  *
1173  * @brief Handles Ul Dci request received from MAC
1174  *
1175  * @details
1176  *
1177  *    Function : l1HdlUlDciReq
1178  *
1179  *    Functionality:
1180  *          -Handles Ul Dci request received from MAC
1181  *
1182  * @params[in]   Message length
1183  *               Ul Dci request message pointer
1184  *
1185  * @return void
1186  *
1187  * ****************************************************************/
1188
1189 S16 l1HdlUlDciReq(uint16_t msgLen, void *msg)
1190 {
1191 #ifdef INTEL_FAPI
1192    fapi_ul_dci_req_t *ulDciReq = NULLP;
1193
1194    ulDciReq = (fapi_ul_dci_req_t *)msg;
1195    uint8_t numPdus = ulDciReq->numPdus;
1196
1197    while(numPdus)
1198    {
1199       if(ulDciReq->pdus[numPdus-1].pduType == 0)
1200       {
1201          DU_LOG("\nPHY STUB: Received UL DCI Request for PDCCH PDU");
1202          //l1BuildAndSendMsg5(ulDciReq->sfn, ulDciReq->slot);
1203          //msg5Sent = true;
1204       }
1205       numPdus--;
1206    }
1207
1208    MAC_FREE(ulDciReq, msgLen);
1209 #endif
1210    return ROK;
1211 }
1212
1213 /*******************************************************************
1214  *
1215  * @brief Receives message from MAC
1216  *
1217  * @details
1218  *
1219  *    Function :  l1ProcessFapiRequest
1220  *
1221  *    Functionality:
1222  *       - Receives message from MAC and calls handler
1223  *
1224  * @params[in] Message type
1225  *             Message length
1226  *             Message pointer
1227  *
1228  * @return void
1229  *
1230  * ****************************************************************/
1231
1232 void l1ProcessFapiRequest(uint8_t msgType, uint32_t msgLen, void *msg)
1233 {
1234    switch(msgType)
1235    {
1236 #ifdef INTEL_FAPI
1237       case FAPI_PARAM_REQUEST:
1238          l1HdlParamReq(msgLen, msg);
1239          break;
1240       case FAPI_CONFIG_REQUEST:
1241          l1HdlConfigReq(msgLen, msg);
1242          break;
1243       case FAPI_START_REQUEST:
1244          l1HdlStartReq(msgLen, msg);
1245          break;
1246       case FAPI_DL_TTI_REQUEST:
1247          l1HdlDlTtiReq(msgLen, msg);
1248          break;
1249       case FAPI_TX_DATA_REQUEST:
1250          l1HdlTxDataReq(msgLen, msg);
1251          break;
1252       case FAPI_UL_TTI_REQUEST:
1253          l1HdlUlTtiReq(msgLen, msg);
1254          break;
1255       case FAPI_STOP_REQUEST:
1256          l1HdlStopReq(msgLen, msg);
1257          break;
1258       case FAPI_UL_DCI_REQUEST:
1259          l1HdlUlDciReq(msgLen, msg);
1260          break;
1261       default:
1262          DU_LOG("\nPHY_STUB: Invalid message type[%x] received at PHY", msgType);
1263          break;
1264 #endif
1265    }
1266 }
1267 /**********************************************************************
1268   End of file
1269  **********************************************************************/