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.

89 lines
3.0 KiB
C

/**
* Copyright 2013-2021 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: enb_ul.h
*
* Description: ENB uplink object.
*
* This module is a frontend to all the uplink data and control
* channel processing modules for the ENB receiver side.
*
* Reference:
*****************************************************************************/
#ifndef SRSRAN_ENB_UL_H
#define SRSRAN_ENB_UL_H
#include <stdbool.h>
#include "srsran/phy/ch_estimation/chest_ul.h"
#include "srsran/phy/common/phy_common.h"
#include "srsran/phy/dft/ofdm.h"
#include "srsran/phy/phch/prach.h"
#include "srsran/phy/phch/pucch.h"
#include "srsran/phy/phch/pusch.h"
#include "srsran/phy/phch/pusch_cfg.h"
#include "srsran/phy/phch/ra.h"
#include "srsran/phy/utils/debug.h"
#include "srsran/phy/utils/vector.h"
#include "srsran/config.h"
typedef struct SRSRAN_API {
srsran_cell_t cell;
cf_t* sf_symbols;
cf_t* in_buffer;
srsran_chest_ul_res_t chest_res;
srsran_ofdm_t fft;
srsran_chest_ul_t chest;
srsran_pusch_t pusch;
srsran_pucch_t pucch;
} srsran_enb_ul_t;
/* This function shall be called just after the initial synchronization */
SRSRAN_API int srsran_enb_ul_init(srsran_enb_ul_t* q, cf_t* in_buffer, uint32_t max_prb);
SRSRAN_API void srsran_enb_ul_free(srsran_enb_ul_t* q);
SRSRAN_API int srsran_enb_ul_set_cell(srsran_enb_ul_t* q,
srsran_cell_t cell,
srsran_refsignal_dmrs_pusch_cfg_t* pusch_cfg,
srsran_refsignal_srs_cfg_t* srs_cfg);
SRSRAN_API void srsran_enb_ul_fft(srsran_enb_ul_t* q);
SRSRAN_API int srsran_enb_ul_get_pucch(srsran_enb_ul_t* q,
srsran_ul_sf_cfg_t* ul_sf,
srsran_pucch_cfg_t* cfg,
srsran_pucch_res_t* res);
SRSRAN_API int srsran_enb_ul_get_pusch(srsran_enb_ul_t* q,
srsran_ul_sf_cfg_t* ul_sf,
srsran_pusch_cfg_t* cfg,
srsran_pusch_res_t* res);
#endif // SRSRAN_ENB_UL_H