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.

74 lines
2.3 KiB
C

/**
* Copyright 2013-2023 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: pdsch_cfg.h
*
* Description: Physical downlink shared channel configuration
*
* Reference: 3GPP TS 36.211 version 10.0.0 Release 10 Sec. 6.4
*****************************************************************************/
#ifndef SRSRAN_PDSCH_CFG_H
#define SRSRAN_PDSCH_CFG_H
#include "srsran/phy/fec/cbsegm.h"
#include "srsran/phy/fec/softbuffer.h"
#include "srsran/phy/phch/ra.h"
typedef struct SRSRAN_API {
srsran_tx_scheme_t tx_scheme;
uint32_t pmi;
bool prb_idx[2][SRSRAN_MAX_PRB];
uint32_t nof_prb;
uint32_t nof_re;
uint32_t nof_symb_slot[2];
srsran_ra_tb_t tb[SRSRAN_MAX_CODEWORDS];
int last_tbs[SRSRAN_MAX_CODEWORDS];
uint32_t nof_tb;
uint32_t nof_layers;
} srsran_pdsch_grant_t;
typedef struct SRSRAN_API {
srsran_pdsch_grant_t grant;
uint16_t rnti;
uint32_t max_nof_iterations;
srsran_mimo_decoder_t decoder_type;
float p_a;
uint32_t p_b;
float rs_power;
bool power_scale;
bool csi_enable;
bool use_tbs_index_alt;
union {
srsran_softbuffer_tx_t* tx[SRSRAN_MAX_CODEWORDS];
srsran_softbuffer_rx_t* rx[SRSRAN_MAX_CODEWORDS];
} softbuffers;
bool meas_evm_en;
bool meas_time_en;
uint32_t meas_time_value;
} srsran_pdsch_cfg_t;
#endif // SRSRAN_PDSCH_CFG_H