1 /*******************************************************************************
2 ################################################################################
3 # Copyright (c) [2017-2019] [Radisys] #
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 #
9 # http://www.apache.org/licenses/LICENSE-2.0 #
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 *******************************************************************************/
20 /* header include files -- defines (.h) */
21 #include "common_def.h"
24 #include "du_app_mac_inf.h"
25 #include "mac_sch_interface.h"
26 #include "lwr_mac_upr_inf.h"
31 #include "fapi_vendor_extension.h"
36 #include "lwr_mac_fsm.h"
37 #include "lwr_mac_phy.h"
38 #include "mac_utils.h"
40 #define MIB_SFN_BITMASK 0xFC
41 #define PDCCH_PDU_TYPE 0
42 #define PDSCH_PDU_TYPE 1
43 #define SSB_PDU_TYPE 3
44 #define PRACH_PDU_TYPE 0
45 #define PUSCH_PDU_TYPE 1
46 #define PUCCH_PDU_TYPE 2
48 #define SET_MSG_LEN(x, size) x += size
50 /* Global variables */
53 uint8_t UnrestrictedSetNcsTable[MAX_ZERO_CORR_CFG_IDX];
54 void fapiMacConfigRsp(uint16_t cellId);
55 uint16_t sendTxDataReq(SlotTimingInfo currTimingInfo, DlSchedInfo *dlInfo, p_fapi_api_queue_elem_t prevElem);
56 uint16_t fillUlTtiReq(SlotTimingInfo currTimingInfo, p_fapi_api_queue_elem_t prevElem);
57 uint16_t fillUlDciReq(SlotTimingInfo currTimingInfo, p_fapi_api_queue_elem_t prevElem);
58 uint8_t lwr_mac_procStopReqEvt(SlotTimingInfo slotInfo, p_fapi_api_queue_elem_t prevElem);
60 void lwrMacLayerInit(Region region, Pool pool)
66 memset(&lwrMacCb, 0, sizeof(LwrMacCb));
67 lwrMacCb.region = region;
69 lwrMacCb.clCfgDone = TRUE;
71 lwrMacCb.phyState = PHY_STATE_IDLE;
74 /* Initializing WLS free mem list */
75 lwrMacCb.phySlotIndCntr = 1;
76 for(idx = 0; idx < WLS_MEM_FREE_PRD; idx++)
78 cmLListInit(&wlsBlockToFreeList[idx]);
83 /*******************************************************************
85 * @brief Handles Invalid Request Event
89 * Function : lwr_mac_procInvalidEvt
92 * - Displays the PHY state when the invalid event occurs
95 * @return ROK - success
98 * ****************************************************************/
99 uint8_t lwr_mac_procInvalidEvt(void *msg)
101 #ifdef CALL_FLOW_DEBUG_LOG
102 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : INVALID_EVENT\n");
104 DU_LOG("\nERROR --> LWR_MAC: Error Indication Event[%d] received in state [%d]", lwrMacCb.event, lwrMacCb.phyState);
109 /*******************************************************************
111 * @brief Fills FAPI message header
115 * Function : fillMsgHeader
118 * -Fills FAPI message header
120 * @params[in] Pointer to header
126 * ****************************************************************/
127 void fillMsgHeader(fapi_msg_t *hdr, uint16_t msgType, uint16_t msgLen)
129 memset(hdr, 0, sizeof(fapi_msg_t));
130 hdr->msg_id = msgType;
131 hdr->length = msgLen;
134 /*******************************************************************
136 * @brief Fills FAPI Config Request message header
140 * Function : fillTlvs
143 * -Fills FAPI Config Request message header
145 * @params[in] Pointer to TLV
152 * ****************************************************************/
153 void fillTlvs(fapi_uint32_tlv_t *tlv, uint16_t tag, uint16_t length,
154 uint32_t value, uint32_t *msgLen)
157 tlv->tl.length = length;
159 *msgLen = *msgLen + sizeof(tag) + sizeof(length) + length;
161 /*******************************************************************
163 * @brief fills the cyclic prefix by comparing the bitmask
167 * Function : fillCyclicPrefix
170 * -checks the value with the bitmask and
171 * fills the cellPtr's cyclic prefix.
173 * @params[in] Pointer to ClCellParam
174 * Value to be compared
177 ********************************************************************/
178 void fillCyclicPrefix(uint8_t value, ClCellParam **cellPtr)
180 if((value & FAPI_NORMAL_CYCLIC_PREFIX_MASK) == FAPI_NORMAL_CYCLIC_PREFIX_MASK)
182 (*cellPtr)->cyclicPrefix = NORMAL_CYCLIC_PREFIX_MASK;
184 else if((value & FAPI_EXTENDED_CYCLIC_PREFIX_MASK) == FAPI_EXTENDED_CYCLIC_PREFIX_MASK)
186 (*cellPtr)->cyclicPrefix = EXTENDED_CYCLIC_PREFIX_MASK;
190 (*cellPtr)->cyclicPrefix = INVALID_VALUE;
194 /*******************************************************************
196 * @brief fills the subcarrier spacing of Downlink by comparing the bitmask
200 * Function : fillSubcarrierSpaceDl
203 * -checks the value with the bitmask and
204 * fills the cellPtr's subcarrier spacing in DL
206 * @params[in] Pointer to ClCellParam
207 * Value to be compared
210 * ****************************************************************/
212 void fillSubcarrierSpaceDl(uint8_t value, ClCellParam **cellPtr)
214 if((value & FAPI_15KHZ_MASK) == FAPI_15KHZ_MASK)
216 (*cellPtr)->supportedSubcarrierSpacingDl = SPACING_15_KHZ;
218 else if((value & FAPI_30KHZ_MASK) == FAPI_30KHZ_MASK)
220 (*cellPtr)->supportedSubcarrierSpacingDl = SPACING_30_KHZ;
222 else if((value & FAPI_60KHZ_MASK) == FAPI_60KHZ_MASK)
224 (*cellPtr)->supportedSubcarrierSpacingDl = SPACING_60_KHZ;
226 else if((value & FAPI_120KHZ_MASK) == FAPI_120KHZ_MASK)
228 (*cellPtr)->supportedSubcarrierSpacingDl = SPACING_120_KHZ;
232 (*cellPtr)->supportedSubcarrierSpacingDl = INVALID_VALUE;
236 /*******************************************************************
238 * @brief fills the downlink bandwidth by comparing the bitmask
242 * Function : fillBandwidthDl
245 * -checks the value with the bitmask and
246 * -fills the cellPtr's DL Bandwidth
248 * @params[in] Pointer to ClCellParam
249 * Value to be compared
252 * ****************************************************************/
254 void fillBandwidthDl(uint16_t value, ClCellParam **cellPtr)
256 if((value & FAPI_5MHZ_BW_MASK) == FAPI_5MHZ_BW_MASK)
258 (*cellPtr)->supportedBandwidthDl = BW_5MHZ;
260 else if((value & FAPI_10MHZ_BW_MASK) == FAPI_10MHZ_BW_MASK)
262 (*cellPtr)->supportedBandwidthDl = BW_10MHZ;
264 else if((value & FAPI_15MHZ_BW_MASK) == FAPI_15MHZ_BW_MASK)
266 (*cellPtr)->supportedBandwidthDl = BW_15MHZ;
268 else if((value & FAPI_20MHZ_BW_MASK) == FAPI_20MHZ_BW_MASK)
270 (*cellPtr)->supportedBandwidthDl = BW_20MHZ;
272 else if((value & FAPI_40MHZ_BW_MASK) == FAPI_40MHZ_BW_MASK)
274 (*cellPtr)->supportedBandwidthDl = BW_40MHZ;
276 else if((value & FAPI_50MHZ_BW_MASK) == FAPI_50MHZ_BW_MASK)
278 (*cellPtr)->supportedBandwidthDl = BW_50MHZ;
280 else if((value & FAPI_60MHZ_BW_MASK) == FAPI_60MHZ_BW_MASK)
282 (*cellPtr)->supportedBandwidthDl = BW_60MHZ;
284 else if((value & FAPI_70MHZ_BW_MASK) == FAPI_70MHZ_BW_MASK)
286 (*cellPtr)->supportedBandwidthDl = BW_70MHZ;
288 else if((value & FAPI_80MHZ_BW_MASK) == FAPI_80MHZ_BW_MASK)
290 (*cellPtr)->supportedBandwidthDl = BW_80MHZ;
292 else if((value & FAPI_90MHZ_BW_MASK) == FAPI_90MHZ_BW_MASK)
294 (*cellPtr)->supportedBandwidthDl = BW_90MHZ;
296 else if((value & FAPI_100MHZ_BW_MASK) == FAPI_100MHZ_BW_MASK)
298 (*cellPtr)->supportedBandwidthDl = BW_100MHZ;
300 else if((value & FAPI_200MHZ_BW_MASK) == FAPI_200MHZ_BW_MASK)
302 (*cellPtr)->supportedBandwidthDl = BW_200MHZ;
304 else if((value & FAPI_400MHZ_BW_MASK) == FAPI_400MHZ_BW_MASK)
306 (*cellPtr)->supportedBandwidthDl = BW_400MHZ;
310 (*cellPtr)->supportedBandwidthDl = INVALID_VALUE;
314 /*******************************************************************
316 * @brief fills the subcarrier spacing of Uplink by comparing the bitmask
320 * Function : fillSubcarrierSpaceUl
323 * -checks the value with the bitmask and
324 * -fills cellPtr's subcarrier spacing in UL
326 * @params[in] Pointer to ClCellParam
327 * Value to be compared
330 * ****************************************************************/
332 void fillSubcarrierSpaceUl(uint8_t value, ClCellParam **cellPtr)
334 if((value & FAPI_15KHZ_MASK) == FAPI_15KHZ_MASK)
336 (*cellPtr)->supportedSubcarrierSpacingsUl = SPACING_15_KHZ;
338 else if((value & FAPI_30KHZ_MASK) == FAPI_30KHZ_MASK)
340 (*cellPtr)->supportedSubcarrierSpacingsUl = SPACING_30_KHZ;
342 else if((value & FAPI_60KHZ_MASK) == FAPI_60KHZ_MASK)
344 (*cellPtr)->supportedSubcarrierSpacingsUl = SPACING_60_KHZ;
346 else if((value & FAPI_120KHZ_MASK) == FAPI_120KHZ_MASK)
348 (*cellPtr)->supportedSubcarrierSpacingsUl = SPACING_120_KHZ;
352 (*cellPtr)->supportedSubcarrierSpacingsUl = INVALID_VALUE;
356 /*******************************************************************
358 * @brief fills the uplink bandwidth by comparing the bitmask
362 * Function : fillBandwidthUl
365 * -checks the value with the bitmask and
366 * fills the cellPtr's UL Bandwidth
370 * @params[in] Pointer to ClCellParam
371 * Value to be compared
375 * ****************************************************************/
377 void fillBandwidthUl(uint16_t value, ClCellParam **cellPtr)
379 if((value & FAPI_5MHZ_BW_MASK) == FAPI_5MHZ_BW_MASK)
381 (*cellPtr)->supportedBandwidthUl = BW_5MHZ;
383 else if((value & FAPI_10MHZ_BW_MASK) == FAPI_10MHZ_BW_MASK)
385 (*cellPtr)->supportedBandwidthUl = BW_10MHZ;
387 else if((value & FAPI_15MHZ_BW_MASK) == FAPI_15MHZ_BW_MASK)
389 (*cellPtr)->supportedBandwidthUl = BW_15MHZ;
391 else if((value & FAPI_20MHZ_BW_MASK) == FAPI_20MHZ_BW_MASK)
393 (*cellPtr)->supportedBandwidthUl = BW_20MHZ;
395 else if((value & FAPI_40MHZ_BW_MASK) == FAPI_40MHZ_BW_MASK)
397 (*cellPtr)->supportedBandwidthUl = BW_40MHZ;
399 else if((value & FAPI_50MHZ_BW_MASK) == FAPI_50MHZ_BW_MASK)
401 (*cellPtr)->supportedBandwidthUl = BW_50MHZ;
403 else if((value & FAPI_60MHZ_BW_MASK) == FAPI_60MHZ_BW_MASK)
405 (*cellPtr)->supportedBandwidthUl = BW_60MHZ;
407 else if((value & FAPI_70MHZ_BW_MASK) == FAPI_70MHZ_BW_MASK)
409 (*cellPtr)->supportedBandwidthUl = BW_70MHZ;
411 else if((value & FAPI_80MHZ_BW_MASK) == FAPI_80MHZ_BW_MASK)
413 (*cellPtr)->supportedBandwidthUl = BW_80MHZ;
415 else if((value & FAPI_90MHZ_BW_MASK) == FAPI_90MHZ_BW_MASK)
417 (*cellPtr)->supportedBandwidthUl = BW_90MHZ;
419 else if((value & FAPI_100MHZ_BW_MASK) == FAPI_100MHZ_BW_MASK)
421 (*cellPtr)->supportedBandwidthUl = BW_100MHZ;
423 else if((value & FAPI_200MHZ_BW_MASK) == FAPI_200MHZ_BW_MASK)
425 (*cellPtr)->supportedBandwidthUl = BW_200MHZ;
427 else if((value & FAPI_400MHZ_BW_MASK) == FAPI_400MHZ_BW_MASK)
429 (*cellPtr)->supportedBandwidthUl = BW_400MHZ;
433 (*cellPtr)->supportedBandwidthUl = INVALID_VALUE;
436 /*******************************************************************
438 * @brief fills the CCE maping by comparing the bitmask
442 * Function : fillCCEmaping
445 * -checks the value with the bitmask and
446 * fills the cellPtr's CCE Mapping Type
449 * @params[in] Pointer to ClCellParam
450 * Value to be compared
453 * ****************************************************************/
455 void fillCCEmaping(uint8_t value, ClCellParam **cellPtr)
457 if ((value & FAPI_CCE_MAPPING_INTERLEAVED_MASK) == FAPI_CCE_MAPPING_INTERLEAVED_MASK)
459 (*cellPtr)->cceMappingType = CCE_MAPPING_INTERLEAVED_MASK;
461 else if((value & FAPI_CCE_MAPPING_INTERLEAVED_MASK) == FAPI_CCE_MAPPING_NONINTERLVD_MASK)
463 (*cellPtr)->cceMappingType = CCE_MAPPING_NONINTERLVD_MASK;
467 (*cellPtr)->cceMappingType = INVALID_VALUE;
471 /*******************************************************************
473 * @brief fills the PUCCH format by comparing the bitmask
477 * Function : fillPucchFormat
480 * -checks the value with the bitmask and
481 * fills the cellPtr's pucch format
484 * @params[in] Pointer to ClCellParam
485 * Value to be compared
488 * ****************************************************************/
490 void fillPucchFormat(uint8_t value, ClCellParam **cellPtr)
492 if((value & FAPI_FORMAT_0_MASK) == FAPI_FORMAT_0_MASK)
494 (*cellPtr)->pucchFormats = FORMAT_0;
496 else if((value & FAPI_FORMAT_1_MASK) == FAPI_FORMAT_1_MASK)
498 (*cellPtr)->pucchFormats = FORMAT_1;
500 else if((value & FAPI_FORMAT_2_MASK) == FAPI_FORMAT_2_MASK)
502 (*cellPtr)->pucchFormats = FORMAT_2;
504 else if((value & FAPI_FORMAT_3_MASK) == FAPI_FORMAT_3_MASK)
506 (*cellPtr)->pucchFormats = FORMAT_3;
508 else if((value & FAPI_FORMAT_4_MASK) == FAPI_FORMAT_4_MASK)
510 (*cellPtr)->pucchFormats = FORMAT_4;
514 (*cellPtr)->pucchFormats = INVALID_VALUE;
518 /*******************************************************************
520 * @brief fills the PDSCH Mapping Type by comparing the bitmask
524 * Function : fillPdschMappingType
527 * -checks the value with the bitmask and
528 * fills the cellPtr's PDSCH MappingType
530 * @params[in] Pointer to ClCellParam
531 * Value to be compared
534 * ****************************************************************/
536 void fillPdschMappingType(uint8_t value, ClCellParam **cellPtr)
538 if((value & FAPI_PDSCH_MAPPING_TYPE_A_MASK) == FAPI_PDSCH_MAPPING_TYPE_A_MASK)
540 (*cellPtr)->pdschMappingType = MAPPING_TYPE_A;
542 else if((value & FAPI_PDSCH_MAPPING_TYPE_B_MASK) == FAPI_PDSCH_MAPPING_TYPE_B_MASK)
544 (*cellPtr)->pdschMappingType = MAPPING_TYPE_B;
548 (*cellPtr)->pdschMappingType = INVALID_VALUE;
552 /*******************************************************************
554 * @brief fills the PDSCH Allocation Type by comparing the bitmask
558 * Function : fillPdschAllocationType
561 * -checks the value with the bitmask and
562 * fills the cellPtr's PDSCH AllocationType
564 * @params[in] Pointer to ClCellParam
565 * Value to be compared
568 * ****************************************************************/
570 void fillPdschAllocationType(uint8_t value, ClCellParam **cellPtr)
572 if((value & FAPI_PDSCH_ALLOC_TYPE_0_MASK) == FAPI_PDSCH_ALLOC_TYPE_0_MASK)
574 (*cellPtr)->pdschAllocationTypes = ALLOCATION_TYPE_0;
576 else if((value & FAPI_PDSCH_ALLOC_TYPE_1_MASK) == FAPI_PDSCH_ALLOC_TYPE_1_MASK)
578 (*cellPtr)->pdschAllocationTypes = ALLOCATION_TYPE_1;
582 (*cellPtr)->pdschAllocationTypes = INVALID_VALUE;
586 /*******************************************************************
588 * @brief fills the PDSCH PRB Mapping Type by comparing the bitmask
592 * Function : fillPrbMappingType
595 * -checks the value with the bitmask and
596 * fills the cellPtr's PRB Mapping Type
598 * @params[in] Pointer to ClCellParam
599 * Value to be compared
602 ******************************************************************/
603 void fillPrbMappingType(uint8_t value, ClCellParam **cellPtr)
605 if((value & FAPI_PDSCH_VRB_TO_PRB_MAP_NON_INTLV_MASK) == FAPI_PDSCH_VRB_TO_PRB_MAP_NON_INTLV_MASK)
607 (*cellPtr)->pdschVrbToPrbMapping = VRB_TO_PRB_MAP_NON_INTLV;
609 else if((value & FAPI_PDSCH_VRB_TO_PRB_MAP_INTLVD_MASK) == FAPI_PDSCH_VRB_TO_PRB_MAP_INTLVD_MASK)
611 (*cellPtr)->pdschVrbToPrbMapping = VRB_TO_PRB_MAP_INTLVD;
615 (*cellPtr)->pdschVrbToPrbMapping = INVALID_VALUE;
619 /*******************************************************************
621 * @brief fills the PDSCH DmrsConfig Type by comparing the bitmask
625 * Function : fillPdschDmrsConfigType
628 * -checks the value with the bitmask and
629 * fills the cellPtr's DmrsConfig Type
631 * @params[in] Pointer to ClCellParam
632 * Value to be compared
635 ******************************************************************/
637 void fillPdschDmrsConfigType(uint8_t value, ClCellParam **cellPtr)
639 if((value & FAPI_PDSCH_DMRS_CONFIG_TYPE_1_MASK) == FAPI_PDSCH_DMRS_CONFIG_TYPE_1_MASK)
641 (*cellPtr)->pdschDmrsConfigTypes = DMRS_CONFIG_TYPE_1;
643 else if((value & FAPI_PDSCH_DMRS_CONFIG_TYPE_2_MASK) == FAPI_PDSCH_DMRS_CONFIG_TYPE_2_MASK)
645 (*cellPtr)->pdschDmrsConfigTypes = DMRS_CONFIG_TYPE_2;
649 (*cellPtr)->pdschDmrsConfigTypes = INVALID_VALUE;
653 /*******************************************************************
655 * @brief fills the PDSCH DmrsLength by comparing the bitmask
659 * Function : fillPdschDmrsLength
662 * -checks the value with the bitmask and
663 * fills the cellPtr's PdschDmrsLength
665 * @params[in] Pointer to ClCellParam
666 * Value to be compared
669 ******************************************************************/
670 void fillPdschDmrsLength(uint8_t value, ClCellParam **cellPtr)
672 if(value == FAPI_PDSCH_DMRS_MAX_LENGTH_1)
674 (*cellPtr)->pdschDmrsMaxLength = DMRS_MAX_LENGTH_1;
676 else if(value == FAPI_PDSCH_DMRS_MAX_LENGTH_2)
678 (*cellPtr)->pdschDmrsMaxLength = DMRS_MAX_LENGTH_2;
682 (*cellPtr)->pdschDmrsMaxLength = INVALID_VALUE;
686 /*******************************************************************
688 * @brief fills the PDSCH Dmrs Additional Pos by comparing the bitmask
692 * Function : fillPdschDmrsAddPos
695 * -checks the value with the bitmask and
696 * fills the cellPtr's Pdsch DmrsAddPos
698 * @params[in] Pointer to ClCellParam
699 * Value to be compared
702 ******************************************************************/
704 void fillPdschDmrsAddPos(uint8_t value, ClCellParam **cellPtr)
706 if((value & FAPI_DMRS_ADDITIONAL_POS_0_MASK) == FAPI_DMRS_ADDITIONAL_POS_0_MASK)
708 (*cellPtr)->pdschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_0;
710 else if((value & FAPI_DMRS_ADDITIONAL_POS_1_MASK) == FAPI_DMRS_ADDITIONAL_POS_1_MASK)
712 (*cellPtr)->pdschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_1;
714 else if((value & FAPI_DMRS_ADDITIONAL_POS_2_MASK) == FAPI_DMRS_ADDITIONAL_POS_2_MASK)
716 (*cellPtr)->pdschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_2;
718 else if((value & FAPI_DMRS_ADDITIONAL_POS_3_MASK) == FAPI_DMRS_ADDITIONAL_POS_3_MASK)
720 (*cellPtr)->pdschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_3;
724 (*cellPtr)->pdschDmrsAdditionalPos = INVALID_VALUE;
728 /*******************************************************************
730 * @brief fills the Modulation Order in DL by comparing the bitmask
734 * Function : fillModulationOrderDl
737 * -checks the value with the bitmask and
738 * fills the cellPtr's ModulationOrder in DL.
740 * @params[in] Pointer to ClCellParam
741 * Value to be compared
744 ******************************************************************/
745 void fillModulationOrderDl(uint8_t value, ClCellParam **cellPtr)
749 (*cellPtr)->supportedMaxModulationOrderDl = MOD_QPSK;
753 (*cellPtr)->supportedMaxModulationOrderDl = MOD_16QAM;
757 (*cellPtr)->supportedMaxModulationOrderDl = MOD_64QAM;
761 (*cellPtr)->supportedMaxModulationOrderDl = MOD_256QAM;
765 (*cellPtr)->supportedMaxModulationOrderDl = INVALID_VALUE;
769 /*******************************************************************
771 * @brief fills the PUSCH DmrsConfig Type by comparing the bitmask
775 * Function : fillPuschDmrsConfigType
778 * -checks the value with the bitmask and
779 * fills the cellPtr's PUSCH DmrsConfigType
781 * @params[in] Pointer to ClCellParam
782 * Value to be compared
785 ******************************************************************/
787 void fillPuschDmrsConfig(uint8_t value, ClCellParam **cellPtr)
789 if((value & FAPI_PUSCH_DMRS_CONFIG_TYPE_1_MASK) == FAPI_PUSCH_DMRS_CONFIG_TYPE_1_MASK)
791 (*cellPtr)->puschDmrsConfigTypes = DMRS_CONFIG_TYPE_1;
793 else if((value & FAPI_PUSCH_DMRS_CONFIG_TYPE_2_MASK) == FAPI_PUSCH_DMRS_CONFIG_TYPE_2_MASK)
795 (*cellPtr)->puschDmrsConfigTypes = DMRS_CONFIG_TYPE_2;
799 (*cellPtr)->puschDmrsConfigTypes = INVALID_VALUE;
803 /*******************************************************************
805 * @brief fills the PUSCH DmrsLength by comparing the bitmask
809 * Function : fillPuschDmrsLength
812 * -checks the value with the bitmask and
813 * fills the cellPtr's PUSCH DmrsLength
815 * @params[in] Pointer to ClCellParam
816 * Value to be compared
819 ******************************************************************/
821 void fillPuschDmrsLength(uint8_t value, ClCellParam **cellPtr)
823 if(value == FAPI_PUSCH_DMRS_MAX_LENGTH_1)
825 (*cellPtr)->puschDmrsMaxLength = DMRS_MAX_LENGTH_1;
827 else if(value == FAPI_PUSCH_DMRS_MAX_LENGTH_2)
829 (*cellPtr)->puschDmrsMaxLength = DMRS_MAX_LENGTH_2;
833 (*cellPtr)->puschDmrsMaxLength = INVALID_VALUE;
837 /*******************************************************************
839 * @brief fills the PUSCH Dmrs Additional position by comparing the bitmask
843 * Function : fillPuschDmrsAddPos
846 * -checks the value with the bitmask and
847 * fills the cellPtr's PUSCH DmrsAddPos
849 * @params[in] Pointer to ClCellParam
850 * Value to be compared
853 ******************************************************************/
855 void fillPuschDmrsAddPos(uint8_t value, ClCellParam **cellPtr)
857 if((value & FAPI_DMRS_ADDITIONAL_POS_0_MASK) == FAPI_DMRS_ADDITIONAL_POS_0_MASK)
859 (*cellPtr)->puschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_0;
861 else if((value & FAPI_DMRS_ADDITIONAL_POS_1_MASK) == FAPI_DMRS_ADDITIONAL_POS_1_MASK)
863 (*cellPtr)->puschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_1;
865 else if((value & FAPI_DMRS_ADDITIONAL_POS_2_MASK) == FAPI_DMRS_ADDITIONAL_POS_2_MASK)
867 (*cellPtr)->puschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_2;
869 else if((value & FAPI_DMRS_ADDITIONAL_POS_3_MASK) == FAPI_DMRS_ADDITIONAL_POS_3_MASK)
871 (*cellPtr)->puschDmrsAdditionalPos = DMRS_ADDITIONAL_POS_3;
875 (*cellPtr)->puschDmrsAdditionalPos = INVALID_VALUE;
879 /*******************************************************************
881 * @brief fills the PUSCH Mapping Type by comparing the bitmask
885 * Function : fillPuschMappingType
888 * -checks the value with the bitmask and
889 * fills the cellPtr's PUSCH MappingType
891 * @params[in] Pointer to ClCellParam
892 * Value to be compared
895 ******************************************************************/
897 void fillPuschMappingType(uint8_t value, ClCellParam **cellPtr)
899 if((value & FAPI_PUSCH_MAPPING_TYPE_A_MASK) == FAPI_PUSCH_MAPPING_TYPE_A_MASK)
901 (*cellPtr)->puschMappingType = MAPPING_TYPE_A;
903 else if((value & FAPI_PUSCH_MAPPING_TYPE_B_MASK) == FAPI_PUSCH_MAPPING_TYPE_B_MASK)
905 (*cellPtr)->puschMappingType = MAPPING_TYPE_B;
909 (*cellPtr)->puschMappingType = INVALID_VALUE;
913 /*******************************************************************
915 * @brief fills the PUSCH Allocation Type by comparing the bitmask
919 * Function : fillPuschAllocationType
922 * -checks the value with the bitmask and
923 * fills the cellPtr's PUSCH AllocationType
925 * @params[in] Pointer to ClCellParam
926 * Value to be compared
929 ******************************************************************/
931 void fillPuschAllocationType(uint8_t value, ClCellParam **cellPtr)
933 if((value & FAPI_PUSCH_ALLOC_TYPE_0_MASK) == FAPI_PUSCH_ALLOC_TYPE_0_MASK)
935 (*cellPtr)->puschAllocationTypes = ALLOCATION_TYPE_0;
937 else if((value & FAPI_PUSCH_ALLOC_TYPE_0_MASK) == FAPI_PUSCH_ALLOC_TYPE_0_MASK)
939 (*cellPtr)->puschAllocationTypes = ALLOCATION_TYPE_1;
943 (*cellPtr)->puschAllocationTypes = INVALID_VALUE;
947 /*******************************************************************
949 * @brief fills the PUSCH PRB Mapping Type by comparing the bitmask
953 * Function : fillPuschPrbMappingType
956 * -checks the value with the bitmask and
957 * fills the cellPtr's PUSCH PRB MApping Type
959 * @params[in] Pointer to ClCellParam
960 * Value to be compared
963 ******************************************************************/
965 void fillPuschPrbMappingType(uint8_t value, ClCellParam **cellPtr)
967 if((value & FAPI_PUSCH_VRB_TO_PRB_MAP_NON_INTLV_MASK) == FAPI_PUSCH_VRB_TO_PRB_MAP_NON_INTLV_MASK)
969 (*cellPtr)->puschVrbToPrbMapping = VRB_TO_PRB_MAP_NON_INTLV;
971 else if((value & FAPI_PUSCH_VRB_TO_PRB_MAP_INTLVD_MASK) == FAPI_PUSCH_VRB_TO_PRB_MAP_INTLVD_MASK)
973 (*cellPtr)->puschVrbToPrbMapping = VRB_TO_PRB_MAP_INTLVD;
977 (*cellPtr)->puschVrbToPrbMapping = INVALID_VALUE;
981 /*******************************************************************
983 * @brief fills the Modulation Order in Ul by comparing the bitmask
987 * Function : fillModulationOrderUl
990 * -checks the value with the bitmask and
991 * fills the cellPtr's Modualtsion Order in UL.
993 * @params[in] Pointer to ClCellParam
994 * Value to be compared
997 ******************************************************************/
999 void fillModulationOrderUl(uint8_t value, ClCellParam **cellPtr)
1003 (*cellPtr)->supportedModulationOrderUl = MOD_QPSK;
1007 (*cellPtr)->supportedModulationOrderUl = MOD_16QAM;
1011 (*cellPtr)->supportedModulationOrderUl = MOD_64QAM;
1015 (*cellPtr)->supportedModulationOrderUl = MOD_256QAM;
1019 (*cellPtr)->supportedModulationOrderUl = INVALID_VALUE;
1023 /*******************************************************************
1025 * @brief fills the PUSCH Aggregation Factor by comparing the bitmask
1029 * Function : fillPuschAggregationFactor
1032 * -checks the value with the bitmask and
1033 * fills the cellPtr's PUSCH Aggregation Factor
1035 * @params[in] Pointer to ClCellParam
1036 * Value to be compared
1039 ******************************************************************/
1041 void fillPuschAggregationFactor(uint8_t value, ClCellParam **cellPtr)
1043 if((value & FAPI_FORMAT_0_MASK) == FAPI_FORMAT_0_MASK)
1045 (*cellPtr)->puschAggregationFactor = AGG_FACTOR_1;
1047 else if((value & FAPI_FORMAT_1_MASK) == FAPI_FORMAT_1_MASK)
1049 (*cellPtr)->puschAggregationFactor = AGG_FACTOR_2;
1051 else if((value & FAPI_FORMAT_2_MASK) == FAPI_FORMAT_2_MASK)
1053 (*cellPtr)->puschAggregationFactor = AGG_FACTOR_4;
1055 else if((value & FAPI_FORMAT_3_MASK) == FAPI_FORMAT_3_MASK)
1057 (*cellPtr)->puschAggregationFactor = AGG_FACTOR_8;
1061 (*cellPtr)->puschAggregationFactor = INVALID_VALUE;
1065 /*******************************************************************
1067 * @brief fills the PRACH Long Format by comparing the bitmask
1071 * Function : fillPrachLongFormat
1074 * -checks the value with the bitmask and
1075 * fills the cellPtr's PRACH Long Format
1077 * @params[in] Pointer to ClCellParam
1078 * Value to be compared
1081 ******************************************************************/
1083 void fillPrachLongFormat(uint8_t value, ClCellParam **cellPtr)
1085 if((value & FAPI_PRACH_LF_FORMAT_0_MASK) == FAPI_PRACH_LF_FORMAT_0_MASK)
1087 (*cellPtr)->prachLongFormats = FORMAT_0;
1089 else if((value & FAPI_PRACH_LF_FORMAT_1_MASK) == FAPI_PRACH_LF_FORMAT_1_MASK)
1091 (*cellPtr)->prachLongFormats = FORMAT_1;
1093 else if((value & FAPI_PRACH_LF_FORMAT_2_MASK) == FAPI_PRACH_LF_FORMAT_2_MASK)
1095 (*cellPtr)->prachLongFormats = FORMAT_2;
1097 else if((value & FAPI_PRACH_LF_FORMAT_3_MASK) == FAPI_PRACH_LF_FORMAT_3_MASK)
1099 (*cellPtr)->prachLongFormats = FORMAT_3;
1103 (*cellPtr)->prachLongFormats = INVALID_VALUE;
1107 /*******************************************************************
1109 * @brief fills the PRACH Short Format by comparing the bitmask
1113 * Function : fillPrachShortFormat
1116 * -checks the value with the bitmask and
1117 * fills the cellPtr's PRACH ShortFormat
1119 * @params[in] Pointer to ClCellParam
1120 * Value to be compared
1123 ******************************************************************/
1125 void fillPrachShortFormat(uint8_t value, ClCellParam **cellPtr)
1127 if((value & FAPI_PRACH_SF_FORMAT_A1_MASK) == FAPI_PRACH_SF_FORMAT_A1_MASK)
1129 (*cellPtr)->prachShortFormats = SF_FORMAT_A1;
1131 else if((value & FAPI_PRACH_SF_FORMAT_A2_MASK) == FAPI_PRACH_SF_FORMAT_A2_MASK)
1133 (*cellPtr)->prachShortFormats = SF_FORMAT_A2;
1135 else if((value & FAPI_PRACH_SF_FORMAT_A3_MASK) == FAPI_PRACH_SF_FORMAT_A3_MASK)
1137 (*cellPtr)->prachShortFormats = SF_FORMAT_A3;
1139 else if((value & FAPI_PRACH_SF_FORMAT_B1_MASK) == FAPI_PRACH_SF_FORMAT_B1_MASK)
1141 (*cellPtr)->prachShortFormats = SF_FORMAT_B1;
1143 else if((value & FAPI_PRACH_SF_FORMAT_B2_MASK) == FAPI_PRACH_SF_FORMAT_B2_MASK)
1145 (*cellPtr)->prachShortFormats = SF_FORMAT_B2;
1147 else if((value & FAPI_PRACH_SF_FORMAT_B3_MASK) == FAPI_PRACH_SF_FORMAT_B3_MASK)
1149 (*cellPtr)->prachShortFormats = SF_FORMAT_B3;
1151 else if((value & FAPI_PRACH_SF_FORMAT_B4_MASK) == FAPI_PRACH_SF_FORMAT_B4_MASK)
1153 (*cellPtr)->prachShortFormats = SF_FORMAT_B4;
1155 else if((value & FAPI_PRACH_SF_FORMAT_C0_MASK) == FAPI_PRACH_SF_FORMAT_C0_MASK)
1157 (*cellPtr)->prachShortFormats = SF_FORMAT_C0;
1159 else if((value & FAPI_PRACH_SF_FORMAT_C2_MASK) == FAPI_PRACH_SF_FORMAT_C2_MASK)
1161 (*cellPtr)->prachShortFormats = SF_FORMAT_C2;
1165 (*cellPtr)->prachShortFormats = INVALID_VALUE;
1169 /*******************************************************************
1171 * @brief fills the Fd Occasions Type by comparing the bitmask
1175 * Function : fillFdOccasions
1178 * -checks the value with the bitmask and
1179 * fills the cellPtr's Fd Occasions
1181 * @params[in] Pointer to ClCellParam
1182 * Value to be compared
1185 ******************************************************************/
1187 void fillFdOccasions(uint8_t value, ClCellParam **cellPtr)
1191 (*cellPtr)->maxPrachFdOccasionsInASlot = PRACH_FD_OCC_IN_A_SLOT_1;
1195 (*cellPtr)->maxPrachFdOccasionsInASlot = PRACH_FD_OCC_IN_A_SLOT_2;
1199 (*cellPtr)->maxPrachFdOccasionsInASlot = PRACH_FD_OCC_IN_A_SLOT_4;
1203 (*cellPtr)->maxPrachFdOccasionsInASlot = PRACH_FD_OCC_IN_A_SLOT_8;
1207 (*cellPtr)->maxPrachFdOccasionsInASlot = INVALID_VALUE;
1211 /*******************************************************************
1213 * @brief fills the RSSI Measurement by comparing the bitmask
1217 * Function : fillRssiMeas
1220 * -checks the value with the bitmask and
1221 * fills the cellPtr's RSSI Measurement report
1223 * @params[in] Pointer to ClCellParam
1224 * Value to be compared
1227 ******************************************************************/
1229 void fillRssiMeas(uint8_t value, ClCellParam **cellPtr)
1231 if((value & FAPI_RSSI_REPORT_IN_DBM_MASK) == FAPI_RSSI_REPORT_IN_DBM_MASK)
1233 (*cellPtr)->rssiMeasurementSupport = RSSI_REPORT_DBM;
1235 else if((value & FAPI_RSSI_REPORT_IN_DBFS_MASK) == FAPI_RSSI_REPORT_IN_DBFS_MASK)
1237 (*cellPtr)->rssiMeasurementSupport = RSSI_REPORT_DBFS;
1241 (*cellPtr)->rssiMeasurementSupport = INVALID_VALUE;
1245 /*******************************************************************
1247 * @brief Returns the TLVs value
1251 * Function : getParamValue
1254 * -return TLVs value
1257 * @return ROK - temp
1260 * ****************************************************************/
1262 uint32_t getParamValue(fapi_uint16_tlv_t *tlv, uint16_t type)
1265 posPtr = &tlv->tl.tag;
1266 posPtr += sizeof(tlv->tl.tag);
1267 posPtr += sizeof(tlv->tl.length);
1268 /*TO DO: malloc to SSI memory */
1269 if(type == FAPI_UINT_8)
1271 return(*(uint8_t *)posPtr);
1273 else if(type == FAPI_UINT_16)
1275 return(*(uint16_t *)posPtr);
1277 else if(type == FAPI_UINT_32)
1279 return(*(uint32_t *)posPtr);
1283 DU_LOG("\nERROR --> LWR_MAC: Value Extraction failed" );
1289 /*******************************************************************
1291 * @brief Modifes the received mibPdu to uint32 bit
1292 * and stores it in MacCellCfg
1296 * Function : setMibPdu
1301 * @params[in] Pointer to mibPdu
1302 * pointer to modified value
1303 ******************************************************************/
1304 void setMibPdu(uint8_t *mibPdu, uint32_t *val, uint16_t sfn)
1306 *mibPdu |= (((uint8_t)(sfn << 2)) & MIB_SFN_BITMASK);
1307 *val = (mibPdu[0] << 24 | mibPdu[1] << 16 | mibPdu[2] << 8);
1308 DU_LOG("\nDEBUG --> LWR_MAC: MIB PDU %x", *val);
1311 /*******************************************************************
1313 * @brief Sends FAPI Param req to PHY
1317 * Function : lwr_mac_procParamReqEvt
1320 * -Sends FAPI Param req to PHY
1323 * @return ROK - success
1326 * ****************************************************************/
1328 uint8_t lwr_mac_procParamReqEvt(void *msg)
1331 #ifdef CALL_FLOW_DEBUG_LOG
1332 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : PARAM_REQ\n");
1335 /* startGuardTimer(); */
1336 fapi_param_req_t *paramReq = NULL;
1337 fapi_msg_header_t *msgHeader;
1338 p_fapi_api_queue_elem_t paramReqElem;
1339 p_fapi_api_queue_elem_t headerElem;
1341 LWR_MAC_ALLOC(paramReqElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_param_req_t)));
1342 if(paramReq != NULL)
1344 FILL_FAPI_LIST_ELEM(paramReqElem, NULLP, FAPI_PARAM_REQUEST, 1, \
1345 sizeof(fapi_tx_data_req_t));
1346 paramReq = (fapi_param_req_t *)(paramReqElem +1);
1347 memset(paramReq, 0, sizeof(fapi_param_req_t));
1348 fillMsgHeader(¶mReq->header, FAPI_PARAM_REQUEST, sizeof(fapi_param_req_t));
1350 /* Fill message header */
1351 LWR_MAC_ALLOC(headerElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_msg_header_t)));
1354 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for param req header");
1355 LWR_MAC_FREE(paramReqElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_param_req_t)));
1358 FILL_FAPI_LIST_ELEM(headerElem, paramReqElem, FAPI_VENDOR_MSG_HEADER_IND, 1, \
1359 sizeof(fapi_msg_header_t));
1360 msgHeader = (fapi_msg_header_t *)(headerElem + 1);
1361 msgHeader->num_msg = 1;
1362 msgHeader->handle = 0;
1364 DU_LOG("\nDEBUG --> LWR_MAC: Sending Param Request to Phy");
1365 LwrMacSendToL1(headerElem);
1369 DU_LOG("\nERROR --> LWR_MAC: Failed to allocate memory for Param Request");
1376 /*******************************************************************
1378 * @brief Sends FAPI Param Response to MAC via PHY
1382 * Function : lwr_mac_procParamRspEvt
1385 * -Sends FAPI Param rsp to MAC via PHY
1388 * @return ROK - success
1391 * ****************************************************************/
1393 uint8_t lwr_mac_procParamRspEvt(void *msg)
1396 /* stopGuardTimer(); */
1398 uint32_t encodedVal;
1399 fapi_param_resp_t *paramRsp;
1400 ClCellParam *cellParam = NULLP;
1402 paramRsp = (fapi_param_resp_t *)msg;
1403 DU_LOG("\nINFO --> LWR_MAC: Received EVENT[%d] at STATE[%d]", lwrMacCb.event, lwrMacCb.phyState);
1405 if(paramRsp != NULLP)
1407 MAC_ALLOC(cellParam, sizeof(ClCellParam));
1408 if(cellParam != NULLP)
1410 DU_LOG("\nDEBUG --> LWR_MAC: Filling TLVS into MAC API");
1411 if(paramRsp->error_code == MSG_OK)
1413 for(index = 0; index < paramRsp->number_of_tlvs; index++)
1415 switch(paramRsp->tlvs[index].tl.tag)
1417 case FAPI_RELEASE_CAPABILITY_TAG:
1418 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_16);
1419 if(encodedVal != RFAILED && (encodedVal & RELEASE_15) == RELEASE_15)
1421 cellParam->releaseCapability = RELEASE_15;
1425 case FAPI_PHY_STATE_TAG:
1426 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1427 if(encodedVal != RFAILED && encodedVal != lwrMacCb.phyState)
1429 DU_LOG("\nERROR --> PhyState mismatch [%d][%d]", lwrMacCb.phyState, lwrMacCb.event);
1434 case FAPI_SKIP_BLANK_DL_CONFIG_TAG:
1435 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1436 if(encodedVal != RFAILED && encodedVal != 0)
1438 cellParam->skipBlankDlConfig = SUPPORTED;
1442 cellParam->skipBlankDlConfig = NOT_SUPPORTED;
1446 case FAPI_SKIP_BLANK_UL_CONFIG_TAG:
1447 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1448 if(encodedVal != RFAILED && encodedVal != 0)
1450 cellParam->skipBlankUlConfig = SUPPORTED;
1454 cellParam->skipBlankUlConfig = NOT_SUPPORTED;
1458 case FAPI_NUM_CONFIG_TLVS_TO_REPORT_TYPE_TAG:
1459 cellParam->numTlvsToReport = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_16);
1462 case FAPI_CYCLIC_PREFIX_TAG:
1463 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1464 if(encodedVal != RFAILED)
1466 fillCyclicPrefix(encodedVal, &cellParam);
1470 case FAPI_SUPPORTED_SUBCARRIER_SPACING_DL_TAG:
1471 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1472 if(encodedVal != RFAILED)
1474 fillSubcarrierSpaceDl(encodedVal, &cellParam);
1478 case FAPI_SUPPORTED_BANDWIDTH_DL_TAG:
1479 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_16);
1480 if(encodedVal != RFAILED)
1482 fillBandwidthDl(encodedVal, &cellParam);
1486 case FAPI_SUPPORTED_SUBCARRIER_SPACING_UL_TAG:
1487 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1488 if(encodedVal != RFAILED)
1490 fillSubcarrierSpaceUl(encodedVal, &cellParam);
1494 case FAPI_SUPPORTED_BANDWIDTH_UL_TAG:
1495 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_16);
1496 if(encodedVal != RFAILED)
1498 fillBandwidthUl(encodedVal, &cellParam);
1502 case FAPI_CCE_MAPPING_TYPE_TAG:
1503 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1504 if(encodedVal != RFAILED)
1506 fillCCEmaping(encodedVal, &cellParam);
1510 case FAPI_CORESET_OUTSIDE_FIRST_3_OFDM_SYMS_OF_SLOT_TAG:
1511 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1512 if(encodedVal != RFAILED && encodedVal != 0)
1514 cellParam->coresetOutsideFirst3OfdmSymsOfSlot = SUPPORTED;
1518 cellParam->coresetOutsideFirst3OfdmSymsOfSlot = NOT_SUPPORTED;
1522 case FAPI_PRECODER_GRANULARITY_CORESET_TAG:
1523 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1524 if(encodedVal != RFAILED && encodedVal != 0)
1526 cellParam->precoderGranularityCoreset = SUPPORTED;
1530 cellParam->precoderGranularityCoreset = NOT_SUPPORTED;
1534 case FAPI_PDCCH_MU_MIMO_TAG:
1535 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1536 if(encodedVal != RFAILED && encodedVal != 0)
1538 cellParam->pdcchMuMimo = SUPPORTED;
1542 cellParam->pdcchMuMimo = NOT_SUPPORTED;
1546 case FAPI_PDCCH_PRECODER_CYCLING_TAG:
1547 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1548 if(encodedVal != RFAILED && encodedVal != 0)
1550 cellParam->pdcchPrecoderCycling = SUPPORTED;
1554 cellParam->pdcchPrecoderCycling = NOT_SUPPORTED;
1558 case FAPI_MAX_PDCCHS_PER_SLOT_TAG:
1559 cellParam->maxPdcchsPerSlot = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1562 case FAPI_PUCCH_FORMATS_TAG:
1563 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1564 if(encodedVal != RFAILED)
1566 fillPucchFormat(encodedVal, &cellParam);
1570 case FAPI_MAX_PUCCHS_PER_SLOT_TAG:
1571 cellParam->maxPucchsPerSlot = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1574 case FAPI_PDSCH_MAPPING_TYPE_TAG:
1575 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1576 if(encodedVal != RFAILED)
1578 fillPdschMappingType(encodedVal, &cellParam);
1582 case FAPI_PDSCH_ALLOCATION_TYPES_TAG:
1583 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1584 if(encodedVal != RFAILED)
1586 fillPdschAllocationType(encodedVal, &cellParam);
1590 case FAPI_PDSCH_VRB_TO_PRB_MAPPING_TAG:
1591 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1592 if(encodedVal != RFAILED)
1594 fillPrbMappingType(encodedVal, &cellParam);
1598 case FAPI_PDSCH_CBG_TAG:
1599 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1600 if(encodedVal != RFAILED && encodedVal != 0)
1602 cellParam->pdschCbg = SUPPORTED;
1606 cellParam->pdschCbg = NOT_SUPPORTED;
1610 case FAPI_PDSCH_DMRS_CONFIG_TYPES_TAG:
1611 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1612 if(encodedVal != RFAILED)
1614 fillPdschDmrsConfigType(encodedVal, &cellParam);
1618 case FAPI_PDSCH_DMRS_MAX_LENGTH_TAG:
1619 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1620 if(encodedVal != RFAILED)
1622 fillPdschDmrsLength(encodedVal, &cellParam);
1626 case FAPI_PDSCH_DMRS_ADDITIONAL_POS_TAG:
1627 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1628 if(encodedVal != RFAILED)
1630 fillPdschDmrsAddPos(encodedVal, &cellParam);
1634 case FAPI_MAX_PDSCHS_TBS_PER_SLOT_TAG:
1635 cellParam->maxPdschsTBsPerSlot = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1638 case FAPI_MAX_NUMBER_MIMO_LAYERS_PDSCH_TAG:
1639 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1640 if(encodedVal != RFAILED && encodedVal < FAPI_MAX_NUMBERMIMO_LAYERS_PDSCH)
1642 cellParam->maxNumberMimoLayersPdsch = encodedVal;
1646 case FAPI_SUPPORTED_MAX_MODULATION_ORDER_DL_TAG:
1647 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1648 if(encodedVal != RFAILED)
1650 fillModulationOrderDl(encodedVal, &cellParam);
1654 case FAPI_MAX_MU_MIMO_USERS_DL_TAG:
1655 cellParam->maxMuMimoUsersDl = \
1656 getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1659 case FAPI_PDSCH_DATA_IN_DMRS_SYMBOLS_TAG:
1660 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1661 if(encodedVal != RFAILED && encodedVal != 0)
1663 cellParam->pdschDataInDmrsSymbols = SUPPORTED;
1667 cellParam->pdschDataInDmrsSymbols = NOT_SUPPORTED;
1671 case FAPI_PREMPTIONSUPPORT_TAG:
1672 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1673 if(encodedVal != RFAILED && encodedVal != 0)
1675 cellParam->premptionSupport = SUPPORTED;
1679 cellParam->premptionSupport = NOT_SUPPORTED;
1683 case FAPI_PDSCH_NON_SLOT_SUPPORT_TAG:
1684 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1685 if(encodedVal != RFAILED && encodedVal != 0)
1687 cellParam->pdschNonSlotSupport = SUPPORTED;
1691 cellParam->pdschNonSlotSupport = NOT_SUPPORTED;
1695 case FAPI_UCI_MUX_ULSCH_IN_PUSCH_TAG:
1696 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1697 if(encodedVal != RFAILED && encodedVal != 0)
1699 cellParam->uciMuxUlschInPusch = SUPPORTED;
1703 cellParam->uciMuxUlschInPusch = NOT_SUPPORTED;
1707 case FAPI_UCI_ONLY_PUSCH_TAG:
1708 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1709 if(encodedVal != RFAILED && encodedVal != 0)
1711 cellParam->uciOnlyPusch = SUPPORTED;
1715 cellParam->uciOnlyPusch = NOT_SUPPORTED;
1719 case FAPI_PUSCH_FREQUENCY_HOPPING_TAG:
1720 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1721 if(encodedVal != RFAILED && encodedVal != 0)
1723 cellParam->puschFrequencyHopping = SUPPORTED;
1727 cellParam->puschFrequencyHopping = NOT_SUPPORTED;
1731 case FAPI_PUSCH_DMRS_CONFIG_TYPES_TAG:
1732 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1733 if(encodedVal != RFAILED)
1735 fillPuschDmrsConfig(encodedVal, &cellParam);
1739 case FAPI_PUSCH_DMRS_MAX_LEN_TAG:
1740 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1741 if(encodedVal != RFAILED)
1743 fillPuschDmrsLength(encodedVal, &cellParam);
1747 case FAPI_PUSCH_DMRS_ADDITIONAL_POS_TAG:
1748 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1749 if(encodedVal != RFAILED)
1751 fillPuschDmrsAddPos(encodedVal, &cellParam);
1755 case FAPI_PUSCH_CBG_TAG:
1756 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1757 if(encodedVal != RFAILED && encodedVal != 0)
1759 cellParam->puschCbg = SUPPORTED;
1763 cellParam->puschCbg = NOT_SUPPORTED;
1767 case FAPI_PUSCH_MAPPING_TYPE_TAG:
1768 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1769 if(encodedVal != RFAILED)
1771 fillPuschMappingType(encodedVal, &cellParam);
1775 case FAPI_PUSCH_ALLOCATION_TYPES_TAG:
1776 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1777 if(encodedVal != RFAILED)
1779 fillPuschAllocationType(encodedVal, &cellParam);
1783 case FAPI_PUSCH_VRB_TO_PRB_MAPPING_TAG:
1784 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1785 if(encodedVal != RFAILED)
1787 fillPuschPrbMappingType(encodedVal, &cellParam);
1791 case FAPI_PUSCH_MAX_PTRS_PORTS_TAG:
1792 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1793 if(encodedVal != RFAILED && encodedVal < FAPI_PUSCH_MAX_PTRS_PORTS_UB)
1795 cellParam->puschMaxPtrsPorts = encodedVal;
1799 case FAPI_MAX_PDUSCHS_TBS_PER_SLOT_TAG:
1800 cellParam->maxPduschsTBsPerSlot = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1803 case FAPI_MAX_NUMBER_MIMO_LAYERS_NON_CB_PUSCH_TAG:
1804 cellParam->maxNumberMimoLayersNonCbPusch = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1807 case FAPI_SUPPORTED_MODULATION_ORDER_UL_TAG:
1808 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1809 if(encodedVal != RFAILED)
1811 fillModulationOrderUl(encodedVal, &cellParam);
1815 case FAPI_MAX_MU_MIMO_USERS_UL_TAG:
1816 cellParam->maxMuMimoUsersUl = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1819 case FAPI_DFTS_OFDM_SUPPORT_TAG:
1820 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1821 if(encodedVal != RFAILED && encodedVal != 0)
1823 cellParam->dftsOfdmSupport = SUPPORTED;
1827 cellParam->dftsOfdmSupport = NOT_SUPPORTED;
1831 case FAPI_PUSCH_AGGREGATION_FACTOR_TAG:
1832 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1833 if(encodedVal != RFAILED)
1835 fillPuschAggregationFactor(encodedVal, &cellParam);
1839 case FAPI_PRACH_LONG_FORMATS_TAG:
1840 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1841 if(encodedVal != RFAILED)
1843 fillPrachLongFormat(encodedVal, &cellParam);
1847 case FAPI_PRACH_SHORT_FORMATS_TAG:
1848 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1849 if(encodedVal != RFAILED)
1851 fillPrachShortFormat(encodedVal, &cellParam);
1855 case FAPI_PRACH_RESTRICTED_SETS_TAG:
1856 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1857 if(encodedVal != RFAILED && encodedVal != 0)
1859 cellParam->prachRestrictedSets = SUPPORTED;
1863 cellParam->prachRestrictedSets = NOT_SUPPORTED;
1867 case FAPI_MAX_PRACH_FD_OCCASIONS_IN_A_SLOT_TAG:
1868 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1869 if(encodedVal != RFAILED)
1871 fillFdOccasions(encodedVal, &cellParam);
1875 case FAPI_RSSI_MEASUREMENT_SUPPORT_TAG:
1876 encodedVal = getParamValue(¶mRsp->tlvs[index], FAPI_UINT_8);
1877 if(encodedVal != RFAILED)
1879 fillRssiMeas(encodedVal, &cellParam);
1883 //DU_LOG("\nERROR --> Invalid value for TLV[%x] at index[%d]", paramRsp->tlvs[index].tl.tag, index);
1887 MAC_FREE(cellParam, sizeof(ClCellParam));
1888 sendToLowerMac(FAPI_CONFIG_REQUEST, 0, (void *)NULL);
1893 DU_LOG("\nERROR --> LWR_MAC: Invalid error code %d", paramRsp->error_code);
1899 DU_LOG("\nERROR --> LWR_MAC: Failed to allocate memory for cell param");
1905 DU_LOG("\nERROR --> LWR_MAC: Param Response received from PHY is NULL");
1913 #ifdef INTEL_TIMER_MODE
1914 uint8_t lwr_mac_procIqSamplesReqEvt(void *msg)
1916 void * wlsHdlr = NULLP;
1917 fapi_msg_header_t *msgHeader;
1918 fapi_vendor_ext_iq_samples_req_t *iqSampleReq;
1919 p_fapi_api_queue_elem_t headerElem;
1920 p_fapi_api_queue_elem_t iqSampleElem;
1921 char filename[100] = "/root/intel/FlexRAN/testcase/ul/mu0_20mhz/2/uliq00_prach_tst2.bin";
1923 uint8_t buffer[] ={0,0,0,0,0,2,11,0,212,93,40,0,20,137,38,0,20,0,20,0,0,8,0,8,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,255,0,0,0,0,0,0,0,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,128,1,0,0,0,0,0,0,1,0,2,0,0,0,0,0,0,0,1,0};
1925 size_t bufferSize = sizeof(buffer) / sizeof(buffer[0]);
1927 /* Fill IQ sample req */
1928 mtGetWlsHdl(&wlsHdlr);
1929 //iqSampleElem = (p_fapi_api_queue_elem_t)WLS_Alloc(wlsHdlr, \
1930 (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_ext_iq_samples_req_t)));
1931 LWR_MAC_ALLOC(iqSampleElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_ext_iq_samples_req_t)));
1934 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for IQ sample req");
1937 FILL_FAPI_LIST_ELEM(iqSampleElem, NULLP, FAPI_VENDOR_EXT_UL_IQ_SAMPLES, 1, \
1938 sizeof(fapi_vendor_ext_iq_samples_req_t));
1940 iqSampleReq = (fapi_vendor_ext_iq_samples_req_t *)(iqSampleElem + 1);
1941 memset(iqSampleReq, 0, sizeof(fapi_vendor_ext_iq_samples_req_t));
1942 fillMsgHeader(&iqSampleReq->header, FAPI_VENDOR_EXT_UL_IQ_SAMPLES, \
1943 sizeof(fapi_vendor_ext_iq_samples_req_t));
1945 iqSampleReq->iq_samples_info.carrNum = 0;
1946 iqSampleReq->iq_samples_info.numSubframes = 40;
1947 iqSampleReq->iq_samples_info.nIsRadioMode = 0;
1948 iqSampleReq->iq_samples_info.timerModeFreqDomain = 0;
1949 iqSampleReq->iq_samples_info.phaseCompensationEnable = 0;
1950 iqSampleReq->iq_samples_info.startFrameNum = 0;
1951 iqSampleReq->iq_samples_info.startSlotNum = 0;
1952 iqSampleReq->iq_samples_info.startSymNum = 0;
1953 strncpy(iqSampleReq->iq_samples_info.filename_in_ul_iq[0], filename, 100);
1954 memcpy(iqSampleReq->iq_samples_info.buffer, buffer, bufferSize);
1956 /* TODO : Fill remaining parameters */
1958 /* Fill message header */
1959 LWR_MAC_ALLOC(headerElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_msg_header_t)));
1962 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for FAPI header in lwr_mac_procIqSamplesReqEvt");
1965 FILL_FAPI_LIST_ELEM(headerElem, iqSampleElem, FAPI_VENDOR_MSG_HEADER_IND, 1, \
1966 sizeof(fapi_msg_header_t));
1967 msgHeader = (fapi_msg_header_t *)(headerElem + 1);
1968 msgHeader->num_msg = 1;
1969 msgHeader->handle = 0;
1971 DU_LOG("\nINFO --> LWR_MAC: Sending IQ Sample request to Phy");
1972 LwrMacSendToL1(headerElem);
1977 /*******************************************************************
1979 * @brief Sends FAPI Config req to PHY
1983 * Function : lwr_mac_procConfigReqEvt
1986 * -Sends FAPI Config Req to PHY
1989 * @return ROK - success
1992 * ****************************************************************/
1994 uint8_t lwr_mac_procConfigReqEvt(void *msg)
1997 #ifdef CALL_FLOW_DEBUG_LOG
1998 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : CONFIG_REQ\n");
2001 uint8_t slotIdx = 0;
2002 uint8_t symbolIdx =0;
2005 uint16_t *cellId =NULLP;
2006 uint16_t cellIdx =0;
2007 uint32_t msgLen = 0;
2009 MacCellCfg macCfgParams;
2010 fapi_vendor_msg_t *vendorMsg;
2011 fapi_config_req_t *configReq;
2012 fapi_msg_header_t *msgHeader;
2013 p_fapi_api_queue_elem_t headerElem;
2014 p_fapi_api_queue_elem_t vendorMsgQElem;
2015 p_fapi_api_queue_elem_t cfgReqQElem;
2017 DU_LOG("\nINFO --> LWR_MAC: Received EVENT[%d] at STATE[%d]", lwrMacCb.event, \
2020 cellId = (uint16_t *)msg;
2021 GET_CELL_IDX(*cellId, cellIdx);
2022 macCfgParams = macCb.macCell[cellIdx]->macCellCfg;
2024 /* Fill Cell Configuration in lwrMacCb */
2025 memset(&lwrMacCb.cellCb[lwrMacCb.numCell], 0, sizeof(LwrMacCellCb));
2026 lwrMacCb.cellCb[lwrMacCb.numCell].cellId = macCfgParams.cellId;
2027 lwrMacCb.cellCb[lwrMacCb.numCell].phyCellId = macCfgParams.phyCellId;
2030 /* Allocte And fill Vendor msg */
2031 LWR_MAC_ALLOC(vendorMsgQElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2034 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for vendor msg in config req");
2037 FILL_FAPI_LIST_ELEM(vendorMsgQElem, NULLP, FAPI_VENDOR_MESSAGE, 1, sizeof(fapi_vendor_msg_t));
2038 vendorMsg = (fapi_vendor_msg_t *)(vendorMsgQElem + 1);
2039 fillMsgHeader(&vendorMsg->header, FAPI_VENDOR_MESSAGE, sizeof(fapi_vendor_msg_t));
2040 vendorMsg->config_req_vendor.hopping_id = 0;
2041 vendorMsg->config_req_vendor.carrier_aggregation_level = 0;
2042 vendorMsg->config_req_vendor.group_hop_flag = 0;
2043 vendorMsg->config_req_vendor.sequence_hop_flag = 0;
2044 vendorMsg->start_req_vendor.sfn = 0;
2045 vendorMsg->start_req_vendor.slot = 0;
2046 vendorMsg->start_req_vendor.mode = 4;
2048 vendorMsg->start_req_vendor.count = 0;
2049 vendorMsg->start_req_vendor.period = 1;
2051 /* Fill FAPI config req */
2052 LWR_MAC_ALLOC(cfgReqQElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_config_req_t)));
2055 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for config req");
2056 LWR_MAC_ALLOC(vendorMsgQElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2059 FILL_FAPI_LIST_ELEM(cfgReqQElem, vendorMsgQElem, FAPI_CONFIG_REQUEST, 1, \
2060 sizeof(fapi_config_req_t));
2062 configReq = (fapi_config_req_t *)(cfgReqQElem + 1);
2063 memset(configReq, 0, sizeof(fapi_config_req_t));
2064 fillMsgHeader(&configReq->header, FAPI_CONFIG_REQUEST, sizeof(fapi_config_req_t));
2065 configReq->number_of_tlvs = 25;
2066 msgLen = sizeof(configReq->number_of_tlvs);
2068 if(macCfgParams.dlCarrCfg.pres)
2070 fillTlvs(&configReq->tlvs[index++], FAPI_DL_BANDWIDTH_TAG, \
2071 sizeof(uint32_t), macCfgParams.dlCarrCfg.bw, &msgLen);
2072 fillTlvs(&configReq->tlvs[index++], FAPI_DL_FREQUENCY_TAG, \
2073 sizeof(uint32_t), macCfgParams.dlCarrCfg.freq, &msgLen);
2074 /* Due to bug in Intel FT code, commenting TLVs that are are not
2075 * needed to avoid error. Must be uncommented when FT bug is fixed */
2076 //fillTlvs(&configReq->tlvs[index++], FAPI_DL_K0_TAG, \
2077 sizeof(uint16_t), macCfgParams.dlCarrCfg.k0[0], &msgLen);
2078 //fillTlvs(&configReq->tlvs[index++], FAPI_DL_GRIDSIZE_TAG, \
2079 sizeof(uint16_t), macCfgParams.dlCarrCfg.gridSize[0], &msgLen);
2080 fillTlvs(&configReq->tlvs[index++], FAPI_NUM_TX_ANT_TAG, \
2081 sizeof(uint16_t), macCfgParams.dlCarrCfg.numAnt, &msgLen);
2083 if(macCfgParams.ulCarrCfg.pres)
2085 fillTlvs(&configReq->tlvs[index++], FAPI_UPLINK_BANDWIDTH_TAG, \
2086 sizeof(uint32_t), macCfgParams.ulCarrCfg.bw, &msgLen);
2087 fillTlvs(&configReq->tlvs[index++], FAPI_UPLINK_FREQUENCY_TAG, \
2088 sizeof(uint32_t), macCfgParams.ulCarrCfg.freq, &msgLen);
2089 //fillTlvs(&configReq->tlvs[index++], FAPI_UL_K0_TAG, \
2090 sizeof(uint16_t), macCfgParams.ulCarrCfg.k0[0], &msgLen);
2091 //fillTlvs(&configReq->tlvs[index++], FAPI_UL_GRID_SIZE_TAG, \
2092 sizeof(uint16_t), macCfgParams.ulCarrCfg.gridSize[0], &msgLen);
2093 fillTlvs(&configReq->tlvs[index++], FAPI_NUM_RX_ANT_TAG, \
2094 sizeof(uint16_t), macCfgParams.ulCarrCfg.numAnt, &msgLen);
2096 //fillTlvs(&configReq->tlvs[index++], FAPI_FREQUENCY_SHIFT_7P5_KHZ_TAG, \
2097 sizeof(uint8_t), macCfgParams.freqShft, &msgLen);
2099 /* fill cell config */
2100 fillTlvs(&configReq->tlvs[index++], FAPI_PHY_CELL_ID_TAG, \
2101 sizeof(uint8_t), macCfgParams.phyCellId, &msgLen);
2102 fillTlvs(&configReq->tlvs[index++], FAPI_FRAME_DUPLEX_TYPE_TAG, \
2103 sizeof(uint8_t), macCfgParams.dupType, &msgLen);
2105 /* fill SSB configuration */
2106 fillTlvs(&configReq->tlvs[index++], FAPI_SS_PBCH_POWER_TAG, \
2107 sizeof(uint32_t), macCfgParams.ssbCfg.ssbPbchPwr, &msgLen);
2108 //fillTlvs(&configReq->tlvs[index++], FAPI_BCH_PAYLOAD_TAG, \
2109 sizeof(uint8_t), macCfgParams.ssbCfg.bchPayloadFlag, &msgLen);
2110 fillTlvs(&configReq->tlvs[index++], FAPI_SCS_COMMON_TAG, \
2111 sizeof(uint8_t), macCfgParams.ssbCfg.scsCmn, &msgLen);
2113 /* fill PRACH configuration */
2114 //fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_SEQUENCE_LENGTH_TAG, \
2115 sizeof(uint8_t), macCfgParams.prachCfg.prachSeqLen, &msgLen);
2116 fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_SUBC_SPACING_TAG, \
2117 sizeof(uint8_t), macCfgParams.prachCfg.prachSubcSpacing, &msgLen);
2118 fillTlvs(&configReq->tlvs[index++], FAPI_RESTRICTED_SET_CONFIG_TAG, \
2119 sizeof(uint8_t), macCfgParams.prachCfg.prachRstSetCfg, &msgLen);
2120 fillTlvs(&configReq->tlvs[index++], FAPI_NUM_PRACH_FD_OCCASIONS_TAG,
2121 sizeof(uint8_t), macCfgParams.prachCfg.msg1Fdm, &msgLen);
2122 fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_CONFIG_INDEX_TAG,
2123 sizeof(uint8_t), macCfgParams.prachCfg.prachCfgIdx, &msgLen);
2124 fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_ROOT_SEQUENCE_INDEX_TAG, \
2125 sizeof(uint16_t), macCfgParams.prachCfg.fdm[0].rootSeqIdx, &msgLen);
2126 //fillTlvs(&configReq->tlvs[index++], FAPI_NUM_ROOT_SEQUENCES_TAG, \
2127 sizeof(uint8_t), macCfgParams.prachCfg.fdm[0].numRootSeq, &msgLen);
2128 fillTlvs(&configReq->tlvs[index++], FAPI_K1_TAG, \
2129 sizeof(uint16_t), macCfgParams.prachCfg.fdm[0].k1, &msgLen);
2130 fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_ZERO_CORR_CONF_TAG , \
2131 sizeof(uint8_t), macCfgParams.prachCfg.fdm[0].zeroCorrZoneCfg, &msgLen);
2132 //fillTlvs(&configReq->tlvs[index++], FAPI_NUM_UNUSED_ROOT_SEQUENCES_TAG, \
2133 sizeof(uint8_t), macCfgParams.prachCfg.fdm[0].numUnusedRootSeq, &msgLen);
2134 /* if(macCfgParams.prachCfg.fdm[0].numUnusedRootSeq)
2136 for(idx = 0; idx < macCfgParams.prachCfg.fdm[0].numUnusedRootSeq; idx++)
2137 fillTlvs(&configReq->tlvs[index++], FAPI_UNUSED_ROOT_SEQUENCES_TAG, \
2138 sizeof(uint8_t), macCfgParams.prachCfg.fdm[0].unsuedRootSeq[idx], \
2143 macCfgParams.prachCfg.fdm[0].unsuedRootSeq = NULL;
2146 fillTlvs(&configReq->tlvs[index++], FAPI_SSB_PER_RACH_TAG, \
2147 sizeof(uint8_t), macCfgParams.prachCfg.ssbPerRach, &msgLen);
2148 //fillTlvs(&configReq->tlvs[index++], FAPI_PRACH_MULTIPLE_CARRIERS_IN_A_BAND_TAG, \
2149 sizeof(uint8_t), macCfgParams.prachCfg.prachMultCarrBand, &msgLen);
2151 /* fill SSB table */
2152 fillTlvs(&configReq->tlvs[index++], FAPI_SSB_OFFSET_POINT_A_TAG, \
2153 sizeof(uint16_t), macCfgParams.ssbCfg.ssbOffsetPointA, &msgLen);
2154 //fillTlvs(&configReq->tlvs[index++], FAPI_BETA_PSS_TAG, \
2155 sizeof(uint8_t), macCfgParams.ssbCfg.betaPss, &msgLen);
2156 fillTlvs(&configReq->tlvs[index++], FAPI_SSB_PERIOD_TAG, \
2157 sizeof(uint8_t), macCfgParams.ssbCfg.ssbPeriod, &msgLen);
2158 fillTlvs(&configReq->tlvs[index++], FAPI_SSB_SUBCARRIER_OFFSET_TAG, \
2159 sizeof(uint8_t), macCfgParams.ssbCfg.ssbScOffset, &msgLen);
2161 setMibPdu(macCfgParams.ssbCfg.mibPdu, &mib, 0);
2162 fillTlvs(&configReq->tlvs[index++], FAPI_MIB_TAG , \
2163 sizeof(uint32_t), mib, &msgLen);
2165 fillTlvs(&configReq->tlvs[index++], FAPI_SSB_MASK_TAG, \
2166 sizeof(uint32_t), macCfgParams.ssbCfg.ssbMask[0], &msgLen);
2167 fillTlvs(&configReq->tlvs[index++], FAPI_BEAM_ID_TAG, \
2168 sizeof(uint8_t), macCfgParams.ssbCfg.beamId[0], &msgLen);
2169 //fillTlvs(&configReq->tlvs[index++], FAPI_SS_PBCH_MULTIPLE_CARRIERS_IN_A_BAND_TAG, \
2170 sizeof(uint8_t), macCfgParams.ssbCfg.multCarrBand, &msgLen);
2171 //fillTlvs(&configReq->tlvs[index++], FAPI_MULTIPLE_CELLS_SS_PBCH_IN_A_CARRIER_TAG, \
2172 sizeof(uint8_t), macCfgParams.ssbCfg.multCellCarr, &msgLen);
2175 /* fill TDD table */
2176 fillTlvs(&configReq->tlvs[index++], FAPI_TDD_PERIOD_TAG, \
2177 sizeof(uint8_t), macCfgParams.tddCfg.tddPeriod, &msgLen);
2178 for(slotIdx =0 ;slotIdx< MAX_TDD_PERIODICITY_SLOTS; slotIdx++)
2180 for(symbolIdx = 0; symbolIdx< MAX_SYMB_PER_SLOT; symbolIdx++)
2182 fillTlvs(&configReq->tlvs[index++], FAPI_SLOT_CONFIG_TAG, \
2183 sizeof(uint8_t), macCfgParams.tddCfg.slotCfg[slotIdx][symbolIdx], &msgLen);
2188 /* fill measurement config */
2189 //fillTlvs(&configReq->tlvs[index++], FAPI_RSSI_MEASUREMENT_TAG, \
2190 sizeof(uint8_t), macCfgParams.rssiUnit, &msgLen);
2192 /* fill DMRS Type A Pos */
2193 fillTlvs(&configReq->tlvs[index++], FAPI_DMRS_TYPE_A_POS_TAG, \
2194 sizeof(uint8_t), macCfgParams.dmrsTypeAPos, &msgLen);
2196 /* Fill message header */
2197 LWR_MAC_ALLOC(headerElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_msg_header_t)));
2200 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for vendor msg in config req");
2201 LWR_MAC_ALLOC(cfgReqQElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_config_req_t)));
2202 LWR_MAC_ALLOC(vendorMsgQElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2205 FILL_FAPI_LIST_ELEM(headerElem, cfgReqQElem, FAPI_VENDOR_MSG_HEADER_IND, 1, \
2206 sizeof(fapi_msg_header_t));
2207 msgHeader = (fapi_msg_header_t *)(headerElem + 1);
2208 msgHeader->num_msg = 2; /* Config req msg and vendor specific msg */
2209 msgHeader->handle = 0;
2211 DU_LOG("\nDEBUG --> LWR_MAC: Sending Config Request to Phy");
2212 LwrMacSendToL1(headerElem);
2216 } /* lwr_mac_handleConfigReqEvt */
2218 /*******************************************************************
2220 * @brief Processes config response from phy
2224 * Function : lwr_mac_procConfigRspEvt
2227 * Processes config response from phy
2229 * @params[in] FAPI message pointer
2230 * @return ROK - success
2233 * ****************************************************************/
2235 uint8_t lwr_mac_procConfigRspEvt(void *msg)
2238 fapi_config_resp_t *configRsp;
2239 configRsp = (fapi_config_resp_t *)msg;
2241 DU_LOG("\nINFO --> LWR_MAC: Received EVENT[%d] at STATE[%d]", lwrMacCb.event, \
2244 if(configRsp != NULL)
2246 if(configRsp->error_code == MSG_OK)
2248 DU_LOG("\nDEBUG --> LWR_MAC: PHY has moved to Configured state \n");
2249 lwrMacCb.phyState = PHY_STATE_CONFIGURED;
2250 lwrMacCb.cellCb[0].state = PHY_STATE_CONFIGURED;
2252 * Store config response into an intermediate struture and send to MAC
2253 * Support LC and LWLC for sending config rsp to MAC
2255 fapiMacConfigRsp(lwrMacCb.cellCb[0].cellId);
2259 DU_LOG("\nERROR --> LWR_MAC: Invalid error code %d", configRsp->error_code);
2265 DU_LOG("\nERROR --> LWR_MAC: Config Response received from PHY is NULL");
2271 } /* lwr_mac_procConfigRspEvt */
2273 /*******************************************************************
2275 * @brief Build and send start request to phy
2279 * Function : lwr_mac_procStartReqEvt
2282 * Build and send start request to phy
2284 * @params[in] FAPI message pointer
2285 * @return ROK - success
2288 * ****************************************************************/
2289 uint8_t lwr_mac_procStartReqEvt(void *msg)
2292 #ifdef CALL_FLOW_DEBUG_LOG
2293 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : START_REQ\n");
2295 fapi_msg_header_t *msgHeader;
2296 fapi_start_req_t *startReq;
2297 fapi_vendor_msg_t *vendorMsg;
2298 p_fapi_api_queue_elem_t headerElem;
2299 p_fapi_api_queue_elem_t startReqElem;
2300 p_fapi_api_queue_elem_t vendorMsgElem;
2302 /* Allocte And fill Vendor msg */
2303 LWR_MAC_ALLOC(vendorMsgElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2306 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for vendor msg in start req");
2309 FILL_FAPI_LIST_ELEM(vendorMsgElem, NULLP, FAPI_VENDOR_MESSAGE, 1, sizeof(fapi_vendor_msg_t));
2310 vendorMsg = (fapi_vendor_msg_t *)(vendorMsgElem + 1);
2311 fillMsgHeader(&vendorMsg->header, FAPI_VENDOR_MESSAGE, sizeof(fapi_vendor_msg_t));
2312 vendorMsg->start_req_vendor.sfn = 0;
2313 vendorMsg->start_req_vendor.slot = 0;
2314 vendorMsg->start_req_vendor.mode = 4; /* for Radio mode */
2316 vendorMsg->start_req_vendor.count = 0;
2317 vendorMsg->start_req_vendor.period = 1;
2320 /* Fill FAPI config req */
2321 LWR_MAC_ALLOC(startReqElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_start_req_t)));
2324 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for start req");
2325 LWR_MAC_ALLOC(vendorMsgElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2328 FILL_FAPI_LIST_ELEM(startReqElem, vendorMsgElem, FAPI_START_REQUEST, 1, \
2329 sizeof(fapi_start_req_t));
2331 startReq = (fapi_start_req_t *)(startReqElem + 1);
2332 memset(startReq, 0, sizeof(fapi_start_req_t));
2333 fillMsgHeader(&startReq->header, FAPI_START_REQUEST, sizeof(fapi_start_req_t));
2335 /* Fill message header */
2336 LWR_MAC_ALLOC(headerElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_msg_header_t)));
2339 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for vendor msg in config req");
2340 LWR_MAC_ALLOC(startReqElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_start_req_t)));
2341 LWR_MAC_ALLOC(vendorMsgElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2344 FILL_FAPI_LIST_ELEM(headerElem, startReqElem, FAPI_VENDOR_MSG_HEADER_IND, 1, \
2345 sizeof(fapi_msg_header_t));
2346 msgHeader = (fapi_msg_header_t *)(headerElem + 1);
2347 msgHeader->num_msg = 2; /* Start req msg and vendor specific msg */
2348 msgHeader->handle = 0;
2351 DU_LOG("\nDEBUG --> LWR_MAC: Sending Start Request to Phy");
2352 LwrMacSendToL1(headerElem);
2355 } /* lwr_mac_procStartReqEvt */
2357 /*******************************************************************
2359 * @brief Sends FAPI Stop Req to PHY
2363 * Function : lwr_mac_procStopReqEvt
2366 * -Sends FAPI Stop Req to PHY
2369 * @return ROK - success
2372 ********************************************************************/
2374 uint8_t lwr_mac_procStopReqEvt(SlotTimingInfo slotInfo, p_fapi_api_queue_elem_t prevElem)
2377 #ifdef CALL_FLOW_DEBUG_LOG
2378 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : STOP_REQ\n");
2381 fapi_stop_req_t *stopReq;
2382 fapi_vendor_msg_t *vendorMsg;
2383 p_fapi_api_queue_elem_t stopReqElem;
2384 p_fapi_api_queue_elem_t vendorMsgElem;
2386 /* Allocte And fill Vendor msg */
2387 LWR_MAC_ALLOC(vendorMsgElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2390 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for vendor msg in stop req");
2393 FILL_FAPI_LIST_ELEM(vendorMsgElem, NULLP, FAPI_VENDOR_MESSAGE, 1, sizeof(fapi_vendor_msg_t));
2394 vendorMsg = (fapi_vendor_msg_t *)(vendorMsgElem + 1);
2395 fillMsgHeader(&vendorMsg->header, FAPI_VENDOR_MESSAGE, sizeof(fapi_vendor_msg_t));
2396 vendorMsg->stop_req_vendor.sfn = slotInfo.sfn;
2397 vendorMsg->stop_req_vendor.slot = slotInfo.slot;
2399 /* Fill FAPI stop req */
2400 LWR_MAC_ALLOC(stopReqElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_stop_req_t)));
2403 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for stop req");
2404 LWR_MAC_FREE(vendorMsgElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_vendor_msg_t)));
2407 FILL_FAPI_LIST_ELEM(stopReqElem, vendorMsgElem, FAPI_STOP_REQUEST, 1, \
2408 sizeof(fapi_stop_req_t));
2409 stopReq = (fapi_stop_req_t *)(stopReqElem + 1);
2410 memset(stopReq, 0, sizeof(fapi_stop_req_t));
2411 fillMsgHeader(&stopReq->header, FAPI_STOP_REQUEST, sizeof(fapi_stop_req_t));
2414 DU_LOG("\nINFO --> LWR_MAC: Sending Stop Request to Phy");
2415 prevElem->p_next = stopReqElem;
2422 /*******************************************************************
2424 * @brief fills SSB PDU required for DL TTI info in MAC
2428 * Function : fillSsbPdu
2431 * -Fills the SSB PDU info
2434 * @params[in] Pointer to FAPI DL TTI Req
2435 * Pointer to RgCellCb
2436 * Pointer to msgLen of DL TTI Info
2439 ******************************************************************/
2441 uint8_t fillSsbPdu(fapi_dl_tti_req_pdu_t *dlTtiReqPdu, MacCellCfg *macCellCfg,
2442 MacDlSlot *currDlSlot, uint8_t ssbIdxCount, uint16_t sfn)
2444 uint32_t mibPayload = 0;
2445 if(dlTtiReqPdu != NULL)
2447 dlTtiReqPdu->pduType = SSB_PDU_TYPE; /* SSB PDU */
2448 dlTtiReqPdu->pdu.ssb_pdu.physCellId = macCellCfg->phyCellId;
2449 dlTtiReqPdu->pdu.ssb_pdu.betaPss = macCellCfg->ssbCfg.betaPss;
2450 dlTtiReqPdu->pdu.ssb_pdu.ssbBlockIndex = currDlSlot->dlInfo.brdcstAlloc.ssbInfo[ssbIdxCount].ssbIdx;
2451 dlTtiReqPdu->pdu.ssb_pdu.ssbSubCarrierOffset = macCellCfg->ssbCfg.ssbScOffset;
2452 /* ssbOfPdufstA to be filled in ssbCfg */
2453 dlTtiReqPdu->pdu.ssb_pdu.ssbOffsetPointA = macCellCfg->ssbCfg.ssbOffsetPointA;
2454 dlTtiReqPdu->pdu.ssb_pdu.bchPayloadFlag = macCellCfg->ssbCfg.bchPayloadFlag;
2455 /* Bit manipulation for SFN */
2456 setMibPdu(macCellCfg->ssbCfg.mibPdu, &mibPayload, sfn);
2457 dlTtiReqPdu->pdu.ssb_pdu.bchPayload.bchPayload = mibPayload;
2458 dlTtiReqPdu->pdu.ssb_pdu.preCodingAndBeamforming.numPrgs = 0;
2459 dlTtiReqPdu->pdu.ssb_pdu.preCodingAndBeamforming.prgSize = 0;
2460 dlTtiReqPdu->pdu.ssb_pdu.preCodingAndBeamforming.digBfInterfaces = 0;
2461 dlTtiReqPdu->pdu.ssb_pdu.preCodingAndBeamforming.pmi_bfi[0].pmIdx = 0;
2462 dlTtiReqPdu->pdu.ssb_pdu.preCodingAndBeamforming. \
2463 pmi_bfi[0].beamIdx[0].beamidx = macCellCfg->ssbCfg.beamId[0];
2464 dlTtiReqPdu->pduSize = sizeof(fapi_dl_ssb_pdu_t); /* Size of SSB PDU */
2471 /*******************************************************************
2473 * @brief fills Dl DCI PDU required for DL TTI info in MAC
2477 * Function : fillSib1DlDciPdu
2480 * -Fills the Dl DCI PDU
2482 * @params[in] Pointer to fapi_dl_dci_t
2483 * Pointer to PdcchCfg
2486 ******************************************************************/
2488 void fillSib1DlDciPdu(fapi_dl_dci_t *dlDciPtr, PdcchCfg *sib1PdcchInfo)
2490 if(dlDciPtr != NULLP)
2496 uint16_t coreset0Size=0;
2499 uint32_t freqDomResAssign=0;
2500 uint32_t timeDomResAssign=0;
2501 uint8_t VRB2PRBMap=0;
2502 uint32_t modNCodScheme=0;
2503 uint8_t redundancyVer=0;
2504 uint32_t sysInfoInd=0;
2505 uint32_t reserved=0;
2507 /* Size(in bits) of each field in DCI format 0_1
2508 * as mentioned in spec 38.214 */
2509 uint8_t freqDomResAssignSize = 0;
2510 uint8_t timeDomResAssignSize = 4;
2511 uint8_t VRB2PRBMapSize = 1;
2512 uint8_t modNCodSchemeSize = 5;
2513 uint8_t redundancyVerSize = 2;
2514 uint8_t sysInfoIndSize = 1;
2515 uint8_t reservedSize = 15;
2517 dlDciPtr->rnti = sib1PdcchInfo->dci.rnti;
2518 dlDciPtr->scramblingId = sib1PdcchInfo->dci.scramblingId;
2519 dlDciPtr->scramblingRnti = sib1PdcchInfo->dci.scramblingRnti;
2520 dlDciPtr->cceIndex = sib1PdcchInfo->dci.cceIndex;
2521 dlDciPtr->aggregationLevel = sib1PdcchInfo->dci.aggregLevel;
2522 dlDciPtr->pc_and_bform.numPrgs = sib1PdcchInfo->dci.beamPdcchInfo.numPrgs;
2523 dlDciPtr->pc_and_bform.prgSize = sib1PdcchInfo->dci.beamPdcchInfo.prgSize;
2524 dlDciPtr->pc_and_bform.digBfInterfaces = sib1PdcchInfo->dci.beamPdcchInfo.digBfInterfaces;
2525 dlDciPtr->pc_and_bform.pmi_bfi[0].pmIdx = sib1PdcchInfo->dci.beamPdcchInfo.prg[0].pmIdx;
2526 dlDciPtr->pc_and_bform.pmi_bfi[0].beamIdx[0].beamidx = sib1PdcchInfo->dci.beamPdcchInfo.prg[0].beamIdx[0];
2527 dlDciPtr->beta_pdcch_1_0 = sib1PdcchInfo->dci.txPdcchPower.powerValue;
2528 dlDciPtr->powerControlOffsetSS = sib1PdcchInfo->dci.txPdcchPower.powerControlOffsetSS;
2530 /* Calculating freq domain resource allocation field value and size
2531 * coreset0Size = Size of coreset 0
2532 * RBStart = Starting Virtual Rsource block
2533 * RBLen = length of contiguously allocted RBs
2534 * Spec 38.214 Sec 5.1.2.2.2
2536 coreset0Size= sib1PdcchInfo->coresetCfg.coreSetSize;
2537 rbStart = sib1PdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.startPrb;
2538 rbLen = sib1PdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.numPrb;
2540 if((rbLen >=1) && (rbLen <= coreset0Size - rbStart))
2542 if((rbLen - 1) <= floor(coreset0Size / 2))
2543 freqDomResAssign = (coreset0Size * (rbLen-1)) + rbStart;
2545 freqDomResAssign = (coreset0Size * (coreset0Size - rbLen + 1)) \
2546 + (coreset0Size - 1 - rbStart);
2548 freqDomResAssignSize = ceil(log2(coreset0Size * (coreset0Size + 1) / 2));
2551 /* Fetching DCI field values */
2552 timeDomResAssign = sib1PdcchInfo->dci.pdschCfg->pdschTimeAlloc.rowIndex -1;
2553 VRB2PRBMap = sib1PdcchInfo->dci.pdschCfg->pdschFreqAlloc.vrbPrbMapping;
2554 modNCodScheme = sib1PdcchInfo->dci.pdschCfg->codeword[0].mcsIndex;
2555 redundancyVer = sib1PdcchInfo->dci.pdschCfg->codeword[0].rvIndex;
2556 sysInfoInd = 0; /* 0 for SIB1; 1 for SI messages */
2559 /* Reversing bits in each DCI field */
2560 freqDomResAssign = reverseBits(freqDomResAssign, freqDomResAssignSize);
2561 timeDomResAssign = reverseBits(timeDomResAssign, timeDomResAssignSize);
2562 VRB2PRBMap = reverseBits(VRB2PRBMap, VRB2PRBMapSize);
2563 modNCodScheme = reverseBits(modNCodScheme, modNCodSchemeSize);
2564 redundancyVer = reverseBits(redundancyVer, redundancyVerSize);
2565 sysInfoInd = reverseBits(sysInfoInd, sysInfoIndSize);
2567 /* Calulating total number of bytes in buffer */
2568 dlDciPtr->payloadSizeBits = freqDomResAssignSize + timeDomResAssignSize\
2569 + VRB2PRBMapSize + modNCodSchemeSize + redundancyVerSize\
2570 + sysInfoIndSize + reservedSize;
2572 numBytes = dlDciPtr->payloadSizeBits / 8;
2573 if(dlDciPtr->payloadSizeBits % 8)
2576 if(numBytes > FAPI_DCI_PAYLOAD_BYTE_LEN)
2578 DU_LOG("\nERROR --> LWR_MAC : Total bytes for DCI is more than expected");
2582 /* Initialize buffer */
2583 for(bytePos = 0; bytePos < numBytes; bytePos++)
2584 dlDciPtr->payload[bytePos] = 0;
2586 bytePos = numBytes - 1;
2589 /* Packing DCI format fields */
2590 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2591 freqDomResAssign, freqDomResAssignSize);
2592 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2593 timeDomResAssign, timeDomResAssignSize);
2594 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2595 VRB2PRBMap, VRB2PRBMapSize);
2596 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2597 modNCodScheme, modNCodSchemeSize);
2598 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2599 redundancyVer, redundancyVerSize);
2600 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2601 sysInfoInd, sysInfoIndSize);
2602 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2603 reserved, reservedSize);
2606 } /* fillSib1DlDciPdu */
2608 /*******************************************************************
2610 * @brief fills Dl DCI PDU required for DL TTI info in MAC
2614 * Function : fillRarDlDciPdu
2617 * -Fills the Dl DCI PDU
2619 * @params[in] Pointer to fapi_dl_dci_t
2620 * Pointer to PdcchCfg
2623 ******************************************************************/
2625 void fillRarDlDciPdu(fapi_dl_dci_t *dlDciPtr, PdcchCfg *rarPdcchInfo)
2627 if(dlDciPtr != NULLP)
2629 uint8_t numBytes =0;
2633 uint16_t coreset0Size =0;
2634 uint16_t rbStart =0;
2636 uint32_t freqDomResAssign =0;
2637 uint8_t timeDomResAssign =0;
2638 uint8_t VRB2PRBMap =0;
2639 uint8_t modNCodScheme =0;
2640 uint8_t tbScaling =0;
2641 uint32_t reserved =0;
2643 /* Size(in bits) of each field in DCI format 1_0 */
2644 uint8_t freqDomResAssignSize = 0;
2645 uint8_t timeDomResAssignSize = 4;
2646 uint8_t VRB2PRBMapSize = 1;
2647 uint8_t modNCodSchemeSize = 5;
2648 uint8_t tbScalingSize = 2;
2649 uint8_t reservedSize = 16;
2651 dlDciPtr->rnti = rarPdcchInfo->dci.rnti;
2652 dlDciPtr->scramblingId = rarPdcchInfo->dci.scramblingId;
2653 dlDciPtr->scramblingRnti = rarPdcchInfo->dci.scramblingRnti;
2654 dlDciPtr->cceIndex = rarPdcchInfo->dci.cceIndex;
2655 dlDciPtr->aggregationLevel = rarPdcchInfo->dci.aggregLevel;
2656 dlDciPtr->pc_and_bform.numPrgs = rarPdcchInfo->dci.beamPdcchInfo.numPrgs;
2657 dlDciPtr->pc_and_bform.prgSize = rarPdcchInfo->dci.beamPdcchInfo.prgSize;
2658 dlDciPtr->pc_and_bform.digBfInterfaces = rarPdcchInfo->dci.beamPdcchInfo.digBfInterfaces;
2659 dlDciPtr->pc_and_bform.pmi_bfi[0].pmIdx = rarPdcchInfo->dci.beamPdcchInfo.prg[0].pmIdx;
2660 dlDciPtr->pc_and_bform.pmi_bfi[0].beamIdx[0].beamidx = rarPdcchInfo->dci.beamPdcchInfo.prg[0].beamIdx[0];
2661 dlDciPtr->beta_pdcch_1_0 = rarPdcchInfo->dci.txPdcchPower.powerValue;
2662 dlDciPtr->powerControlOffsetSS = rarPdcchInfo->dci.txPdcchPower.powerControlOffsetSS;
2664 /* Calculating freq domain resource allocation field value and size
2665 * coreset0Size = Size of coreset 0
2666 * RBStart = Starting Virtual Rsource block
2667 * RBLen = length of contiguously allocted RBs
2668 * Spec 38.214 Sec 5.1.2.2.2
2671 /* TODO: Fill values of coreset0Size, rbStart and rbLen */
2672 coreset0Size= rarPdcchInfo->coresetCfg.coreSetSize;
2673 rbStart = rarPdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.startPrb;
2674 rbLen = rarPdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.numPrb;
2676 if((rbLen >=1) && (rbLen <= coreset0Size - rbStart))
2678 if((rbLen - 1) <= floor(coreset0Size / 2))
2679 freqDomResAssign = (coreset0Size * (rbLen-1)) + rbStart;
2681 freqDomResAssign = (coreset0Size * (coreset0Size - rbLen + 1)) \
2682 + (coreset0Size - 1 - rbStart);
2684 freqDomResAssignSize = ceil(log2(coreset0Size * (coreset0Size + 1) / 2));
2687 /* Fetching DCI field values */
2688 timeDomResAssign = rarPdcchInfo->dci.pdschCfg->pdschTimeAlloc.rowIndex;
2689 VRB2PRBMap = rarPdcchInfo->dci.pdschCfg->pdschFreqAlloc.vrbPrbMapping;
2690 modNCodScheme = rarPdcchInfo->dci.pdschCfg->codeword[0].mcsIndex;
2691 tbScaling = 0; /* configured to 0 scaling */
2694 /* Reversing bits in each DCI field */
2695 freqDomResAssign = reverseBits(freqDomResAssign, freqDomResAssignSize);
2696 timeDomResAssign = reverseBits(timeDomResAssign, timeDomResAssignSize);
2697 VRB2PRBMap = reverseBits(VRB2PRBMap, VRB2PRBMapSize);
2698 modNCodScheme = reverseBits(modNCodScheme, modNCodSchemeSize);
2699 tbScaling = reverseBits(tbScaling, tbScalingSize);
2701 /* Calulating total number of bytes in buffer */
2702 dlDciPtr->payloadSizeBits = freqDomResAssignSize + timeDomResAssignSize\
2703 + VRB2PRBMapSize + modNCodSchemeSize + tbScalingSize + reservedSize;
2705 numBytes = dlDciPtr->payloadSizeBits / 8;
2706 if(dlDciPtr->payloadSizeBits % 8)
2709 if(numBytes > FAPI_DCI_PAYLOAD_BYTE_LEN)
2711 DU_LOG("\nERROR --> LWR_MAC : Total bytes for DCI is more than expected");
2715 /* Initialize buffer */
2716 for(bytePos = 0; bytePos < numBytes; bytePos++)
2717 dlDciPtr->payload[bytePos] = 0;
2719 bytePos = numBytes - 1;
2722 /* Packing DCI format fields */
2723 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2724 freqDomResAssign, freqDomResAssignSize);
2725 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2726 timeDomResAssign, timeDomResAssignSize);
2727 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2728 VRB2PRBMap, VRB2PRBMapSize);
2729 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2730 modNCodScheme, modNCodSchemeSize);
2731 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2732 tbScaling, tbScalingSize);
2733 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2734 reserved, reservedSize);
2736 } /* fillRarDlDciPdu */
2738 /*******************************************************************
2740 * @brief fills DL DCI PDU required for DL TTI info in MAC
2744 * Function : fillDlMsgDlDciPdu
2747 * -Fills the Dl DCI PDU
2749 * @params[in] Pointer to fapi_dl_dci_t
2750 * Pointer to PdcchCfg
2753 ******************************************************************/
2754 void fillDlMsgDlDciPdu(fapi_dl_dci_t *dlDciPtr, PdcchCfg *pdcchInfo,\
2755 DlMsgInfo *dlMsgInfo)
2757 if(dlDciPtr != NULLP)
2763 uint16_t coresetSize = 0;
2764 uint16_t rbStart = 0;
2766 uint8_t dciFormatId;
2767 uint32_t freqDomResAssign;
2768 uint8_t timeDomResAssign;
2770 uint8_t modNCodScheme;
2772 uint8_t redundancyVer = 0;
2773 uint8_t harqProcessNum = 0;
2774 uint8_t dlAssignmentIdx = 0;
2775 uint8_t pucchTpc = 0;
2776 uint8_t pucchResoInd = 0;
2777 uint8_t harqFeedbackInd = 0;
2779 /* Size(in bits) of each field in DCI format 1_0 */
2780 uint8_t dciFormatIdSize = 1;
2781 uint8_t freqDomResAssignSize = 0;
2782 uint8_t timeDomResAssignSize = 4;
2783 uint8_t VRB2PRBMapSize = 1;
2784 uint8_t modNCodSchemeSize = 5;
2785 uint8_t ndiSize = 1;
2786 uint8_t redundancyVerSize = 2;
2787 uint8_t harqProcessNumSize = 4;
2788 uint8_t dlAssignmentIdxSize = 2;
2789 uint8_t pucchTpcSize = 2;
2790 uint8_t pucchResoIndSize = 3;
2791 uint8_t harqFeedbackIndSize = 3;
2793 dlDciPtr->rnti = pdcchInfo->dci.rnti;
2794 dlDciPtr->scramblingId = pdcchInfo->dci.scramblingId;
2795 dlDciPtr->scramblingRnti = pdcchInfo->dci.scramblingRnti;
2796 dlDciPtr->cceIndex = pdcchInfo->dci.cceIndex;
2797 dlDciPtr->aggregationLevel = pdcchInfo->dci.aggregLevel;
2798 dlDciPtr->pc_and_bform.numPrgs = pdcchInfo->dci.beamPdcchInfo.numPrgs;
2799 dlDciPtr->pc_and_bform.prgSize = pdcchInfo->dci.beamPdcchInfo.prgSize;
2800 dlDciPtr->pc_and_bform.digBfInterfaces = pdcchInfo->dci.beamPdcchInfo.digBfInterfaces;
2801 dlDciPtr->pc_and_bform.pmi_bfi[0].pmIdx = pdcchInfo->dci.beamPdcchInfo.prg[0].pmIdx;
2802 dlDciPtr->pc_and_bform.pmi_bfi[0].beamIdx[0].beamidx = pdcchInfo->dci.beamPdcchInfo.prg[0].beamIdx[0];
2803 dlDciPtr->beta_pdcch_1_0 = pdcchInfo->dci.txPdcchPower.powerValue;
2804 dlDciPtr->powerControlOffsetSS = pdcchInfo->dci.txPdcchPower.powerControlOffsetSS;
2806 /* Calculating freq domain resource allocation field value and size
2807 * coreset0Size = Size of coreset 0
2808 * RBStart = Starting Virtual Rsource block
2809 * RBLen = length of contiguously allocted RBs
2810 * Spec 38.214 Sec 5.1.2.2.2
2812 coresetSize = pdcchInfo->coresetCfg.coreSetSize;
2813 rbStart = pdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.startPrb;
2814 rbLen = pdcchInfo->dci.pdschCfg->pdschFreqAlloc.freqAlloc.numPrb;
2816 if((rbLen >=1) && (rbLen <= coresetSize - rbStart))
2818 if((rbLen - 1) <= floor(coresetSize / 2))
2819 freqDomResAssign = (coresetSize * (rbLen-1)) + rbStart;
2821 freqDomResAssign = (coresetSize * (coresetSize - rbLen + 1)) \
2822 + (coresetSize - 1 - rbStart);
2824 freqDomResAssignSize = ceil(log2(coresetSize * (coresetSize + 1) / 2));
2827 /* Fetching DCI field values */
2828 dciFormatId = dlMsgInfo->dciFormatId; /* Always set to 1 for DL */
2829 timeDomResAssign = pdcchInfo->dci.pdschCfg->pdschTimeAlloc.rowIndex -1;
2830 VRB2PRBMap = pdcchInfo->dci.pdschCfg->pdschFreqAlloc.vrbPrbMapping;
2831 modNCodScheme = pdcchInfo->dci.pdschCfg->codeword[0].mcsIndex;
2832 ndi = dlMsgInfo->ndi;
2833 redundancyVer = pdcchInfo->dci.pdschCfg->codeword[0].rvIndex;
2834 harqProcessNum = dlMsgInfo->harqProcNum;
2835 dlAssignmentIdx = dlMsgInfo->dlAssignIdx;
2836 pucchTpc = dlMsgInfo->pucchTpc;
2837 pucchResoInd = dlMsgInfo->pucchResInd;
2838 harqFeedbackInd = dlMsgInfo->harqFeedbackInd;
2840 /* Reversing bits in each DCI field */
2841 dciFormatId = reverseBits(dciFormatId, dciFormatIdSize);
2842 freqDomResAssign = reverseBits(freqDomResAssign, freqDomResAssignSize);
2843 timeDomResAssign = reverseBits(timeDomResAssign, timeDomResAssignSize);
2844 VRB2PRBMap = reverseBits(VRB2PRBMap, VRB2PRBMapSize);
2845 modNCodScheme = reverseBits(modNCodScheme, modNCodSchemeSize);
2846 ndi = reverseBits(ndi, ndiSize);
2847 redundancyVer = reverseBits(redundancyVer, redundancyVerSize);
2848 harqProcessNum = reverseBits(harqProcessNum, harqProcessNumSize);
2849 dlAssignmentIdx = reverseBits(dlAssignmentIdx , dlAssignmentIdxSize);
2850 pucchTpc = reverseBits(pucchTpc, pucchTpcSize);
2851 pucchResoInd = reverseBits(pucchResoInd, pucchResoIndSize);
2852 harqFeedbackInd = reverseBits(harqFeedbackInd, harqFeedbackIndSize);
2855 /* Calulating total number of bytes in buffer */
2856 dlDciPtr->payloadSizeBits = (dciFormatIdSize + freqDomResAssignSize\
2857 + timeDomResAssignSize + VRB2PRBMapSize + modNCodSchemeSize\
2858 + ndiSize + redundancyVerSize + harqProcessNumSize + dlAssignmentIdxSize\
2859 + pucchTpcSize + pucchResoIndSize + harqFeedbackIndSize);
2861 numBytes = dlDciPtr->payloadSizeBits / 8;
2862 if(dlDciPtr->payloadSizeBits % 8)
2865 if(numBytes > FAPI_DCI_PAYLOAD_BYTE_LEN)
2867 DU_LOG("\nERROR --> LWR_MAC : Total bytes for DCI is more than expected");
2871 /* Initialize buffer */
2872 for(bytePos = 0; bytePos < numBytes; bytePos++)
2873 dlDciPtr->payload[bytePos] = 0;
2875 bytePos = numBytes - 1;
2878 /* Packing DCI format fields */
2879 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2880 dciFormatId, dciFormatIdSize);
2881 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2882 freqDomResAssign, freqDomResAssignSize);
2883 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2884 timeDomResAssign, timeDomResAssignSize);
2885 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2886 VRB2PRBMap, VRB2PRBMapSize);
2887 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2888 modNCodScheme, modNCodSchemeSize);
2889 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2891 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2892 redundancyVer, redundancyVerSize);
2893 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2894 redundancyVer, redundancyVerSize);
2895 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2896 harqProcessNum, harqProcessNumSize);
2897 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2898 dlAssignmentIdx, dlAssignmentIdxSize);
2899 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2900 pucchTpc, pucchTpcSize);
2901 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2902 pucchResoInd, pucchResoIndSize);
2903 fillDlDciPayload(dlDciPtr->payload, &bytePos, &bitPos,\
2904 harqFeedbackInd, harqFeedbackIndSize);
2908 /*******************************************************************
2910 * @brief fills PDCCH PDU required for DL TTI info in MAC
2914 * Function : fillPdcchPdu
2917 * -Fills the Pdcch PDU info
2920 * @params[in] Pointer to FAPI DL TTI Req
2921 * Pointer to PdcchCfg
2924 ******************************************************************/
2925 uint8_t fillPdcchPdu(fapi_dl_tti_req_pdu_t *dlTtiReqPdu, DlSchedInfo *dlInfo, int8_t dlMsgSchInfoIdx, \
2926 RntiType rntiType, uint8_t coreSetType, uint8_t ueIdx)
2928 if(dlTtiReqPdu != NULLP)
2930 PdcchCfg *pdcchInfo = NULLP;
2931 BwpCfg *bwp = NULLP;
2933 memset(&dlTtiReqPdu->pdu.pdcch_pdu, 0, sizeof(fapi_dl_pdcch_pdu_t));
2934 if(rntiType == SI_RNTI_TYPE)
2936 pdcchInfo = &dlInfo->brdcstAlloc.sib1Alloc.sib1PdcchCfg;
2937 bwp = &dlInfo->brdcstAlloc.sib1Alloc.bwp;
2938 fillSib1DlDciPdu(dlTtiReqPdu->pdu.pdcch_pdu.dlDci, pdcchInfo);
2940 else if(rntiType == RA_RNTI_TYPE)
2942 pdcchInfo = &dlInfo->rarAlloc[ueIdx]->rarPdcchCfg;
2943 bwp = &dlInfo->rarAlloc[ueIdx]->bwp;
2944 fillRarDlDciPdu(dlTtiReqPdu->pdu.pdcch_pdu.dlDci, pdcchInfo);
2946 else if(rntiType == TC_RNTI_TYPE || rntiType == C_RNTI_TYPE)
2948 pdcchInfo = &dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[dlMsgSchInfoIdx].dlMsgPdcchCfg;
2949 bwp = &dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[dlMsgSchInfoIdx].bwp;
2950 fillDlMsgDlDciPdu(dlTtiReqPdu->pdu.pdcch_pdu.dlDci, pdcchInfo,\
2951 &dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[dlMsgSchInfoIdx].dlMsgInfo);
2955 DU_LOG("\nERROR --> LWR_MAC: Failed filling PDCCH Pdu");
2958 dlTtiReqPdu->pduType = PDCCH_PDU_TYPE;
2959 dlTtiReqPdu->pdu.pdcch_pdu.bwpSize = bwp->freqAlloc.numPrb;
2960 dlTtiReqPdu->pdu.pdcch_pdu.bwpStart = bwp->freqAlloc.startPrb;
2961 dlTtiReqPdu->pdu.pdcch_pdu.subCarrierSpacing = bwp->subcarrierSpacing;
2962 dlTtiReqPdu->pdu.pdcch_pdu.cyclicPrefix = bwp->cyclicPrefix;
2963 dlTtiReqPdu->pdu.pdcch_pdu.startSymbolIndex = pdcchInfo->coresetCfg.startSymbolIndex;
2964 dlTtiReqPdu->pdu.pdcch_pdu.durationSymbols = pdcchInfo->coresetCfg.durationSymbols;
2965 memcpy(dlTtiReqPdu->pdu.pdcch_pdu.freqDomainResource, pdcchInfo->coresetCfg.freqDomainResource, 6);
2966 dlTtiReqPdu->pdu.pdcch_pdu.cceRegMappingType = pdcchInfo->coresetCfg.cceRegMappingType;
2967 dlTtiReqPdu->pdu.pdcch_pdu.regBundleSize = pdcchInfo->coresetCfg.regBundleSize;
2968 dlTtiReqPdu->pdu.pdcch_pdu.interleaverSize = pdcchInfo->coresetCfg.interleaverSize;
2969 dlTtiReqPdu->pdu.pdcch_pdu.shiftIndex = pdcchInfo->coresetCfg.shiftIndex;
2970 dlTtiReqPdu->pdu.pdcch_pdu.precoderGranularity = pdcchInfo->coresetCfg.precoderGranularity;
2971 dlTtiReqPdu->pdu.pdcch_pdu.numDlDci = pdcchInfo->numDlDci;
2972 dlTtiReqPdu->pdu.pdcch_pdu.coreSetType = coreSetType;
2974 /* Calculating PDU length. Considering only one dl dci pdu for now */
2975 dlTtiReqPdu->pduSize = sizeof(fapi_dl_pdcch_pdu_t);
2981 /*******************************************************************
2983 * @brief fills PDSCH PDU required for DL TTI info in MAC
2987 * Function : fillPdschPdu
2990 * -Fills the Pdsch PDU info
2993 * @params[in] Pointer to FAPI DL TTI Req
2994 * Pointer to PdschCfg
2995 * Pointer to msgLen of DL TTI Info
2998 ******************************************************************/
3000 void fillPdschPdu(fapi_dl_tti_req_pdu_t *dlTtiReqPdu, PdschCfg *pdschInfo,
3001 BwpCfg bwp, uint16_t pduIndex)
3005 if(dlTtiReqPdu != NULLP)
3007 dlTtiReqPdu->pduType = PDSCH_PDU_TYPE;
3008 memset(&dlTtiReqPdu->pdu.pdsch_pdu, 0, sizeof(fapi_dl_pdsch_pdu_t));
3009 dlTtiReqPdu->pdu.pdsch_pdu.pduBitMap = pdschInfo->pduBitmap;
3010 dlTtiReqPdu->pdu.pdsch_pdu.rnti = pdschInfo->rnti;
3011 dlTtiReqPdu->pdu.pdsch_pdu.pdu_index = pduIndex;
3012 dlTtiReqPdu->pdu.pdsch_pdu.bwpSize = bwp.freqAlloc.numPrb;
3013 dlTtiReqPdu->pdu.pdsch_pdu.bwpStart = bwp.freqAlloc.startPrb;
3014 dlTtiReqPdu->pdu.pdsch_pdu.subCarrierSpacing = bwp.subcarrierSpacing;
3015 dlTtiReqPdu->pdu.pdsch_pdu.cyclicPrefix = bwp.cyclicPrefix;
3016 dlTtiReqPdu->pdu.pdsch_pdu.nrOfCodeWords = pdschInfo->numCodewords;
3017 for(idx = 0; idx < MAX_CODEWORDS ; idx++)
3019 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].targetCodeRate = pdschInfo->codeword[idx].targetCodeRate;
3020 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].qamModOrder = pdschInfo->codeword[idx].qamModOrder;
3021 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].mcsIndex = pdschInfo->codeword[idx].mcsIndex;
3022 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].mcsTable = pdschInfo->codeword[idx].mcsTable;
3023 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].rvIndex = pdschInfo->codeword[idx].rvIndex;
3024 dlTtiReqPdu->pdu.pdsch_pdu.cwInfo[idx].tbSize = pdschInfo->codeword[idx].tbSize;
3026 dlTtiReqPdu->pdu.pdsch_pdu.dataScramblingId = pdschInfo->dataScramblingId;
3027 dlTtiReqPdu->pdu.pdsch_pdu.nrOfLayers = pdschInfo->numLayers;
3028 dlTtiReqPdu->pdu.pdsch_pdu.transmissionScheme = pdschInfo->transmissionScheme;
3029 dlTtiReqPdu->pdu.pdsch_pdu.refPoint = pdschInfo->refPoint;
3030 dlTtiReqPdu->pdu.pdsch_pdu.dlDmrsSymbPos = pdschInfo->dmrs.dlDmrsSymbPos;
3031 dlTtiReqPdu->pdu.pdsch_pdu.dmrsConfigType = pdschInfo->dmrs.dmrsConfigType;
3032 dlTtiReqPdu->pdu.pdsch_pdu.dlDmrsScramblingId = pdschInfo->dmrs.dlDmrsScramblingId;
3033 dlTtiReqPdu->pdu.pdsch_pdu.scid = pdschInfo->dmrs.scid;
3034 dlTtiReqPdu->pdu.pdsch_pdu.numDmrsCdmGrpsNoData = pdschInfo->dmrs.numDmrsCdmGrpsNoData;
3035 dlTtiReqPdu->pdu.pdsch_pdu.dmrsPorts = pdschInfo->dmrs.dmrsPorts;
3036 dlTtiReqPdu->pdu.pdsch_pdu.resourceAlloc = pdschInfo->pdschFreqAlloc.resourceAllocType;
3037 /* since we are using type-1, hence rbBitmap excluded */
3038 dlTtiReqPdu->pdu.pdsch_pdu.rbStart = pdschInfo->pdschFreqAlloc.freqAlloc.startPrb;
3039 dlTtiReqPdu->pdu.pdsch_pdu.rbSize = pdschInfo->pdschFreqAlloc.freqAlloc.numPrb;
3040 dlTtiReqPdu->pdu.pdsch_pdu.vrbToPrbMapping = pdschInfo->pdschFreqAlloc.vrbPrbMapping;
3041 dlTtiReqPdu->pdu.pdsch_pdu.startSymbIndex = pdschInfo->pdschTimeAlloc.timeAlloc.startSymb;
3042 dlTtiReqPdu->pdu.pdsch_pdu.nrOfSymbols = pdschInfo->pdschTimeAlloc.timeAlloc.numSymb;
3043 dlTtiReqPdu->pdu.pdsch_pdu.preCodingAndBeamforming.numPrgs = pdschInfo->beamPdschInfo.numPrgs;
3044 dlTtiReqPdu->pdu.pdsch_pdu.preCodingAndBeamforming.prgSize = pdschInfo->beamPdschInfo.prgSize;
3045 dlTtiReqPdu->pdu.pdsch_pdu.preCodingAndBeamforming.digBfInterfaces = pdschInfo->beamPdschInfo.digBfInterfaces;
3046 dlTtiReqPdu->pdu.pdsch_pdu.preCodingAndBeamforming.pmi_bfi[0]. \
3047 pmIdx = pdschInfo->beamPdschInfo.prg[0].pmIdx;
3048 dlTtiReqPdu->pdu.pdsch_pdu.preCodingAndBeamforming.pmi_bfi[0]. \
3049 beamIdx[0].beamidx = pdschInfo->beamPdschInfo.prg[0].beamIdx[0];
3050 dlTtiReqPdu->pdu.pdsch_pdu.powerControlOffset = pdschInfo->txPdschPower.powerControlOffset;
3051 dlTtiReqPdu->pdu.pdsch_pdu.powerControlOffsetSS = pdschInfo->txPdschPower.powerControlOffsetSS;
3052 dlTtiReqPdu->pdu.pdsch_pdu.mappingType = pdschInfo->dmrs.mappingType;
3053 dlTtiReqPdu->pdu.pdsch_pdu.nrOfDmrsSymbols = pdschInfo->dmrs.nrOfDmrsSymbols;
3054 dlTtiReqPdu->pdu.pdsch_pdu.dmrsAddPos = pdschInfo->dmrs.dmrsAddPos;
3056 dlTtiReqPdu->pduSize = sizeof(fapi_dl_pdsch_pdu_t);
3060 /***********************************************************************
3062 * @brief calculates the total size to be allocated for DL TTI Req
3066 * Function : calcDlTtiReqPduCount
3069 * -calculates the total pdu count to be allocated for DL TTI Req
3071 * @params[in] DlBrdcstAlloc *cellBroadcastInfo
3074 * ********************************************************************/
3075 uint8_t calcDlTtiReqPduCount(DlSchedInfo *dlInfo)
3078 uint8_t idx = 0, ueIdx=0;
3080 if(dlInfo->isBroadcastPres)
3082 if(dlInfo->brdcstAlloc.ssbTrans)
3084 for(idx = 0; idx < dlInfo->brdcstAlloc.ssbIdxSupported; idx++)
3086 /* SSB PDU is filled */
3090 if(dlInfo->brdcstAlloc.sib1Trans)
3092 /* PDCCH and PDSCH PDU is filled */
3097 for(ueIdx=0; ueIdx<MAX_NUM_UE; ueIdx++)
3099 if(dlInfo->rarAlloc[ueIdx] != NULLP)
3101 /* PDCCH and PDSCH PDU is filled */
3102 if(dlInfo->rarAlloc[ueIdx]->pduPres == BOTH)
3108 if(dlInfo->dlMsgAlloc[ueIdx] != NULLP)
3110 for(idx=0; idx<dlInfo->dlMsgAlloc[ueIdx]->numSchedInfo; idx++)
3112 /* PDCCH and PDSCH PDU is filled */
3113 if(dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == BOTH)
3115 else if(dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres != NONE)
3123 /***********************************************************************
3125 * @brief calculates the total size to be allocated for DL TTI Req
3129 * Function : calcTxDataReqPduCount
3132 * -calculates the total pdu count to be allocated for DL TTI Req
3134 * @params[in] DlBrdcstAlloc *cellBroadcastInfo
3137 * ********************************************************************/
3138 uint8_t calcTxDataReqPduCount(DlSchedInfo *dlInfo)
3140 uint8_t idx = 0, count = 0, ueIdx=0;
3142 if(dlInfo->isBroadcastPres && dlInfo->brdcstAlloc.sib1Trans)
3147 for(ueIdx=0; ueIdx<MAX_NUM_UE; ueIdx++)
3149 if((dlInfo->rarAlloc[ueIdx] != NULLP) && \
3150 ((dlInfo->rarAlloc[ueIdx]->pduPres == BOTH) || (dlInfo->rarAlloc[ueIdx]->pduPres == PDSCH_PDU)))
3153 if(dlInfo->dlMsgAlloc[ueIdx] != NULLP)
3155 for(idx=0; idx<dlInfo->dlMsgAlloc[ueIdx]->numSchedInfo; idx++)
3157 if(dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == BOTH || \
3158 dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == PDSCH_PDU)
3166 /***********************************************************************
3168 * @brief fills the SIB1 TX-DATA request message
3172 * Function : fillSib1TxDataReq
3175 * - fills the SIB1 TX-DATA request message
3177 * @params[in] fapi_tx_pdu_desc_t *pduDesc
3178 * @params[in] macCellCfg consist of SIB1 pdu
3179 * @params[in] uint32_t *msgLen
3180 * @params[in] uint16_t pduIndex
3183 * ********************************************************************/
3184 uint8_t fillSib1TxDataReq(fapi_tx_pdu_desc_t *pduDesc, uint16_t pduIndex, MacCellCfg *macCellCfg,
3187 uint32_t payloadSize = 0;
3188 uint8_t *sib1Payload = NULLP;
3189 fapi_api_queue_elem_t *payloadElem = NULLP;
3190 #ifdef INTEL_WLS_MEM
3191 void * wlsHdlr = NULLP;
3194 pduDesc[pduIndex].pdu_index = pduIndex;
3195 pduDesc[pduIndex].num_tlvs = 1;
3198 payloadSize = pdschCfg.codeword[0].tbSize;
3199 pduDesc[pduIndex].tlvs[0].tl.tag = ((payloadSize & 0xff0000) >> 8) | FAPI_TX_DATA_PTR_TO_PAYLOAD_64;
3200 pduDesc[pduIndex].tlvs[0].tl.length = (payloadSize & 0x0000ffff);
3201 LWR_MAC_ALLOC(sib1Payload, payloadSize);
3202 if(sib1Payload == NULLP)
3206 payloadElem = (fapi_api_queue_elem_t *)sib1Payload;
3207 FILL_FAPI_LIST_ELEM(payloadElem, NULLP, FAPI_VENDOR_MSG_PHY_ZBC_BLOCK_REQ, 1, \
3208 macCellCfg->sib1Cfg.sib1PduLen);
3209 memcpy(sib1Payload + TX_PAYLOAD_HDR_LEN, macCellCfg->sib1Cfg.sib1Pdu, macCellCfg->sib1Cfg.sib1PduLen);
3211 #ifdef INTEL_WLS_MEM
3212 mtGetWlsHdl(&wlsHdlr);
3213 pduDesc[pduIndex].tlvs[0].value = WLS_VA2PA(wlsHdlr, sib1Payload);
3215 pduDesc[pduIndex].tlvs[0].value = sib1Payload;
3217 pduDesc[pduIndex].pdu_length = payloadSize;
3219 #ifdef INTEL_WLS_MEM
3220 addWlsBlockToFree(sib1Payload, payloadSize, (lwrMacCb.phySlotIndCntr-1));
3222 LWR_MAC_FREE(sib1Payload, payloadSize);
3228 /***********************************************************************
3230 * @brief fills the RAR TX-DATA request message
3234 * Function : fillRarTxDataReq
3237 * - fills the RAR TX-DATA request message
3239 * @params[in] fapi_tx_pdu_desc_t *pduDesc
3240 * @params[in] RarInfo *rarInfo
3241 * @params[in] uint32_t *msgLen
3242 * @params[in] uint16_t pduIndex
3245 * ********************************************************************/
3246 uint8_t fillRarTxDataReq(fapi_tx_pdu_desc_t *pduDesc, uint16_t pduIndex, RarInfo *rarInfo, PdschCfg pdschCfg)
3248 uint16_t payloadSize;
3249 uint8_t *rarPayload = NULLP;
3250 fapi_api_queue_elem_t *payloadElem = NULLP;
3251 #ifdef INTEL_WLS_MEM
3252 void * wlsHdlr = NULLP;
3255 pduDesc[pduIndex].pdu_index = pduIndex;
3256 pduDesc[pduIndex].num_tlvs = 1;
3259 payloadSize = pdschCfg.codeword[0].tbSize;
3260 pduDesc[pduIndex].tlvs[0].tl.tag = FAPI_TX_DATA_PTR_TO_PAYLOAD_64;
3261 pduDesc[pduIndex].tlvs[0].tl.length = payloadSize;
3262 LWR_MAC_ALLOC(rarPayload, payloadSize);
3263 if(rarPayload == NULLP)
3267 payloadElem = (fapi_api_queue_elem_t *)rarPayload;
3268 FILL_FAPI_LIST_ELEM(payloadElem, NULLP, FAPI_VENDOR_MSG_PHY_ZBC_BLOCK_REQ, 1, rarInfo->rarPduLen);
3269 memcpy(rarPayload + TX_PAYLOAD_HDR_LEN, rarInfo->rarPdu, rarInfo->rarPduLen);
3271 #ifdef INTEL_WLS_MEM
3272 mtGetWlsHdl(&wlsHdlr);
3273 pduDesc[pduIndex].tlvs[0].value = WLS_VA2PA(wlsHdlr, rarPayload);
3275 pduDesc[pduIndex].tlvs[0].value = rarPayload;
3277 pduDesc[pduIndex].pdu_length = payloadSize;
3279 #ifdef INTEL_WLS_MEM
3280 addWlsBlockToFree(rarPayload, payloadSize, (lwrMacCb.phySlotIndCntr-1));
3282 LWR_MAC_FREE(rarPayload, payloadSize);
3287 /***********************************************************************
3289 * @brief fills the DL dedicated Msg TX-DATA request message
3293 * Function : fillDlMsgTxDataReq
3296 * - fills the Dl Dedicated Msg TX-DATA request message
3298 * @params[in] fapi_tx_pdu_desc_t *pduDesc
3299 * @params[in] DlMsgInfo *dlMsgInfo
3300 * @params[in] uint32_t *msgLen
3301 * @params[in] uint16_t pduIndex
3304 * ********************************************************************/
3305 uint8_t fillDlMsgTxDataReq(fapi_tx_pdu_desc_t *pduDesc, uint16_t pduIndex, DlMsgInfo *dlMsgInfo, PdschCfg pdschCfg)
3307 uint16_t payloadSize;
3308 uint8_t *dlMsgPayload = NULLP;
3309 fapi_api_queue_elem_t *payloadElem = NULLP;
3310 #ifdef INTEL_WLS_MEM
3311 void * wlsHdlr = NULLP;
3314 pduDesc[pduIndex].pdu_index = pduIndex;
3315 pduDesc[pduIndex].num_tlvs = 1;
3318 payloadSize = pdschCfg.codeword[0].tbSize;
3319 pduDesc[pduIndex].tlvs[0].tl.tag = FAPI_TX_DATA_PTR_TO_PAYLOAD_64;
3320 pduDesc[pduIndex].tlvs[0].tl.length = payloadSize;
3321 LWR_MAC_ALLOC(dlMsgPayload, payloadSize);
3322 if(dlMsgPayload == NULLP)
3326 payloadElem = (fapi_api_queue_elem_t *)dlMsgPayload;
3327 FILL_FAPI_LIST_ELEM(payloadElem, NULLP, FAPI_VENDOR_MSG_PHY_ZBC_BLOCK_REQ, 1, dlMsgInfo->dlMsgPduLen);
3328 memcpy(dlMsgPayload + TX_PAYLOAD_HDR_LEN, dlMsgInfo->dlMsgPdu, dlMsgInfo->dlMsgPduLen);
3330 #ifdef INTEL_WLS_MEM
3331 mtGetWlsHdl(&wlsHdlr);
3332 pduDesc[pduIndex].tlvs[0].value = WLS_VA2PA(wlsHdlr, dlMsgPayload);
3334 pduDesc[pduIndex].tlvs[0].value = dlMsgPayload;
3336 pduDesc[pduIndex].pdu_length = payloadSize;
3338 #ifdef INTEL_WLS_MEM
3339 addWlsBlockToFree(dlMsgPayload, payloadSize, (lwrMacCb.phySlotIndCntr-1));
3341 LWR_MAC_FREE(dlMsgPayload, payloadSize);
3348 /*******************************************************************
3350 * @brief Sends DL TTI Request to PHY
3354 * Function : fillDlTtiReq
3357 * -Sends FAPI DL TTI req to PHY
3359 * @params[in] timing info
3360 * @return ROK - success
3363 * ****************************************************************/
3364 uint16_t fillDlTtiReq(SlotTimingInfo currTimingInfo)
3366 #ifdef CALL_FLOW_DEBUG_LOG
3367 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : DL_TTI_REQUEST\n");
3373 uint8_t numPduEncoded = 0;
3375 uint16_t cellIdx =0;
3376 uint16_t pduIndex = 0;
3378 SlotTimingInfo dlTtiReqTimingInfo;
3379 MacDlSlot *currDlSlot = NULLP;
3380 MacCellCfg macCellCfg;
3382 fapi_dl_tti_req_t *dlTtiReq = NULLP;
3383 fapi_msg_header_t *msgHeader = NULLP;
3384 p_fapi_api_queue_elem_t dlTtiElem;
3385 p_fapi_api_queue_elem_t headerElem;
3386 p_fapi_api_queue_elem_t prevElem;
3388 if(lwrMacCb.phyState == PHY_STATE_RUNNING)
3390 GET_CELL_IDX(currTimingInfo.cellId, cellIdx);
3391 /* consider phy delay */
3392 ADD_DELTA_TO_TIME(currTimingInfo,dlTtiReqTimingInfo,PHY_DELTA_DL);
3393 dlTtiReqTimingInfo.cellId = currTimingInfo.cellId;
3395 macCellCfg = macCb.macCell[cellIdx]->macCellCfg;
3397 currDlSlot = &macCb.macCell[cellIdx]->dlSlot[dlTtiReqTimingInfo.slot];
3399 LWR_MAC_ALLOC(dlTtiElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_dl_tti_req_t)));
3402 FILL_FAPI_LIST_ELEM(dlTtiElem, NULLP, FAPI_DL_TTI_REQUEST, 1, \
3403 sizeof(fapi_dl_tti_req_t));
3405 /* Fill message header */
3406 LWR_MAC_ALLOC(headerElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_msg_header_t)));
3409 DU_LOG("\nERROR --> LWR_MAC: Memory allocation failed for header in DL TTI req");
3410 LWR_MAC_FREE(dlTtiElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_dl_tti_req_t)));
3413 FILL_FAPI_LIST_ELEM(headerElem, dlTtiElem, FAPI_VENDOR_MSG_HEADER_IND, 1, \
3414 sizeof(fapi_msg_header_t));
3415 msgHeader = (fapi_msg_header_t *)(headerElem + 1);
3416 msgHeader->num_msg = 1;
3417 msgHeader->handle = 0;
3419 /* Fill Dl TTI Request */
3420 dlTtiReq = (fapi_dl_tti_req_t *)(dlTtiElem +1);
3421 memset(dlTtiReq, 0, sizeof(fapi_dl_tti_req_t));
3422 fillMsgHeader(&dlTtiReq->header, FAPI_DL_TTI_REQUEST, sizeof(fapi_dl_tti_req_t));
3424 dlTtiReq->sfn = dlTtiReqTimingInfo.sfn;
3425 dlTtiReq->slot = dlTtiReqTimingInfo.slot;
3426 dlTtiReq->nPdus = calcDlTtiReqPduCount(&currDlSlot->dlInfo); /* get total Pdus */
3427 nPdu = dlTtiReq->nPdus;
3428 dlTtiReq->nGroup = 0;
3429 if(dlTtiReq->nPdus > 0)
3431 if(currDlSlot->dlInfo.isBroadcastPres)
3433 if(currDlSlot->dlInfo.brdcstAlloc.ssbTrans)
3435 if(dlTtiReq->pdus != NULLP)
3437 for(idx = 0; idx < currDlSlot->dlInfo.brdcstAlloc.ssbIdxSupported; idx++)
3439 fillSsbPdu(&dlTtiReq->pdus[numPduEncoded], &macCellCfg,\
3440 currDlSlot, idx, dlTtiReq->sfn);
3444 DU_LOG("\033[1;31m");
3445 DU_LOG("\nDEBUG --> LWR_MAC: MIB sent..");
3449 if(currDlSlot->dlInfo.brdcstAlloc.sib1Trans)
3451 /* Filling SIB1 param */
3452 if(numPduEncoded != nPdu)
3454 rntiType = SI_RNTI_TYPE;
3455 fillPdcchPdu(&dlTtiReq->pdus[numPduEncoded], &currDlSlot->dlInfo, -1, \
3456 rntiType, CORESET_TYPE0, MAX_NUM_UE);
3458 fillPdschPdu(&dlTtiReq->pdus[numPduEncoded],
3459 &currDlSlot->dlInfo.brdcstAlloc.sib1Alloc.sib1PdschCfg,
3460 currDlSlot->dlInfo.brdcstAlloc.sib1Alloc.bwp,
3462 dlTtiReq->ue_grp_info[dlTtiReq->nGroup].pduIdx[pduIndex] = pduIndex;
3466 DU_LOG("\033[1;34m");
3467 DU_LOG("\nDEBUG --> LWR_MAC: SIB1 sent...");
3472 for(ueIdx=0; ueIdx<MAX_NUM_UE; ueIdx++)
3474 if(currDlSlot->dlInfo.rarAlloc[ueIdx] != NULLP)
3476 /* Filling RAR param */
3477 rntiType = RA_RNTI_TYPE;
3478 if((currDlSlot->dlInfo.rarAlloc[ueIdx]->pduPres == BOTH) || \
3479 (currDlSlot->dlInfo.rarAlloc[ueIdx]->pduPres == PDCCH_PDU))
3481 fillPdcchPdu(&dlTtiReq->pdus[numPduEncoded], \
3482 &currDlSlot->dlInfo, -1, rntiType, CORESET_TYPE0, ueIdx);
3485 if((currDlSlot->dlInfo.rarAlloc[ueIdx]->pduPres == BOTH) || \
3486 (currDlSlot->dlInfo.rarAlloc[ueIdx]->pduPres == PDSCH_PDU))
3488 fillPdschPdu(&dlTtiReq->pdus[numPduEncoded],
3489 &currDlSlot->dlInfo.rarAlloc[ueIdx]->rarPdschCfg,
3490 currDlSlot->dlInfo.rarAlloc[ueIdx]->bwp,
3495 DU_LOG("\033[1;32m");
3496 DU_LOG("\nDEBUG --> LWR_MAC: RAR sent...");
3501 if(currDlSlot->dlInfo.dlMsgAlloc[ueIdx] != NULLP)
3503 for(idx=0; idx<currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->numSchedInfo; idx++)
3505 /* Filling Msg4 param */
3506 if((currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == BOTH) || \
3507 (currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == PDCCH_PDU))
3509 if(currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].dlMsgInfo.isMsg4Pdu)
3511 rntiType = TC_RNTI_TYPE;
3512 fillPdcchPdu(&dlTtiReq->pdus[numPduEncoded], \
3513 &currDlSlot->dlInfo, idx, rntiType, CORESET_TYPE0, ueIdx);
3517 /* Filling other DL msg params */
3518 rntiType = C_RNTI_TYPE;
3519 fillPdcchPdu(&dlTtiReq->pdus[numPduEncoded], \
3520 &currDlSlot->dlInfo, idx, rntiType, CORESET_TYPE1, ueIdx);
3525 if(currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].dlMsgInfo.dlMsgPdu != NULLP)
3527 if((currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == BOTH) || \
3528 (currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].pduPres == PDSCH_PDU))
3530 fillPdschPdu(&dlTtiReq->pdus[numPduEncoded], \
3531 &currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].dlMsgPdschCfg,\
3532 currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].bwp, pduIndex);
3536 DU_LOG("\033[1;32m");
3537 if(currDlSlot->dlInfo.dlMsgAlloc[ueIdx]->dlMsgSchedInfo[idx].dlMsgInfo.isMsg4Pdu)
3539 DU_LOG("\nDEBUG --> LWR_MAC: MSG4 sent...");
3543 DU_LOG("\nDEBUG --> LWR_MAC: DL MSG sent...");
3551 MAC_FREE(currDlSlot->dlInfo.dlMsgAlloc[ueIdx], sizeof(DlMsgAlloc));
3552 currDlSlot->dlInfo.dlMsgAlloc[ueIdx] = NULLP;
3559 dlTtiReq->ue_grp_info[dlTtiReq->nGroup].nUe = MAX_NUM_UE_PER_TTI;
3562 #ifdef ODU_SLOT_IND_DEBUG_LOG
3563 DU_LOG("\nDEBUG --> LWR_MAC: Sending DL TTI Request");
3566 /* Intel L1 expects UL_TTI.request following DL_TTI.request */
3567 fillUlTtiReq(currTimingInfo, dlTtiElem);
3568 msgHeader->num_msg++;
3570 /* Intel L1 expects UL_DCI.request following DL_TTI.request */
3571 fillUlDciReq(dlTtiReqTimingInfo, dlTtiElem->p_next);
3572 msgHeader->num_msg++;
3574 /* send Tx-DATA req message */
3575 sendTxDataReq(dlTtiReqTimingInfo, &currDlSlot->dlInfo, dlTtiElem->p_next->p_next);
3576 if(dlTtiElem->p_next->p_next->p_next)
3578 msgHeader->num_msg++;
3579 prevElem = dlTtiElem->p_next->p_next->p_next;
3582 prevElem = dlTtiElem->p_next->p_next;
3586 #ifdef ODU_SLOT_IND_DEBUG_LOG
3587 DU_LOG("\nDEBUG --> LWR_MAC: Sending DL TTI Request");
3590 /* Intel L1 expects UL_TTI.request following DL_TTI.request */
3591 fillUlTtiReq(currTimingInfo, dlTtiElem);
3592 msgHeader->num_msg++;
3594 /* Intel L1 expects UL_DCI.request following DL_TTI.request */
3595 fillUlDciReq(dlTtiReqTimingInfo, dlTtiElem->p_next);
3596 msgHeader->num_msg++;
3598 prevElem = dlTtiElem->p_next->p_next;
3601 if(macCb.macCell[cellIdx]->state == CELL_TO_BE_STOPPED)
3603 /* Intel L1 expects UL_DCI.request following DL_TTI.request */
3604 lwr_mac_procStopReqEvt(currTimingInfo, prevElem);
3605 msgHeader->num_msg++;
3606 macCb.macCell[cellIdx]->state = CELL_STOP_IN_PROGRESS;
3608 LwrMacSendToL1(headerElem);
3609 memset(currDlSlot, 0, sizeof(MacDlSlot));
3614 DU_LOG("\nERROR --> LWR_MAC: Failed to allocate memory for DL TTI Request");
3615 memset(currDlSlot, 0, sizeof(MacDlSlot));
3621 lwr_mac_procInvalidEvt(&currTimingInfo);
3628 /*******************************************************************
3630 * @brief Sends TX data Request to PHY
3634 * Function : sendTxDataReq
3637 * -Sends FAPI TX data req to PHY
3639 * @params[in] timing info
3640 * @return ROK - success
3643 * ****************************************************************/
3644 uint16_t sendTxDataReq(SlotTimingInfo currTimingInfo, DlSchedInfo *dlInfo, p_fapi_api_queue_elem_t prevElem)
3647 #ifdef CALL_FLOW_DEBUG_LOG
3648 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : TX_DATA_REQ\n");
3653 uint8_t schInfoIdx = 0;
3655 uint16_t pduIndex = 0;
3656 fapi_tx_data_req_t *txDataReq =NULLP;
3657 p_fapi_api_queue_elem_t txDataElem = 0;
3659 GET_CELL_IDX(currTimingInfo.cellId, cellIdx);
3661 /* send TX_Data request message */
3662 nPdu = calcTxDataReqPduCount(dlInfo);
3665 LWR_MAC_ALLOC(txDataElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_tx_data_req_t)));
3666 if(txDataElem == NULLP)
3668 DU_LOG("\nERROR --> LWR_MAC: Failed to allocate memory for TX data Request");
3672 FILL_FAPI_LIST_ELEM(txDataElem, NULLP, FAPI_TX_DATA_REQUEST, 1, \
3673 sizeof(fapi_tx_data_req_t));
3674 txDataReq = (fapi_tx_data_req_t *)(txDataElem +1);
3675 memset(txDataReq, 0, sizeof(fapi_tx_data_req_t));
3676 fillMsgHeader(&txDataReq->header, FAPI_TX_DATA_REQUEST, sizeof(fapi_tx_data_req_t));
3678 txDataReq->sfn = currTimingInfo.sfn;
3679 txDataReq->slot = currTimingInfo.slot;
3680 if(dlInfo->brdcstAlloc.sib1Trans)
3682 fillSib1TxDataReq(txDataReq->pdu_desc, pduIndex, &macCb.macCell[cellIdx]->macCellCfg, \
3683 dlInfo->brdcstAlloc.sib1Alloc.sib1PdschCfg);
3685 txDataReq->num_pdus++;
3688 for(ueIdx=0; ueIdx<MAX_NUM_UE; ueIdx++)
3690 if(dlInfo->rarAlloc[ueIdx] != NULLP)
3692 if((dlInfo->rarAlloc[ueIdx]->pduPres == BOTH) || (dlInfo->rarAlloc[ueIdx]->pduPres == PDSCH_PDU))
3694 fillRarTxDataReq(txDataReq->pdu_desc, pduIndex, &dlInfo->rarAlloc[ueIdx]->rarInfo,\
3695 dlInfo->rarAlloc[ueIdx]->rarPdschCfg);
3697 txDataReq->num_pdus++;
3699 MAC_FREE(dlInfo->rarAlloc[ueIdx],sizeof(RarAlloc));
3702 if(dlInfo->dlMsgAlloc[ueIdx] != NULLP)
3704 for(schInfoIdx=0; schInfoIdx < dlInfo->dlMsgAlloc[ueIdx]->numSchedInfo; schInfoIdx++)
3706 if((dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].pduPres == BOTH) || \
3707 (dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].pduPres == PDSCH_PDU))
3709 fillDlMsgTxDataReq(txDataReq->pdu_desc, pduIndex, \
3710 &dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].dlMsgInfo, \
3711 dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].dlMsgPdschCfg);
3713 txDataReq->num_pdus++;
3715 MAC_FREE(dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].dlMsgInfo.dlMsgPdu, \
3716 dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].dlMsgInfo.dlMsgPduLen);
3717 dlInfo->dlMsgAlloc[ueIdx]->dlMsgSchedInfo[schInfoIdx].dlMsgInfo.dlMsgPdu = NULLP;
3719 MAC_FREE(dlInfo->dlMsgAlloc[ueIdx], sizeof(DlMsgAlloc));
3723 /* Fill message header */
3724 DU_LOG("\nDEBUG --> LWR_MAC: Sending TX DATA Request");
3725 prevElem->p_next = txDataElem;
3731 /***********************************************************************
3733 * @brief calculates the total size to be allocated for UL TTI Req
3737 * Function : getnPdus
3740 * -calculates the total pdu count to be allocated for UL TTI Req
3742 * @params[in] Pointer to fapi Ul TTI Req
3743 * Pointer to CurrUlSlot
3745 * ********************************************************************/
3747 uint8_t getnPdus(fapi_ul_tti_req_t *ulTtiReq, MacUlSlot *currUlSlot)
3749 uint8_t pduCount = 0;
3751 if(ulTtiReq && currUlSlot)
3753 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_PRACH)
3756 ulTtiReq->rachPresent++;
3758 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_PUSCH)
3763 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_PUSCH_UCI)
3768 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_UCI)
3773 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_SRS)
3782 /***********************************************************************
3784 * @brief Set the value of zero correlation config in PRACH PDU
3788 * Function : setNumCs
3791 * -Set the value of zero correlation config in PRACH PDU
3793 * @params[in] Pointer to zero correlation config
3794 * Pointer to MacCellCfg
3795 * ********************************************************************/
3797 void setNumCs(uint16_t *numCs, MacCellCfg *macCellCfg)
3801 if(macCellCfg != NULLP)
3803 idx = macCellCfg->prachCfg.fdm[0].zeroCorrZoneCfg;
3804 *numCs = UnrestrictedSetNcsTable[idx];
3809 /***********************************************************************
3811 * @brief Fills the PRACH PDU in UL TTI Request
3815 * Function : fillPrachPdu
3818 * -Fills the PRACH PDU in UL TTI Request
3820 * @params[in] Pointer to Prach Pdu
3821 * Pointer to CurrUlSlot
3822 * Pointer to macCellCfg
3824 * ********************************************************************/
3827 void fillPrachPdu(fapi_ul_tti_req_pdu_t *ulTtiReqPdu, MacCellCfg *macCellCfg, MacUlSlot *currUlSlot)
3829 if(ulTtiReqPdu != NULLP)
3831 ulTtiReqPdu->pduType = PRACH_PDU_TYPE;
3832 ulTtiReqPdu->pdu.prach_pdu.physCellId = macCellCfg->phyCellId;
3833 ulTtiReqPdu->pdu.prach_pdu.numPrachOcas = \
3834 currUlSlot->ulInfo.prachSchInfo.numPrachOcas;
3835 ulTtiReqPdu->pdu.prach_pdu.prachFormat = \
3836 currUlSlot->ulInfo.prachSchInfo.prachFormat;
3837 ulTtiReqPdu->pdu.prach_pdu.numRa = currUlSlot->ulInfo.prachSchInfo.numRa;
3838 ulTtiReqPdu->pdu.prach_pdu.prachStartSymbol = \
3839 currUlSlot->ulInfo.prachSchInfo.prachStartSymb;
3840 setNumCs(&ulTtiReqPdu->pdu.prach_pdu.numCs, macCellCfg);
3841 ulTtiReqPdu->pdu.prach_pdu.beamforming.numPrgs = 0;
3842 ulTtiReqPdu->pdu.prach_pdu.beamforming.prgSize = 0;
3843 ulTtiReqPdu->pdu.prach_pdu.beamforming.digBfInterface = 0;
3844 ulTtiReqPdu->pdu.prach_pdu.beamforming.rx_bfi[0].beamIdx[0].beamidx = 0;
3845 ulTtiReqPdu->pduSize = sizeof(fapi_ul_prach_pdu_t);
3849 /*******************************************************************
3851 * @brief Filling PUSCH PDU in UL TTI Request
3855 * Function : fillPuschPdu
3857 * Functionality: Filling PUSCH PDU in UL TTI Request
3860 * @return ROK - success
3863 * ****************************************************************/
3864 void fillPuschPdu(fapi_ul_tti_req_pdu_t *ulTtiReqPdu, MacCellCfg *macCellCfg, MacUlSlot *currUlSlot)
3866 if(ulTtiReqPdu != NULLP)
3868 ulTtiReqPdu->pduType = PUSCH_PDU_TYPE;
3869 memset(&ulTtiReqPdu->pdu.pusch_pdu, 0, sizeof(fapi_ul_pusch_pdu_t));
3870 ulTtiReqPdu->pdu.pusch_pdu.pduBitMap = 1;
3871 ulTtiReqPdu->pdu.pusch_pdu.rnti = currUlSlot->ulInfo.crnti;
3872 /* TODO : Fill handle in raCb when scheduling pusch and access here */
3873 ulTtiReqPdu->pdu.pusch_pdu.handle = 100;
3874 ulTtiReqPdu->pdu.pusch_pdu.bwpSize = macCellCfg->initialUlBwp.bwp.numPrb;
3875 ulTtiReqPdu->pdu.pusch_pdu.bwpStart = macCellCfg->initialUlBwp.bwp.firstPrb;
3876 ulTtiReqPdu->pdu.pusch_pdu.subCarrierSpacing = \
3877 macCellCfg->initialUlBwp.bwp.scs;
3878 ulTtiReqPdu->pdu.pusch_pdu.cyclicPrefix = \
3879 macCellCfg->initialUlBwp.bwp.cyclicPrefix;
3880 ulTtiReqPdu->pdu.pusch_pdu.targetCodeRate = 308;
3881 ulTtiReqPdu->pdu.pusch_pdu.qamModOrder = currUlSlot->ulInfo.schPuschInfo.tbInfo.qamOrder;
3882 ulTtiReqPdu->pdu.pusch_pdu.mcsIndex = currUlSlot->ulInfo.schPuschInfo.tbInfo.mcs;
3883 ulTtiReqPdu->pdu.pusch_pdu.mcsTable = currUlSlot->ulInfo.schPuschInfo.tbInfo.mcsTable;
3884 ulTtiReqPdu->pdu.pusch_pdu.transformPrecoding = 1;
3885 ulTtiReqPdu->pdu.pusch_pdu.dataScramblingId = currUlSlot->ulInfo.cellId;
3886 ulTtiReqPdu->pdu.pusch_pdu.nrOfLayers = 1;
3887 ulTtiReqPdu->pdu.pusch_pdu.ulDmrsSymbPos = 4;
3888 ulTtiReqPdu->pdu.pusch_pdu.dmrsConfigType = 0;
3889 ulTtiReqPdu->pdu.pusch_pdu.ulDmrsScramblingId = currUlSlot->ulInfo.cellId;
3890 ulTtiReqPdu->pdu.pusch_pdu.scid = 0;
3891 ulTtiReqPdu->pdu.pusch_pdu.numDmrsCdmGrpsNoData = 1;
3892 ulTtiReqPdu->pdu.pusch_pdu.dmrsPorts = 0;
3893 ulTtiReqPdu->pdu.pusch_pdu.resourceAlloc = \
3894 currUlSlot->ulInfo.schPuschInfo.resAllocType;
3895 ulTtiReqPdu->pdu.pusch_pdu.rbStart = \
3896 currUlSlot->ulInfo.schPuschInfo.fdAlloc.startPrb;
3897 ulTtiReqPdu->pdu.pusch_pdu.rbSize = \
3898 currUlSlot->ulInfo.schPuschInfo.fdAlloc.numPrb;
3899 ulTtiReqPdu->pdu.pusch_pdu.vrbToPrbMapping = 0;
3900 ulTtiReqPdu->pdu.pusch_pdu.frequencyHopping = 0;
3901 ulTtiReqPdu->pdu.pusch_pdu.txDirectCurrentLocation = 0;
3902 ulTtiReqPdu->pdu.pusch_pdu.uplinkFrequencyShift7p5khz = 0;
3903 ulTtiReqPdu->pdu.pusch_pdu.startSymbIndex = \
3904 currUlSlot->ulInfo.schPuschInfo.tdAlloc.startSymb;
3905 ulTtiReqPdu->pdu.pusch_pdu.nrOfSymbols = \
3906 currUlSlot->ulInfo.schPuschInfo.tdAlloc.numSymb;
3907 ulTtiReqPdu->pdu.pusch_pdu.mappingType = \
3908 currUlSlot->ulInfo.schPuschInfo.dmrsMappingType;
3909 ulTtiReqPdu->pdu.pusch_pdu.nrOfDmrsSymbols = \
3910 currUlSlot->ulInfo.schPuschInfo.nrOfDmrsSymbols;
3911 ulTtiReqPdu->pdu.pusch_pdu.dmrsAddPos = \
3912 currUlSlot->ulInfo.schPuschInfo.dmrsAddPos;
3913 ulTtiReqPdu->pdu.pusch_pdu.puschData.rvIndex = \
3914 currUlSlot->ulInfo.schPuschInfo.tbInfo.rv;
3915 ulTtiReqPdu->pdu.pusch_pdu.puschData.harqProcessId = \
3916 currUlSlot->ulInfo.schPuschInfo.harqProcId;
3917 ulTtiReqPdu->pdu.pusch_pdu.puschData.newDataIndicator = \
3918 currUlSlot->ulInfo.schPuschInfo.tbInfo.ndi;
3919 ulTtiReqPdu->pdu.pusch_pdu.puschData.tbSize = \
3920 currUlSlot->ulInfo.schPuschInfo.tbInfo.tbSize;
3921 /* numCb is 0 for new transmission */
3922 ulTtiReqPdu->pdu.pusch_pdu.puschData.numCb = 0;
3924 ulTtiReqPdu->pduSize = sizeof(fapi_ul_pusch_pdu_t);
3928 /*******************************************************************
3930 * @brief Fill PUCCH PDU in Ul TTI Request
3934 * Function : fillPucchPdu
3936 * Functionality: Fill PUCCH PDU in Ul TTI Request
3939 * @return ROK - success
3942 * ****************************************************************/
3943 void fillPucchPdu(fapi_ul_tti_req_pdu_t *ulTtiReqPdu, MacCellCfg *macCellCfg,\
3944 MacUlSlot *currUlSlot)
3946 if(ulTtiReqPdu != NULLP)
3948 ulTtiReqPdu->pduType = PUCCH_PDU_TYPE;
3949 memset(&ulTtiReqPdu->pdu.pucch_pdu, 0, sizeof(fapi_ul_pucch_pdu_t));
3950 ulTtiReqPdu->pdu.pucch_pdu.rnti = currUlSlot->ulInfo.schPucchInfo.rnti;
3951 /* TODO : Fill handle in raCb when scheduling pucch and access here */
3952 ulTtiReqPdu->pdu.pucch_pdu.handle = 100;
3953 ulTtiReqPdu->pdu.pucch_pdu.bwpSize = macCellCfg->initialUlBwp.bwp.numPrb;
3954 ulTtiReqPdu->pdu.pucch_pdu.bwpStart = macCellCfg->initialUlBwp.bwp.firstPrb;
3955 ulTtiReqPdu->pdu.pucch_pdu.subCarrierSpacing = macCellCfg->initialUlBwp.bwp.scs;
3956 ulTtiReqPdu->pdu.pucch_pdu.cyclicPrefix = macCellCfg->initialUlBwp.bwp.cyclicPrefix;
3957 ulTtiReqPdu->pdu.pucch_pdu.formatType = currUlSlot->ulInfo.schPucchInfo.pucchFormat; /* Supporting PUCCH Format 0 */
3958 ulTtiReqPdu->pdu.pucch_pdu.multiSlotTxIndicator = 0; /* No Multi Slot transmission */
3960 ulTtiReqPdu->pdu.pucch_pdu.prbStart = currUlSlot->ulInfo.schPucchInfo.fdAlloc.startPrb;
3961 ulTtiReqPdu->pdu.pucch_pdu.prbSize = currUlSlot->ulInfo.schPucchInfo.fdAlloc.numPrb;
3962 ulTtiReqPdu->pdu.pucch_pdu.startSymbolIndex = currUlSlot->ulInfo.schPucchInfo.tdAlloc.startSymb;
3963 ulTtiReqPdu->pdu.pucch_pdu.nrOfSymbols = currUlSlot->ulInfo.schPucchInfo.tdAlloc.numSymb;
3964 ulTtiReqPdu->pdu.pucch_pdu.freqHopFlag = currUlSlot->ulInfo.schPucchInfo.intraFreqHop;
3965 ulTtiReqPdu->pdu.pucch_pdu.secondHopPrb = currUlSlot->ulInfo.schPucchInfo.secondPrbHop;
3966 ulTtiReqPdu->pdu.pucch_pdu.groupHopFlag = 0;
3967 ulTtiReqPdu->pdu.pucch_pdu.sequenceHopFlag = 0;
3968 ulTtiReqPdu->pdu.pucch_pdu.hoppingId = 0;
3970 ulTtiReqPdu->pdu.pucch_pdu.initialCyclicShift = currUlSlot->ulInfo.schPucchInfo.initialCyclicShift;
3972 ulTtiReqPdu->pdu.pucch_pdu.dataScramblingId = 0; /* Valid for Format 2, 3, 4 */
3973 ulTtiReqPdu->pdu.pucch_pdu.timeDomainOccIdx = currUlSlot->ulInfo.schPucchInfo.timeDomOCC;
3974 ulTtiReqPdu->pdu.pucch_pdu.preDftOccIdx = currUlSlot->ulInfo.schPucchInfo.occIdx; /* Valid for Format 4 only */
3975 ulTtiReqPdu->pdu.pucch_pdu.preDftOccLen = currUlSlot->ulInfo.schPucchInfo.occLen; /* Valid for Format 4 only */
3976 ulTtiReqPdu->pdu.pucch_pdu.pi2Bpsk = currUlSlot->ulInfo.schPucchInfo.cmnFormatCfg.pi2BPSK;
3977 ulTtiReqPdu->pdu.pucch_pdu.addDmrsFlag = currUlSlot->ulInfo.schPucchInfo.cmnFormatCfg.addDmrs;/* Valid for Format 3, 4 only */
3978 ulTtiReqPdu->pdu.pucch_pdu.dmrsScramblingId = 0; /* Valid for Format 2 */
3979 ulTtiReqPdu->pdu.pucch_pdu.dmrsCyclicShift = 0; /* Valid for Format 4 */
3980 ulTtiReqPdu->pdu.pucch_pdu.srFlag = currUlSlot->ulInfo.schPucchInfo.srFlag;
3981 ulTtiReqPdu->pdu.pucch_pdu.bitLenHarq = currUlSlot->ulInfo.schPucchInfo.numHarqBits;
3982 ulTtiReqPdu->pdu.pucch_pdu.bitLenCsiPart1 = 0; /* Valid for Format 2, 3, 4 */
3983 ulTtiReqPdu->pdu.pucch_pdu.bitLenCsiPart2 = 0; /* Valid for Format 2, 3, 4 */
3984 ulTtiReqPdu->pdu.pucch_pdu.beamforming.numPrgs = 0; /* Not Supported */
3985 ulTtiReqPdu->pdu.pucch_pdu.beamforming.prgSize = 0;
3986 ulTtiReqPdu->pdu.pucch_pdu.beamforming.digBfInterface = 0;
3987 ulTtiReqPdu->pdu.pucch_pdu.beamforming.rx_bfi[0].beamIdx[0].beamidx = 0;
3989 ulTtiReqPdu->pduSize = sizeof(fapi_ul_pucch_pdu_t);
3995 /*******************************************************************
3997 * @brief Sends UL TTI Request to PHY
4001 * Function : fillUlTtiReq
4004 * -Sends FAPI Param req to PHY
4006 * @params[in] Pointer to CmLteTimingInfo
4007 * @return ROK - success
4010 ******************************************************************/
4011 uint16_t fillUlTtiReq(SlotTimingInfo currTimingInfo, p_fapi_api_queue_elem_t prevElem)
4013 #ifdef CALL_FLOW_DEBUG_LOG
4014 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : UL_TTI_REQUEST\n");
4018 uint16_t cellIdx =0;
4019 uint8_t pduIdx = -1;
4020 SlotTimingInfo ulTtiReqTimingInfo;
4021 MacUlSlot *currUlSlot = NULLP;
4022 MacCellCfg macCellCfg;
4023 fapi_ul_tti_req_t *ulTtiReq = NULLP;
4024 p_fapi_api_queue_elem_t ulTtiElem;
4026 if(lwrMacCb.phyState == PHY_STATE_RUNNING)
4028 GET_CELL_IDX(currTimingInfo.cellId, cellIdx);
4029 macCellCfg = macCb.macCell[cellIdx]->macCellCfg;
4032 ADD_DELTA_TO_TIME(currTimingInfo,ulTtiReqTimingInfo,PHY_DELTA_UL);
4033 currUlSlot = &macCb.macCell[cellIdx]->ulSlot[ulTtiReqTimingInfo.slot % MAX_SLOTS];
4035 LWR_MAC_ALLOC(ulTtiElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_ul_tti_req_t)));
4038 FILL_FAPI_LIST_ELEM(ulTtiElem, NULLP, FAPI_UL_TTI_REQUEST, 1, \
4039 sizeof(fapi_ul_tti_req_t));
4040 ulTtiReq = (fapi_ul_tti_req_t *)(ulTtiElem +1);
4041 memset(ulTtiReq, 0, sizeof(fapi_ul_tti_req_t));
4042 fillMsgHeader(&ulTtiReq->header, FAPI_UL_TTI_REQUEST, sizeof(fapi_ul_tti_req_t));
4043 ulTtiReq->sfn = ulTtiReqTimingInfo.sfn;
4044 ulTtiReq->slot = ulTtiReqTimingInfo.slot;
4045 ulTtiReq->nPdus = getnPdus(ulTtiReq, currUlSlot);
4046 ulTtiReq->nGroup = 0;
4047 if(ulTtiReq->nPdus > 0)
4049 /* Fill Prach Pdu */
4050 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_PRACH)
4053 fillPrachPdu(&ulTtiReq->pdus[pduIdx], &macCellCfg, currUlSlot);
4056 /* Fill PUSCH PDU */
4057 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_PUSCH)
4060 fillPuschPdu(&ulTtiReq->pdus[pduIdx], &macCellCfg, currUlSlot);
4062 /* Fill PUCCH PDU */
4063 if(currUlSlot->ulInfo.dataType & SCH_DATATYPE_UCI)
4066 fillPucchPdu(&ulTtiReq->pdus[pduIdx], &macCellCfg, currUlSlot);
4070 #ifdef ODU_SLOT_IND_DEBUG_LOG
4071 DU_LOG("\nDEBUG --> LWR_MAC: Sending UL TTI Request");
4073 prevElem->p_next = ulTtiElem;
4075 memset(currUlSlot, 0, sizeof(MacUlSlot));
4080 DU_LOG("\nERROR --> LWR_MAC: Failed to allocate memory for UL TTI Request");
4081 memset(currUlSlot, 0, sizeof(MacUlSlot));
4087 lwr_mac_procInvalidEvt(&currTimingInfo);
4094 /*******************************************************************
4096 * @brief fills bsr Ul DCI PDU required for UL DCI Request to PHY
4100 * Function : fillUlDciPdu
4103 * -Fills the Ul DCI PDU, spec Ref:38.212, Table 7.3.1-1
4105 * @params[in] Pointer to fapi_dl_dci_t
4106 * Pointer to DciInfo
4109 ******************************************************************/
4110 void fillUlDciPdu(fapi_dl_dci_t *ulDciPtr, DciInfo *schDciInfo)
4112 #ifdef CALL_FLOW_DEBUG_LOG
4113 DU_LOG("\nCall Flow: ENTMAC -> ENTLWRMAC : UL_DCI_REQUEST\n");
4115 if(ulDciPtr != NULLP)
4117 uint8_t numBytes =0;
4121 uint8_t coreset1Size = 0;
4122 uint16_t rbStart = 0;
4124 uint8_t dciFormatId = 0;
4125 uint32_t freqDomResAssign =0;
4126 uint8_t timeDomResAssign =0;
4127 uint8_t freqHopFlag =0;
4128 uint8_t modNCodScheme =0;
4130 uint8_t redundancyVer = 0;
4131 uint8_t harqProcessNum = 0;
4132 uint8_t puschTpc = 0;
4133 uint8_t ul_SlInd = 0;
4135 /* Size(in bits) of each field in DCI format 0_0 */
4136 uint8_t dciFormatIdSize = 1;
4137 uint8_t freqDomResAssignSize = 0;
4138 uint8_t timeDomResAssignSize = 4;
4139 uint8_t freqHopFlagSize = 1;
4140 uint8_t modNCodSchemeSize = 5;
4141 uint8_t ndiSize = 1;
4142 uint8_t redundancyVerSize = 2;
4143 uint8_t harqProcessNumSize = 4;
4144 uint8_t puschTpcSize = 2;
4145 uint8_t ul_SlIndSize = 1;
4147 ulDciPtr->rnti = schDciInfo->dciInfo.rnti;
4148 ulDciPtr->scramblingId = schDciInfo->dciInfo.scramblingId;
4149 ulDciPtr->scramblingRnti = schDciInfo->dciInfo.scramblingRnti;
4150 ulDciPtr->cceIndex = schDciInfo->dciInfo.cceIndex;
4151 ulDciPtr->aggregationLevel = schDciInfo->dciInfo.aggregLevel;
4152 ulDciPtr->pc_and_bform.numPrgs = schDciInfo->dciInfo.beamPdcchInfo.numPrgs;
4153 ulDciPtr->pc_and_bform.prgSize = schDciInfo->dciInfo.beamPdcchInfo.prgSize;
4154 ulDciPtr->pc_and_bform.digBfInterfaces = schDciInfo->dciInfo.beamPdcchInfo.digBfInterfaces;
4155 ulDciPtr->pc_and_bform.pmi_bfi[0].pmIdx = schDciInfo->dciInfo.beamPdcchInfo.prg[0].pmIdx;
4156 ulDciPtr->pc_and_bform.pmi_bfi[0].beamIdx[0].beamidx = schDciInfo->dciInfo.beamPdcchInfo.prg[0].beamIdx[0];
4157 ulDciPtr->beta_pdcch_1_0 = schDciInfo->dciInfo.txPdcchPower.powerValue;
4158 ulDciPtr->powerControlOffsetSS = schDciInfo->dciInfo.txPdcchPower.powerControlOffsetSS;
4160 /* Calculating freq domain resource allocation field value and size
4161 * coreset1Size = Size of coreset 1
4162 * RBStart = Starting Virtual Rsource block
4163 * RBLen = length of contiguously allocted RBs
4164 * Spec 38.214 Sec 5.1.2.2.2
4166 if(schDciInfo->formatType == FORMAT0_0)
4168 coreset1Size = schDciInfo->coresetCfg.coreSetSize;
4169 rbLen = schDciInfo->format.format0_0.freqAlloc.numPrb;
4170 rbStart = schDciInfo->format.format0_0.freqAlloc.startPrb;
4172 if((rbLen >=1) && (rbLen <= coreset1Size - rbStart))
4174 if((rbLen - 1) <= floor(coreset1Size / 2))
4175 freqDomResAssign = (coreset1Size * (rbLen-1)) + rbStart;
4177 freqDomResAssign = (coreset1Size * (coreset1Size - rbLen + 1)) \
4178 + (coreset1Size - 1 - rbStart);
4180 freqDomResAssignSize = ceil(log2(coreset1Size * (coreset1Size + 1) / 2));
4182 /* Fetching DCI field values */
4183 dciFormatId = schDciInfo->formatType; /* DCI indentifier for UL DCI */
4184 timeDomResAssign = schDciInfo->format.format0_0.rowIndex;
4185 freqHopFlag = schDciInfo->format.format0_0.freqHopFlag;
4186 modNCodScheme = schDciInfo->format.format0_0.mcs;
4187 ndi = schDciInfo->format.format0_0.ndi;
4188 redundancyVer = schDciInfo->format.format0_0.rv;
4189 harqProcessNum = schDciInfo->format.format0_0.harqProcId;
4190 puschTpc = schDciInfo->format.format0_0.tpcCmd;
4191 ul_SlInd = schDciInfo->format.format0_0.sUlCfgd;
4193 /* Reversing bits in each DCI field */
4194 dciFormatId = reverseBits(dciFormatId, dciFormatIdSize);
4195 freqDomResAssign = reverseBits(freqDomResAssign, freqDomResAssignSize);
4196 timeDomResAssign = reverseBits(timeDomResAssign, timeDomResAssignSize);
4197 modNCodScheme = reverseBits(modNCodScheme, modNCodSchemeSize);
4198 redundancyVer = reverseBits(redundancyVer, redundancyVerSize);
4199 harqProcessNum = reverseBits(harqProcessNum, harqProcessNumSize);
4200 puschTpc = reverseBits(puschTpc, puschTpcSize);
4201 ul_SlInd = reverseBits(ul_SlInd, ul_SlIndSize);
4203 /* Calulating total number of bytes in buffer */
4204 ulDciPtr->payloadSizeBits = (dciFormatIdSize + freqDomResAssignSize\
4205 + timeDomResAssignSize + freqHopFlagSize + modNCodSchemeSize + ndi \
4206 + redundancyVerSize + harqProcessNumSize + puschTpcSize + ul_SlIndSize);
4208 numBytes = ulDciPtr->payloadSizeBits / 8;
4209 if(ulDciPtr->payloadSizeBits % 8)
4212 if(numBytes > FAPI_DCI_PAYLOAD_BYTE_LEN)
4214 DU_LOG("\nERROR --> LWR_MAC : Total bytes for DCI is more than expected");
4218 /* Initialize buffer */
4219 for(bytePos = 0; bytePos < numBytes; bytePos++)
4220 ulDciPtr->payload[bytePos] = 0;
4222 bytePos = numBytes - 1;
4225 /* Packing DCI format fields */
4226 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4227 dciFormatId, dciFormatIdSize);
4228 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4229 freqDomResAssign, freqDomResAssignSize);
4230 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4231 timeDomResAssign, timeDomResAssignSize);
4232 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4233 freqHopFlag, freqHopFlagSize);
4234 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4235 modNCodScheme, modNCodSchemeSize);
4236 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4238 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4239 redundancyVer, redundancyVerSize);
4240 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4241 harqProcessNum, harqProcessNumSize);
4242 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4243 puschTpc, puschTpcSize);
4244 fillDlDciPayload(ulDciPtr->payload, &bytePos, &bitPos,\
4245 ul_SlInd, ul_SlIndSize);
4247 } /* fillUlDciPdu */
4249 /*******************************************************************
4251 * @brief fills PDCCH PDU required for UL DCI REQ to PHY
4255 * Function : fillUlDciPdcchPdu
4258 * -Fills the Pdcch PDU info
4260 * @params[in] Pointer to FAPI DL TTI Req
4261 * Pointer to PdcchCfg
4264 ******************************************************************/
4265 uint8_t fillUlDciPdcchPdu(fapi_dci_pdu_t *ulDciReqPdu, DlSchedInfo *dlInfo, uint8_t coreSetType)
4267 if(ulDciReqPdu != NULLP)
4269 memset(&ulDciReqPdu->pdcchPduConfig, 0, sizeof(fapi_dl_pdcch_pdu_t));
4270 fillUlDciPdu(ulDciReqPdu->pdcchPduConfig.dlDci, dlInfo->ulGrant);
4271 ulDciReqPdu->pduType = PDCCH_PDU_TYPE;
4272 ulDciReqPdu->pdcchPduConfig.bwpSize = dlInfo->ulGrant->bwpCfg.freqAlloc.numPrb;
4273 ulDciReqPdu->pdcchPduConfig.bwpStart = dlInfo->ulGrant->bwpCfg.freqAlloc.startPrb;
4274 ulDciReqPdu->pdcchPduConfig.subCarrierSpacing = dlInfo->ulGrant->bwpCfg.subcarrierSpacing;
4275 ulDciReqPdu->pdcchPduConfig.cyclicPrefix = dlInfo->ulGrant->bwpCfg.cyclicPrefix;
4276 ulDciReqPdu->pdcchPduConfig.startSymbolIndex = dlInfo->ulGrant->coresetCfg.startSymbolIndex;
4277 ulDciReqPdu->pdcchPduConfig.durationSymbols = dlInfo->ulGrant->coresetCfg.durationSymbols;
4278 memcpy(ulDciReqPdu->pdcchPduConfig.freqDomainResource, dlInfo->ulGrant->coresetCfg.freqDomainResource, 6);
4279 ulDciReqPdu->pdcchPduConfig.cceRegMappingType = dlInfo->ulGrant->coresetCfg.cceRegMappingType;
4280 ulDciReqPdu->pdcchPduConfig.regBundleSize = dlInfo->ulGrant->coresetCfg.regBundleSize;
4281 ulDciReqPdu->pdcchPduConfig.interleaverSize = dlInfo->ulGrant->coresetCfg.interleaverSize;
4282 ulDciReqPdu->pdcchPduConfig.shiftIndex = dlInfo->ulGrant->coresetCfg.shiftIndex;
4283 ulDciReqPdu->pdcchPduConfig.precoderGranularity = dlInfo->ulGrant->coresetCfg.precoderGranularity;
4284 ulDciReqPdu->pdcchPduConfig.numDlDci = 1;
4285 ulDciReqPdu->pdcchPduConfig.coreSetType = coreSetType;
4287 /* Calculating PDU length. Considering only one Ul dci pdu for now */
4288 ulDciReqPdu->pduSize = sizeof(fapi_dl_pdcch_pdu_t);
4293 /*******************************************************************
4295 * @brief Sends UL DCI Request to PHY
4299 * Function : fillUlDciReq
4302 * -Sends FAPI Ul Dci req to PHY
4304 * @params[in] Pointer to CmLteTimingInfo
4305 * @return ROK - success
4308 ******************************************************************/
4309 uint16_t fillUlDciReq(SlotTimingInfo currTimingInfo, p_fapi_api_queue_elem_t prevElem)
4313 uint8_t numPduEncoded = 0;
4314 SlotTimingInfo ulDciReqTimingInfo ={0};
4315 MacDlSlot *currDlSlot = NULLP;
4316 fapi_ul_dci_req_t *ulDciReq =NULLP;
4317 p_fapi_api_queue_elem_t ulDciElem;
4319 if(lwrMacCb.phyState == PHY_STATE_RUNNING)
4321 GET_CELL_IDX(currTimingInfo.cellId, cellIdx);
4322 memcpy(&ulDciReqTimingInfo, &currTimingInfo, sizeof(SlotTimingInfo));
4323 currDlSlot = &macCb.macCell[cellIdx]->dlSlot[ulDciReqTimingInfo.slot % MAX_SLOTS];
4325 LWR_MAC_ALLOC(ulDciElem, (sizeof(fapi_api_queue_elem_t) + sizeof(fapi_ul_dci_req_t)));
4328 FILL_FAPI_LIST_ELEM(ulDciElem, NULLP, FAPI_UL_DCI_REQUEST, 1, \
4329 sizeof(fapi_ul_dci_req_t));
4330 ulDciReq = (fapi_ul_dci_req_t *)(ulDciElem +1);
4331 memset(ulDciReq, 0, sizeof(fapi_ul_dci_req_t));
4332 fillMsgHeader(&ulDciReq->header, FAPI_UL_DCI_REQUEST, sizeof(fapi_ul_dci_req_t));
4334 ulDciReq->sfn = ulDciReqTimingInfo.sfn;
4335 ulDciReq->slot = ulDciReqTimingInfo.slot;
4336 if(currDlSlot->dlInfo.ulGrant != NULLP)
4338 ulDciReq->numPdus = 1; // No. of PDCCH PDUs
4339 if(ulDciReq->numPdus > 0)
4341 /* Fill PDCCH configuration Pdu */
4342 fillUlDciPdcchPdu(&ulDciReq->pdus[numPduEncoded], &currDlSlot->dlInfo, CORESET_TYPE1);
4344 /* free UL GRANT at SCH */
4345 MAC_FREE(currDlSlot->dlInfo.ulGrant, sizeof(DciInfo));
4347 #ifdef ODU_SLOT_IND_DEBUG_LOG
4348 DU_LOG("\nDEBUG --> LWR_MAC: Sending UL DCI Request");
4351 prevElem->p_next = ulDciElem;
4356 lwr_mac_procInvalidEvt(&currTimingInfo);
4362 lwrMacFsmHdlr fapiEvtHdlr[MAX_STATE][MAX_EVENT] =
4365 /* PHY_STATE_IDLE */
4366 #ifdef INTEL_TIMER_MODE
4367 lwr_mac_procIqSamplesReqEvt,
4369 lwr_mac_procParamReqEvt,
4370 lwr_mac_procParamRspEvt,
4371 lwr_mac_procConfigReqEvt,
4372 lwr_mac_procConfigRspEvt,
4373 lwr_mac_procInvalidEvt,
4374 lwr_mac_procInvalidEvt,
4377 /* PHY_STATE_CONFIGURED */
4378 #ifdef INTEL_TIMER_MODE
4379 lwr_mac_procInvalidEvt,
4381 lwr_mac_procParamReqEvt,
4382 lwr_mac_procParamRspEvt,
4383 lwr_mac_procConfigReqEvt,
4384 lwr_mac_procConfigRspEvt,
4385 lwr_mac_procStartReqEvt,
4386 lwr_mac_procInvalidEvt,
4389 /* PHY_STATE_RUNNING */
4390 #ifdef INTEL_TIMER_MODE
4391 lwr_mac_procInvalidEvt,
4393 lwr_mac_procInvalidEvt,
4394 lwr_mac_procInvalidEvt,
4395 lwr_mac_procConfigReqEvt,
4396 lwr_mac_procConfigRspEvt,
4397 lwr_mac_procInvalidEvt,
4398 lwr_mac_procInvalidEvt,
4402 /*******************************************************************
4404 * @brief Sends message to LWR_MAC Fsm Event Handler
4408 * Function : sendToLowerMac
4411 * -Sends message to LowerMac
4413 * @params[in] Message Type
4419 ******************************************************************/
4420 void sendToLowerMac(uint16_t msgType, uint32_t msgLen, void *msg)
4422 lwrMacCb.event = msgType;
4423 fapiEvtHdlr[lwrMacCb.phyState][lwrMacCb.event](msg);
4425 /**********************************************************************
4427 **********************************************************************/