nr_polar_defs.h 12.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The OpenAirInterface Software Alliance licenses this file to You under
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
 * except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.openairinterface.org/?page_id=698
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *-------------------------------------------------------------------------------
 * For more information about the OpenAirInterface (OAI) Software Alliance:
 *      contact@openairinterface.org
 */

22 23
/*!\file PHY/CODING/nrPolar_tools/nr_polar_defs.h
 * \brief
24
 * \author Raymond Knopp, Turker Yilmaz
25 26 27
 * \date 2018
 * \version 0.1
 * \company EURECOM
28
 * \email raymond.knopp@eurecom.fr, turker.yilmaz@eurecom.fr
29 30 31
 * \note
 * \warning
*/
32

Guy De Souza's avatar
Guy De Souza committed
33 34 35 36 37 38 39 40 41
#ifndef __NR_POLAR_DEFS__H__
#define __NR_POLAR_DEFS__H__

#include <math.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>

42 43 44
#include "PHY/CODING/nrPolar_tools/nr_polar_dci_defs.h"
#include "PHY/CODING/nrPolar_tools/nr_polar_uci_defs.h"
#include "PHY/CODING/nrPolar_tools/nr_polar_pbch_defs.h"
yilmazt's avatar
yilmazt committed
45
#include "PHY/CODING/coding_defs.h"
46
//#include "SIMULATION/TOOLS/sim.h"
47

48 49
#define NR_POLAR_DECODER_LISTSIZE 8 //uint8_t

yilmazt's avatar
yilmazt committed
50 51 52 53 54
#define NR_POLAR_AGGREGATION_LEVEL_1_PRIME 149 //uint16_t
#define NR_POLAR_AGGREGATION_LEVEL_2_PRIME 151 //uint16_t
#define NR_POLAR_AGGREGATION_LEVEL_4_PRIME 157 //uint16_t
#define NR_POLAR_AGGREGATION_LEVEL_8_PRIME 163 //uint16_t
#define NR_POLAR_AGGREGATION_LEVEL_16_PRIME 167 //uint16_t
55

56
static const uint8_t nr_polar_subblock_interleaver_pattern[32] = {0,1,2,4,3,5,6,7,8,16,9,17,10,18,11,19,12,20,13,21,14,22,15,23,24,25,26,28,27,29,30,31};
57 58 59 60

#define Nmax 1024
#define nmax 10

61 62
#define uint128_t __uint128_t

63 64 65 66 67 68 69 70 71
typedef struct decoder_node_t_s {
  struct decoder_node_t_s *left;
  struct decoder_node_t_s *right;
  int level;
  int leaf;
  int Nv;
  int first_leaf_index;
  int all_frozen;
  int16_t *alpha;
72
  int16_t *beta;
73 74 75 76 77 78 79
} decoder_node_t;

typedef struct decoder_tree_t_s {
  decoder_node_t *root;
  int num_nodes;
} decoder_tree_t;

80
struct nrPolar_params {
81 82 83
  //messageType: 0=PBCH, 1=DCI, -1=UCI
  int idx; //idx = (messageType * messageLength * aggregation_prime);
  struct nrPolar_params *nextPtr;
84

85 86 87 88 89 90 91 92 93 94 95 96 97 98
  uint8_t n_max;
  uint8_t i_il;
  uint8_t i_seg;
  uint8_t n_pc;
  uint8_t n_pc_wm;
  uint8_t i_bil;
  uint16_t payloadBits;
  uint16_t encoderLength;
  uint8_t crcParityBits;
  uint8_t crcCorrectionBits;
  uint16_t K;
  uint16_t N;
  uint8_t n;
  uint32_t crcBit;
99

100
  uint16_t *interleaving_pattern;
101
  uint16_t *deinterleaving_pattern;
102 103 104 105 106 107 108
  uint16_t *rate_matching_pattern;
  const uint16_t *Q_0_Nminus1;
  int16_t *Q_I_N;
  int16_t *Q_F_N;
  int16_t *Q_PC_N;
  uint8_t *information_bit_pattern;
  uint16_t *channel_interleaver_pattern;
109
  //uint32_t crc_polynomial;
110

111 112 113
  uint8_t **crc_generator_matrix; //G_P
  uint8_t **G_N;
  uint64_t **G_N_tab;
114
  int groupsize;
115
  int *rm_tab;
116 117 118 119
  uint64_t cprime_tab0[32][256];
  uint64_t cprime_tab1[32][256];
  uint64_t B_tab0[32][256];
  uint64_t B_tab1[32][256];
120
  uint8_t **extended_crc_generator_matrix;
121 122 123 124 125 126 127
  //lowercase: bits, Uppercase: Bits stored in bytes
  //polar_encoder vectors
  uint8_t *nr_polar_crc;
  uint8_t *nr_polar_aPrime;
  uint8_t *nr_polar_APrime;
  uint8_t *nr_polar_D;
  uint8_t *nr_polar_E;
128

129 130 131 132 133
  //Polar Coding vectors
  uint8_t *nr_polar_A;
  uint8_t *nr_polar_CPrime;
  uint8_t *nr_polar_B;
  uint8_t *nr_polar_U;
134

135
  decoder_tree_t tree;
136 137 138
} __attribute__ ((__packed__));
typedef struct nrPolar_params t_nrPolar_params;

