mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.4 KiB
C++
95 lines
3.4 KiB
C++
/**
|
|
*
|
|
* \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.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSRAN_SCHED_LTE_COMMON_H
|
|
#define SRSRAN_SCHED_LTE_COMMON_H
|
|
|
|
#include "sched_interface.h"
|
|
#include "srsran/adt/bounded_bitset.h"
|
|
#include "srsran/common/tti_point.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 = srsran::bounded_vector<uint32_t, 6>;
|
|
|
|
/// Map {L} -> list of CCE positions
|
|
using cce_cfi_position_table = std::array<cce_position_list, NOF_AGGR_LEVEL>;
|
|
|
|
/// Map {cfi, L} -> list of CCE positions
|
|
using cce_sf_position_table = std::array<std::array<cce_position_list, NOF_AGGR_LEVEL>, SRSRAN_NOF_CFI>;
|
|
|
|
/// Map {sf, cfi, L} -> list of CCE positions
|
|
using cce_frame_position_table = std::array<cce_sf_position_table, SRSRAN_NOF_SF_X_FRAME>;
|
|
|
|
/// 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()(srsran_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 srsran::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(srsran::tti_point tti_tx_dl, const srsran_dci_dl_t& dci, uint32_t cfi) const;
|
|
|
|
uint32_t enb_cc_idx = 0;
|
|
sched_interface::cell_cfg_t cfg = {};
|
|
srsran_pucch_cfg_t pucch_cfg_common = {};
|
|
const sched_interface::sched_args_t* sched_cfg = nullptr;
|
|
std::unique_ptr<srsran_regs_t, regs_deleter> regs;
|
|
cce_sf_position_table common_locations = {};
|
|
cce_frame_position_table rar_locations = {};
|
|
std::array<uint32_t, SRSRAN_NOF_CFI> nof_cce_table = {}; ///< map cfix -> nof cces in PDCCH
|
|
uint32_t P = 0;
|
|
uint32_t nof_rbgs = 0;
|
|
|
|
using dl_nof_re_table = srsran::bounded_vector<
|
|
std::array<std::array<std::array<uint32_t, SRSRAN_NOF_CFI>, SRSRAN_NOF_SLOTS_PER_SF>, SRSRAN_NOF_SF_X_FRAME>,
|
|
SRSRAN_MAX_PRB>;
|
|
using dl_lb_nof_re_table = std::array<srsran::bounded_vector<uint32_t, SRSRAN_MAX_PRB>, SRSRAN_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;
|
|
};
|
|
|
|
/// Type of Allocation stored in PDSCH/PUSCH
|
|
enum class alloc_type_t { DL_BC, DL_PCCH, DL_RAR, DL_PDCCH_ORDER, DL_DATA, UL_DATA };
|
|
inline bool is_dl_ctrl_alloc(alloc_type_t a)
|
|
{
|
|
return a == alloc_type_t::DL_BC or a == alloc_type_t::DL_PCCH or a == alloc_type_t::DL_RAR or
|
|
a == alloc_type_t::DL_PDCCH_ORDER;
|
|
}
|
|
|
|
} // namespace srsenb
|
|
|
|
#endif // SRSRAN_SCHED_LTE_COMMON_H
|