/** * * \section COPYRIGHT * * Copyright 2013-2021 Software Radio Systems Limited * * By using this file, you agree to the terms and conditions set * forth in the LICENSE file which can be found at the top level of * the distribution. * */ /****************************************************************************** * File: ra_nr.h * * Description: Implements Resource allocation Procedures common in for DL and UL * * Reference: 3GPP TS 38.214 version 15.10.0 *****************************************************************************/ #ifndef SRSRAN_RA_NR_H #define SRSRAN_RA_NR_H #include #include #include "srsran/config.h" #include "srsran/phy/common/phy_common_nr.h" #include "srsran/phy/phch/dci_nr.h" #include "srsran/phy/phch/phch_cfg_nr.h" /** * @brief Determines target rate * @param mcs_table Configured MCS table * @param dci_format DCI format used for the grant * @param search_space_type Search space type * @param rnti_type RNTI type * @param mcs_idx Desired Modulation Coding Scheme (MCS) index * @return The target rate if provided information is valid. Otherwise, it returns NAN */ SRSRAN_API double srsran_ra_nr_R_from_mcs(srsran_mcs_table_t mcs_table, srsran_dci_format_nr_t dci_format, srsran_search_space_type_t search_space_type, srsran_rnti_type_t rnti_type, uint32_t mcs_idx); /** * @brief Determines target rate * @param mcs_table Configured MCS table * @param dci_format DCI format used for the grant * @param search_space_type Search space type * @param rnti_type RNTI type * @param mcs_idx Desired Modulation Coding Scheme (MCS) index * @return The selected modulation if provided information is valid. Otherwise, it returns SRSRAN_MOD_NITEMS */ SRSRAN_API srsran_mod_t srsran_ra_nr_mod_from_mcs(srsran_mcs_table_t mcs_table, srsran_dci_format_nr_t dci_format, srsran_search_space_type_t search_space_type, srsran_rnti_type_t rnti_type, uint32_t mcs_idx); /** * @brief Determines the number of resource elements available for a given PDSCH transmission * @param pdsch_cfg PDSCH configuration provided by higher layers * @param grant The given PDSCH transmission grant * @return The number of resource elements if the provided configuration is valid, otherwise SRSRAN_ERROR code */ SRSRAN_API int srsran_ra_dl_nr_slot_nof_re(const srsran_sch_cfg_nr_t* pdsch_cfg, const srsran_sch_grant_nr_t* grant); /** * @brief Calculates shared channel TBS * @param N_re Number of resource elements * @param S TB scaling, used in rare occasions. Set to 1, 0, NAN or INF if unused. * @param R Target Rate * @param Qm Modulation level * @param nof_layers Number of layers * @return The transport block size */ SRSRAN_API uint32_t srsran_ra_nr_tbs(uint32_t N_re, double S, double R, uint32_t Qm, uint32_t nof_layers); SRSRAN_API int srsran_ra_nr_fill_tb(const srsran_sch_cfg_nr_t* pdsch_cfg, const srsran_sch_grant_nr_t* grant, uint32_t mcs_idx, srsran_sch_tb_t* tb); /** * @brief Converts an unpacked DL DCI message to a PDSCH grant structure. * Implements the procedures defined in Section 5 of 38.214 to compute the resource allocation (5.1.2) * and modulation order, target rate, redundancy version and TBS (5.1.3) * * Note: Only TypeA PDSCH mapping type is supported * * @param carrier Carrier information struct * @param slot Slot configuration * @param pdsch_cfg PDSCH configuration indicated by higher layers * @param dci_dl DCI downlink (format 1_0 or 1_1) * @param pdsch_grant Generated PDSCH grant * @return 0 on success, -1 on error */ SRSRAN_API int srsran_ra_dl_dci_to_grant_nr(const srsran_carrier_nr_t* carrier, const srsran_slot_cfg_t* slot, const srsran_sch_hl_cfg_nr_t* pdsch_cfg, const srsran_dci_dl_nr_t* dci_dl, srsran_sch_cfg_nr_t* cfg, srsran_sch_grant_nr_t* pdsch_grant); /** * @brief Converts an unpacked UL DCI message to a PUSCH grant structure. * Implements the procedures defined in Section 6 of 38.214 to compute the resource allocation (6.1.2) * and modulation order, target rate, redundancy version and TBS (6.1.4) * * Note: Only TypeA PUSCH mapping type is supported * * @param carrier Carrier information struct * @param pusch_hl_cfg PUSCH configuration provided by higher layers * @param dci_ul DCI uplink (format 0_0 or 0_1) * @param pusch_cfg PUSCH configuration after applying the procedure * @param pusch_grant Generated PUSCH grant * @return 0 on success, -1 on error */ SRSRAN_API int srsran_ra_ul_dci_to_grant_nr(const srsran_carrier_nr_t* carrier, const srsran_sch_hl_cfg_nr_t* pusch_hl_cfg, const srsran_dci_ul_nr_t* dci_ul, srsran_sch_cfg_nr_t* pusch_cfg, srsran_sch_grant_nr_t* pusch_grant); /** * @brief Set up the Uplink Control Information configuration for a PUSCH transmission * * @remark Implement procedure described in TS 38.213 9.3 UCI reporting in physical uplink shared channel * * @param pusch_hl_cfg PUSCH configuration provided by higher layers * @param uci_cfg Uplink Control Information configuration for this PUSCH transmission * @param pusch_cfg PUSCH configuration after applying the procedure * @return SRSRAN_SUCCESS if the procedure is successful, SRSRAN_ERROR code otherwise */ SRSRAN_API int srsran_ra_ul_set_grant_uci_nr(const srsran_sch_hl_cfg_nr_t* pusch_hl_cfg, const srsran_uci_cfg_nr_t* uci_cfg, srsran_sch_cfg_nr_t* pusch_cfg); #endif // SRSRAN_RA_NR_H