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.
142 lines
5.1 KiB
C
142 lines
5.1 KiB
C
/*
|
|
* Copyright 2013-2020 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: sch.h
|
|
*
|
|
* Description: Common UL and DL shared channel encode/decode functions.
|
|
*
|
|
* Reference: 3GPP TS 36.212 version 10.0.0 Release 10
|
|
*****************************************************************************/
|
|
|
|
#ifndef SRSLTE_SCH_H
|
|
#define SRSLTE_SCH_H
|
|
|
|
#include "srslte/config.h"
|
|
#include "srslte/phy/common/phy_common.h"
|
|
#include "srslte/phy/fec/crc.h"
|
|
#include "srslte/phy/fec/rm_turbo.h"
|
|
#include "srslte/phy/fec/turbocoder.h"
|
|
#include "srslte/phy/fec/turbodecoder.h"
|
|
#include "srslte/phy/phch/pdsch_cfg.h"
|
|
#include "srslte/phy/phch/pusch_cfg.h"
|
|
#include "srslte/phy/phch/uci.h"
|
|
|
|
#ifndef SRSLTE_RX_NULL
|
|
#define SRSLTE_RX_NULL 10000
|
|
#endif
|
|
|
|
#ifndef SRSLTE_TX_NULL
|
|
#define SRSLTE_TX_NULL 100
|
|
#endif
|
|
|
|
/* DL-SCH AND UL-SCH common functions */
|
|
typedef struct SRSLTE_API {
|
|
|
|
uint32_t max_iterations;
|
|
float avg_iterations;
|
|
|
|
bool llr_is_8bit;
|
|
|
|
/* buffers */
|
|
uint8_t* cb_in;
|
|
uint8_t* parity_bits;
|
|
void* e;
|
|
uint8_t* temp_g_bits;
|
|
uint32_t* ul_interleaver;
|
|
srslte_uci_bit_t ack_ri_bits[57600]; // 4*M_sc*Qm_max for RI and ACK
|
|
|
|
srslte_tcod_t encoder;
|
|
srslte_tdec_t decoder;
|
|
srslte_crc_t crc_tb;
|
|
srslte_crc_t crc_cb;
|
|
|
|
srslte_uci_cqi_pusch_t uci_cqi;
|
|
|
|
} srslte_sch_t;
|
|
|
|
SRSLTE_API int srslte_sch_init(srslte_sch_t* q);
|
|
|
|
SRSLTE_API void srslte_sch_free(srslte_sch_t* q);
|
|
|
|
SRSLTE_API void srslte_sch_set_max_noi(srslte_sch_t* q, uint32_t max_iterations);
|
|
|
|
SRSLTE_API float srslte_sch_last_noi(srslte_sch_t* q);
|
|
|
|
SRSLTE_API int srslte_dlsch_encode(srslte_sch_t* q, srslte_pdsch_cfg_t* cfg, uint8_t* data, uint8_t* e_bits);
|
|
|
|
SRSLTE_API int srslte_dlsch_encode2(srslte_sch_t* q,
|
|
srslte_pdsch_cfg_t* cfg,
|
|
uint8_t* data,
|
|
uint8_t* e_bits,
|
|
int codeword_idx,
|
|
uint32_t nof_layers);
|
|
|
|
SRSLTE_API int srslte_dlsch_decode(srslte_sch_t* q, srslte_pdsch_cfg_t* cfg, int16_t* e_bits, uint8_t* data);
|
|
|
|
SRSLTE_API int srslte_dlsch_decode2(srslte_sch_t* q,
|
|
srslte_pdsch_cfg_t* cfg,
|
|
int16_t* e_bits,
|
|
uint8_t* data,
|
|
int codeword_idx,
|
|
uint32_t nof_layers);
|
|
|
|
SRSLTE_API int srslte_ulsch_encode(srslte_sch_t* q,
|
|
srslte_pusch_cfg_t* cfg,
|
|
uint8_t* data,
|
|
srslte_uci_value_t* uci_data,
|
|
uint8_t* g_bits,
|
|
uint8_t* q_bits);
|
|
|
|
SRSLTE_API int srslte_ulsch_decode(srslte_sch_t* q,
|
|
srslte_pusch_cfg_t* cfg,
|
|
int16_t* q_bits,
|
|
int16_t* g_bits,
|
|
uint8_t* c_seq,
|
|
uint8_t* data,
|
|
srslte_uci_value_t* uci_data);
|
|
|
|
SRSLTE_API float srslte_sch_beta_cqi(uint32_t I_cqi);
|
|
|
|
SRSLTE_API float srslte_sch_beta_ack(uint32_t I_harq);
|
|
|
|
SRSLTE_API uint32_t srslte_sch_find_Ioffset_ack(float beta);
|
|
|
|
SRSLTE_API uint32_t srslte_sch_find_Ioffset_cqi(float beta);
|
|
|
|
SRSLTE_API uint32_t srslte_sch_find_Ioffset_ri(float beta);
|
|
|
|
///< Sidelink uses PUSCH Interleaver in all channels
|
|
SRSLTE_API void srslte_sl_ulsch_interleave(uint8_t* g_bits,
|
|
uint32_t Qm,
|
|
uint32_t H_prime_total,
|
|
uint32_t N_pusch_symbs,
|
|
uint8_t* q_bits);
|
|
|
|
///< Sidelink uses PUSCH Deinterleaver in all channels
|
|
SRSLTE_API void srslte_sl_ulsch_deinterleave(int16_t* q_bits,
|
|
uint32_t Qm,
|
|
uint32_t H_prime_total,
|
|
uint32_t N_pusch_symbs,
|
|
int16_t* g_bits,
|
|
uint32_t* inteleaver_lut);
|
|
|
|
#endif // SRSLTE_SCH_H
|