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.
124 lines
3.8 KiB
C++
124 lines
3.8 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_MAC_RAR_PDU_NR_H
|
|
#define SRSRAN_MAC_RAR_PDU_NR_H
|
|
|
|
#include "srsran/common/byte_buffer.h"
|
|
#include "srsran/common/common.h"
|
|
#include "srsran/config.h"
|
|
#include "srsran/phy/common/phy_common_nr.h"
|
|
#include "srsran/srslog/srslog.h"
|
|
#include <memory>
|
|
#include <stdint.h>
|
|
#include <vector>
|
|
|
|
namespace srsran {
|
|
|
|
class mac_rar_pdu_nr;
|
|
|
|
// 3GPP 38.321 v15.3.0 Sec 6.1.5
|
|
class mac_rar_subpdu_nr
|
|
{
|
|
public:
|
|
// Possible types of RAR subpdus (same like EUTRA)
|
|
typedef enum { BACKOFF = 0, RAPID } rar_subh_type_t;
|
|
|
|
mac_rar_subpdu_nr(mac_rar_pdu_nr* parent_);
|
|
|
|
// RAR content length in bits (38.321 Sec 6.2.3)
|
|
static const uint32_t UL_GRANT_NBITS = SRSRAN_RAR_UL_GRANT_NBITS;
|
|
static const uint32_t TA_COMMAND_NBITS = 12;
|
|
|
|
// getter
|
|
bool read_subpdu(const uint8_t* ptr);
|
|
bool has_more_subpdus();
|
|
uint32_t get_total_length();
|
|
bool has_rapid() const;
|
|
uint8_t get_rapid() const;
|
|
uint16_t get_temp_crnti() const;
|
|
uint32_t get_ta() const;
|
|
std::array<uint8_t, UL_GRANT_NBITS> get_ul_grant() const;
|
|
bool has_backoff() const;
|
|
uint8_t get_backoff() const;
|
|
|
|
// setter
|
|
void write_subpdu(const uint8_t* start_);
|
|
void set_backoff(const uint8_t backoff_indicator_);
|
|
void set_ta(const uint32_t ta_);
|
|
void set_temp_crnti(const uint16_t temp_crnti_);
|
|
void set_rapid(const uint8_t rapid_);
|
|
void set_ul_grant(std::array<uint8_t, mac_rar_subpdu_nr::UL_GRANT_NBITS> ul_grant_);
|
|
void set_is_last_subpdu();
|
|
|
|
void to_string(fmt::memory_buffer& buffer);
|
|
|
|
private:
|
|
const uint32_t MAC_RAR_NBYTES = 7; // see TS 38.321 Sec 6.2.3
|
|
|
|
int header_length = 1; // RAR PDU subheader is always 1 B
|
|
int payload_length = 0; // only used if MAC RAR is included
|
|
|
|
std::array<uint8_t, UL_GRANT_NBITS> ul_grant = {};
|
|
uint16_t ta = 0; // 12bit TA
|
|
uint16_t temp_crnti = 0;
|
|
uint16_t rapid = 0;
|
|
uint8_t backoff_indicator = 0;
|
|
rar_subh_type_t type = BACKOFF;
|
|
bool E_bit = true;
|
|
|
|
srslog::basic_logger& logger;
|
|
|
|
mac_rar_pdu_nr* parent = nullptr;
|
|
};
|
|
|
|
class mac_rar_pdu_nr
|
|
{
|
|
public:
|
|
mac_rar_pdu_nr();
|
|
~mac_rar_pdu_nr() = default;
|
|
|
|
int init_tx(byte_buffer_t* buffer_, uint32_t pdu_len_);
|
|
int pack();
|
|
bool unpack(const uint8_t* payload, const uint32_t& len);
|
|
uint32_t get_num_subpdus();
|
|
// Returns reference to a single subPDU
|
|
const mac_rar_subpdu_nr& get_subpdu(const uint32_t& index);
|
|
// Returns reference to all subPDUs
|
|
const std::vector<mac_rar_subpdu_nr>& get_subpdus();
|
|
|
|
uint32_t get_remaining_len();
|
|
|
|
void set_si_rapid(uint16_t si_rapid_); // configured through SIB1 for on-demand SI request (See 38.331 Sec 5.2.1)
|
|
bool has_si_rapid();
|
|
|
|
// returns reference to added RAR subPDU
|
|
mac_rar_subpdu_nr& add_subpdu();
|
|
|
|
void to_string(fmt::memory_buffer& buffer);
|
|
|
|
private:
|
|
std::vector<mac_rar_subpdu_nr> subpdus;
|
|
uint32_t pdu_len = 0;
|
|
uint32_t remaining_len = 0;
|
|
|
|
uint16_t si_rapid = 0;
|
|
bool si_rapid_set = false;
|
|
|
|
byte_buffer_t* buffer = nullptr;
|
|
srslog::basic_logger& logger;
|
|
};
|
|
|
|
} // namespace srsran
|
|
|
|
#endif // SRSRAN_MAC_RAR_PDU_NR_H
|