/* * Copyright 2013-2020 Software Radio Systems Limited * * This file is part of srsLTE. * * srsLTE is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of * the License, or (at your option) any later version. * * srsLTE is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * A copy of the GNU Affero General Public License can be found in * the LICENSE file in the top-level directory of this distribution * and at http://www.gnu.org/licenses/. * */ #ifndef SRSUE_TTCN3_LTE_PHY_H #define SRSUE_TTCN3_LTE_PHY_H #include "srsue/hdr/phy/ue_lte_phy_base.h" #include "srsue/hdr/ue.h" #include "ttcn3_interfaces.h" #include #include using namespace srsue; using namespace srslte; namespace srsue { class lte_ttcn3_phy : public ue_lte_phy_base { public: void set_cells_to_meas(uint32_t earfcn, const std::set& pci) override; typedef struct { srslte_cell_t info; float power; uint32_t earfcn; } cell_t; typedef std::vector cell_list_t; lte_ttcn3_phy(srslte::logger* logger_); ~lte_ttcn3_phy() = default; int init(const phy_args_t& args_, stack_interface_phy_lte* stack_, syssim_interface_phy* syssim_); int init(const phy_args_t& args_, stack_interface_phy_lte* stack_, srslte::radio_interface_phy* radio_) override; // ue_phy_base interface int init(const phy_args_t& args_) override; void stop() override; void wait_initialize() override; void start_plot() override; void get_metrics(phy_metrics_t* m) override; std::string get_type() override; // The interface for the SS void set_cell_map(const cell_list_t& cells_); // phy_interface_rrc_lte void enable_pregen_signals(bool enable) override; void set_activation_deactivation_scell(uint32_t cmd) override; void set_config(srslte::phy_cfg_t& config, uint32_t cc_idx = 0, uint32_t earfcn = 0, srslte_cell_t* cell_info = nullptr) override; void set_config_tdd(srslte_tdd_config_t& tdd_config) override; void set_config_mbsfn_sib2(srslte::mbsfn_sf_cfg_t* cfg_list, uint32_t nof_cfgs) override{}; void set_config_mbsfn_sib13(const srslte::sib13_t& sib13) override{}; void set_config_mbsfn_mcch(const srslte::mcch_msg_t& mcch) override{}; // Measurements interface void meas_stop() override; // phy_interface_mac_lte void set_mch_period_stop(uint32_t stop) override{}; // Cell search and selection procedures cell_search_ret_t cell_search(phy_cell_t* found_cell) override; bool cell_select(const phy_cell_t* cell) override; bool cell_is_camping() override; void reset() override; // phy_interface_mac_lte void configure_prach_params() override; void prach_send(uint32_t preamble_idx, int allowed_subframe, float target_power_dbm, float ta_base_sec) override; prach_info_t prach_get_info() override; void sr_send() override; int sr_last_tx_tti() override; // phy_interface_mac_common void set_crnti(uint16_t rnti) override; void set_timeadv_rar(uint32_t ta_cmd) override; void set_timeadv(uint32_t ta_cmd) override; void set_rar_grant(uint8_t grant_payload[SRSLTE_RAR_GRANT_LEN], uint16_t rnti) override; uint32_t get_current_tti() override; float get_phr() override; float get_pathloss_db() override; // phy_interface_syssim void set_current_tti(uint32_t tti); void new_grant_ul(mac_interface_phy_lte::mac_grant_ul_t ul_mac_grant); void new_tb(const srsue::mac_interface_phy_lte::mac_grant_dl_t, const uint8_t* data); // Radio interface void radio_overflow() override; void radio_failure() override; void run_tti(); private: srslte::logger* logger = nullptr; srslte::log_filter log; // All available cells cell_list_t cells; uint32_t cell_idx = 0; // The current PCell cell_t pcell = {}; bool pcell_set = false; srslte::phy_cfg_t phy_cfg = {}; uint32_t current_tti = 0; uint32_t cc_idx = 0; int prach_tti_tx = -1; int sr_tx_tti = -1; bool sr_pending = false; std::mutex mutex; uint32_t ra_trans_cnt = 0; stack_interface_phy_lte* stack = nullptr; syssim_interface_phy* syssim = nullptr; }; } // namespace srsue #endif