srsLTE/lib/include/srsran/asn1/rrc_nr_utils.h

69 lines
1.9 KiB
C
Raw Normal View History

/**
2020-06-03 11:59:25 -07:00
*
* \section COPYRIGHT
2020-06-03 11:59:25 -07:00
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2020-06-03 11:59:25 -07:00
*
* 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.
2020-06-03 11:59:25 -07:00
*
*/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_RRC_NR_UTILS_H
#define SRSRAN_RRC_NR_UTILS_H
2020-06-03 11:59:25 -07:00
2021-03-19 03:45:56 -07:00
#include "srsran/interfaces/mac_interface_types.h"
#include "srsran/interfaces/pdcp_interface_types.h"
#include "srsran/interfaces/rlc_interface_types.h"
#include "srsran/interfaces/rrc_interface_types.h"
#include "srsran/interfaces/sched_interface.h"
2020-06-03 11:59:25 -07:00
/************************
* Forward declarations
***********************/
namespace asn1 {
namespace rrc_nr {
struct plmn_id_s;
struct sib1_s;
struct rlc_cfg_c;
struct pdcp_cfg_s;
struct lc_ch_cfg_s;
struct rach_cfg_common_s;
2020-06-03 11:59:25 -07:00
} // namespace rrc_nr
} // namespace asn1
/************************
* Conversion Helpers
***********************/
2021-03-19 03:45:56 -07:00
namespace srsran {
2020-06-03 11:59:25 -07:00
plmn_id_t make_plmn_id_t(const asn1::rrc_nr::plmn_id_s& asn1_type);
void to_asn1(asn1::rrc_nr::plmn_id_s* asn1_type, const plmn_id_t& cfg);
/***************************
* MAC Config
**************************/
logical_channel_config_t make_mac_logical_channel_cfg_t(uint8_t lcid, const asn1::rrc_nr::lc_ch_cfg_s& asn1_type);
rach_nr_cfg_t make_mac_rach_cfg(const asn1::rrc_nr::rach_cfg_common_s& asn1_type);
/***************************
* RLC Config
**************************/
rlc_config_t make_rlc_config_t(const asn1::rrc_nr::rlc_cfg_c& asn1_type);
/***************************
* PDCP Config
**************************/
pdcp_config_t make_drb_pdcp_config_t(const uint8_t bearer_id, bool is_ue, const asn1::rrc_nr::pdcp_cfg_s& pdcp_cfg);
2021-03-19 03:45:56 -07:00
} // namespace srsran
2020-06-03 11:59:25 -07:00
namespace srsenb {
int set_sched_cell_cfg_sib1(srsenb::sched_interface::cell_cfg_t* sched_cfg, const asn1::rrc_nr::sib1_s& sib1);
}
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_RRC_NR_UTILS_H