defs.h 7.28 KB
Newer Older
1 2 3 4 5 6 7 8
#ifndef __LTE_ESTIMATION_DEFS__H__
#define __LTE_ESTIMATION_DEFS__H__

#include "PHY/defs.h"
/*
#ifdef EMOS
#include "SCHED/phy_procedures_emos.h"
#endif
9
 */
10 11

/** @addtogroup _PHY_PARAMETER_ESTIMATION_BLOCKS_
12 13
 * @{
 */
14 15 16 17 18 19 20 21

/*!\brief Timing drift hysterisis in samples*/
#define SYNCH_HYST 1


/*!
\brief This function allocates memory needed for the synchronization.
\param frame_parms LTE DL frame parameter structure
22
 */
23 24 25 26 27

int lte_sync_time_init(LTE_DL_FRAME_PARMS *frame_parms); //LTE_UE_COMMON *common_vars

/*! \fn void lte_sync_time_free()
\brief This function frees the memory allocated by lte_sync_time_init.
28
 */
29 30 31 32 33 34 35 36 37
void lte_sync_time_free(void);

/*! 
\brief This function performs the coarse timing synchronization.
The algorithm uses a time domain correlation with a downsampled version of the received signal. 
\param rxdata Received time domain data for all rx antennas
\param frame_parms LTE DL frame parameter structure
\param eNB_id return value with the eNb_id
\return sync_pos Position of the sync within the frame (downsampled) if successfull and -1 if there was an error or no peak was detected.
38
 */
39
int lte_sync_time(int **rxdata, 
40 41
    LTE_DL_FRAME_PARMS *frame_parms,
    int *eNB_id);
42 43 44 45 46 47 48 49 50 51

/*! 
\brief This function performs detection of the PRACH (=SRS) at the eNb to estimate the timing advance
The algorithm uses a time domain correlation with a downsampled version of the received signal. 
\param rxdata Received time domain data for all rx antennas
\param frame_parms LTE DL frame parameter structure
\param length Length for correlation
\param peak_val pointer to value of returned peak 
\param sync_corr_eNb pointer to correlation buffer
\return sync_pos Position of the sync within the frame (downsampled) if successfull and -1 if there was an error or no peak was detected.
52 53 54 55 56 57
 */
int lte_sync_time_eNB(int32_t **rxdata,
    LTE_DL_FRAME_PARMS *frame_parms,
    uint32_t length,
    uint32_t *peak_val,
    uint32_t *sync_corr_eNb);
58 59

int lte_sync_time_eNB_emul(PHY_VARS_eNB *phy_vars_eNb,
60 61
    uint8_t sect_id,
    int32_t *sync_val);
62 63 64 65 66 67 68 69 70 71 72 73

/*!
\brief This function performs channel estimation including frequency and temporal interpolation
\param phy_vars_ue Pointer to UE PHY variables
\param eNB_id Index of target eNB
\param eNB_offset Offset for interfering eNB (in terms cell ID mod 3)
\param Ns slot number (0..19)
\param p antenna port 
\param l symbol within slot
\param symbol symbol within frame
*/
int lte_dl_channel_estimation(PHY_VARS_UE *phy_vars_ue,
74 75 76 77 78 79
    module_id_t eNB_id,
    uint8_t eNB_offset,
    uint8_t Ns,
    uint8_t p,
    uint8_t l,
    uint8_t symbol);
80 81 82


int lte_dl_msbfn_channel_estimation(PHY_VARS_UE *phy_vars_ue,
83 84 85 86 87
    module_id_t eNB_id,
    uint8_t eNB_offset,
    int subframe,
    unsigned char l,
    unsigned char symbol);
88

89
int lte_dl_mbsfn_channel_estimation(PHY_VARS_UE *phy_vars_ue,
90 91 92 93
    module_id_t eNB_id,
    uint8_t eNB_offset,
    int subframe,
    unsigned char l);
94 95 96 97 98 99 100 101 102 103 104

/*
#ifdef EMOS
int lte_dl_channel_estimation_emos(int dl_ch_estimates_emos[NB_ANTENNAS_RX*NB_ANTENNAS_TX][N_RB_DL_EMOS*N_PILOTS_PER_RB*N_SLOTS_EMOS],
				   int **rxdataF,
				   LTE_DL_FRAME_PARMS *frame_parms,
				   unsigned char Ns,
				   unsigned char p,
				   unsigned char l,
				   unsigned char sector);
#endif
105
 */
106 107 108 109 110 111 112 113

/*!
\brief Frequency offset estimation for LTE
We estimate the frequency offset by calculating the phase difference between channel estimates for symbols carrying pilots (l==0 or l==3/4). We take a moving average of the phase difference.
\param dl_ch_estimates pointer to structure that holds channel estimates (one slot)
\param frame_parms pointer to LTE frame parameters
\param l symbol within slot
\param freq_offset pointer to the returned frequency offset
114
 */
115
int lte_est_freq_offset(int **dl_ch_estimates,
116 117 118
    LTE_DL_FRAME_PARMS *frame_parms,
    int l,
    int* freq_offset);
119 120

