|
|
|
/*
|
|
|
|
* Copyright 2013-2019 Software Radio Systems Limited
|
|
|
|
*
|
|
|
|
* This file is part of srsLTE.
|
|
|
|
*
|
|
|
|
* srsLTE 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.
|
|
|
|
*
|
|
|
|
* srsLTE 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: ra_dl.h
|
|
|
|
*
|
|
|
|
* Description: Implements Resource allocation Procedures for DL defined in Section 7
|
|
|
|
*
|
|
|
|
* Reference: 3GPP TS 36.213 version 10.0.1 Release 10
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef SRSLTE_RA_DL_H
|
|
|
|
#define SRSLTE_RA_DL_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "srslte/config.h"
|
|
|
|
#include "srslte/phy/common/phy_common.h"
|
|
|
|
#include "srslte/phy/phch/dci.h"
|
|
|
|
#include "srslte/phy/phch/pdsch_cfg.h"
|
|
|
|
#include "srslte/phy/phch/ra.h"
|
|
|
|
|
|
|
|
/**************************************************
|
|
|
|
* Structures used for Downlink Resource Allocation
|
|
|
|
**************************************************/
|
|
|
|
|
|
|
|
/** Functions to generate a grant from a received DCI */
|
|
|
|
SRSLTE_API int srslte_ra_dl_dci_to_grant(srslte_cell_t* cell,
|
|
|
|
srslte_dl_sf_cfg_t* sf,
|
|
|
|
srslte_tm_t tm,
|
|
|
|
bool pdsch_use_tbs_index_alt,
|
|
|
|
srslte_dci_dl_t* dci,
|
|
|
|
srslte_pdsch_grant_t* grant);
|
|
|
|
|
|
|
|
SRSLTE_API int srslte_ra_dl_grant_to_grant_prb_allocation(srslte_dci_dl_t* dci,
|
|
|
|
srslte_pdsch_grant_t* grant,
|
|
|
|
uint32_t nof_prb);
|
|
|
|
|
|
|
|
/** Functions used by the eNodeB scheduler */
|
|
|
|
SRSLTE_API uint32_t srslte_ra_dl_approx_nof_re(srslte_cell_t* cell, uint32_t nof_prb, uint32_t nof_ctrl_symbols);
|
|
|
|
|
|
|
|
SRSLTE_API uint32_t srslte_ra_dl_grant_nof_re(srslte_cell_t* cell, srslte_dl_sf_cfg_t* sf, srslte_pdsch_grant_t* grant);
|
|
|
|
|
|
|
|
/** Others */
|
|
|
|
SRSLTE_API int srslte_dl_fill_ra_mcs(srslte_ra_tb_t* tb, int last_tbs, uint32_t nprb, bool pdsch_use_tbs_index_alt);
|
|
|
|
|
|
|
|
SRSLTE_API void srslte_ra_dl_compute_nof_re(srslte_cell_t* cell, srslte_dl_sf_cfg_t* sf, srslte_pdsch_grant_t* grant);
|
|
|
|
|
|
|
|
SRSLTE_API uint32_t srslte_ra_dl_info(srslte_pdsch_grant_t* grant, char* info_str, uint32_t len);
|
|
|
|
|
|
|
|
#endif // SRSLTE_RA_DL_H
|