|
|
|
/**
|
|
|
|
*
|
|
|
|
* \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 SRSENB_RRC_NR_H
|
|
|
|
#define SRSENB_RRC_NR_H
|
|
|
|
|
|
|
|
#include "rrc_config_common.h"
|
|
|
|
#include "rrc_metrics.h"
|
|
|
|
#include "srsenb/hdr/stack/enb_stack_base.h"
|
|
|
|
#include "srslte/asn1/rrc_nr.h"
|
|
|
|
#include "srslte/common/block_queue.h"
|
|
|
|
#include "srslte/common/buffer_pool.h"
|
|
|
|
#include "srslte/common/common.h"
|
|
|
|
#include "srslte/common/task_scheduler.h"
|
|
|
|
#include "srslte/common/threads.h"
|
|
|
|
#include "srslte/common/timeout.h"
|
|
|
|
#include "srslte/interfaces/gnb_interfaces.h"
|
|
|
|
#include <map>
|
|
|
|
#include <queue>
|
|
|
|
|
|
|
|
namespace srsenb {
|
|
|
|
|
|
|
|
enum class rrc_nr_state_t { RRC_IDLE, RRC_INACTIVE, RRC_CONNECTED };
|
|
|
|
|
|
|
|
// TODO: Make this common to NR and LTE
|
|
|
|
struct rrc_nr_cfg_sr_t {
|
|
|
|
uint32_t period;
|
|
|
|
// asn1::rrc::sched_request_cfg_c::setup_s_::dsr_trans_max_e_ dsr_max;
|
|
|
|
uint32_t nof_prb;
|
|
|
|
uint32_t sf_mapping[80];
|
|
|
|
uint32_t nof_subframes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct rrc_nr_cfg_t {
|
|
|
|
asn1::rrc_nr::mib_s mib;
|
|
|
|
asn1::rrc_nr::sib1_s sib1;
|
|
|
|
asn1::rrc_nr::sys_info_ies_s::sib_type_and_info_item_c_ sibs[ASN1_RRC_NR_MAX_SIB];
|
|
|
|
uint32_t nof_sibs;
|
|
|
|
rrc_nr_cfg_sr_t sr_cfg;
|
|
|
|
rrc_cfg_cqi_t cqi_cfg;
|
|
|
|
srslte_cell_t cell;
|
|
|
|
|
|
|
|
std::string log_level;
|
|
|
|
uint32_t log_hex_limit;
|
|
|
|
|
|
|
|
srsenb::core_less_args_t coreless;
|
|
|
|
};
|
|
|
|
|
|
|
|
class rrc_nr final : public rrc_interface_pdcp_nr,
|
|
|
|
public rrc_interface_mac_nr,
|
|
|
|
public rrc_interface_rlc_nr,
|
|
|
|
public rrc_interface_ngap_nr
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit rrc_nr(srslte::timer_handler* timers_);
|
|
|
|
|
|
|
|
void init(const rrc_nr_cfg_t& cfg,
|
|
|
|
phy_interface_stack_nr* phy,
|
|
|
|
mac_interface_rrc_nr* mac,
|
|
|
|
rlc_interface_rrc_nr* rlc,
|
|
|
|
pdcp_interface_rrc_nr* pdcp,
|
|
|
|
ngap_interface_rrc_nr* ngap_,
|
|
|
|
gtpu_interface_rrc_nr* gtpu);
|
|
|
|
|
|
|
|
void stop();
|
|
|
|
|
|
|
|
void get_metrics(srsenb::rrc_metrics_t& m);
|
|
|
|
|
|
|
|
rrc_nr_cfg_t update_default_cfg(const rrc_nr_cfg_t& rrc_cfg);
|
|
|
|
void add_user(uint16_t rnti);
|
|
|
|
void config_mac();
|
|
|
|
uint32_t generate_sibs();
|
|
|
|
int read_pdu_bcch_bch(const uint32_t tti, srslte::unique_byte_buffer_t& buffer) final;
|
|
|
|
int read_pdu_bcch_dlsch(uint32_t sib_index, srslte::unique_byte_buffer_t& buffer) final;
|
|
|
|
|
|
|
|
// RLC interface
|
|
|
|
// TODO
|
|
|
|
void read_pdu_pcch(uint8_t* payload, uint32_t payload_size) {}
|
|
|
|
void max_retx_attempted(uint16_t rnti) {}
|
|
|
|
|
|
|
|
// PDCP interface
|
|
|
|
void write_pdu(uint16_t rnti, uint32_t lcid, srslte::unique_byte_buffer_t pdu) final;
|
|
|
|
|
|
|
|
class ue
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ue(rrc_nr* parent_, uint16_t rnti_);
|
|
|
|
|
|
|
|
void send_connection_setup();
|
|
|
|
void send_dl_ccch(asn1::rrc_nr::dl_ccch_msg_s* dl_dcch_msg);
|
|
|
|
|
|
|
|
// getters
|
|
|
|
bool is_connected() { return state == rrc_nr_state_t::RRC_CONNECTED; }
|
|
|
|
bool is_idle() { return state == rrc_nr_state_t::RRC_IDLE; }
|
|
|
|
bool is_inactive() { return state == rrc_nr_state_t::RRC_INACTIVE; }
|
|
|
|
|
|
|
|
// setters
|
|
|
|
|
|
|
|
private:
|
|
|
|
rrc_nr* parent;
|
|
|
|
uint16_t rnti;
|
|
|
|
|
|
|
|
// state
|
|
|
|
rrc_nr_state_t state = rrc_nr_state_t::RRC_IDLE;
|
|
|
|
uint8_t transaction_id = 0;
|
|
|
|
srslte::timer_handler::unique_timer rrc_setup_periodic_timer;
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
rrc_nr_cfg_t cfg = {};
|
|
|
|
|
|
|
|
// interfaces
|
|
|
|
phy_interface_stack_nr* phy = nullptr;
|
|
|
|
mac_interface_rrc_nr* mac = nullptr;
|
|
|
|
rlc_interface_rrc_nr* rlc = nullptr;
|
|
|
|
pdcp_interface_rrc_nr* pdcp = nullptr;
|
|
|
|
gtpu_interface_rrc_nr* gtpu = nullptr;
|
|
|
|
ngap_interface_rrc_nr* ngap = nullptr;
|
|
|
|
|
|
|
|
// args
|
|
|
|
srslte::timer_handler* timers = nullptr;
|
|
|
|
|
|
|
|
// derived
|
|
|
|
uint32_t slot_dur_ms = 0;
|
|
|
|
srslog::basic_logger& logger;
|
|
|
|
|
|
|
|
// vars
|
|
|
|
std::map<uint16_t, std::unique_ptr<ue> > users;
|
|
|
|
bool running = false;
|
|
|
|
std::vector<srslte::unique_byte_buffer_t> sib_buffer;
|
|
|
|
srslte::unique_byte_buffer_t mib_buffer = nullptr;
|
|
|
|
|
|
|
|
uint32_t nof_si_messages = 0;
|
|
|
|
|
|
|
|
// Private Methods
|
|
|
|
void handle_pdu(uint16_t rnti, uint32_t lcid, srslte::unique_byte_buffer_t pdu);
|
|
|
|
|
|
|
|
// logging
|
|
|
|
typedef enum { Rx = 0, Tx } direction_t;
|
|
|
|
template <class T>
|
|
|
|
void log_rrc_message(const std::string& source, direction_t dir, const srslte::byte_buffer_t* pdu, const T& msg);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace srsenb
|
|
|
|
|
|
|
|
#endif // SRSENB_RRC_NR_H
|