srsLTE/lib/include/srsran/phy/dft/ofdm.h

136 lines
5.0 KiB
C
Raw Normal View History

/**
*
* \section COPYRIGHT
*
2021-03-19 03:45:56 -07:00
* Copyright 2013-2021 Software Radio Systems Limited
2014-01-28 03:41:17 -08: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.
*
2014-01-28 03:41:17 -08:00
*/
2021-03-19 03:45:56 -07:00
#ifndef SRSRAN_OFDM_H
#define SRSRAN_OFDM_H
2014-01-28 03:41:17 -08:00
/**********************************************************************************************
* File: ofdm.h
*
* Description: OFDM modulation object.
* Used in generation of downlink OFDM signals.
*
* Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 6
*********************************************************************************************/
2014-01-28 03:41:17 -08:00
#include <strings.h>
2014-01-28 03:41:17 -08:00
2021-03-19 03:45:56 -07:00
#include "srsran/config.h"
#include "srsran/phy/common/phy_common.h"
#include "srsran/phy/dft/dft.h"
2014-01-28 03:41:17 -08:00
/**
2021-03-19 03:45:56 -07:00
* @struct srsran_ofdm_cfg_t
* Contains the generic OFDM modulator configuration. The structure must be initialised to all zeros before being
* filled. Only compulsory parameters need to be filled prior initialization.
*
2021-03-19 03:45:56 -07:00
* This structure must be used with init functions srsran_ofdm_rx_init_cfg and srsran_ofdm_tx_init_cfg. These provide
* more flexible options.
*/
2021-03-19 03:45:56 -07:00
typedef struct SRSRAN_API {
// Compulsory parameters
2020-11-11 09:48:05 -08:00
uint32_t nof_prb; ///< Number of Resource Block
cf_t* in_buffer; ///< Input bnuffer pointer
cf_t* out_buffer; ///< Output buffer pointer
2021-03-19 03:45:56 -07:00
srsran_cp_t cp; ///< Cyclic prefix type
// Optional parameters
2021-03-19 03:45:56 -07:00
srsran_sf_t sf_type; ///< Subframe type, normal or MBSFN
2020-11-11 09:48:05 -08:00
bool normalize; ///< Normalization flag, it divides the output by square root of the symbol size
float freq_shift_f; ///< Frequency shift, normalised by sampling rate (used in UL)
float rx_window_offset; ///< DFT Window offset in CP portion (0-1), RX only
uint32_t symbol_sz; ///< Symbol size, forces a given symbol size for the number of PRB
bool keep_dc; ///< If true, it does not remove the DC
2021-03-19 03:45:56 -07:00
} srsran_ofdm_cfg_t;
/**
2021-03-19 03:45:56 -07:00
* @struct srsran_ofdm_t
* OFDM object, common for Tx and Rx
*/
2021-03-19 03:45:56 -07:00
typedef struct SRSRAN_API {
srsran_ofdm_cfg_t cfg;
srsran_dft_plan_t fft_plan;
srsran_dft_plan_t fft_plan_sf[2];
uint32_t max_prb;
uint32_t nof_symbols;
uint32_t nof_guards;
uint32_t nof_re;
uint32_t slot_sz;
uint32_t sf_sz;
cf_t* tmp; // for removing zero padding
bool mbsfn_subframe;
uint32_t mbsfn_guard_len;
uint32_t nof_symbols_mbsfn;
uint8_t non_mbsfn_region;
uint32_t window_offset_n;
cf_t* shift_buffer;
cf_t* window_offset_buffer;
2021-03-19 03:45:56 -07:00
} srsran_ofdm_t;
/**
* @brief Initialises or reconfigures OFDM receiver
*
* @note The reconfiguration of the OFDM object considers only CP, number of PRB and optionally the FFT size
* @attention The OFDM object must be zeroed externally prior calling the initialization for first time
*
* @param q OFDM object
* @param cfg OFDM configuration
2021-03-19 03:45:56 -07:00
* @return SRSRAN_SUCCESS if the initialization/reconfiguration is successful, SRSRAN_ERROR code otherwise
*/
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_ofdm_rx_init_cfg(srsran_ofdm_t* q, srsran_ofdm_cfg_t* cfg);
/**
* @brief Initialises or reconfigures OFDM transmitter
*
* @note The reconfiguration of the OFDM object considers only CP, number of PRB and optionally the FFT size
* @attention The OFDM object must be zeroed externally prior calling the initialization for first time
*
* @param q OFDM object
* @param cfg OFDM configuration
2021-03-19 03:45:56 -07:00
* @return SRSRAN_SUCCESS if the initialization/reconfiguration is successful, SRSRAN_ERROR code otherwise
*/
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_ofdm_tx_init_cfg(srsran_ofdm_t* q, srsran_ofdm_cfg_t* cfg);
2021-03-19 03:45:56 -07:00
SRSRAN_API int
srsran_ofdm_rx_init_mbsfn(srsran_ofdm_t* q, srsran_cp_t cp_type, cf_t* in_buffer, cf_t* out_buffer, uint32_t max_prb);
2021-03-19 03:45:56 -07:00
SRSRAN_API int
srsran_ofdm_rx_init(srsran_ofdm_t* q, srsran_cp_t cp_type, cf_t* in_buffer, cf_t* out_buffer, uint32_t max_prb);
2014-01-28 03:41:17 -08:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_ofdm_tx_set_prb(srsran_ofdm_t* q, srsran_cp_t cp, uint32_t nof_prb);
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_ofdm_rx_set_prb(srsran_ofdm_t* q, srsran_cp_t cp, uint32_t nof_prb);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_rx_free(srsran_ofdm_t* q);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_rx_sf(srsran_ofdm_t* q);
2017-09-21 03:48:09 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_rx_sf_ng(srsran_ofdm_t* q, cf_t* input, cf_t* output);
2017-09-21 03:48:09 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int
srsran_ofdm_tx_init(srsran_ofdm_t* q, srsran_cp_t cp_type, cf_t* in_buffer, cf_t* out_buffer, uint32_t nof_prb);
2015-03-18 11:14:24 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API int
srsran_ofdm_tx_init_mbsfn(srsran_ofdm_t* q, srsran_cp_t cp, cf_t* in_buffer, cf_t* out_buffer, uint32_t nof_prb);
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_tx_free(srsran_ofdm_t* q);
2017-09-21 03:48:09 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_tx_sf(srsran_ofdm_t* q);
2021-03-19 03:45:56 -07:00
SRSRAN_API int srsran_ofdm_set_freq_shift(srsran_ofdm_t* q, float freq_shift);
2015-03-11 09:42:36 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_set_normalize(srsran_ofdm_t* q, bool normalize_enable);
2017-09-21 03:48:09 -07:00
2021-03-19 03:45:56 -07:00
SRSRAN_API void srsran_ofdm_set_non_mbsfn_region(srsran_ofdm_t* q, uint8_t non_mbsfn_region);
2017-09-21 03:48:09 -07:00
2021-03-19 03:45:56 -07:00
#endif // SRSRAN_OFDM_H