CRC and Rx Data Indication
[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 <stdint.h>
22
23 #include "envdep.h"
24 #include "gen.h"
25 #include "ssi.h"
26
27 #include "gen.x"
28 #include "ssi.x"
29
30 #include "lwr_mac.h"
31 #include "lwr_mac_phy.h"
32 #ifdef FAPI
33 #include "fapi.h"
34 #endif
35 #include "lphy_stub.h"
36 #include "stdbool.h"
37 #include "du_log.h"
38 #include "rg.h"
39
40 #define MAX_SLOT_VALUE   9
41 #define MAX_SFN_VALUE    1023
42 #define NR_PCI            1
43
44 uint16_t sfnValue = 0;
45 uint16_t slotValue = 0;
46 bool     rachIndSent = false;
47
48 EXTERN void phyToMac ARGS((uint16_t msgType, uint32_t msgLen,void *msg));
49 #ifdef FAPI
50 EXTERN void fillTlvs ARGS((fapi_uint16_tlv_t *tlv, uint16_t tag, uint16_t
51 length, uint16_t value, uint32_t *msgLen));
52 EXTERN void fillMsgHeader ARGS((fapi_msg_t *hdr, uint16_t msgType, uint16_t msgLen));
53 #endif
54 EXTERN void handlePhyMessages(uint16_t msgType, uint32_t msgSize, void *msg);
55
56 /*******************************************************************
57  *
58  * @brief Builds and sends param response to MAC CL
59  *
60  * @details
61  *
62  *    Function : l1BldAndSndParamRsp
63  *
64  *    Functionality:
65  *          - Builds and sends param response to MAC
66  *
67  * @params[in] Config request message pointer
68  * @return ROK     - success
69  *         RFAILED - failure
70  *
71  * ****************************************************************/
72 S16 l1BldAndSndParamRsp(void *msg)
73 {
74 #ifdef FAPI
75    uint8_t index = 0;
76    uint32_t msgLen = 0;
77         fapi_param_resp_t *fapiParamRsp;
78         
79         MAC_ALLOC(fapiParamRsp, sizeof(fapi_param_resp_t));
80         if(!fapiParamRsp)
81         {
82            DU_LOG("PHY STUB: Memory allocation failed");
83                 return RFAILED;
84         }
85
86   /* Cell Params */
87   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RELEASE_CAPABILITY_TAG,                          sizeof(uint16_t), 1, &msgLen);
88   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PHY_STATE_TAG,                                   sizeof(uint16_t), 0, &msgLen);
89   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_DL_CONFIG_TAG,                        sizeof(uint8_t),  0, &msgLen);
90   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SKIP_BLANK_UL_CONFIG_TAG,                        sizeof(uint8_t),  0, &msgLen);
91   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_NUM_CONFIG_TLVS_TO_REPORT_TYPE_TAG,              sizeof(uint8_t),  0, &msgLen);
92
93   /* Carrier Params */
94   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CYCLIC_PREFIX_TAG,                               sizeof(uint8_t),  1, &msgLen);
95   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_DL_TAG,             sizeof(uint8_t),  1, &msgLen);
96   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_DL_TAG,                      sizeof(uint16_t), 1, &msgLen);
97   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_SUBCARRIER_SPACING_UL_TAG,             sizeof(uint8_t),  0, &msgLen);
98   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_BANDWIDTH_UL_TAG,                      sizeof(uint16_t), 0, &msgLen);
99
100   /* PDCCH Param*/
101   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CCE_MAPPING_TYPE_TAG,                            sizeof(uint8_t), 0, &msgLen);
102   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_CORESET_OUTSIDE_FIRST_3_OFDM_SYMS_OF_SLOT_TAG,   sizeof(uint8_t), 0, &msgLen);
103   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRECODER_GRANULARITY_CORESET_TAG,                sizeof(uint8_t), 0, &msgLen);
104   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_MU_MIMO_TAG,                               sizeof(uint8_t), 0, &msgLen);
105   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDCCH_PRECODER_CYCLING_TAG,                      sizeof(uint8_t), 0, &msgLen);
106   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDCCHS_PER_SLOT_TAG,                         sizeof(uint8_t), 0, &msgLen);
107
108   /* PUCCH Param */
109   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUCCH_FORMATS_TAG,                               sizeof(uint8_t), 0, &msgLen);
110   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PUCCHS_PER_SLOT_TAG,                         sizeof(uint8_t), 0, &msgLen);
111
112   /* PDSCH Param */
113   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_MAPPING_TYPE_TAG,                          sizeof(uint8_t), 0, &msgLen);
114   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_ALLOCATION_TYPES_TAG,                      sizeof(uint8_t), 0, &msgLen);
115   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_VRB_TO_PRB_MAPPING_TAG,                    sizeof(uint8_t), 0, &msgLen);
116   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_CBG_TAG,                                   sizeof(uint8_t), 0, &msgLen);
117   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_CONFIG_TYPES_TAG,                     sizeof(uint8_t), 0, &msgLen);
118   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_MAX_LENGTH_TAG,                       sizeof(uint8_t), 0, &msgLen);
119   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DMRS_ADDITIONAL_POS_TAG,                   sizeof(uint8_t), 0, &msgLen);
120   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDSCHS_TBS_PER_SLOT_TAG,                     sizeof(uint8_t), 0, &msgLen);
121   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_PDSCH_TAG,                sizeof(uint8_t), 0, &msgLen);
122   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MAX_MODULATION_ORDER_DL_TAG,           sizeof(uint8_t), 0, &msgLen);
123   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_DL_TAG,                        sizeof(uint8_t), 0, &msgLen);
124   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_DATA_IN_DMRS_SYMBOLS_TAG,                  sizeof(uint8_t), 0, &msgLen);
125   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PREMPTIONSUPPORT_TAG,                            sizeof(uint8_t), 0, &msgLen);
126   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PDSCH_NON_SLOT_SUPPORT_TAG,                      sizeof(uint8_t), 0, &msgLen);
127
128   /* PUSCH Param */
129   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_MUX_ULSCH_IN_PUSCH_TAG,                      sizeof(uint8_t), 0, &msgLen);
130   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_UCI_ONLY_PUSCH_TAG,                              sizeof(uint8_t), 0, &msgLen);
131   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_FREQUENCY_HOPPING_TAG,                     sizeof(uint8_t), 0, &msgLen);
132   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_CONFIG_TYPES_TAG,                     sizeof(uint8_t), 0, &msgLen);
133   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_MAX_LEN_TAG,                          sizeof(uint8_t), 0, &msgLen);
134   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_DMRS_ADDITIONAL_POS_TAG,                   sizeof(uint8_t), 0, &msgLen);
135   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_CBG_TAG,                                   sizeof(uint8_t), 0, &msgLen);
136   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAPPING_TYPE_TAG,                          sizeof(uint8_t), 0, &msgLen);
137   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_ALLOCATION_TYPES_TAG,                      sizeof(uint8_t), 0, &msgLen);
138   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_VRB_TO_PRB_MAPPING_TAG,                    sizeof(uint8_t), 0, &msgLen);
139   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_MAX_PTRS_PORTS_TAG,                        sizeof(uint8_t), 0, &msgLen);
140   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PDUSCHS_TBS_PER_SLOT_TAG,                    sizeof(uint8_t), 0, &msgLen);
141   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_NUMBER_MIMO_LAYERS_NON_CB_PUSCH_TAG,         sizeof(uint8_t), 0, &msgLen);
142   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_SUPPORTED_MODULATION_ORDER_UL_TAG,               sizeof(uint8_t), 0, &msgLen);
143   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_MU_MIMO_USERS_UL_TAG,                        sizeof(uint8_t), 0, &msgLen);
144   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_DFTS_OFDM_SUPPORT_TAG,                           sizeof(uint8_t), 0, &msgLen);
145   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PUSCH_AGGREGATION_FACTOR_TAG,                    sizeof(uint8_t), 0, &msgLen);
146
147   /* PRACH Params */
148   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_LONG_FORMATS_TAG,                          sizeof(uint8_t), 0, &msgLen);
149   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_SHORT_FORMATS_TAG,                         sizeof(uint8_t), 0, &msgLen);
150   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_PRACH_RESTRICTED_SETS_TAG,                       sizeof(uint8_t), 0, &msgLen);
151   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_MAX_PRACH_FD_OCCASIONS_IN_A_SLOT_TAG,            sizeof(uint8_t), 0, &msgLen);
152
153   /* MEASUREMENT TAG */
154   fillTlvs(&fapiParamRsp->tlvs[index++],  FAPI_RSSI_MEASUREMENT_SUPPORT_TAG,                    sizeof(uint8_t), 0, &msgLen);
155
156   fapiParamRsp->number_of_tlvs = index;
157   msgLen += sizeof(fapi_param_resp_t) - sizeof(fapi_msg_t);
158   fillMsgHeader(&fapiParamRsp->header, FAPI_PARAM_RESPONSE, msgLen);
159   fapiParamRsp->error_code = MSG_OK;
160
161   DU_LOG("\nPHY_STUB: Sending Param Request to Lower Mac");
162   handlePhyMessages(fapiParamRsp->header.message_type_id, sizeof(fapi_param_resp_t), (void *)fapiParamRsp);
163   MAC_FREE(fapiParamRsp, sizeof(fapi_param_resp_t));
164 #endif
165   return ROK;
166 }
167
168 /*******************************************************************
169  *
170  * @brief Builds and sends config response to lower mac
171  *
172  * @details
173  *
174  *    Function : l1BldAndSndConfigRsp
175  *
176  *    Functionality:
177  *          - Builds and sends config response to MAC
178  *
179  * @params[in] Config request message pointer
180  * @return ROK     - success
181  *         RFAILED - failure
182  *
183  * ****************************************************************/
184
185 S16 l1BldAndSndConfigRsp(void *msg)
186 {
187 #ifdef FAPI
188    uint32_t msgLen = 0;
189    fapi_config_resp_t *fapiConfigRsp;
190
191    MAC_ALLOC(fapiConfigRsp, sizeof(fapi_config_resp_t));
192    if(!fapiConfigRsp)
193    {
194       DU_LOG("PHY STUB: Memory allocation failed");
195       return RFAILED;
196    }
197
198    fapiConfigRsp->number_of_invalid_tlvs = NULLP;
199    fapiConfigRsp->number_of_inv_tlvs_idle_only = NULLP;
200    fapiConfigRsp->number_of_missing_tlvs = NULLP;
201    fapiConfigRsp->error_code = MSG_OK;
202         msgLen += sizeof(fapi_param_resp_t) - sizeof(fapi_msg_t);
203    fillMsgHeader(&fapiConfigRsp->header, FAPI_CONFIG_RESPONSE, msgLen);
204
205    DU_LOG("\nPHY_STUB: Sending Config Response to Lower Mac");
206    handlePhyMessages(fapiConfigRsp->header.message_type_id, \
207            sizeof(fapi_config_resp_t), (void *)fapiConfigRsp);
208    MAC_FREE(fapiConfigRsp, sizeof(fapi_config_resp_t));
209 #endif
210    return ROK;
211 }
212 /*******************************************************************
213  *
214  * @brief Handles param request received from MAC
215  *
216  * @details
217  *
218  *    Function : l1HdlParamReq
219  *
220  *    Functionality:
221  *          -Handles param request received from MAC
222  *
223  * @params[in]   Message length
224  *               Param request message pointer
225  *
226  * @return void
227  *
228  * ****************************************************************/
229
230 PUBLIC void l1HdlParamReq(uint32_t msgLen, void *msg)
231 {
232 #ifdef FAPI
233    DU_LOG("\nPHY_STUB: Received Param Request in PHY");
234  
235    /* Build and send PARAM RESPONSE */
236    if(l1BldAndSndParamRsp(msg)!= ROK)
237    {
238       DU_LOG("\nPHY_STUB: Failed Sending Param Response");
239    }
240         MAC_FREE(msg, sizeof(fapi_param_req_t));
241 #endif
242
243
244 /*******************************************************************
245  *
246  * @brief Handles config request received from MAC
247  *
248  * @details
249  *
250  *    Function : l1HdlConfigReq
251  *
252  *    Functionality:
253  *          -Handles config request received from MAC
254  *
255  * @params[in]   Message length
256  *               config request message pointer
257  *
258  * @return void
259  *
260  * ****************************************************************/
261
262 PUBLIC void l1HdlConfigReq(uint32_t msgLen, void *msg)
263 {
264 #ifdef FAPI
265         fapi_config_req_t *configReq = (fapi_config_req_t *)msg;
266
267    DU_LOG("\nPHY_STUB: Received Config Request in PHY");
268
269    /* Handling CONFIG RESPONSE */
270    if(l1BldAndSndConfigRsp(msg)!= ROK)
271    {
272       printf("\nPHY_STUB: Failed Sending config Response");
273    }
274    
275         MAC_FREE(configReq, msgLen);
276 #endif
277
278 }
279
280 /*******************************************************************
281  *
282  * @brief Build and Send CRC Indication
283  *
284  * @details
285  *
286  *    Function : l1BuildAndSendCrcInd
287  *
288  *    Functionality:
289  *      Build and Send CRC Indication
290  *
291  * @params[in] Slot
292  *             SFN 
293  * @return ROK     - success
294  *         RFAILED - failure
295  *
296  * ****************************************************************/
297 uint16_t l1BuildAndSendCrcInd(uint16_t slot, uint16_t sfn)
298 {
299 #ifdef FAPI
300    uint8_t idx = 0;
301    fapi_crc_ind_t  *crcInd;
302    
303    MAC_ALLOC(crcInd, sizeof(fapi_crc_ind_t));
304    if(!crcInd)
305    {
306       printf("\nPHY_STUB: Memory allocation failed for CRC Indication Message");
307       return RFAILED;
308    }
309
310    /* TODO: Fill the required values. As of now only 1 CRC status PASS is filled */
311    crcInd->sfn = sfn;
312    crcInd->slot = slot;
313    crcInd->numCrcs = 1;
314
315    crcInd->crc[idx].handle = 0;
316    crcInd->crc[idx].rnti = 0;
317    crcInd->crc[idx].harqId = 0;
318    crcInd->crc[idx].tbCrcStatus = 0;
319    crcInd->crc[idx].numCb = 1;
320    crcInd->crc[idx].cbCrcStatus[0] = 0;
321    crcInd->crc[idx].ul_cqi = 0;
322    crcInd->crc[idx].timingAdvance = 0;
323    crcInd->crc[idx].rssi = 0;
324
325    fillMsgHeader(&crcInd->header, FAPI_CRC_INDICATION, \
326       sizeof(fapi_crc_ind_t));
327
328    /* Sending RACH indication to MAC */
329    DU_LOG("\nPHY STUB: Sending CRC Indication to MAC");
330    handlePhyMessages(crcInd->header.message_type_id, sizeof(fapi_crc_ind_t), (void *)crcInd);
331    MAC_FREE(crcInd, sizeof(fapi_crc_ind_t));
332 #endif
333    return ROK;
334 } /* l1BuildAndSendCrcInd */
335
336
337 /*******************************************************************
338  *
339  * @brief Build and send Rx data indication
340  *
341  * @details
342  *
343  *    Function : l1BuildAndSendRxDataInd
344  *
345  *    Functionality:
346  *       Build and send Rx data indication
347  *
348  * @params[in] SFN
349  *             Slot
350  * @return ROK     - success
351  *         RFAILED - failure
352  *
353  * ****************************************************************/
354 uint16_t l1BuildAndSendRxDataInd(uint16_t slot, uint16_t sfn)
355 {
356 #ifdef FAPI
357    uint8_t idx = 0;
358    fapi_rx_data_indication_t *rxDataInd;
359    fapi_pdu_ind_info_t       *pduInfo;
360  
361    MAC_ALLOC(rxDataInd, sizeof(fapi_rx_data_indication_t));
362    if(!rxDataInd)
363    {
364       printf("\nPHY_STUB: Memory allocation failed for Rx Data Indication");
365       return RFAILED;
366    }
367
368    /* TODO: Fill the required values */
369    rxDataInd->sfn = sfn;
370    rxDataInd->slot = slot;
371    rxDataInd->numPdus = 1;
372
373    pduInfo = &rxDataInd->pdus[idx];
374    pduInfo->handle = 0;
375    pduInfo->rnti = 0;
376    pduInfo->harqId = 0;
377    pduInfo->pduLength = 0;
378    pduInfo->ul_cqi = 0;
379    pduInfo->timingAdvance = 0;
380    pduInfo->rssi = 0;
381    pduInfo->pduData = NULL;
382
383    fillMsgHeader(&rxDataInd->header, FAPI_RX_DATA_INDICATION, \
384     sizeof(fapi_rx_data_indication_t));
385
386    /* Sending Rx data indication to MAC */
387    DU_LOG("\nPHY STUB: Sending Rx data Indication to MAC");
388    handlePhyMessages(rxDataInd->header.message_type_id, sizeof(fapi_rx_data_indication_t), (void *)rxDataInd);
389    MAC_FREE(rxDataInd, sizeof(fapi_rx_data_indication_t));
390 #endif
391    return ROK;
392 }
393
394
395 /*******************************************************************
396  *
397  * @brief Builds and Sends RACH indication to MAC 
398  *
399  * @details
400  *
401  *    Function : l1BuildAndSendRachInd 
402  *
403  *    Functionality:
404  *      Builds and Sends RACH indication to MAC
405  *
406  * @params[in] SFN value 
407  *             slot value
408  * @return ROK     - success
409  *         RFAILED - failure
410  *
411  * ****************************************************************/
412 uint16_t l1BuildAndSendRachInd(uint16_t slot, uint16_t sfn)
413 {
414 #ifdef FAPI
415    uint8_t   rachPduIdx = 0; 
416    uint8_t   preamIdx = 0;
417    fapi_rach_pdu_t  *rachPdu;
418    fapi_rach_indication_t  *rachInd;
419
420    /* Building RACH indication */
421         MAC_ALLOC(rachInd, sizeof(fapi_rach_indication_t));
422    if(!rachInd)
423    {
424       printf("\nPHY_STUB: Memory allocation failed for Rach Indication Message");
425       return RFAILED;
426    }
427    
428    rachInd->sfn = sfn;
429    rachInd->slot = slot;
430    rachInd->numPdus = 1;
431
432    rachPdu = &rachInd->rachPdu[rachPduIdx];
433    rachPdu->physCellId = NR_PCI;
434    rachPdu->symbolIndex = 0;
435    rachPdu->slotIndex = slot;
436    rachPdu->freqIndex = 0;
437    rachPdu->avgRssi = 0;
438    rachPdu->avgSnr = 0;
439    rachPdu->numPreamble = 1;
440
441    rachPdu->preambleInfo[preamIdx].preambleIndex = 3;
442    rachPdu->preambleInfo[preamIdx].timingAdvance = 0;
443    rachPdu->preambleInfo[preamIdx].premblePwr = 0;
444    
445    fillMsgHeader(&rachInd->header, FAPI_RACH_INDICATION, \
446       sizeof(fapi_rach_indication_t));
447
448    /* Sending RACH indication to MAC */
449    DU_LOG("\nPHY STUB: Sending RACH Indication to MAC");
450    handlePhyMessages(rachInd->header.message_type_id, sizeof(fapi_rach_indication_t), (void *)rachInd);
451    MAC_FREE(rachInd, sizeof(fapi_rach_indication_t));
452 #endif
453    return ROK;
454 }
455
456 /*******************************************************************
457  *
458  * @brief Builds and Send the Slot Indication message to MAC
459  *
460  * @details
461  *
462  *    Function : l1BuildAndSendSlotIndication
463  *
464  *    Functionality:
465  *          -Send the Slot indication Message to MAC
466  *
467  * @params[in]   Message length
468  *               config request message pointer
469  *
470  * @return void
471  *
472  * ****************************************************************/
473 PUBLIC uint16_t l1BuildAndSendSlotIndication()
474 {
475 #ifdef FAPI
476    fapi_slot_ind_t *slotIndMsg;
477
478    MAC_ALLOC(slotIndMsg, sizeof(fapi_slot_ind_t));
479         if(!slotIndMsg)
480    {
481        DU_LOG("\nPHY_STUB: Memory allocation failed for slot Indication Message");
482        return RFAILED;
483    }
484    else
485    {
486       slotIndMsg->sfn = sfnValue;
487       slotIndMsg->slot = slotValue;
488       DU_LOG("\n\nPHY_STUB: SLOT indication [%d:%d]",sfnValue,slotValue);
489
490                 /* increment for the next TTI */
491       slotValue++;
492       if(sfnValue >= MAX_SFN_VALUE && slotValue > MAX_SLOT_VALUE)
493       {
494          sfnValue = 0;
495          slotValue = 0;
496       }
497       else if(slotValue > MAX_SLOT_VALUE)
498       {
499          sfnValue++;
500          slotValue = 0;
501       }
502       fillMsgHeader(&slotIndMsg->header, FAPI_SLOT_INDICATION, sizeof(fapi_slot_ind_t));
503       handlePhyMessages(slotIndMsg->header.message_type_id, sizeof(fapi_slot_ind_t), (void*)slotIndMsg);
504       MAC_FREE(slotIndMsg, sizeof(fapi_slot_ind_t));
505    }
506 #endif
507    return ROK;
508 }
509
510 /*******************************************************************
511  *
512  * @brief Handles start request received from MAC
513  *
514  * @details
515  *
516  *    Function : l1HdlStartReq
517  *
518  *    Functionality:
519  *          -Handles start request received from MAC
520  *
521  * @params[in]   Message length
522  *               config request message pointer
523  *
524  * @return void
525  *
526  * ****************************************************************/
527
528 PUBLIC S16 l1HdlStartReq(uint32_t msgLen, void *msg)
529 {
530 #ifdef FAPI
531    fapi_start_req_t *startReq = (fapi_start_req_t *)msg;
532
533    if(clGlobalCp.phyState == PHY_STATE_CONFIGURED)
534    {
535       duStartSlotIndicaion();
536                 MAC_FREE(startReq, msgLen);
537    }
538    else
539    {
540       DU_LOG("\nPHY_STUB: Received Start Req in PHY State %d", clGlobalCp.phyState);
541       return RFAILED;
542    }
543 #endif
544    return ROK;
545 }
546
547 /*******************************************************************
548 *
549 * @brief Handles Dl Tti request received from MAC
550 *
551 * @details
552 *
553 *    Function : l1HdlDlTtiReq
554 *
555 *    Functionality:
556 *          -Handles Dl Tti request received from MAC
557 *
558 * @params[in]   Message length
559 *               Dl Tti request message pointer
560 *
561 * @return void
562 *
563 * ****************************************************************/
564
565 PUBLIC S16 l1HdlDlTtiReq(uint16_t msgLen, void *msg)
566 {
567 #ifdef FAPI
568    fapi_dl_tti_req_t *dlTtiReq;
569    dlTtiReq = (fapi_dl_tti_req_t *)msg;
570
571    printf("\nPHY STUB: Received DL TTI Request");
572 #if 0
573    printf("\nPHY_STUB:  SFN     %d", dlTtiReq->sfn);
574    printf("\nPHY_STUB:  SLOT    %d", dlTtiReq->slot);
575    printf("\nPHY_STUB:  nPdus   %d", dlTtiReq->nPdus);
576    printf("\nPHY_STUB:  nGroup  %d", dlTtiReq->nGroup);
577    /* Printing SSB CONFIGURED VALUES */
578    printf("\nPHY_STUB: physCellId   %d", dlTtiReq->pdus->u.ssb_pdu.physCellId);
579    printf("\nPHY_STUB: betaPss      %d", dlTtiReq->pdus->u.ssb_pdu.betaPss);
580    printf("\nPHY_STUB: ssbBlockIndex %d",       dlTtiReq->pdus->u.ssb_pdu.ssbBlockIndex);
581    printf("\nPHY_STUB: ssbSubCarrierOffset %d", dlTtiReq->pdus->u.ssb_pdu.ssbSubCarrierOffset);
582    printf("\nPHY_STUB: ssbOffsetPointA     %d", dlTtiReq->pdus->u.ssb_pdu.ssbOffsetPointA);
583    printf("\nPHY_STUB: bchPayloadFlag      %d", dlTtiReq->pdus->u.ssb_pdu.bchPayloadFlag);
584    printf("\nPHY_STUB: bchPayload          %x", dlTtiReq->pdus->u.ssb_pdu.bchPayload);
585 #endif
586         uint8_t pduCount = 0;
587         if(dlTtiReq->nPdus == 0)
588         {
589                 DU_LOG("\nPHY_STUB: No PDU in DL TTI Request");
590    }
591         for(pduCount=0; pduCount<dlTtiReq->nPdus; pduCount++)
592         {
593                 if(dlTtiReq->pdus[pduCount].pduType == 3) //SSB_PDU_TYPE
594                         DU_LOG("\nPHY_STUB: SSB PDU");
595                 else if(dlTtiReq->pdus[pduCount].pduType == 0)
596                         DU_LOG("\nPHY_STUB: PDCCH PDU");
597                 else if(dlTtiReq->pdus[pduCount].pduType == 1)
598                    DU_LOG("\nPHY_STUB: PDSCH PDU");
599         }
600
601         /* Free FAPI message */
602    MAC_FREE(dlTtiReq, msgLen);
603
604 #endif
605    return ROK;
606 }
607
608 /*******************************************************************
609 *
610 * @brief Handles tx_data request received from MAC
611 *
612 * @details
613 *
614 *    Function : l1HdlTxDataReq
615 *
616 *    Functionality:
617 *          -Handles tx_data request received from MAC
618 *
619 * @params[in]   Message length
620 *               tx_data request message pointer
621 *
622 * @return void
623 *
624 * ****************************************************************/
625
626 PUBLIC S16 l1HdlTxDataReq(uint16_t msgLen, void *msg)
627 {
628 #ifdef FAPI
629    fapi_tx_data_req_t *txDataReq;
630    txDataReq = (fapi_tx_data_req_t *)msg;
631
632    DU_LOG("\nPHY STUB: Received TX DATA Request");
633
634         MAC_FREE(txDataReq, msgLen);
635 #endif
636    return ROK;
637 }
638 /*******************************************************************
639 *
640 * @brief Handles Ul Tti request received from MAC
641 *
642 * @details
643 *
644 *    Function : l1HdlUlTtiReq
645 *
646 *    Functionality:
647 *          -Handles Ul Tti request received from MAC
648 *
649 * @params[in]   Message length
650 *               Ul Tti request message pointer
651 *
652 * @return void
653 *
654 * ****************************************************************/
655
656 PUBLIC S16 l1HdlUlTtiReq(uint16_t msgLen, void *msg)
657 {
658 #ifdef FAPI
659    fapi_ul_tti_req_t *ulTtiReq;
660
661    DU_LOG("\nPHY STUB: Received UL TTI Request");
662
663    ulTtiReq = (fapi_ul_tti_req_t *)msg;
664    uint8_t numPdus = ulTtiReq->nPdus;
665     
666         if(numPdus == 0)
667         {
668                 DU_LOG("\nPHY STUB: No PDU in UL TTI");
669    }
670         while(numPdus)
671         {
672                 if(ulTtiReq->pdus[numPdus-1].pduType == 0)
673                         DU_LOG("\nPHY STUB: PRACH PDU");
674                 numPdus--;
675         }
676
677    if(rachIndSent == false && ulTtiReq->sfn == 2 && ulTtiReq->slot == 6)
678    {
679       rachIndSent = true;
680       l1BuildAndSendRachInd(ulTtiReq->slot, ulTtiReq->sfn);
681    }
682    
683    MAC_FREE(ulTtiReq, msgLen);
684 #endif
685    return ROK;
686 }
687
688 /*******************************************************************
689  *
690  * @brief Receives message from MAC
691  *
692  * @details
693  *
694  *    Function :  l1ProcessFapiRequest
695  *
696  *    Functionality:
697  *       - Receives message from MAC and calls handler
698  *
699  * @params[in] Message type
700  *             Message length
701  *             Message pointer
702  *
703  * @return void
704  *
705  * ****************************************************************/
706
707 void l1ProcessFapiRequest(uint8_t msgType, uint32_t msgLen, void *msg)
708 {
709    switch(msgType)
710    {
711 #ifdef FAPI
712       case FAPI_PARAM_REQUEST:
713          l1HdlParamReq(msgLen, msg);
714          break;
715       case FAPI_CONFIG_REQUEST:
716          l1HdlConfigReq(msgLen, msg);
717          break;
718       case FAPI_START_REQUEST:
719          l1HdlStartReq(msgLen, msg);
720          break;
721       case FAPI_DL_TTI_REQUEST:
722          l1HdlDlTtiReq(msgLen, msg);
723          break;
724       case FAPI_TX_DATA_REQUEST:
725          l1HdlTxDataReq(msgLen, msg);
726          break;
727       case FAPI_UL_TTI_REQUEST:
728          l1HdlUlTtiReq(msgLen, msg);
729          break;
730       default:
731          DU_LOG("\nPHY_STUB: Invalid message type[%x] received at PHY", msgType);
732          break;
733 #endif
734    }
735 }
736 /**********************************************************************
737          End of file
738 **********************************************************************/