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