/** * * \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; constexpr uint32_t NOF_AGGR_LEVEL = 4; /*********************** * Helper Types **********************/ /// List of CCE start positions in PDCCH using cce_position_list = srslte::bounded_vector; /// Map {L} -> list of CCE positions using cce_cfi_position_table = std::array; /// Map {cfi, L} -> list of CCE positions using cce_sf_position_table = std::array, SRSLTE_NOF_CFI>; /// Map {sf, cfi, L} -> list of CCE positions using cce_frame_position_table = std::array; /// 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 nof_prbs_to_rbgs(uint32_t nof_prbs) const { return srslte::ceil_div(nof_prbs, P); } uint32_t nof_prb() const { return cfg.cell.nof_prb; } uint32_t get_dl_lb_nof_re(tti_point tti_tx_dl, uint32_t nof_prbs_alloc) const; uint32_t get_dl_nof_res(srslte::tti_point tti_tx_dl, const srslte_dci_dl_t& dci, uint32_t cfi) const; 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; cce_sf_position_table common_locations = {}; cce_frame_position_table rar_locations = {}; std::array nof_cce_table = {}; ///< map cfix -> nof cces in PDCCH uint32_t P = 0; uint32_t nof_rbgs = 0; using dl_nof_re_table = srslte::bounded_vector< std::array, SRSLTE_NOF_SLOTS_PER_SF>, SRSLTE_NOF_SF_X_FRAME>, SRSLTE_MAX_PRB>; using dl_lb_nof_re_table = std::array, SRSLTE_NOF_SF_X_FRAME>; /// Table of nof REs dl_nof_re_table nof_re_table; /// Cached computation of Lower bound of nof REs dl_lb_nof_re_table nof_re_lb_table; }; //! 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 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 cell_nof_prb); static prb_interval riv_to_prbs(uint32_t riv, uint32_t nof_prbs, int nof_vrbs = -1); }; /// Type of Allocation stored in PDSCH/PUSCH enum class alloc_type_t { DL_BC, DL_PCCH, DL_RAR, DL_DATA, UL_DATA }; } // namespace srsenb #endif // SRSLTE_SCHED_COMMON_H