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.
40 lines
1.1 KiB
C
40 lines
1.1 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 SRSRAN_GNB_MAC_INTERFACES_H
|
||
|
#define SRSRAN_GNB_MAC_INTERFACES_H
|
||
|
|
||
|
#include "srsenb/hdr/stack/mac/nr/sched_nr_interface.h"
|
||
|
|
||
|
namespace srsenb {
|
||
|
|
||
|
class mac_interface_rrc_nr
|
||
|
{
|
||
|
public:
|
||
|
// Provides cell configuration including SIB periodicity, etc.
|
||
|
virtual int cell_cfg(const sched_interface::cell_cfg_t& cell,
|
||
|
srsran::const_span<sched_nr_interface::cell_cfg_t> nr_cells) = 0;
|
||
|
|
||
|
/// Allocates a new user/RNTI at MAC. Returns RNTI on success or SRSRAN_INVALID_RNTI otherwise.
|
||
|
virtual uint16_t reserve_rnti(uint32_t enb_cc_idx) = 0;
|
||
|
|
||
|
virtual int ue_cfg(uint16_t rnti, const sched_nr_interface::ue_cfg_t& ue_cfg) = 0;
|
||
|
};
|
||
|
|
||
|
// NR interface is identical to EUTRA interface
|
||
|
class mac_interface_rlc_nr : public mac_interface_rlc
|
||
|
{};
|
||
|
|
||
|
} // namespace srsenb
|
||
|
|
||
|
#endif // SRSRAN_GNB_MAC_INTERFACES_H
|