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.
105 lines
3.4 KiB
C
105 lines
3.4 KiB
C
3 years ago
|
/**
|
||
|
*
|
||
|
* \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 SRSENB_UE_NR_H
|
||
|
#define SRSENB_UE_NR_H
|
||
|
|
||
|
#include "srsenb/hdr/stack/mac/common/mac_metrics.h"
|
||
|
#include "srsran/common/block_queue.h"
|
||
|
#include "srsran/common/interfaces_common.h"
|
||
|
#include "srsran/interfaces/enb_rlc_interfaces.h"
|
||
|
#include "srsran/interfaces/sched_interface.h"
|
||
|
#include "srsran/mac/mac_sch_pdu_nr.h"
|
||
|
#include <mutex>
|
||
|
#include <vector>
|
||
|
|
||
|
namespace srsenb {
|
||
|
|
||
|
class rrc_interface_mac_nr;
|
||
|
class rlc_interface_mac_nr;
|
||
|
class phy_interface_stack_nr;
|
||
|
|
||
|
class ue_nr : public srsran::read_pdu_interface
|
||
|
{
|
||
|
public:
|
||
|
ue_nr(uint16_t rnti,
|
||
|
uint32_t enb_cc_idx,
|
||
|
sched_interface* sched_,
|
||
|
rrc_interface_mac_nr* rrc_,
|
||
|
rlc_interface_mac* rlc,
|
||
|
phy_interface_stack_nr* phy_,
|
||
|
srslog::basic_logger& logger);
|
||
|
|
||
|
virtual ~ue_nr();
|
||
|
void reset();
|
||
|
void ue_cfg(const sched_interface::ue_cfg_t& ue_cfg);
|
||
|
|
||
|
void set_tti(uint32_t tti);
|
||
|
uint16_t get_rnti() const { return rnti; }
|
||
|
void set_active(bool active) { active_state.store(active, std::memory_order_relaxed); }
|
||
|
bool is_active() const { return active_state.load(std::memory_order_relaxed); }
|
||
|
|
||
|
uint8_t* generate_pdu(uint32_t enb_cc_idx,
|
||
|
uint32_t harq_pid,
|
||
|
uint32_t tb_idx,
|
||
|
const sched_interface::dl_sched_pdu_t pdu[sched_interface::MAX_RLC_PDU_LIST],
|
||
|
uint32_t nof_pdu_elems,
|
||
|
uint32_t grant_size);
|
||
|
int process_pdu(srsran::unique_byte_buffer_t pdu);
|
||
|
|
||
|
std::mutex metrics_mutex = {};
|
||
|
void metrics_read(mac_ue_metrics_t* metrics_);
|
||
|
void metrics_rx(bool crc, uint32_t tbs);
|
||
|
void metrics_tx(bool crc, uint32_t tbs);
|
||
|
void metrics_phr(float phr);
|
||
|
void metrics_dl_ri(uint32_t dl_cqi);
|
||
|
void metrics_dl_pmi(uint32_t dl_cqi);
|
||
|
void metrics_dl_cqi(uint32_t dl_cqi);
|
||
|
void metrics_cnt();
|
||
|
|
||
|
uint32_t read_pdu(uint32_t lcid, uint8_t* payload, uint32_t requested_bytes) final;
|
||
|
|
||
|
private:
|
||
|
rlc_interface_mac* rlc = nullptr;
|
||
|
rrc_interface_mac_nr* rrc = nullptr;
|
||
|
phy_interface_stack_nr* phy = nullptr;
|
||
|
srslog::basic_logger& logger;
|
||
|
sched_interface* sched = nullptr;
|
||
|
|
||
|
uint64_t conres_id = 0;
|
||
|
uint16_t rnti = 0;
|
||
|
uint32_t last_tti = 0;
|
||
|
uint32_t nof_failures = 0;
|
||
|
|
||
|
std::atomic<bool> active_state{true};
|
||
|
|
||
|
uint32_t phr_counter = 0;
|
||
|
uint32_t dl_cqi_counter = 0;
|
||
|
uint32_t dl_ri_counter = 0;
|
||
|
uint32_t dl_pmi_counter = 0;
|
||
|
mac_ue_metrics_t ue_metrics = {};
|
||
|
|
||
|
// UE-specific buffer for MAC PDU packing, unpacking and handling
|
||
|
srsran::mac_sch_pdu_nr mac_pdu_dl, mac_pdu_ul;
|
||
|
std::vector<srsran::unique_byte_buffer_t> ue_tx_buffer;
|
||
|
srsran::block_queue<srsran::unique_byte_buffer_t>
|
||
|
ue_rx_pdu_queue; ///< currently only DCH PDUs supported (add BCH, PCH, etc)
|
||
|
srsran::unique_byte_buffer_t ue_rlc_buffer;
|
||
|
|
||
|
// Mutexes
|
||
|
std::mutex mutex;
|
||
|
};
|
||
|
|
||
|
} // namespace srsenb
|
||
|
|
||
|
#endif // SRSENB_UE_NR_H
|