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.
85 lines
3.2 KiB
C
85 lines
3.2 KiB
C
10 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
9 years ago
|
* Copyright 2013-2015 Software Radio Systems Limited
|
||
10 years ago
|
*
|
||
|
* \section LICENSE
|
||
|
*
|
||
10 years ago
|
* This file is part of the srsLTE library.
|
||
10 years ago
|
*
|
||
10 years ago
|
* srsLTE is free software: you can redistribute it and/or modify
|
||
10 years ago
|
* it under the terms of the GNU Affero General Public License as
|
||
10 years ago
|
* published by the Free Software Foundation, either version 3 of
|
||
|
* the License, or (at your option) any later version.
|
||
|
*
|
||
10 years ago
|
* srsLTE is distributed in the hope that it will be useful,
|
||
10 years ago
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
10 years ago
|
* GNU Affero General Public License for more details.
|
||
10 years ago
|
*
|
||
10 years ago
|
* A copy of the GNU Affero General Public License can be found in
|
||
10 years ago
|
* the LICENSE file in the top-level directory of this distribution
|
||
|
* and at http://www.gnu.org/licenses/.
|
||
|
*
|
||
|
*/
|
||
|
|
||
10 years ago
|
/**********************************************************************************************
|
||
|
* File: refsignal_dl.h
|
||
|
*
|
||
|
* Description: Object to manage downlink reference signals for channel estimation.
|
||
|
*
|
||
|
* Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 6.10
|
||
|
*********************************************************************************************/
|
||
|
|
||
10 years ago
|
#ifndef SRSLTE_REFSIGNAL_DL_
|
||
|
#define SRSLTE_REFSIGNAL_DL_
|
||
10 years ago
|
|
||
10 years ago
|
#include "srslte/config.h"
|
||
8 years ago
|
#include "srslte/phy/common/phy_common.h"
|
||
10 years ago
|
|
||
|
// Number of references in a subframe: there are 2 symbols for port_id=0,1 x 2 slots x 2 refs per prb
|
||
10 years ago
|
#define SRSLTE_REFSIGNAL_NUM_SF(nof_prb, port_id) (((port_id)<2?8:4)*(nof_prb))
|
||
|
#define SRSLTE_REFSIGNAL_MAX_NUM_SF(nof_prb) SRSLTE_REFSIGNAL_NUM_SF(nof_prb, 0)
|
||
10 years ago
|
|
||
10 years ago
|
#define SRSLTE_REFSIGNAL_PILOT_IDX(i,l,cell) (2*cell.nof_prb*(l)+(i))
|
||
10 years ago
|
|
||
|
|
||
|
/** Cell-Specific Reference Signal */
|
||
10 years ago
|
typedef struct SRSLTE_API {
|
||
10 years ago
|
srslte_cell_t cell;
|
||
|
cf_t *pilots[2][SRSLTE_NSUBFRAMES_X_FRAME]; // Saves the reference signal per subframe for ports 0,1 and ports 2,3
|
||
|
} srslte_refsignal_cs_t;
|
||
10 years ago
|
|
||
|
|
||
10 years ago
|
SRSLTE_API int srslte_refsignal_cs_init(srslte_refsignal_cs_t *q,
|
||
|
srslte_cell_t cell);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API void srslte_refsignal_cs_free(srslte_refsignal_cs_t *q);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API int srslte_refsignal_cs_put_sf(srslte_cell_t cell,
|
||
|
uint32_t port_id,
|
||
|
cf_t *pilots,
|
||
|
cf_t *sf_symbols);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API int srslte_refsignal_cs_get_sf(srslte_cell_t cell,
|
||
|
uint32_t port_id,
|
||
|
cf_t *sf_symbols,
|
||
|
cf_t *pilots);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API uint32_t srslte_refsignal_cs_fidx(srslte_cell_t cell,
|
||
|
uint32_t l,
|
||
|
uint32_t port_id,
|
||
|
uint32_t m);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API uint32_t srslte_refsignal_cs_nsymbol(uint32_t l,
|
||
|
srslte_cp_t cp,
|
||
|
uint32_t port_id);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API uint32_t srslte_refsignal_cs_v(uint32_t port_id,
|
||
|
uint32_t ref_symbol_idx);
|
||
10 years ago
|
|
||
10 years ago
|
SRSLTE_API uint32_t srslte_refsignal_cs_nof_symbols(uint32_t port_id);
|
||
10 years ago
|
|
||
|
#endif
|