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.
61 lines
2.2 KiB
C
61 lines
2.2 KiB
C
4 years ago
|
/**
|
||
|
*
|
||
|
* \section COPYRIGHT
|
||
|
*
|
||
|
* Copyright 2013-2021 Software Radio Systems Limited
|
||
|
*
|
||
|
* By using this file, you agree to the terms and conditions set
|
||
|
* forth in the LICENSE file which can be found at the top level of
|
||
|
* the distribution.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
/******************************************************************************
|
||
|
* File: ra_ul.h
|
||
|
*
|
||
|
* Description: Implements Resource allocation Procedures for UL defined in Sections 8
|
||
|
*
|
||
|
* Reference: 3GPP TS 36.213 version 10.0.1 Release 10
|
||
|
*****************************************************************************/
|
||
|
|
||
|
#ifndef SRSRAN_RA_UL_H
|
||
|
#define SRSRAN_RA_UL_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/pusch_cfg.h"
|
||
|
|
||
|
// Structure for PUSCH frequency hopping procedure
|
||
|
typedef struct SRSRAN_API {
|
||
|
bool initialized;
|
||
|
srsran_cell_t cell;
|
||
|
srsran_sequence_t seq_type2_fo;
|
||
|
} srsran_ra_ul_pusch_hopping_t;
|
||
|
|
||
|
SRSRAN_API int srsran_ra_ul_pusch_hopping_init(srsran_ra_ul_pusch_hopping_t* q, srsran_cell_t cell);
|
||
|
|
||
|
SRSRAN_API void srsran_ra_ul_pusch_hopping_free(srsran_ra_ul_pusch_hopping_t* q);
|
||
|
|
||
|
SRSRAN_API void srsran_ra_ul_pusch_hopping(srsran_ra_ul_pusch_hopping_t* q,
|
||
|
srsran_ul_sf_cfg_t* sf,
|
||
|
srsran_pusch_hopping_cfg_t* hopping_cfg,
|
||
|
srsran_pusch_grant_t* grant);
|
||
|
|
||
|
/** Functions to generate a grant from a received DCI */
|
||
|
SRSRAN_API int srsran_ra_ul_dci_to_grant(srsran_cell_t* cell,
|
||
|
srsran_ul_sf_cfg_t* sf,
|
||
|
srsran_pusch_hopping_cfg_t* hopping_cfg,
|
||
|
srsran_dci_ul_t* dci,
|
||
|
srsran_pusch_grant_t* grant);
|
||
|
|
||
|
SRSRAN_API void srsran_ra_ul_compute_nof_re(srsran_pusch_grant_t* grant, srsran_cp_t cp, uint32_t N_srs);
|
||
|
|
||
|
/** Others */
|
||
|
SRSRAN_API uint32_t srsran_ra_ul_info(const srsran_pusch_grant_t* grant, char* info_str, uint32_t len);
|
||
|
|
||
|
#endif // SRSRAN_RA_UL_H
|