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.
75 lines
3.0 KiB
C
75 lines
3.0 KiB
C
/**
|
|
* Copyright 2013-2022 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: 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 SRSRAN_RA_DL_H
|
|
#define SRSRAN_RA_DL_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "srsran/config.h"
|
|
#include "srsran/phy/common/phy_common.h"
|
|
#include "srsran/phy/phch/dci.h"
|
|
#include "srsran/phy/phch/pdsch_cfg.h"
|
|
#include "srsran/phy/phch/ra.h"
|
|
|
|
/**************************************************
|
|
* Structures used for Downlink Resource Allocation
|
|
**************************************************/
|
|
|
|
/** Functions to generate a grant from a received DCI */
|
|
SRSRAN_API int srsran_ra_dl_dci_to_grant(const srsran_cell_t* cell,
|
|
srsran_dl_sf_cfg_t* sf,
|
|
srsran_tm_t tm,
|
|
bool pdsch_use_tbs_index_alt,
|
|
const srsran_dci_dl_t* dci,
|
|
srsran_pdsch_grant_t* grant);
|
|
|
|
SRSRAN_API int
|
|
srsran_ra_dl_grant_to_grant_prb_allocation(const srsran_dci_dl_t* dci, srsran_pdsch_grant_t* grant, uint32_t nof_prb);
|
|
|
|
/** Functions used by the eNodeB scheduler */
|
|
SRSRAN_API uint32_t srsran_ra_dl_approx_nof_re(const srsran_cell_t* cell, uint32_t nof_prb, uint32_t nof_ctrl_symbols);
|
|
|
|
SRSRAN_API uint32_t ra_re_x_prb(const srsran_cell_t* cell, srsran_dl_sf_cfg_t* sf, uint32_t slot, uint32_t prb_idx);
|
|
|
|
SRSRAN_API uint32_t srsran_ra_dl_grant_nof_re(const srsran_cell_t* cell,
|
|
srsran_dl_sf_cfg_t* sf,
|
|
srsran_pdsch_grant_t* grant);
|
|
|
|
/** Others */
|
|
SRSRAN_API int srsran_dl_fill_ra_mcs(srsran_ra_tb_t* tb, int last_tbs, uint32_t nprb, bool pdsch_use_tbs_index_alt);
|
|
|
|
SRSRAN_API void
|
|
srsran_ra_dl_compute_nof_re(const srsran_cell_t* cell, srsran_dl_sf_cfg_t* sf, srsran_pdsch_grant_t* grant);
|
|
|
|
SRSRAN_API uint32_t srsran_ra_dl_info(srsran_pdsch_grant_t* grant, char* info_str, uint32_t len);
|
|
|
|
#endif // SRSRAN_RA_DL_H
|