int lte_mbsfn_est_freq_offset(int **dl_ch_estimates,
121 122 123
    LTE_DL_FRAME_PARMS *frame_parms,
    int l,
    int* freq_offset);
124 125 126 127 128 129 130 131

/*! \brief Tracking of timing for LTE
This function computes the time domain channel response, finds the peak and adjusts the timing in pci_interface.offset accordingly.
\param frame_parms LTE DL frame parameter structure
\param phy_vars_ue Pointer to UE PHY data structure
\param eNb_id 
\param clear If clear==1 moving average filter is reset
\param coef Coefficient of the moving average filter (Q1.15)
132
 */
133 134

void lte_adjust_synch(LTE_DL_FRAME_PARMS *frame_parms,
135 136 137 138
    PHY_VARS_UE *phy_vars_ue,
    module_id_t eNb_id,
    unsigned char clear,
    short coef);
139 140 141

//! \brief this function fills the PHY_VARS_UE->PHY_measurement structure
void lte_ue_measurements(PHY_VARS_UE *phy_vars_ue,
142 143 144
    unsigned int subframe_offset,
    unsigned char N0_symbol,
    unsigned char abstraction_flag);
145 146 147

//! \brief This function performance RSRP/RSCP measurements
void ue_rrc_measurements(PHY_VARS_UE *phy_vars_ue,
148 149 150 151
    uint8_t slot,
    uint8_t abstraction_flag);

void lte_ue_measurements_emul(PHY_VARS_UE *phy_vars_ue,uint8_t last_slot,uint8_t eNB_id);
152 153 154 155 156

/*! \brief Function to return the path-loss based on the UE cell-specific reference signal strength and transmission power of eNB
@param Mod_id Module ID for UE
@param eNB_index Index of eNB on which to act
@returns Path loss in dB
157
 */
Raymond Knopp's avatar
 
Raymond Knopp committed
158 159 160 161 162 163 164 165
int16_t get_PL(module_id_t Mod_id,uint8_t CC_id,uint8_t eNB_index);
uint8_t get_RSRP(module_id_t Mod_id,uint8_t CC_id,uint8_t eNB_index);
uint8_t get_RSRQ(module_id_t Mod_id,uint8_t CC_id,uint8_t eNB_index);
uint8_t get_n_adj_cells(module_id_t Mod_id,uint8_t CC_id);
int8_t get_rx_total_gain_dB(module_id_t Mod_id,uint8_t CC_id);
int8_t get_RSSI(module_id_t Mod_id,uint8_t CC_id);
int8_t set_RSRP_filtered(module_id_t Mod_id,uint8_t CC_id,uint8_t eNB_index,float rsrp);
int8_t set_RSRQ_filtered(module_id_t Mod_id,uint8_t CC_id,uint8_t eNB_index,float rstq);
166 167 168

//! Automatic gain control
void phy_adjust_gain (PHY_VARS_UE *phy_vars_ue,
169
    unsigned char eNB_id);
170 171

int lte_ul_channel_estimation(PHY_VARS_eNB *phy_vars_eNB,
172 173 174 175 176 177
    module_id_t eNB_id,
    module_id_t UE_id,
    uint8_t subframe,
    uint8_t l,
    uint8_t Ns,
    uint8_t cooperation_flag);
178

179 180 181
int16_t lte_ul_freq_offset_estimation(LTE_DL_FRAME_PARMS *frame_parms,
                                  int32_t *ul_ch_estimates,
                                  uint16_t nb_rb);
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196

int lte_srs_channel_estimation(LTE_DL_FRAME_PARMS *frame_parms,
			       LTE_eNB_COMMON *eNb_common_vars,
			       LTE_eNB_SRS *eNb_srs_vars,
			       SOUNDINGRS_UL_CONFIG_DEDICATED *soundingrs_ul_config_dedicated,
			       unsigned char sub_frame_number,
			       unsigned char eNb_id);

int lte_est_timing_advance(LTE_DL_FRAME_PARMS *frame_parms,
			   LTE_eNB_SRS *lte_eNb_srs,
			   unsigned int *eNb_id,
			   unsigned char clear,
			   unsigned char number_of_cards,
			   short coef);

197
int lte_est_timing_advance_pusch(PHY_VARS_eNB* phy_vars_eNB,module_id_t UE_id,uint8_t subframe);
198 199

void lte_eNB_I0_measurements(PHY_VARS_eNB *phy_vars_eNb,
200 201
    module_id_t eNB_id,
    unsigned char clear);
202 203

void lte_eNB_I0_measurements_emul(PHY_VARS_eNB *phy_vars_eNb,
204
				  uint8_t sect_id);
205 206 207


void lte_eNB_srs_measurements(PHY_VARS_eNB *phy_vars_eNb,
208 209 210
    module_id_t eNB_id,
    module_id_t UE_id,
    unsigned char init_averaging);
211 212 213 214 215 216 217 218 219 220 221 222 223


void freq_equalization(LTE_DL_FRAME_PARMS *frame_parms,
		       int **rxdataF_comp,
		       int **ul_ch_mag,
		       int **ul_ch_mag_b,
		       unsigned char symbol,
		       unsigned short Msc_RS,
		       unsigned char Qm);


/** @} */ 
#endif