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.
86 lines
2.5 KiB
C
86 lines
2.5 KiB
C
/*
|
|
* 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/.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSLTE_PUCCH_CFG_H
|
|
#define SRSLTE_PUCCH_CFG_H
|
|
|
|
#include "srslte/phy/phch/cqi.h"
|
|
#include "srslte/phy/phch/ra.h"
|
|
#include "srslte/phy/phch/uci_cfg.h"
|
|
|
|
#define SRSLTE_PUCCH_SIZE_AN_CS 4
|
|
#define SRSLTE_PUCCH_NOF_AN_CS 2
|
|
#define SRSLTE_PUCCH2_MAX_DMRS_BITS 16
|
|
|
|
typedef enum SRSLTE_API {
|
|
SRSLTE_PUCCH_FORMAT_1 = 0,
|
|
SRSLTE_PUCCH_FORMAT_1A,
|
|
SRSLTE_PUCCH_FORMAT_1B,
|
|
SRSLTE_PUCCH_FORMAT_2,
|
|
SRSLTE_PUCCH_FORMAT_2A,
|
|
SRSLTE_PUCCH_FORMAT_2B,
|
|
SRSLTE_PUCCH_FORMAT_3,
|
|
SRSLTE_PUCCH_FORMAT_ERROR,
|
|
} srslte_pucch_format_t;
|
|
|
|
typedef struct SRSLTE_API {
|
|
// Input configuration for this subframe
|
|
uint16_t rnti;
|
|
|
|
// UCI configuration
|
|
srslte_uci_cfg_t uci_cfg;
|
|
|
|
// Common configuration
|
|
uint32_t delta_pucch_shift;
|
|
uint32_t n_rb_2;
|
|
uint32_t N_cs;
|
|
uint32_t N_pucch_1;
|
|
bool group_hopping_en; // common pusch config
|
|
|
|
// Dedicated PUCCH configuration
|
|
uint32_t I_sr;
|
|
bool sr_configured;
|
|
uint32_t n_pucch_1[4]; // 4 n_pucch resources specified by RRC
|
|
uint32_t n_pucch_2;
|
|
uint32_t n_pucch_sr;
|
|
bool simul_cqi_ack;
|
|
bool tdd_ack_multiplex; // if false, bundle
|
|
bool sps_enabled;
|
|
|
|
// Release 10 CA specific
|
|
srslte_ack_nack_feedback_mode_t ack_nack_feedback_mode;
|
|
uint32_t n1_pucch_an_cs[SRSLTE_PUCCH_SIZE_AN_CS][SRSLTE_PUCCH_NOF_AN_CS];
|
|
uint32_t n3_pucch_an_list[SRSLTE_PUCCH_SIZE_AN_CS];
|
|
|
|
// Other configuration
|
|
float threshold_format1;
|
|
float threshold_data_valid_format1a;
|
|
float threshold_data_valid_format2;
|
|
|
|
// PUCCH configuration generated during a call to encode/decode
|
|
srslte_pucch_format_t format;
|
|
uint32_t n_pucch;
|
|
uint8_t pucch2_drs_bits[SRSLTE_PUCCH2_MAX_DMRS_BITS];
|
|
|
|
} srslte_pucch_cfg_t;
|
|
|
|
#endif // SRSLTE_PUCCH_CFG_H
|