yilmazt's avatar
yilmazt committed
139
void polar_encoder(uint32_t *input,
140
                   uint32_t *output,
141
                   const t_nrPolar_params *polarParams);
yilmazt's avatar
yilmazt committed
142 143

void polar_encoder_dci(uint32_t *in,
144
                       uint32_t *out,
145
                       const t_nrPolar_params *polarParams,
146
                       uint16_t n_RNTI);
147

yilmazt's avatar
yilmazt committed
148
void polar_encoder_fast(uint64_t *A,
laurent's avatar
laurent committed
149
                        void *out,
150
                        int32_t crcmask,
151
                        uint8_t ones_flag,
152
                        const t_nrPolar_params *polarParams);
yilmazt's avatar
yilmazt committed
153

154
int8_t polar_decoder(double *input,
155 156
                     uint32_t *output,
                     const t_nrPolar_params *polarParams,
157
                     uint8_t listSize);
158

159
uint32_t polar_decoder_int16(int16_t *input,
160
                             uint64_t *out,
161
                             uint8_t ones_flag,
162
                             const t_nrPolar_params *polarParams);
163

164
int8_t polar_decoder_dci(double *input,
165
                         uint32_t *out,
166
                         const t_nrPolar_params *polarParams,
167 168
                         uint8_t listSize,
                         uint16_t n_RNTI);
yilmazt's avatar
yilmazt committed
169

170
void generic_polar_decoder(const t_nrPolar_params *pp,
171
                           decoder_node_t *node);
172 173

void applyFtoleft(const t_nrPolar_params *pp,
174
                  decoder_node_t *node);
175 176

void applyGtoright(const t_nrPolar_params *pp,
177
                   decoder_node_t *node);
178 179

void computeBeta(const t_nrPolar_params *pp,
180
                 decoder_node_t *node);
181

yilmazt's avatar
yilmazt committed
182
void build_decoder_tree(t_nrPolar_params *pp);
183
void build_polar_tables(t_nrPolar_params *polarParams);
yilmazt's avatar
yilmazt committed
184
void init_polar_deinterleaver_table(t_nrPolar_params *polarParams);
Raymond Knopp's avatar
Raymond Knopp committed
185

186
void nr_polar_print_polarParams(t_nrPolar_params *polarParams);
187

188 189
t_nrPolar_params *nr_polar_params (int8_t messageType,
                                   uint16_t messageLength,
Raymond Knopp's avatar
Raymond Knopp committed
190
                                   uint8_t aggregation_level,
191 192
				   int decoder_flag,
				   t_nrPolar_params **polarList_ext);
Guy De Souza's avatar
Guy De Souza committed
193

yilmazt's avatar
yilmazt committed
194
uint16_t nr_polar_aggregation_prime (uint8_t aggregation_level);
Guy De Souza's avatar
Guy De Souza committed
195

196
uint8_t **nr_polar_kronecker_power_matrices(uint8_t n);
Guy De Souza's avatar
Guy De Souza committed
197

