X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?p=o-du%2Fphy.git;a=blobdiff_plain;f=fapi_5g%2Fsource%2Fapi%2Ffapi2phy%2Fp7%2Fnr5g_fapi_proc_dl_tti_req.c;fp=fapi_5g%2Fsource%2Fapi%2Ffapi2phy%2Fp7%2Fnr5g_fapi_proc_dl_tti_req.c;h=389868604c3914578c86d7cc43c199304f51f176;hp=eb4d1cbeaef3b17e9b6932e302c68ff5f39efef3;hb=2de97529a4c5a1922214ba0e6f0fb84cacbd0bc7;hpb=81a09690b36b3a4e89b4dae34f30933de13f7f90 diff --git a/fapi_5g/source/api/fapi2phy/p7/nr5g_fapi_proc_dl_tti_req.c b/fapi_5g/source/api/fapi2phy/p7/nr5g_fapi_proc_dl_tti_req.c index eb4d1cb..3898686 100644 --- a/fapi_5g/source/api/fapi2phy/p7/nr5g_fapi_proc_dl_tti_req.c +++ b/fapi_5g/source/api/fapi2phy/p7/nr5g_fapi_proc_dl_tti_req.c @@ -43,6 +43,7 @@ * **/ uint8_t nr5g_fapi_dl_tti_request( + bool is_urllc, p_nr5g_fapi_phy_instance_t p_phy_instance, fapi_dl_tti_req_t * p_fapi_req, fapi_vendor_msg_t * p_fapi_vendor_msg) @@ -50,12 +51,12 @@ uint8_t nr5g_fapi_dl_tti_request( PDLConfigRequestStruct p_ia_dl_config_req; PMAC2PHY_QUEUE_EL p_list_elem; nr5g_fapi_stats_t *p_stats; - UNUSED(p_fapi_vendor_msg); if (NULL == p_phy_instance) { NR5G_FAPI_LOG(ERROR_LOG, ("[DL_TTI.request] Invalid " "Phy Instance")); return FAILURE; } + p_stats = &p_phy_instance->stats; p_stats->fapi_stats.fapi_dl_tti_req++; @@ -75,7 +76,7 @@ uint8_t nr5g_fapi_dl_tti_request( p_ia_dl_config_req = (PDLConfigRequestStruct) (p_list_elem + 1); if (FAILURE == nr5g_fapi_dl_tti_req_to_phy_translation(p_phy_instance, - p_fapi_req, p_ia_dl_config_req)) { + p_fapi_req, p_fapi_vendor_msg, p_ia_dl_config_req)) { nr5g_fapi_fapi2phy_destroy_api_list_elem(p_list_elem); NR5G_FAPI_LOG(DEBUG_LOG, ("[DL_TTI.request][%d][%d,%d] Not Sent", p_phy_instance->phy_id, p_ia_dl_config_req->sSFN_Slot.nSFN, @@ -83,17 +84,18 @@ uint8_t nr5g_fapi_dl_tti_request( return FAILURE; } /* Add element to send list */ - nr5g_fapi_fapi2phy_add_to_api_list(p_list_elem); + nr5g_fapi_fapi2phy_add_to_api_list(is_urllc, p_list_elem); p_stats->iapi_stats.iapi_dl_config_req++; - NR5G_FAPI_LOG(DEBUG_LOG, ("[DL_TTI.request][%d][%d,%d]", - p_phy_instance->phy_id, p_ia_dl_config_req->sSFN_Slot.nSFN, - p_ia_dl_config_req->sSFN_Slot.nSlot)); + NR5G_FAPI_LOG(DEBUG_LOG, ("[DL_TTI.request][%u][%u,%u,%u] is_urllc %u", + p_phy_instance->phy_id, + p_ia_dl_config_req->sSFN_Slot.nSFN, p_ia_dl_config_req->sSFN_Slot.nSlot, + p_ia_dl_config_req->sSFN_Slot.nSym, is_urllc)); return SUCCESS; } - /** @ingroup group_source_api_p5_fapi2phy_proc + /** @ingroup group_source_api_p7_fapi2phy_proc * * @param[in] p_fapi_req Pointer to FAPI DL_TTI.request structure. * @param[out] p_ia_dl_config_req Pointer to IAPI DL_TTI.request structure. @@ -108,6 +110,7 @@ uint8_t nr5g_fapi_dl_tti_request( uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( p_nr5g_fapi_phy_instance_t p_phy_instance, fapi_dl_tti_req_t * p_fapi_req, + fapi_vendor_msg_t * p_fapi_vendor_msg, PDLConfigRequestStruct p_phy_req) { int idx = 0, nDCI = 0, jdx = 0; @@ -143,10 +146,6 @@ uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( p_phy_req->sSFN_Slot.nSFN = p_fapi_req->sfn; p_phy_req->sSFN_Slot.nSlot = p_fapi_req->slot; - // setting to defaults - p_phy_req->nLte_CRS_carrierBandwidthDL = 100; - p_phy_req->nLte_CRS_nrofCRS_Ports = 2; - for (idx = 0; idx < p_phy_req->nGroup; ++idx) { p_ueGrpInfo = &p_fapi_req->ue_grp_info[idx]; pPDSCHGroupInfoStruct = &p_phy_req->sPDSCHGroupInfoStruct[idx]; @@ -184,8 +183,7 @@ uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( p_dlsch_pdu->sPDUHdr.nPDUType = DL_PDU_TYPE_DLSCH; p_dlsch_pdu->sPDUHdr.nPDUSize = pdsch_size; total_size += pdsch_size; - nr5g_fapi_fill_pdsch_pdu(p_phy_instance, p_pdsch_pdu, - p_dlsch_pdu); + nr5g_fapi_fill_pdsch_pdu(p_phy_instance, p_pdsch_pdu, p_dlsch_pdu); break; case FAPI_PBCH_PDU_TYPE: @@ -207,8 +205,7 @@ uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( pCSIRSPdu->sPDUHdr.nPDUType = DL_PDU_TYPE_CSIRS; pCSIRSPdu->sPDUHdr.nPDUSize = csirs_size; total_size += csirs_size; - nr5g_fapi_fill_csi_rs_pdu(p_phy_instance, pCSIRSPdu, - p_csi_rs_pdu); + nr5g_fapi_fill_csi_rs_pdu(p_phy_instance, p_csi_rs_pdu, pCSIRSPdu); break; default: @@ -223,9 +220,118 @@ uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( p_phy_req->nDCI = nDCI; p_phy_req->sMsgHdr.nMessageLen = total_size; + + if (NULL != p_fapi_vendor_msg) + { + nr5g_fapi_dl_tti_req_to_phy_translation_vendor_ext(p_phy_instance, + p_fapi_vendor_msg, + p_phy_req); + } + return SUCCESS; } + /** @ingroup group_source_api_p5_fapi2phy_proc + * + * @param[in] p_fapi_vendor_msg Pointer to FAPI DL_TTI.request vendor message. + * @param[out] p_ia_dl_config_req Pointer to IAPI DL_TTI.request structure. + * + * @return no return. + * + * @description + * This function fills fields for DL_TTI.request structure that come from + * a vendor extension. + * +**/ +void nr5g_fapi_dl_tti_req_to_phy_translation_vendor_ext( + p_nr5g_fapi_phy_instance_t p_phy_instance, + fapi_vendor_msg_t * p_fapi_vendor_msg, + PDLConfigRequestStruct p_phy_req) +{ + int idx = 0; + + fapi_vendor_dl_tti_req_t *p_vendor_dl_tti_req = NULL; + fapi_vendor_dl_pdcch_pdu_t *p_vendor_pdcch_pdu = NULL; + fapi_vendor_dl_pdsch_pdu_t *p_vendor_pdsch_pdu = NULL; + fapi_vendor_csi_rs_pdu_t *p_vendor_csi_rs_pdu = NULL; + + PPDUStruct pPduStruct = NULL; + PDCIPDUStruct p_dci_pdu = NULL; + PDLSCHPDUStruct p_dlsch_pdu = NULL; + PCSIRSPDUStruct p_CSIRS_pdu = NULL; + + p_vendor_dl_tti_req = &p_fapi_vendor_msg->p7_req_vendor.dl_tti_req; + + p_phy_req->sSFN_Slot.nSym = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.sym; + + p_phy_req->nLte_CRS_Present = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.lte_crs_present; + p_phy_req->nLte_CRS_carrierFreqDL = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.lte_crs_carrier_freq_dl; + p_phy_req->nLte_CRS_carrierBandwidthDL = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.lte_crs_carrier_bandwidth_dl; + p_phy_req->nLte_CRS_nrofCRS_Ports = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.lte_crs_nr_of_crs_ports; + p_phy_req->nLte_CRS_v_shift = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.lte_crs_v_shift; + p_phy_req->nPdcchPrecoderEn = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.pdcch_precoder_en; + p_phy_req->nSSBPrecoderEn = p_fapi_vendor_msg->p7_req_vendor.dl_tti_req.ssb_precoder_en; + + pPduStruct = p_phy_req->sDLPDU; + for (idx = 0; idx < p_phy_req->nPDU; ++idx) { + switch (pPduStruct->nPDUType) { + case DL_PDU_TYPE_DCI: + p_dci_pdu = (PDCIPDUStruct) pPduStruct; + p_vendor_pdcch_pdu = + &p_vendor_dl_tti_req->pdus[idx].pdu.pdcch_pdu; + + if (USE_VENDOR_EPREXSSB == p_phy_instance->phy_config.use_vendor_EpreXSSB) + { + p_dci_pdu->nEpreRatioOfPDCCHToSSB = + p_vendor_pdcch_pdu->dl_dci[0].epre_ratio_of_pdcch_to_ssb; + p_dci_pdu->nEpreRatioOfDmrsToSSB = + p_vendor_pdcch_pdu->dl_dci[0].epre_ratio_of_dmrs_to_ssb; + } + break; + + case DL_PDU_TYPE_DLSCH: + p_dlsch_pdu = (PDLSCHPDUStruct) pPduStruct; + p_vendor_pdsch_pdu = + &p_vendor_dl_tti_req->pdus[idx].pdu.pdsch_pdu; + + p_dlsch_pdu->nNrOfAntennaPorts = p_vendor_pdsch_pdu->nr_of_antenna_ports; + + if (USE_VENDOR_EPREXSSB == p_phy_instance->phy_config.use_vendor_EpreXSSB) + { + p_dlsch_pdu->nEpreRatioOfDmrsToSSB = + p_vendor_pdsch_pdu->epre_ratio_of_dmrs_to_ssb; + p_dlsch_pdu->nEpreRatioOfPDSCHToSSB = + p_vendor_pdsch_pdu->epre_ratio_of_pdsch_to_ssb; + } + + NR5G_FAPI_MEMCPY(p_dlsch_pdu->nTxRUIdx, sizeof(p_dlsch_pdu->nTxRUIdx), + p_vendor_pdsch_pdu->tx_ru_idx, sizeof(p_vendor_pdsch_pdu->tx_ru_idx)); + break; + + case DL_PDU_TYPE_PBCH: + // No vendor ext + break; + + case DL_PDU_TYPE_CSIRS: + p_CSIRS_pdu = (PCSIRSPDUStruct) pPduStruct; + p_vendor_csi_rs_pdu = &p_vendor_dl_tti_req->pdus[idx].pdu.csi_rs_pdu; + + if (USE_VENDOR_EPREXSSB == p_phy_instance->phy_config.use_vendor_EpreXSSB) + { + p_CSIRS_pdu->nEpreRatioToSSB = p_vendor_csi_rs_pdu->epre_ratio_to_ssb; + } + break; + + default: + NR5G_FAPI_LOG(ERROR_LOG, ("[DL_TTI] Invalid Pdu Type: %d", + pPduStruct->nPDUType)); + return; + } + pPduStruct = + (PDUStruct *) ((uint8_t *) pPduStruct + pPduStruct->nPDUSize); + } +} + /** @ingroup group_nr5g_test_config * * @param[in] p_pdcch_pdu @@ -234,7 +340,7 @@ uint8_t nr5g_fapi_dl_tti_req_to_phy_translation( * @return void * * @description - * This function fills FAPI PDCCH Pdu from IAPI DCIPdu + * This function fills IAPI DCIPdu from FAPI PDCCH Pdu * **/ void nr5g_fapi_fill_dci_pdu( @@ -273,11 +379,15 @@ void nr5g_fapi_fill_dci_pdu( p_dci_pdu->nRNTI = p_pdcch_pdu->dlDci[0].rnti; p_dci_pdu->nTotalBits = p_pdcch_pdu->dlDci[0].payloadSizeBits; + if (USE_VENDOR_EPREXSSB != p_phy_instance->phy_config.use_vendor_EpreXSSB) { p_dci_pdu->nEpreRatioOfPDCCHToSSB = nr5g_fapi_calculate_nEpreRatioOfPDCCHToSSB(p_pdcch_pdu-> dlDci[0].beta_pdcch_1_0); p_dci_pdu->nEpreRatioOfDmrsToSSB = - p_pdcch_pdu->dlDci[0].powerControlOffsetSS; + nr5g_fapi_calculate_nEpreRatioOfDmrsToSSB(p_pdcch_pdu-> + dlDci[0].powerControlOffsetSS); + } + if (FAILURE == NR5G_FAPI_MEMCPY(p_dci_pdu->nDciBits, sizeof(uint8_t) * MAX_DCI_BIT_BYTE_LEN, p_pdcch_pdu->dlDci[0].payload, @@ -330,7 +440,7 @@ void nr5g_fapi_fill_pdsch_pdu( } //p_dlsch_pdu->nNrOfAntennaPorts = p_phy_instance->phy_config.n_nr_of_rx_ant; p_dlsch_pdu->nNrOfLayers = p_pdsch_pdu->nrOfLayers; - p_dlsch_pdu->nNrOfAntennaPorts = p_pdsch_pdu->nrOfLayers; + p_dlsch_pdu->nNrOfAntennaPorts = p_dlsch_pdu->nNrOfLayers; p_dlsch_pdu->nTransmissionScheme = p_pdsch_pdu->transmissionScheme; p_dlsch_pdu->nDMRSConfigType = p_pdsch_pdu->dmrsConfigType; p_dlsch_pdu->nNIDnSCID = p_pdsch_pdu->dlDmrsScramblingId; @@ -355,6 +465,9 @@ void nr5g_fapi_fill_pdsch_pdu( p_dlsch_pdu->nResourceAllocType = p_pdsch_pdu->resourceAlloc; p_dlsch_pdu->nRBStart = p_pdsch_pdu->rbStart; p_dlsch_pdu->nRBSize = p_pdsch_pdu->rbSize; + p_dlsch_pdu->nPMI = (p_pdsch_pdu->preCodingAndBeamforming.numPrgs > 0) + ? p_pdsch_pdu->preCodingAndBeamforming.pmi_bfi[0].pmIdx + : 0; p_dlsch_pdu->nVRBtoPRB = p_pdsch_pdu->vrbToPrbMapping; p_dlsch_pdu->nStartSymbolIndex = p_pdsch_pdu->startSymbIndex; p_dlsch_pdu->nNrOfSymbols = p_pdsch_pdu->nrOfSymbols; @@ -368,8 +481,16 @@ void nr5g_fapi_fill_pdsch_pdu( p_dlsch_pdu->nPTRSFreqDensity = p_pdsch_pdu->ptrsFreqDensity; p_dlsch_pdu->nPTRSReOffset = p_pdsch_pdu->ptrsReOffset; p_dlsch_pdu->nEpreRatioOfPDSCHToPTRS = p_pdsch_pdu->nEpreRatioOfPdschToPtrs; - // Currently no mapping info available. - //p_dlsch_pdu->nEpreRatioOfPDSCHToSSB = 0x1170; + + if (USE_VENDOR_EPREXSSB != p_phy_instance->phy_config.use_vendor_EpreXSSB) { + p_dlsch_pdu->nEpreRatioOfDmrsToSSB = + nr5g_fapi_calculate_nEpreRatioOfDmrsToSSB( + p_pdsch_pdu->powerControlOffsetSS); + p_dlsch_pdu->nEpreRatioOfPDSCHToSSB = + nr5g_fapi_calculate_nEpreRatioOfPDSCHToSSB( + p_pdsch_pdu->powerControlOffset); + } + // PTRS Information p_dlsch_pdu->nPTRSPresent = p_pdsch_pdu->pduBitMap & 0x0001; p_dlsch_pdu->nNrOfPTRSPorts = @@ -384,21 +505,19 @@ void nr5g_fapi_fill_pdsch_pdu( p_dlsch_pdu->nNrOfDMRSAssPTRS[1] = 0x1; p_dlsch_pdu->n1n2 = 0x201; - for (idx = 0; (idx < MAX_TXRU_NUM && idx < port_index); idx++) { - p_dlsch_pdu->nTxRUIdx[idx] = p_dlsch_pdu->nPortIndex[idx]; - } p_dlsch_pdu->nNrofTxRU = port_index; + p_stats->iapi_stats.iapi_dl_tti_pdsch_pdus++; } /** @ingroup group_nr5g_test_config * - * @param[in] nEpreRatioOfPDCCHToSSB + * @param[in] beta_pdcch_1_0 * - * @return uint8_t mapping + * @return uint16_t mapping * * @description - * This function maps IAPI to FAPI value range. + * This function maps FAPI to IAPI value range. * * * Please refer 5G FAPI-IAPI Translator Module SW Design Document for details on @@ -440,6 +559,133 @@ uint16_t nr5g_fapi_calculate_nEpreRatioOfPDCCHToSSB( } } +/** @ingroup group_nr5g_test_config + * + * @param[in] power_control_offset_ss + * + * @return uint16_t mapping + * + * @description + * This function maps FAPI to IAPI value range. + * + * + * nEpreRatioOfDmrsToSSB: 1->20000, 0.001dB step, -6dB to 14dB + * powerControlOffsetSS: 0->3, 3dB step, -3dB to 6dB + * |----------------------------------------------| + * | nEpreRatioOfDmrsToSSB | powerControlOffsetSS | + * |----------------------------------------------| + * | 3000 | 0 | + * | 6000 | 1 | + * | 9000 | 2 | + * | 12000 | 3 | + * |----------------------------------------------| + * +**/ +uint16_t nr5g_fapi_calculate_nEpreRatioOfDmrsToSSB( + uint8_t power_control_offset_ss) +{ + switch(power_control_offset_ss) + { + case 0: + return 3000; + case 1: + return 6000; + case 2: + return 9000; + case 3: + return 12000; + default: + NR5G_FAPI_LOG(ERROR_LOG, + ("Unsupported value of power_control_offset_ss.")); + return 0; + } +} + + +/** @ingroup group_nr5g_test_config + * + * @param[in] power_control_offset + * + * @return uint16_t mapping + * + * @description + * This function maps FAPI to IAPI value range. + * + * + * nEpreRatioOfPDSCHToSSB: 1->20000, 0.001dB step, -6dB to 14dB + * powerControlOffset: 0->23, 1dB step, -8dB to 15dB + * |----------------------------------------------| + * | nEpreRatioOfPDSCHToSSB | powerControlOffset | + * |----------------------------------------------| + * | 1 | 0-2 | + * | 1000 | 3 | + * | 2000 | 4 | + * | 3000 | 5 | + * | 4000 | 6 | + * | 5000 | 7 | + * | 6000 | 8 | + * | 7000 | 9 | + * | 8000 | 10 | + * | 9000 | 11 | + * | 10000 | 12 | + * | 11000 | 13 | + * | 12000 | 14 | + * | 13000 | 15 | + * | 14000 | 16 | + * | 15000 | 17 | + * | 16000 | 18 | + * | 17000 | 19 | + * | 18000 | 20 | + * | 19000 | 21 | + * | 20000 | 22-23 | + * |----------------------------------------------| + * +**/ +uint16_t nr5g_fapi_calculate_nEpreRatioOfPDSCHToSSB(uint8_t power_control_offset) +{ + static const uint8_t MAPPING_SIZE = 24; + static const uint16_t power_control_offset_to_epre_ratio[MAPPING_SIZE] = { + // 0 1 2 3 4 5 6 7 + 1, 1, 1, 1000, 2000, 3000, 4000, 5000, + // 8 9 10 11 12 13 14 15 + 6000, 7000, 8000, 9000, 10000, 11000, 12000, 13000, + // 16 17 18 19 20 21 22 23 + 14000, 15000, 16000, 17000, 18000, 19000, 20000, 20000 + }; + + if(MAPPING_SIZE > power_control_offset) + { + return power_control_offset_to_epre_ratio[power_control_offset]; + } + else + { + NR5G_FAPI_LOG(ERROR_LOG, + ("Unsupported value of power_control_offset=%u.", + power_control_offset)); + return 0; + } +} + +/** @ingroup group_nr5g_test_config + * + * @param[in] ssb_offset_point_a + * @param[in] sub_c_common + * + * @return uint8_t nSSBPrbOffset + * + * @description + * This function maps FAPI to IAPI value range. + * + * Please refer 5G FAPI-IAPI Translator Module SW Design Document for details on + * the mapping. + * +**/ +uint8_t nr5g_fapi_calculate_nSSBPrbOffset( + uint16_t ssb_offset_point_a, uint8_t sub_c_common) +{ + return ssb_offset_point_a/pow(2, sub_c_common); +} + /** @ingroup group_nr5g_test_config * * @param[in] p_dlsch_pdu @@ -466,7 +712,9 @@ void nr5g_fapi_fill_ssb_pdu( p_stats = &p_phy_instance->stats; p_stats->fapi_stats.fapi_dl_tti_ssb_pdus++; p_bch_pdu->nSSBSubcOffset = p_ssb_pdu->ssbSubCarrierOffset; - p_bch_pdu->nSSBPrbOffset = p_phy_instance->phy_config.nSSBPrbOffset; + p_bch_pdu->nSSBPrbOffset = + nr5g_fapi_calculate_nSSBPrbOffset(p_ssb_pdu->ssbOffsetPointA, + p_phy_instance->phy_config.sub_c_common); p_stats->iapi_stats.iapi_dl_tti_ssb_pdus++; } @@ -483,30 +731,34 @@ void nr5g_fapi_fill_ssb_pdu( **/ void nr5g_fapi_fill_csi_rs_pdu( p_nr5g_fapi_phy_instance_t p_phy_instance, - PCSIRSPDUStruct pCSIRSPdu, - fapi_dl_csi_rs_pdu_t * p_csi_rs_pdu) + fapi_dl_csi_rs_pdu_t * p_csi_rs_pdu, + PCSIRSPDUStruct p_CSIRS_pdu) { nr5g_fapi_stats_t *p_stats; p_stats = &p_phy_instance->stats; p_stats->fapi_stats.fapi_dl_tti_csi_rs_pdus++; - pCSIRSPdu->nBWPSize = p_csi_rs_pdu->bwpSize; - pCSIRSPdu->nBWPStart = p_csi_rs_pdu->bwpStart; - pCSIRSPdu->nCDMType = p_csi_rs_pdu->cdmType; - pCSIRSPdu->nCSIType = p_csi_rs_pdu->csiType; - pCSIRSPdu->nCpType = p_csi_rs_pdu->cyclicPrefix; - pCSIRSPdu->nFreqDensity = p_csi_rs_pdu->freqDensity; - pCSIRSPdu->nFreqDomain = p_csi_rs_pdu->freqDomain; - pCSIRSPdu->nNrOfRBs = p_csi_rs_pdu->nrOfRbs; - pCSIRSPdu->nScrambId = p_csi_rs_pdu->scramId; - pCSIRSPdu->nStartRB = p_csi_rs_pdu->startRb; - pCSIRSPdu->nSubcSpacing = p_csi_rs_pdu->subCarrierSpacing; - pCSIRSPdu->nSymbL0 = p_csi_rs_pdu->symbL0; - pCSIRSPdu->nSymbL1 = p_csi_rs_pdu->symbL1; - pCSIRSPdu->nRow = p_csi_rs_pdu->row; + p_CSIRS_pdu->nBWPSize = p_csi_rs_pdu->bwpSize; + p_CSIRS_pdu->nBWPStart = p_csi_rs_pdu->bwpStart; + p_CSIRS_pdu->nCDMType = p_csi_rs_pdu->cdmType; + p_CSIRS_pdu->nCSIType = p_csi_rs_pdu->csiType; + p_CSIRS_pdu->nCpType = p_csi_rs_pdu->cyclicPrefix; + p_CSIRS_pdu->nFreqDensity = p_csi_rs_pdu->freqDensity; + p_CSIRS_pdu->nFreqDomain = p_csi_rs_pdu->freqDomain; + p_CSIRS_pdu->nNrOfRBs = p_csi_rs_pdu->nrOfRbs; + p_CSIRS_pdu->nScrambId = p_csi_rs_pdu->scramId; + p_CSIRS_pdu->nStartRB = p_csi_rs_pdu->startRb; + p_CSIRS_pdu->nSubcSpacing = p_csi_rs_pdu->subCarrierSpacing; + p_CSIRS_pdu->nSymbL0 = p_csi_rs_pdu->symbL0; + p_CSIRS_pdu->nSymbL1 = p_csi_rs_pdu->symbL1; + p_CSIRS_pdu->nRow = p_csi_rs_pdu->row; // Not mapping the beamforming parameters - // pCSIRSPdu->powerControlOffset = p_csi_rs_pdu->powerControlOffset; - // pCSIRSPdu->nEpreRatioToSSB = p_csi_rs_pdu->powerControlOffsetSs; + // p_CSIRS_pdu->powerControlOffset = p_csi_rs_pdu->powerControlOffset; + + if (USE_VENDOR_EPREXSSB != p_phy_instance->phy_config.use_vendor_EpreXSSB) { + p_CSIRS_pdu->nEpreRatioToSSB = nr5g_fapi_calculate_nEpreRatioOfDmrsToSSB(p_csi_rs_pdu->powerControlOffsetSs); + } + p_stats->iapi_stats.iapi_dl_tti_csi_rs_pdus++; }