/** * * \section COPYRIGHT * * Copyright 2013-2020 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. * */ #ifndef SRSLTE_SCHED_COMMON_H #define SRSLTE_SCHED_COMMON_H #include "srslte/adt/bounded_bitset.h" #include "srslte/common/tti_point.h" #include "srslte/interfaces/sched_interface.h" namespace srsenb { /*********************** * Constants **********************/ constexpr float tti_duration_ms = 1; /*********************** * Helper Types **********************/ //! Struct used to store possible CCE locations. struct sched_dci_cce_t { uint32_t cce_start[4][6]; ///< Stores starting CCE for each aggr level index and CCE location index uint32_t nof_loc[4]; ///< Number of possible CCE locations for each aggregation level index }; //! structs to bundle together all the sched arguments, and share them with all the sched sub-components class sched_cell_params_t { struct regs_deleter { void operator()(srslte_regs_t* p); }; public: bool set_cfg(uint32_t enb_cc_idx_, const sched_interface::cell_cfg_t& cfg_, const sched_interface::sched_args_t& sched_args); // convenience getters uint32_t prb_to_rbg(uint32_t nof_prbs) const { return (nof_prbs + (P - 1)) / P; } uint32_t nof_prb() const { return cfg.cell.nof_prb; } uint32_t enb_cc_idx = 0; sched_interface::cell_cfg_t cfg = {}; const sched_interface::sched_args_t* sched_cfg = nullptr; std::unique_ptr regs; std::array common_locations = {}; std::array, 3> rar_locations = {}; std::array nof_cce_table = {}; ///< map cfix -> nof cces in PDCCH uint32_t P = 0; uint32_t nof_rbgs = 0; }; //! Bitmask used for CCE allocations using pdcch_mask_t = srslte::bounded_bitset; //! Bitmask that stores the allocared DL RBGs using rbgmask_t = srslte::bounded_bitset<25, true>; //! Bitmask that stores the allocated UL PRBs using prbmask_t = srslte::bounded_bitset<100, true>; //! Struct to express a {min,...,max} range of RBGs struct prb_interval; struct rbg_interval : public srslte::interval { using interval::interval; static rbg_interval prbs_to_rbgs(const prb_interval& prbs, uint32_t P); static rbg_interval rbgmask_to_rbgs(const rbgmask_t& mask); }; //! Struct to express a {min,...,max} range of PRBs struct prb_interval : public srslte::interval { using interval::interval; static prb_interval rbgs_to_prbs(const rbg_interval& rbgs, uint32_t P); static prb_interval riv_to_prbs(uint32_t riv, uint32_t nof_prbs, int nof_vrbs = -1); }; /*********************** * Helper Functions **********************/ namespace sched_utils { inline uint32_t aggr_level(uint32_t aggr_idx) { return 1u << aggr_idx; } //! Obtain rvidx from nof retxs. This value is stored in DCI inline uint32_t get_rvidx(uint32_t retx_idx) { const static uint32_t rv_idx[4] = {0, 2, 3, 1}; return rv_idx[retx_idx % 4]; } //! Obtain nof retxs from rvidx. inline uint32_t get_nof_retx(uint32_t rv_idx) { const static uint32_t nof_retxs[4] = {0, 3, 1, 2}; return nof_retxs[rv_idx % 4]; } /** * Generate possible CCE locations a user can use to allocate DCIs * @param regs Regs data for the given cell configuration * @param location Result of the CCE location computation. * @param cfi Number of control symbols used for the PDCCH * @param sf_idx subframe index specific to the tx TTI (relevant only for data and RAR transmissions) * @param rnti identity of the user (invalid RNTI for RAR and BC transmissions) */ void generate_cce_location(srslte_regs_t* regs, sched_dci_cce_t* location, uint32_t cfi, uint32_t sf_idx = 0, uint16_t rnti = SRSLTE_INVALID_RNTI); } // namespace sched_utils } // namespace srsenb #endif // SRSLTE_SCHED_COMMON_H