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.
127 lines
6.2 KiB
C
127 lines
6.2 KiB
C
/**
|
|
* Copyright 2013-2022 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN 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.
|
|
*
|
|
* srsRAN 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: precoding.h
|
|
*
|
|
* Description: MIMO precoding and deprecoding.
|
|
* Single antenna and tx diversity supported.
|
|
*
|
|
* Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 6.3.4
|
|
*****************************************************************************/
|
|
|
|
#ifndef SRSRAN_PRECODING_H
|
|
#define SRSRAN_PRECODING_H
|
|
|
|
#include "srsran/config.h"
|
|
#include "srsran/phy/common/phy_common.h"
|
|
|
|
/** The precoder takes as input nlayers vectors "x" from the
|
|
* layer mapping and generates nports vectors "y" to be mapped onto
|
|
* resources on each of the antenna ports.
|
|
*/
|
|
|
|
/* Generates the vector "y" from the input vector "x"
|
|
*/
|
|
SRSRAN_API int srsran_precoding_single(cf_t* x, cf_t* y, int nof_symbols, float scaling);
|
|
|
|
SRSRAN_API int srsran_precoding_diversity(cf_t* x[SRSRAN_MAX_LAYERS],
|
|
cf_t* y[SRSRAN_MAX_PORTS],
|
|
int nof_ports,
|
|
int nof_symbols,
|
|
float scaling);
|
|
|
|
SRSRAN_API int srsran_precoding_cdd(cf_t* x[SRSRAN_MAX_LAYERS],
|
|
cf_t* y[SRSRAN_MAX_PORTS],
|
|
int nof_layers,
|
|
int nof_ports,
|
|
int nof_symbols,
|
|
float scaling);
|
|
|
|
SRSRAN_API int srsran_precoding_type(cf_t* x[SRSRAN_MAX_LAYERS],
|
|
cf_t* y[SRSRAN_MAX_PORTS],
|
|
int nof_layers,
|
|
int nof_ports,
|
|
int codebook_idx,
|
|
int nof_symbols,
|
|
float scaling,
|
|
srsran_tx_scheme_t type);
|
|
|
|
/* Estimates the vector "x" based on the received signal "y" and the channel estimates "h"
|
|
*/
|
|
SRSRAN_API int
|
|
srsran_predecoding_single(cf_t* y, cf_t* h, cf_t* x, float* csi, int nof_symbols, float scaling, float noise_estimate);
|
|
|
|
SRSRAN_API int srsran_predecoding_single_multi(cf_t* y[SRSRAN_MAX_PORTS],
|
|
cf_t* h[SRSRAN_MAX_PORTS],
|
|
cf_t* x,
|
|
float* csi[SRSRAN_MAX_CODEWORDS],
|
|
int nof_rxant,
|
|
int nof_symbols,
|
|
float scaling,
|
|
float noise_estimate);
|
|
|
|
SRSRAN_API int srsran_predecoding_diversity(cf_t* y,
|
|
cf_t* h[SRSRAN_MAX_PORTS],
|
|
cf_t* x[SRSRAN_MAX_LAYERS],
|
|
int nof_ports,
|
|
int nof_symbols,
|
|
float scaling);
|
|
|
|
SRSRAN_API int srsran_predecoding_diversity_multi(cf_t* y[SRSRAN_MAX_PORTS],
|
|
cf_t* h[SRSRAN_MAX_PORTS][SRSRAN_MAX_PORTS],
|
|
cf_t* x[SRSRAN_MAX_LAYERS],
|
|
float* csi[SRSRAN_MAX_CODEWORDS],
|
|
int nof_rxant,
|
|
int nof_ports,
|
|
int nof_symbols,
|
|
float scaling);
|
|
|
|
SRSRAN_API void srsran_predecoding_set_mimo_decoder(srsran_mimo_decoder_t _mimo_decoder);
|
|
|
|
SRSRAN_API int srsran_predecoding_type(cf_t* y[SRSRAN_MAX_PORTS],
|
|
cf_t* h[SRSRAN_MAX_PORTS][SRSRAN_MAX_PORTS],
|
|
cf_t* x[SRSRAN_MAX_LAYERS],
|
|
float* csi[SRSRAN_MAX_CODEWORDS],
|
|
int nof_rxant,
|
|
int nof_ports,
|
|
int nof_layers,
|
|
int codebook_idx,
|
|
int nof_symbols,
|
|
srsran_tx_scheme_t type,
|
|
float scaling,
|
|
float noise_estimate);
|
|
|
|
SRSRAN_API int srsran_precoding_pmi_select(cf_t* h[SRSRAN_MAX_PORTS][SRSRAN_MAX_PORTS],
|
|
uint32_t nof_symbols,
|
|
float noise_estimate,
|
|
int nof_layers,
|
|
uint32_t* pmi,
|
|
float sinr[SRSRAN_MAX_CODEBOOKS]);
|
|
|
|
SRSRAN_API int srsran_precoding_cn(cf_t* h[SRSRAN_MAX_PORTS][SRSRAN_MAX_PORTS],
|
|
uint32_t nof_tx_antennas,
|
|
uint32_t nof_rx_antennas,
|
|
uint32_t nof_symbols,
|
|
float* cn);
|
|
|
|
#endif // SRSRAN_PRECODING_H
|