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.
106 lines
3.8 KiB
C
106 lines
3.8 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/.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSLTE_CBSEGM_H
|
|
#define SRSLTE_CBSEGM_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
|
|
#include "srslte/config.h"
|
|
|
|
#define SRSLTE_NOF_TC_CB_SIZES 188
|
|
|
|
typedef struct SRSLTE_API {
|
|
uint32_t F; ///< \brief Total number of the transport block bit
|
|
uint32_t C; ///< \brief Total number of code blocks
|
|
uint32_t K1; ///< \brief Code block size 1
|
|
uint32_t K2; ///< \brief Code block size 2
|
|
uint32_t K1_idx; ///< \brief Code block size index 1
|
|
uint32_t K2_idx; ///< \brief Code block size index 2
|
|
uint32_t C1; ///< \brief Number of code blocks of size 1
|
|
uint32_t C2; ///< \brief Number of code blocks of size 2
|
|
uint32_t tbs; ///< \brief Actual transport block size
|
|
uint32_t L_tb; ///< \brief Transport block CRC length
|
|
uint32_t L_cb; ///< \brief Code block CRC length
|
|
uint32_t Z; ///< \brief Lifting size, LDPC only
|
|
} srslte_cbsegm_t;
|
|
|
|
/**
|
|
* @brief Calculate code block Segmentation for LTE
|
|
*
|
|
* @remark Defined as in TS 36.212 V8.8.0 section 5.1.2 Code block segmentation and code block CRC attachment
|
|
*
|
|
* @param[out] s Output of code block segmentation calculation
|
|
* @param[in] tbs Input Transport Block Size in bits. CRC's will be added to this
|
|
* @return It returns SRSLTE_SUCCESS if the provided arguments are valid, otherwise it returns SRSLTE_ERROR code
|
|
*/
|
|
SRSLTE_API int srslte_cbsegm(srslte_cbsegm_t* s, uint32_t tbs);
|
|
|
|
/**
|
|
* @brief provides interleaver size Table 5.1.3-3 (36.212) index
|
|
*
|
|
* @remark Defined as in TS 36.212 V8.8.0 Table 5.1.3-3 Turbo code internal interleaver parameters
|
|
*
|
|
* @return It returns Turbo coder interleaver size if the provided arguments are valid, otherwise it returns
|
|
* SRSLTE_ERROR code
|
|
*/
|
|
SRSLTE_API int srslte_cbsegm_cbsize(uint32_t index);
|
|
|
|
/**
|
|
* @brief Check is code block size is valid for LTE Turbo Code
|
|
*
|
|
* @param[in] size Size of code block in bits
|
|
* @return true if Code Block size is allowed
|
|
*/
|
|
SRSLTE_API bool srslte_cbsegm_cbsize_isvalid(uint32_t size);
|
|
|
|
/**
|
|
* @brief Finds index of minimum K>=long_cb in Table 5.1.3-3 of 36.212
|
|
*
|
|
* @return I_TBS or error code
|
|
*/
|
|
SRSLTE_API int srslte_cbsegm_cbindex(uint32_t long_cb);
|
|
|
|
/**
|
|
* @brief Calculate code block Segmentation for NR LDPC base graph 1
|
|
*
|
|
* @remark Defined as in Section 5.2.2 of 38.212 V15.9.0
|
|
*
|
|
* @param[out] s Output of code block segmentation calculation
|
|
* @param[in] tbs Input Transport Block Size in bits. CRC's will be added to this
|
|
* @return It returns SRSLTE_SUCCESS if the provided arguments are valid, otherwise it returns SRSLTE_ERROR code
|
|
*/
|
|
SRSLTE_API int srslte_cbsegm_ldpc_bg1(srslte_cbsegm_t* s, uint32_t tbs);
|
|
|
|
/**
|
|
* @brief Calculate code block Segmentation for NR LDPC base graph 2
|
|
*
|
|
* @remark Defined as in Section 5.2.2 of 38.212 V15.9.0
|
|
*
|
|
* @param[out] s Output of code block segmentation calculation
|
|
* @param[in] tbs Input Transport Block Size in bits. CRC's will be added to this
|
|
* @return It returns SRSLTE_SUCCESS if the provided arguments are valid, otherwise it returns SRSLTE_ERROR code
|
|
*/
|
|
SRSLTE_API int srslte_cbsegm_ldpc_bg2(srslte_cbsegm_t* s, uint32_t tbs);
|
|
|
|
#endif // SRSLTE_CBSEGM_H
|