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.
174 lines
6.4 KiB
C++
174 lines
6.4 KiB
C++
/*
|
|
* Copyright 2013-2019 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/.
|
|
*
|
|
*/
|
|
|
|
/******************************************************************************
|
|
* File: radio_interfaces.h
|
|
* Description: Common interface for eNB/UE for PHY and radio
|
|
*****************************************************************************/
|
|
|
|
#ifndef SRSLTE_RADIO_INTERFACES_H
|
|
#define SRSLTE_RADIO_INTERFACES_H
|
|
|
|
#include "srslte/phy/common/phy_common.h"
|
|
#include "srslte/phy/common/timestamp.h"
|
|
#include "srslte/phy/rf/rf.h"
|
|
#include "srslte/phy/utils/vector.h"
|
|
#include <array>
|
|
|
|
namespace srslte {
|
|
|
|
/**
|
|
* Class used to pass buffers for all channels and antennas to the radio
|
|
*
|
|
* The class provides an abstraction to map carriers and antennas to the underlying
|
|
* RF channels. It provides getters and setters to access the raw pointers where the signal
|
|
* is stored.
|
|
*
|
|
* It can automatically allocate and deallocate memory for the buffers if
|
|
* a non-zero number of subframes is passed to the constructor.
|
|
*
|
|
*/
|
|
class rf_buffer_interface
|
|
{
|
|
public:
|
|
virtual cf_t* get(uint32_t channel_idx) const = 0;
|
|
virtual void set(uint32_t channel_idx, cf_t* ptr) = 0;
|
|
virtual cf_t* get(uint32_t cc_idx, uint32_t port_idx, uint32_t nof_antennas) const = 0;
|
|
virtual void set(uint32_t cc_idx, uint32_t port_idx, uint32_t nof_antennas, cf_t* ptr) = 0;
|
|
virtual void** to_void() = 0;
|
|
virtual cf_t** to_cf_t() = 0;
|
|
virtual uint32_t size() = 0;
|
|
};
|
|
|
|
/**
|
|
* Radio interface for the PHY.
|
|
*
|
|
* The main functionality is to allow TX and RX of samples to the radio.
|
|
* It also provides functions to change the radio settings such as carrier frequency,
|
|
* sampling rate, gains, etc.
|
|
*
|
|
* The radio interface supports multiple carriers and multiple antennas per carrier. This interface presents an
|
|
* abstract access to carries and ports to the PHY, regardless of the mapping to RF channels in the underlying radio.
|
|
* number of carriers <= SRSLTE_MAX_CARRIERS
|
|
* number of ports <= SRSLTE_MAX_PORTS
|
|
*
|
|
* Changing the tx/rx frequency is done on a carrier level and the underlying implementation
|
|
* will set it for all ports when necessary.
|
|
*
|
|
* Samples are passed and received to/from the radio using rf_buffer_t object
|
|
* @see rf_buffer_t
|
|
* @see radio
|
|
*/
|
|
class radio_interface_phy
|
|
{
|
|
public:
|
|
/**
|
|
* Indicates the end of a burst in the current TX stream. Usually called after a call to tx() if
|
|
* no more samples are needed to be transmitted.
|
|
*/
|
|
virtual void tx_end() = 0;
|
|
/**
|
|
* Indicates the radio to transmit on all antennas and carriers synchronously the samples contained in
|
|
* the buffer object.
|
|
*
|
|
* @param buffer Is the object that contains the pointers to all RF channels
|
|
* @param nof_samples Number of samples to transmit on all carriers and antennas
|
|
* @param tx_time Time to transmit all signals
|
|
* @return
|
|
*/
|
|
virtual bool tx(rf_buffer_interface& buffer, const uint32_t& nof_samples, const srslte_timestamp_t& tx_time) = 0;
|
|
|
|
/**
|
|
* Indicates the radio to receive from all antennas and carriers synchronously and store the samples
|
|
* in the buffer object
|
|
*
|
|
* @param buffer Is the object where the samples will be stored
|
|
* @param nof_samples Number of samples to receive from all carriers and antennas
|
|
* @param tx_time Time at which the samples were received. Note the time is the same for all carriers
|
|
* @return
|
|
*/
|
|
virtual bool rx_now(rf_buffer_interface& buffer, const uint32_t& nof_samples, srslte_timestamp_t* rxd_time) = 0;
|
|
|
|
/**
|
|
* Sets the TX frequency for all antennas in the provided carrier index
|
|
* @param carrier_idx Index of the carrier to change the frequency
|
|
* @param freq Frequency to set to in Hz
|
|
*/
|
|
virtual void set_tx_freq(const uint32_t& carrier_idx, const double& freq) = 0;
|
|
|
|
/**
|
|
* Sets the RX frequency for all antennas in the provided carrier index
|
|
* @param carrier_idx Index of the carrier to change the frequency
|
|
* @param freq Frequency to set to in Hz
|
|
*/
|
|
virtual void set_rx_freq(const uint32_t& carrier_idx, const double& freq) = 0;
|
|
|
|
/**
|
|
* Sets the transmit gain for all carriers and antennas
|
|
* @param gain Gain in dB
|
|
*/
|
|
virtual void set_tx_gain(const float& gain) = 0;
|
|
|
|
/**
|
|
* Sets the receive gain for all carriers and antennas in a background
|
|
* @param gain Gain in dB
|
|
*/
|
|
virtual void set_rx_gain_th(const float& gain) = 0;
|
|
|
|
/**
|
|
* Sets the receive gain for all carriers and antennas
|
|
* @param gain Gain in dB
|
|
*/
|
|
virtual void set_rx_gain(const float& gain) = 0;
|
|
|
|
/**
|
|
* Sets the sampling rate of the D/A converter simultaneously for all carriers and antennas
|
|
* @param srate Sampling rate in Hz
|
|
*/
|
|
virtual void set_tx_srate(const double& srate) = 0;
|
|
|
|
/**
|
|
* Sets the sampling rate of the A/D converter simultaneously for all carriers and antennas
|
|
* @param srate Sampling rate in Hz
|
|
*/
|
|
virtual void set_rx_srate(const double& srate) = 0;
|
|
|
|
// getter
|
|
virtual double get_freq_offset() = 0;
|
|
virtual float get_rx_gain() = 0;
|
|
virtual bool is_continuous_tx() = 0;
|
|
virtual bool get_is_start_of_burst() = 0;
|
|
virtual bool is_init() = 0;
|
|
virtual void reset() = 0;
|
|
virtual srslte_rf_info_t* get_info() = 0;
|
|
};
|
|
|
|
class phy_interface_radio
|
|
{
|
|
public:
|
|
virtual void radio_overflow() = 0;
|
|
virtual void radio_failure() = 0;
|
|
};
|
|
|
|
} // namespace srslte
|
|
|
|
#endif // SRSLTE_RADIO_INTERFACES_H
|