198
const uint16_t *nr_polar_sequence_pattern(uint8_t n);
Guy De Souza's avatar
Guy De Souza committed
199

yilmazt's avatar
yilmazt committed
200 201 202 203 204 205
/*!@fn uint32_t nr_polar_output_length(uint16_t K, uint16_t E, uint8_t n_max)
 * @brief Computes...
 * @param K Number of bits to encode (=payloadBits+crcParityBits)
 * @param E
 * @param n_max */
uint32_t nr_polar_output_length(uint16_t K,
206 207
                                uint16_t E,
                                uint8_t n_max);
yilmazt's avatar
yilmazt committed
208 209

void nr_polar_channel_interleaver_pattern(uint16_t *cip,
210 211
    uint8_t I_BIL,
    uint16_t E);
yilmazt's avatar
yilmazt committed
212 213

void nr_polar_rate_matching_pattern(uint16_t *rmp,
214 215 216 217 218
                                    uint16_t *J,
                                    const uint8_t *P_i_,
                                    uint16_t K,
                                    uint16_t N,
                                    uint16_t E);
yilmazt's avatar
yilmazt committed
219 220

void nr_polar_rate_matching(double *input,
221 222 223 224 225
                            double *output,
                            uint16_t *rmp,
                            uint16_t K,
                            uint16_t N,
                            uint16_t E);
yilmazt's avatar
yilmazt committed
226 227

void nr_polar_rate_matching_int16(int16_t *input,
228 229 230 231 232
                                  int16_t *output,
                                  uint16_t *rmp,
                                  uint16_t K,
                                  uint16_t N,
                                  uint16_t E);
233

yilmazt's avatar
yilmazt committed
234
void nr_polar_interleaving_pattern(uint16_t K,
235 236
                                   uint8_t I_IL,
                                   uint16_t *PI_k_);
yilmazt's avatar
yilmazt committed
237 238

void nr_polar_info_bit_pattern(uint8_t *ibp,
239 240 241 242 243 244 245 246
                               int16_t *Q_I_N,
                               int16_t *Q_F_N,
                               uint16_t *J,
                               const uint16_t *Q_0_Nminus1,
                               uint16_t K,
                               uint16_t N,
                               uint16_t E,
                               uint8_t n_PC);
yilmazt's avatar
yilmazt committed
247 248

void nr_polar_info_bit_extraction(uint8_t *input,
249 250 251
                                  uint8_t *output,
                                  uint8_t *pattern,
                                  uint16_t size);
yilmazt's avatar
yilmazt committed
252

253
void nr_bit2byte_uint32_8(uint32_t *in,
254 255
                          uint16_t arraySize,
                          uint8_t *out);
yilmazt's avatar
yilmazt committed
256

257
void nr_byte2bit_uint8_32(uint8_t *in,
258 259 260 261
                          uint16_t arraySize,
                          uint32_t *out);

uint8_t **crc24c_generator_matrix(uint16_t payloadSizeBits);
yilmazt's avatar
yilmazt committed
262

263 264 265
uint8_t **crc11_generator_matrix(uint16_t payloadSizeBits);

uint8_t **crc6_generator_matrix(uint16_t payloadSizeBits);
yilmazt's avatar
yilmazt committed
266 267

void nr_polar_bit_insertion(uint8_t *input,
268 269 270 271 272 273
                            uint8_t *output,
                            uint16_t N,
                            uint16_t K,
                            int16_t *Q_I_N,
                            int16_t *Q_PC_N,
                            uint8_t n_PC);
yilmazt's avatar
yilmazt committed
274 275

void nr_matrix_multiplication_uint8_1D_uint8_2D(uint8_t *matrix1,
276 277 278 279
    uint8_t **matrix2,
    uint8_t *output,
    uint16_t row,
    uint16_t col);
yilmazt's avatar
yilmazt committed
280 281

uint8_t ***nr_alloc_uint8_3D_array(uint16_t xlen,
282 283
                                   uint16_t ylen,
                                   uint16_t zlen);
yilmazt's avatar
yilmazt committed
284 285

uint8_t **nr_alloc_uint8_2D_array(uint16_t xlen,
286
                                  uint16_t ylen);
