srsLTE/lib/include/srslte/phy/ch_estimation/chest_dl.h

141 lines
4.9 KiB
C
Raw Normal View History

2014-11-05 05:19:35 -08:00
/**
*
* \section COPYRIGHT
*
2015-11-13 04:22:33 -08:00
* Copyright 2013-2015 Software Radio Systems Limited
2014-11-05 05:19:35 -08:00
*
* \section LICENSE
*
* This file is part of the srsLTE library.
2014-11-05 05:19:35 -08:00
*
* srsLTE is free software: you can redistribute it and/or modify
2015-05-08 08:05:40 -07:00
* it under the terms of the GNU Affero General Public License as
2014-11-05 05:19:35 -08:00
* 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,
2014-11-05 05:19:35 -08:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
2015-05-08 08:05:40 -07:00
* GNU Affero General Public License for more details.
2014-11-05 05:19:35 -08:00
*
2015-05-08 08:05:40 -07:00
* A copy of the GNU Affero General Public License can be found in
2014-11-05 05:19:35 -08:00
* the LICENSE file in the top-level directory of this distribution
* and at http://www.gnu.org/licenses/.
*
*/
/**********************************************************************************************
* File: chest_dl.h
*
* Description: 3GPP LTE Downlink channel estimator and equalizer.
* Estimates the channel in the resource elements transmitting references and
* interpolates for the rest of the resource grid.
* The equalizer uses the channel estimates to produce an estimation of the
* transmitted symbol.
* This object depends on the srslte_refsignal_t object for creating the LTE
* CSR signal.
*
* Reference:
*********************************************************************************************/
2014-11-05 05:19:35 -08:00
#ifndef CHEST_DL_
#define CHEST_DL_
#include <stdio.h>
#include "srslte/config.h"
2014-11-05 05:19:35 -08:00
2017-05-18 00:48:24 -07:00
#include "srslte/phy/ch_estimation/chest_common.h"
#include "srslte/phy/resampling/interp.h"
#include "srslte/phy/ch_estimation/refsignal_dl.h"
#include "srslte/phy/common/phy_common.h"
#include "srslte/phy/sync/pss.h"
2014-11-05 05:19:35 -08:00
2014-11-11 10:20:09 -08:00
2016-05-17 00:15:23 -07:00
typedef enum {
SRSLTE_NOISE_ALG_REFS,
SRSLTE_NOISE_ALG_PSS,
SRSLTE_NOISE_ALG_EMPTY,
} srslte_chest_dl_noise_alg_t;
2014-11-05 05:19:35 -08:00
typedef struct {
2015-03-18 05:41:50 -07:00
srslte_cell_t cell;
srslte_refsignal_cs_t csr_signal;
cf_t *pilot_estimates;
cf_t *pilot_estimates_average;
cf_t *pilot_recv_signal;
2014-12-01 13:15:32 -08:00
cf_t *tmp_noise;
#ifdef FREQ_SEL_SNR
float snr_vector[12000];
float pilot_power[12000];
#endif
uint32_t smooth_filter_len;
2016-04-20 06:55:30 -07:00
float smooth_filter[SRSLTE_CHEST_MAX_SMOOTH_FIL_LEN];
2015-03-18 11:14:24 -07:00
srslte_interp_linsrslte_vec_t srslte_interp_linvec;
2015-03-18 05:41:50 -07:00
srslte_interp_lin_t srslte_interp_lin;
2014-11-05 05:19:35 -08:00
float rssi[SRSLTE_MAX_PORTS][SRSLTE_MAX_PORTS];
float rsrp[SRSLTE_MAX_PORTS][SRSLTE_MAX_PORTS];
float noise_estimate[SRSLTE_MAX_PORTS][SRSLTE_MAX_PORTS];
/* Use PSS for noise estimation in LS linear interpolation mode */
cf_t pss_signal[SRSLTE_PSS_LEN];
cf_t tmp_pss[SRSLTE_PSS_LEN];
cf_t tmp_pss_noisy[SRSLTE_PSS_LEN];
2016-05-17 00:15:23 -07:00
srslte_chest_dl_noise_alg_t noise_alg;
2017-02-17 00:34:55 -08:00
int last_nof_antennas;
2016-05-17 00:15:23 -07:00
2015-03-18 05:41:50 -07:00
} srslte_chest_dl_t;
2014-11-05 05:19:35 -08:00
2015-03-18 05:41:50 -07:00
SRSLTE_API int srslte_chest_dl_init(srslte_chest_dl_t *q,
uint32_t max_prb);
2014-11-05 05:19:35 -08:00
SRSLTE_API void srslte_chest_dl_free(srslte_chest_dl_t *q);
SRSLTE_API int srslte_chest_dl_set_cell(srslte_chest_dl_t *q,
srslte_cell_t cell);
2014-11-05 05:19:35 -08:00
SRSLTE_API void srslte_chest_dl_set_smooth_filter(srslte_chest_dl_t *q,
float *filter,
uint32_t filter_len);
SRSLTE_API void srslte_chest_dl_set_smooth_filter3_coeff(srslte_chest_dl_t* q,
float w);
2016-05-17 00:15:23 -07:00
SRSLTE_API void srslte_chest_dl_set_noise_alg(srslte_chest_dl_t *q,
srslte_chest_dl_noise_alg_t noise_estimation_alg);
SRSLTE_API int srslte_chest_dl_estimate_multi(srslte_chest_dl_t *q,
cf_t *input[SRSLTE_MAX_PORTS],
cf_t *ce[SRSLTE_MAX_PORTS][SRSLTE_MAX_PORTS],
uint32_t sf_idx,
uint32_t nof_rx_antennas);
2015-03-18 05:41:50 -07:00
SRSLTE_API int srslte_chest_dl_estimate(srslte_chest_dl_t *q,
cf_t *input,
cf_t *ce[SRSLTE_MAX_PORTS],
uint32_t sf_idx);
2014-11-05 05:19:35 -08:00
2015-03-18 05:41:50 -07:00
SRSLTE_API int srslte_chest_dl_estimate_port(srslte_chest_dl_t *q,
cf_t *input,
cf_t *ce,
uint32_t sf_idx,
2017-02-17 00:34:55 -08:00
uint32_t port_id,
uint32_t rxant_id);
2014-11-05 05:19:35 -08:00
2015-03-18 05:41:50 -07:00
SRSLTE_API float srslte_chest_dl_get_noise_estimate(srslte_chest_dl_t *q);
2014-11-05 05:19:35 -08:00
SRSLTE_API float srslte_chest_dl_get_snr(srslte_chest_dl_t *q);
2015-03-18 05:41:50 -07:00
SRSLTE_API float srslte_chest_dl_get_rssi(srslte_chest_dl_t *q);
2014-11-05 05:19:35 -08:00
2015-03-18 05:41:50 -07:00
SRSLTE_API float srslte_chest_dl_get_rsrq(srslte_chest_dl_t *q);
2014-11-05 05:19:35 -08:00
2015-03-18 05:41:50 -07:00
SRSLTE_API float srslte_chest_dl_get_rsrp(srslte_chest_dl_t *q);
2014-11-05 05:19:35 -08:00
#endif