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.
110 lines
3.0 KiB
C
110 lines
3.0 KiB
C
4 years ago
|
/**
|
||
5 years ago
|
*
|
||
4 years ago
|
* \section COPYRIGHT
|
||
5 years ago
|
*
|
||
4 years ago
|
* Copyright 2013-2020 Software Radio Systems Limited
|
||
5 years ago
|
*
|
||
4 years ago
|
* 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.
|
||
5 years ago
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef SRSUE_MAC_NR_H
|
||
|
#define SRSUE_MAC_NR_H
|
||
|
|
||
|
#include "srslte/common/block_queue.h"
|
||
|
#include "srslte/common/logmap.h"
|
||
|
#include "srslte/common/mac_nr_pcap.h"
|
||
4 years ago
|
#include "srslte/interfaces/mac_interface_types.h"
|
||
5 years ago
|
#include "srslte/interfaces/ue_nr_interfaces.h"
|
||
4 years ago
|
#include "srslte/mac/mac_sch_pdu_nr.h"
|
||
5 years ago
|
#include "srsue/hdr/stack/mac/mux.h"
|
||
|
#include "srsue/hdr/stack/ue_stack_base.h"
|
||
|
|
||
|
namespace srsue {
|
||
|
|
||
|
struct mac_nr_args_t {
|
||
|
srsue::pcap_args_t pcap;
|
||
4 years ago
|
// TODO: remove temp variable
|
||
|
uint32_t drb_lcid;
|
||
5 years ago
|
};
|
||
|
|
||
4 years ago
|
class mac_nr final : public mac_interface_phy_nr, public mac_interface_rrc_nr
|
||
5 years ago
|
{
|
||
|
public:
|
||
4 years ago
|
mac_nr(srslte::ext_task_sched_handle task_sched_);
|
||
5 years ago
|
~mac_nr();
|
||
|
|
||
4 years ago
|
int init(const mac_nr_args_t& args_, phy_interface_mac_nr* phy, rlc_interface_mac* rlc);
|
||
5 years ago
|
void stop();
|
||
|
|
||
|
void reset();
|
||
|
|
||
|
void run_tti(const uint32_t tti);
|
||
|
|
||
|
uint16_t get_dl_sched_rnti(uint32_t tti);
|
||
|
uint16_t get_ul_sched_rnti(uint32_t tti);
|
||
|
|
||
|
void bch_decoded_ok(uint32_t tti, srslte::unique_byte_buffer_t payload);
|
||
|
|
||
|
int sf_indication(const uint32_t tti);
|
||
|
|
||
|
void tb_decoded(const uint32_t cc_idx, mac_nr_grant_dl_t& grant);
|
||
|
|
||
|
void new_grant_ul(const uint32_t cc_idx, const mac_nr_grant_ul_t& grant);
|
||
|
|
||
|
void timer_expired(uint32_t timer_id);
|
||
|
|
||
|
void get_metrics(mac_metrics_t* metrics);
|
||
|
|
||
4 years ago
|
/******** Interface for RRC (RRC -> MAC) ****************/
|
||
|
void setup_lcid(const srslte::logical_channel_config_t& config);
|
||
|
void set_config(const srslte::bsr_cfg_t& bsr_cfg);
|
||
|
void set_config(const srslte::sr_cfg_t& sr_cfg);
|
||
|
|
||
5 years ago
|
/// stack interface
|
||
|
void process_pdus();
|
||
|
|
||
|
private:
|
||
|
|
||
|
void handle_pdu(srslte::unique_byte_buffer_t pdu);
|
||
|
void get_ul_data(const mac_nr_grant_ul_t& grant, phy_interface_stack_nr::tx_request_t* tx_request);
|
||
|
|
||
|
/// Interaction with rest of the stack
|
||
4 years ago
|
phy_interface_mac_nr* phy = nullptr;
|
||
|
rlc_interface_mac* rlc = nullptr;
|
||
|
srslte::ext_task_sched_handle task_sched;
|
||
5 years ago
|
|
||
|
std::unique_ptr<srslte::mac_nr_pcap> pcap = nullptr;
|
||
|
srslte::log_ref log_h;
|
||
4 years ago
|
srslte::byte_buffer_pool* pool = nullptr;
|
||
|
mac_nr_args_t args = {};
|
||
5 years ago
|
|
||
|
bool started = false;
|
||
|
|
||
|
uint16_t crnti = 0xdead;
|
||
|
|
||
|
static constexpr uint32_t MIN_RLC_PDU_LEN =
|
||
|
5; ///< minimum bytes that need to be available in a MAC PDU for attempting to add another RLC SDU
|
||
|
|
||
|
srslte::block_queue<srslte::unique_byte_buffer_t>
|
||
|
pdu_queue; ///< currently only DCH PDUs supported (add BCH, PCH, etc)
|
||
|
|
||
|
mac_metrics_t metrics[SRSLTE_MAX_CARRIERS] = {};
|
||
|
|
||
4 years ago
|
/// Rx buffer
|
||
4 years ago
|
srslte::mac_sch_pdu_nr rx_pdu;
|
||
4 years ago
|
|
||
5 years ago
|
/// Tx buffer
|
||
4 years ago
|
srslte::mac_sch_pdu_nr tx_pdu;
|
||
5 years ago
|
srslte::unique_byte_buffer_t tx_buffer = nullptr;
|
||
|
srslte::unique_byte_buffer_t rlc_buffer = nullptr;
|
||
|
|
||
4 years ago
|
srslte::task_multiqueue::queue_handle stack_task_dispatch_queue;
|
||
5 years ago
|
};
|
||
|
|
||
|
} // namespace srsue
|
||
|
|
||
|
#endif // SRSUE_MAC_NR_H
|