yilmazt's avatar
yilmazt committed
287 288

double ***nr_alloc_double_3D_array(uint16_t xlen,
289 290
                                   uint16_t ylen,
                                   uint16_t zlen);
yilmazt's avatar
yilmazt committed
291

yilmazt's avatar
yilmazt committed
292
double **nr_alloc_double_2D_array(uint16_t xlen,
293
                                  uint16_t ylen);
yilmazt's avatar
yilmazt committed
294 295

void nr_free_double_3D_array(double ***input,
296 297
                             uint16_t xlen,
                             uint16_t ylen);
yilmazt's avatar
yilmazt committed
298 299

void nr_free_double_2D_array(double **input,
300
                             uint16_t xlen);
yilmazt's avatar
yilmazt committed
301 302

void nr_free_uint8_3D_array(uint8_t ***input,
303 304
                            uint16_t xlen,
                            uint16_t ylen);
yilmazt's avatar
yilmazt committed
305 306

void nr_free_uint8_2D_array(uint8_t **input,
307
                            uint16_t xlen);
yilmazt's avatar
yilmazt committed
308 309

void nr_sort_asc_double_1D_array_ind(double *matrix,
310 311
                                     uint8_t *ind,
                                     uint8_t len);
yilmazt's avatar
yilmazt committed
312 313

void nr_sort_asc_int16_1D_array_ind(int32_t *matrix,
314 315
                                    int *ind,
                                    int len);
yilmazt's avatar
yilmazt committed
316

317 318
void nr_free_double_2D_array(double **input, uint16_t xlen);

yilmazt's avatar
yilmazt committed
319
void updateLLR(double ***llr,
320 321 322 323 324 325 326
               uint8_t **llrU,
               uint8_t ***bit,
               uint8_t **bitU,
               uint8_t listSize,
               uint16_t row,
               uint16_t col,
               uint16_t xlen,
327
               uint8_t ylen);
yilmazt's avatar
yilmazt committed
328 329

void updateBit(uint8_t ***bit,
330 331 332 333 334 335
               uint8_t **bitU,
               uint8_t listSize,
               uint16_t row,
               uint16_t col,
               uint16_t xlen,
               uint8_t ylen);
yilmazt's avatar
yilmazt committed
336 337

void updatePathMetric(double *pathMetric,
338 339 340
                      double ***llr,
                      uint8_t listSize,
                      uint8_t bitValue,
341
                      uint16_t row);
yilmazt's avatar
yilmazt committed
342 343

void updatePathMetric2(double *pathMetric,
344 345
                       double ***llr,
                       uint8_t listSize,
346
                       uint16_t row);
yilmazt's avatar
yilmazt committed
347 348

void computeLLR(double ***llr,
349 350 351
                uint16_t row,
                uint16_t col,
                uint8_t i,
352
                uint16_t offset);
yilmazt's avatar
yilmazt committed
353 354

void updateCrcChecksum(uint8_t **crcChecksum,
355 356 357 358
                       uint8_t **crcGen,
                       uint8_t listSize,
                       uint32_t i2,
                       uint8_t len);
yilmazt's avatar
yilmazt committed
359 360

void updateCrcChecksum2(uint8_t **crcChecksum,
361 362 363 364
                        uint8_t **crcGen,
                        uint8_t listSize,
                        uint32_t i2,
                        uint8_t len);
365

yilmazt's avatar
yilmazt committed
366
//Also nr_polar_rate_matcher
yilmazt's avatar
yilmazt committed
367
static inline void nr_polar_interleaver(uint8_t *input,
368 369
                                        uint8_t *output,
                                        uint16_t *pattern,
370 371
                                        uint16_t size)
{
372
  for (int i=0; i<size; i++) output[i]=input[pattern[i]];
373 374
}

yilmazt's avatar
yilmazt committed
375
static inline void nr_polar_deinterleaver(uint8_t *input,
376 377
										  uint8_t *output,
										  uint16_t *pattern,
378 379
										  uint16_t size)
{
380
	for (int i=0; i<size; i++) output[pattern[i]]=input[i];
381 382
}

Guy De Souza's avatar
Guy De Souza committed
383
#endif