pbchsim.c 26.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * 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
 */

#include <string.h>
#include <math.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
28 29
#include "common/config/config_userapi.h"
#include "common/utils/LOG/log.h"
30
#include "common/utils/load_module_shlib.h"
31
#include "common/ran_context.h" 
francescomani's avatar
francescomani committed
32
#include "common/utils/nr/nr_common.h"
33 34 35 36
#include "PHY/types.h"
#include "PHY/defs_nr_common.h"
#include "PHY/defs_nr_UE.h"
#include "PHY/defs_gNB.h"
37 38 39
#include "PHY/NR_REFSIG/refsig_defs_ue.h"
#include "PHY/MODULATION/modulation_eNB.h"
#include "PHY/MODULATION/modulation_UE.h"
40
#include "PHY/MODULATION/nr_modulation.h"
41
#include "PHY/INIT/phy_init.h"
cig's avatar
cig committed
42
#include "PHY/NR_TRANSPORT/nr_transport_proto.h"
43
#include "PHY/NR_UE_TRANSPORT/nr_transport_proto_ue.h"
44
#include "PHY/NR_UE_ESTIMATION/nr_estimation.h"
45
#include "PHY/phy_vars.h"
46
#include "SCHED_NR/sched_nr.h"
47 48 49 50
#include "openair1/SIMULATION/TOOLS/sim.h"
#include "openair1/SIMULATION/RF/rf.h"
#include "openair1/SIMULATION/NR_PHY/nr_unitary_defs.h"
#include "openair1/SIMULATION/NR_PHY/nr_dummy_functions.c"
Laurent's avatar
Laurent committed
51
#include "openair1/PHY/MODULATION/nr_modulation.h"
52
#include <executables/softmodem-common.h>
53
#include <executables/nr-uesoftmodem.h>
54
//#define DEBUG_NR_PBCHSIM
55 56 57 58

PHY_VARS_gNB *gNB;
PHY_VARS_NR_UE *UE;
RAN_CONTEXT_t RC;
59 60
int32_t uplink_frequency_offset[MAX_NUM_CCs][4];

61
double cpuf;
62
//uint8_t nfapi_mode = 0;
yilmazt's avatar
yilmazt committed
63
uint16_t NB_UE_INST = 1;
64

65
// needed for some functions
66
openair0_config_t openair0_cfg[MAX_CARDS];
67

68
uint8_t const nr_rv_round_map[4] = {0, 2, 3, 1};
69

70
uint64_t get_softmodem_optmask(void) {return 0;}
71 72 73 74
static softmodem_params_t softmodem_params;
softmodem_params_t *get_softmodem_params(void) {
  return &softmodem_params;
}
75

76 77 78 79 80 81
nrUE_params_t nrUE_params={0};

nrUE_params_t *get_nrUE_params(void) {
  return &nrUE_params;
}

82 83
void init_downlink_harq_status(NR_DL_UE_HARQ_t *dl_harq) {}

84 85 86
int nr_ue_pdcch_procedures(uint8_t gNB_id,
			   PHY_VARS_NR_UE *ue,
			   UE_nr_rxtx_proc_t *proc,
87 88
         int32_t pdcch_est_size,
         int32_t pdcch_dl_ch_estimates[][pdcch_est_size],
89
         nr_phy_data_t *phy_data,
90
         int n_ss) {
91 92 93 94 95
  return 0;
}

int nr_ue_pdsch_procedures(PHY_VARS_NR_UE *ue,
                           UE_nr_rxtx_proc_t *proc,
96 97
                           int eNB_id,
                           NR_UE_DLSCH_t *dlsch) {
98 99 100 101 102 103 104
  return 0;
}

bool nr_ue_dlsch_procedures(PHY_VARS_NR_UE *ue,
                            UE_nr_rxtx_proc_t *proc,
                            int gNB_id,
                            NR_UE_DLSCH_t *dlsch0,
105
                            NR_UE_DLSCH_t *dlsch1) {
106 107 108
  return false;
}

Sakthivel Velumani's avatar
Sakthivel Velumani committed
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
void nr_phy_config_request_sim_pbchsim(PHY_VARS_gNB *gNB,
                               int N_RB_DL,
                               int N_RB_UL,
                               int mu,
                               int Nid_cell,
                               uint64_t position_in_burst)
{
  NR_DL_FRAME_PARMS *fp                                   = &gNB->frame_parms;
  nfapi_nr_config_request_scf_t *gNB_config               = &gNB->gNB_config;
  //overwrite for new NR parameters

  uint64_t rev_burst=0;
  for (int i=0; i<64; i++)
    rev_burst |= (((position_in_burst>>(63-i))&0x01)<<i);

  gNB_config->cell_config.phy_cell_id.value             = Nid_cell;
  gNB_config->ssb_config.scs_common.value               = mu;
  gNB_config->ssb_table.ssb_subcarrier_offset.value     = 0;
  gNB_config->ssb_table.ssb_offset_point_a.value        = (N_RB_DL-20)>>1;
  gNB_config->ssb_table.ssb_mask_list[1].ssb_mask.value = (rev_burst)&(0xFFFFFFFF);
  gNB_config->ssb_table.ssb_mask_list[0].ssb_mask.value = (rev_burst>>32)&(0xFFFFFFFF);
  gNB_config->cell_config.frame_duplex_type.value       = TDD;
  gNB_config->ssb_table.ssb_period.value		= 1; //10ms
  gNB_config->carrier_config.dl_grid_size[mu].value     = N_RB_DL;
  gNB_config->carrier_config.ul_grid_size[mu].value     = N_RB_UL;
  gNB_config->carrier_config.num_tx_ant.value           = fp->nb_antennas_tx;
  gNB_config->carrier_config.num_rx_ant.value           = fp->nb_antennas_rx;

  gNB_config->tdd_table.tdd_period.value = 0;
  //gNB_config->subframe_config.dl_cyclic_prefix_type.value = (fp->Ncp == NORMAL) ? NFAPI_CP_NORMAL : NFAPI_CP_EXTENDED;

140 141
  fp->dl_CarrierFreq = 3600000000;//from_nrarfcn(gNB_config->nfapi_config.rf_bands.rf_band[0],gNB_config->nfapi_config.nrarfcn.value);
  fp->ul_CarrierFreq = 3600000000;//fp->dl_CarrierFreq - (get_uldl_offset(gNB_config->nfapi_config.rf_bands.rf_band[0])*100000);
Sakthivel Velumani's avatar
Sakthivel Velumani committed
142 143 144 145 146 147
  if (mu>2) fp->nr_band = 257;
  else fp->nr_band = 78;
  fp->threequarter_fs= 0;

  gNB_config->carrier_config.dl_bandwidth.value = config_bandwidth(mu, N_RB_DL, fp->nr_band);

148
  fp->ofdm_offset_divisor = UINT_MAX;
Sakthivel Velumani's avatar
Sakthivel Velumani committed
149
  nr_init_frame_parms(gNB_config, fp);
150
  init_timeshift_rotation(fp);
151

152
  init_symbol_rotation(fp);
153

Sakthivel Velumani's avatar
Sakthivel Velumani committed
154 155 156
  gNB->configured    = 1;
  LOG_I(PHY,"gNB configured\n");
}
157 158 159
int main(int argc, char **argv)
{
  char c;
160
  int i,aa,start_symbol;
161
  double sigma2, sigma2_dB=10,SNR,snr0=-2.0,snr1=2.0;
Francesco Mani's avatar
Francesco Mani committed
162
  double cfo=0;
163
  uint8_t snr1set=0;
164 165
  int **txdata;
  double **s_re,**s_im,**r_re,**r_im;
166
  //double iqim = 0.0;
Francesco Mani's avatar
Francesco Mani committed
167
  double ip =0.0;
168
  //unsigned char pbch_pdu[6];
169 170 171
  //  int sync_pos, sync_pos_slot;
  //  FILE *rx_frame_file;
  FILE *output_fd = NULL;
172
  //uint8_t write_output_file=0;
173
  //int result;
yilmazt's avatar
yilmazt committed
174
  //int freq_offset;
175 176
  //  int subframe_offset;
  //  char fname[40], vname[40];
yilmazt's avatar
yilmazt committed
177
  int trial,n_trials=1,n_errors=0,n_errors_payload=0;
178 179
  uint8_t transmission_mode = 1,n_tx=1,n_rx=1;
  uint16_t Nid_cell=0;
180
  uint64_t SSB_positions=0x01;
181
  int ssb_subcarrier_offset = 0;
182 183

  channel_desc_t *gNB2UE;
francescomani's avatar
francescomani committed
184
  get_softmodem_params()->sa = 1;
yilmazt's avatar
yilmazt committed
185

186 187
  //uint8_t extended_prefix_flag=0;
  //int8_t interf1=-21,interf2=-21;
188 189

  FILE *input_fd=NULL,*pbch_file_fd=NULL;
190

yilmazt's avatar
yilmazt committed
191 192 193 194 195
  //uint32_t nsymb,tx_lev,tx_lev1 = 0,tx_lev2 = 0;
  //char input_val_str[50],input_val_str2[50];
  //uint8_t frame_mod4,num_pdcch_symbols = 0;
  //double pbch_sinr;
  //int pbch_tx_ant;
196 197 198

  SCM_t channel_model=AWGN;//Rayleigh1_anticorr;

yilmazt's avatar
yilmazt committed
199

200
  int N_RB_DL=273,mu=1;
201

202
  //unsigned char frame_type = 0;
203 204
  unsigned char pbch_phase = 0;

205
  int frame=0;
206
  int frame_length_complex_samples;
207
  __attribute__((unused))
208 209
  int frame_length_complex_samples_no_prefix;
  NR_DL_FRAME_PARMS *frame_parms;
210

Guy De Souza's avatar
Guy De Souza committed
211
  int ret, payload_ret=0;
212 213
  int run_initial_sync=0;

214 215
  int loglvl=OAILOG_WARNING;

216 217
  float target_error_rate = 0.01;

218 219
  int seed = 0;

220 221
  cpuf = get_cpu_freq_GHz();

222
  if ( load_configmodule(argc,argv,CONFIG_ENABLECMDLINEONLY) == 0) {
yilmazt's avatar
yilmazt committed
223
    exit_fun("[NR_PBCHSIM] Error, configuration module init failed\n");
224 225
  }

226
  while ((c = getopt (argc, argv, "F:g:hIL:m:M:n:N:o:O:P:r:R:s:S:x:y:z:")) != -1) {
227
    switch (c) {
228
    /*case 'f':
229 230 231 232 233 234 235 236
      write_output_file=1;
      output_fd = fopen(optarg,"w");

      if (output_fd==NULL) {
        printf("Error opening %s\n",optarg);
        exit(-1);
      }

237
      break;*/
238

239
    /*case 'd':
240
      frame_type = 1;
241
      break;*/
242

243 244 245 246 247 248 249 250
    case 'F':
      input_fd = fopen(optarg,"r");
      if (input_fd==NULL) {
        printf("Problem with filename %s. Exiting.\n", optarg);
        exit(-1);
      }
      break;

251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
    case 'g':
      switch((char)*optarg) {
      case 'A':
        channel_model=SCM_A;
        break;

      case 'B':
        channel_model=SCM_B;
        break;

      case 'C':
        channel_model=SCM_C;
        break;

      case 'D':
        channel_model=SCM_D;
        break;

      case 'E':
        channel_model=EPA;
        break;

      case 'F':
        channel_model=EVA;
        break;

      case 'G':
        channel_model=ETU;
        break;

      default:
282
        printf("Unsupported channel model! Exiting.\n");
283 284 285 286 287
        exit(-1);
      }

      break;

288 289
    /*
    case 'i':
290 291
      interf1=atoi(optarg);
      break;
292
    */
293

294 295 296 297 298 299
    case 'I':
      run_initial_sync=1;
      target_error_rate=0.1;
      break;

    /*
300 301
    case 'j':
      interf2=atoi(optarg);
302
      break;*/
303

304 305 306 307 308 309 310 311 312 313 314 315
    case 'L':
      loglvl = atoi(optarg);
      break;

    case 'm':
      mu = atoi(optarg);
      break;

    case 'M':
      SSB_positions = atoi(optarg);
      break;

316
    case 'n':
317
      n_trials = atoi(optarg);
318 319
      break;

320 321 322 323
    case 'N':
      Nid_cell = atoi(optarg);
      break;

324 325 326 327
    case 'O':
      ssb_subcarrier_offset = atoi(optarg);
      break;

Francesco Mani's avatar
Francesco Mani committed
328 329
    case 'o':
      cfo = atof(optarg);
330 331 332
#ifdef DEBUG_NR_PBCHSIM
      printf("Setting CFO to %f Hz\n",cfo);
#endif
Francesco Mani's avatar
Francesco Mani committed
333 334
      break;

335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
    /*case 'p':
      extended_prefix_flag=1;
      break;*/

    case 'P':
      pbch_phase = atoi(optarg);
      if (pbch_phase>3)
        printf("Illegal PBCH phase (0-3) got %d\n",pbch_phase);
      break;

    /*
    case 'r':
      ricean_factor = pow(10,-.1*atof(optarg));
      if (ricean_factor>1) {
        printf("Ricean factor must be between 0 and 1\n");
        exit(-1);
      }
      break;
    */

355 356 357 358
    case 'r':
      seed = atoi(optarg);
      break;

359 360 361 362
    case 'R':
      N_RB_DL = atoi(optarg);
      break;

363 364
    case 's':
      snr0 = atof(optarg);
365 366 367
#ifdef DEBUG_NR_PBCHSIM
      printf("Setting SNR0 to %f\n",snr0);
#endif
368 369 370 371 372
      break;

    case 'S':
      snr1 = atof(optarg);
      snr1set=1;
373 374 375
#ifdef DEBUG_NR_PBCHSIM
      printf("Setting SNR1 to %f\n",snr1);
#endif
376 377 378 379 380 381 382 383 384 385 386
      break;

      /*
      case 't':
      Td= atof(optarg);
      break;
      */

    case 'x':
      transmission_mode=atoi(optarg);

387 388
      if ((transmission_mode!=1) && (transmission_mode!=2) && (transmission_mode!=6)) {
        printf("Unsupported transmission mode %d. Exiting.\n",transmission_mode);
389 390 391 392 393 394 395 396
        exit(-1);
      }

      break;

    case 'y':
      n_tx=atoi(optarg);
      if ((n_tx==0) || (n_tx>2)) {
397
        printf("Unsupported number of TX antennas %d. Exiting.\n", n_tx);
398 399 400 401 402 403 404
        exit(-1);
      }
      break;

    case 'z':
      n_rx=atoi(optarg);
      if ((n_rx==0) || (n_rx>2)) {
405
        printf("Unsupported number of RX antennas %d. Exiting.\n", n_rx);
406 407
        exit(-1);
      }
Sakthivel Velumani's avatar
Sakthivel Velumani committed
408 409
      break;

410 411
    default:
    case 'h':
412
      printf("%s -F input_filename -g channel_mod -h(elp) -I(nitial sync) -L log_lvl -n n_frames -M SSBs -n frames -N cell_id -o FO -P phase -r seed -R RBs -s snr0 -S snr1 -x transmission_mode -y TXant -z RXant\n",
413
             argv[0]);
414 415
      //printf("-A Interpolation_filname Run with Abstraction to generate Scatter plot using interpolation polynomial in file\n");
      //printf("-C Generate Calibration information for Abstraction (effective SNR adjustment to remove Pe bias w.r.t. AWGN)\n");
416
      //printf("-d Use TDD\n");
417 418
      //printf("-f Output filename (.txt format) for Pe/SNR results\n");
      printf("-F Input filename (.txt format) for RX conformance testing\n");
419
      printf("-g [A,B,C,D,E,F,G] Use 3GPP SCM (A,B,C,D) or 36-101 (E-EPA,F-EVA,G-ETU) models (ignores delay spread and Ricean factor)\n");
420
      printf("-h This message\n");
421
      //printf("-i Relative strength of first intefering eNB (in dB) - cell_id mod 3 = 1\n");
422
      printf("-I run initial sync with target error rate 0.1\n");
423
      //printf("-j Relative strength of second intefering eNB (in dB) - cell_id mod 3 = 2\n");
424 425
      printf("-L set the log level (-1 disable, 0 error, 1 warning, 2 info, 3 debug, 4 trace)\n");
      printf("-m Numerology index\n");
426
      printf("-M Multiple SSB positions in burst\n");
427
      printf("-n Number of frames to simulate\n");
428
      printf("-N Nid_cell\n");
429
      printf("-o Carrier frequency offset in Hz\n");
430
      printf("-O SSB subcarrier offset\n");
431 432 433
      //printf("-O oversampling factor (1,2,4,8,16)\n");
      //printf("-p Use extended prefix mode\n");
      printf("-P PBCH phase, allowed values 0-3\n");
434
      printf("-r set the random number generator seed (default: 0 = current time)\n");
435
      printf("-R N_RB_DL\n");
436 437 438 439 440 441
      printf("-s Starting SNR, runs from SNR0 to SNR0 + 10 dB if not -S given. If -n 1, then just SNR is simulated\n");
      printf("-S Ending SNR, runs from SNR0 to SNR1\n");
      //printf("-t Delay spread for multipath channel\n");
      printf("-x Transmission mode (1,2,6 for the moment)\n");
      printf("-y Number of TX antennas used in eNB\n");
      printf("-z Number of RX antennas used in UE\n");
442 443 444 445 446
      exit (-1);
      break;
    }
  }

447 448
  randominit(seed);

449 450 451 452
  logInit();
  set_glog(loglvl);
  T_stdout = 1;

453 454 455
  if (snr1set==0)
    snr1 = snr0+10;

Raymond Knopp's avatar
Raymond Knopp committed
456
  printf("Initializing gNodeB for mu %d, N_RB_DL %d\n",mu,N_RB_DL);
457

Laurent Thomas's avatar
Laurent Thomas committed
458

459
  RC.gNB = (PHY_VARS_gNB**) malloc(sizeof(PHY_VARS_gNB *));
460
  RC.gNB[0] = malloc16_clear(sizeof(*(RC.gNB[0])));
461
  gNB = RC.gNB[0];
462
  gNB->ofdm_offset_divisor = UINT_MAX;
463
  frame_parms = &gNB->frame_parms; //to be initialized I suppose (maybe not necessary for PBCH)
464 465
  frame_parms->nb_antennas_tx = n_tx;
  frame_parms->nb_antennas_rx = n_rx;
466
  frame_parms->nb_antenna_ports_gNB = n_tx;
467
  frame_parms->N_RB_DL = N_RB_DL;
468
  frame_parms->Nid_cell = Nid_cell;
Francesco Mani's avatar
Francesco Mani committed
469 470
  frame_parms->nushift = Nid_cell%4;
  frame_parms->ssb_type = nr_ssb_type_C;
francescomani's avatar
francescomani committed
471
  frame_parms->freq_range = mu<2 ? nr_FR1 : nr_FR2;
472

Sakthivel Velumani's avatar
Sakthivel Velumani committed
473
  nr_phy_config_request_sim_pbchsim(gNB,N_RB_DL,N_RB_DL,mu,Nid_cell,SSB_positions);
474
  phy_init_nr_gNB(gNB,0,1);
475
  frame_parms->ssb_start_subcarrier = 12 * gNB->gNB_config.ssb_table.ssb_offset_point_a.value + ssb_subcarrier_offset;
476

477 478
  uint8_t n_hf = 0;
  int cyclic_prefix_type = NFAPI_CP_NORMAL;
479

laurent's avatar
laurent committed
480
  double fs=0, eps;
Francesco Mani's avatar
Francesco Mani committed
481 482
  double scs = 30000;
  double bw = 100e6;
483 484 485
  
  switch (mu) {
    case 1:
486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505
      scs = 30000;
      frame_parms->Lmax = 8;
      if (N_RB_DL == 217) {
        fs = 122.88e6;
        bw = 80e6;
      }
      else if (N_RB_DL == 245) {
        fs = 122.88e6;
        bw = 90e6;
      }
      else if (N_RB_DL == 273) {
        fs = 122.88e6;
        bw = 100e6;
      }
      else if (N_RB_DL == 106) {
        fs = 61.44e6;
        bw = 40e6;
      }
      else AssertFatal(1==0,"Unsupported numerology for mu %d, N_RB %d\n",mu, N_RB_DL);
      break;
Sakthivel Velumani's avatar
Sakthivel Velumani committed
506
    case 3:
507
      frame_parms->Lmax = 64;
Sakthivel Velumani's avatar
Sakthivel Velumani committed
508 509 510 511 512 513 514 515
      scs = 120000;
      if (N_RB_DL == 66) {
        fs = 122.88e6;
        bw = 100e6;
      }
      else AssertFatal(1==0,"Unsupported numerology for mu %d, N_RB %d\n",mu, N_RB_DL);
      break;
  }
516

Francesco Mani's avatar
Francesco Mani committed
517 518 519
  // cfo with respect to sub-carrier spacing
  eps = cfo/scs;

520 521
  // computation of integer and fractional FO to compare with estimation results
  int IFO;
Francesco Mani's avatar
Francesco Mani committed
522 523 524 525 526 527 528 529 530
  if(eps!=0.0){
	printf("Introducing a CFO of %lf relative to SCS of %d kHz\n",eps,(int)(scs/1000));
	if (eps>0)	
  	  IFO=(int)(eps+0.5);
	else
	  IFO=(int)(eps-0.5);
	printf("FFO = %lf; IFO = %d\n",eps-IFO,IFO);
  }

Raymond Knopp's avatar
Raymond Knopp committed
531 532 533
  gNB2UE = new_channel_desc_scm(n_tx,
                                n_rx,
                                channel_model,
534
                                fs,
535
                                0,
536 537
                                bw,
                                300e-9,
538
                                0.0,
539
                                CORR_LEVEL_LOW,
Raymond Knopp's avatar
Raymond Knopp committed
540 541
                                0,
                                0,
542 543
                                0,
                                0);
Raymond Knopp's avatar
Raymond Knopp committed
544 545

  if (gNB2UE==NULL) {
546
	printf("Problem generating channel model. Exiting.\n");
Raymond Knopp's avatar
Raymond Knopp committed
547 548 549
    exit(-1);
  }

550
  frame_length_complex_samples = frame_parms->samples_per_subframe*NR_NUMBER_OF_SUBFRAMES_PER_FRAME;
551 552
  frame_length_complex_samples_no_prefix = frame_parms->samples_per_subframe_wCP;

553 554 555 556
  s_re = malloc(2*sizeof(double*));
  s_im = malloc(2*sizeof(double*));
  r_re = malloc(2*sizeof(double*));
  r_im = malloc(2*sizeof(double*));
557
  txdata = calloc(2,sizeof(int*));
558

559 560 561
  for (i=0; i<2; i++) {


562 563 564 565
    s_re[i] = malloc16_clear(frame_length_complex_samples*sizeof(double));
    s_im[i] = malloc16_clear(frame_length_complex_samples*sizeof(double));
    r_re[i] = malloc16_clear(frame_length_complex_samples*sizeof(double));
    r_im[i] = malloc16_clear(frame_length_complex_samples*sizeof(double));
Raymond Knopp's avatar
Raymond Knopp committed
566
    printf("Allocating %d samples for txdata\n",frame_length_complex_samples);
567
    txdata[i] = malloc16_clear(frame_length_complex_samples*sizeof(int));
568
  }
569 570 571 572 573

  if (pbch_file_fd!=NULL) {
    load_pbch_desc(pbch_file_fd);
  }

574 575

  //configure UE
Laurent Thomas's avatar
Laurent Thomas committed
576

577 578
  UE = malloc16_clear(sizeof(*UE));
  memcpy(&UE->frame_parms,frame_parms,sizeof(UE->frame_parms));
579
  //phy_init_nr_top(UE); //called from init_nr_ue_signal
580 581 582
  if (run_initial_sync==1)  UE->is_synchronized = 0;
  else                      UE->is_synchronized = 1;
                      
583 584 585
  if(eps!=0.0)
	UE->UE_fo_compensation = 1; // if a frequency offset is set then perform fo estimation and compensation

586
  if (init_nr_ue_signal(UE, 1) != 0) {
587 588 589 590
    printf("Error at UE NR initialisation\n");
    exit(-1);
  }

591
  nr_gold_pbch(UE);
592

Sakthivel Velumani's avatar
Sakthivel Velumani committed
593
  processingData_L1tx_t msgDataTx;
594
  // generate signal
595
  if (input_fd==NULL) {
596

597 598 599
    for (i=0; i<frame_parms->Lmax; i++) {
      if((SSB_positions >> i) & 0x01) {

francescomani's avatar
francescomani committed
600 601
        const int sc_offset = frame_parms->freq_range == nr_FR1 ? ssb_subcarrier_offset<<mu : ssb_subcarrier_offset;
        const int prb_offset = frame_parms->freq_range == nr_FR1 ? gNB->gNB_config.ssb_table.ssb_offset_point_a.value<<mu : gNB->gNB_config.ssb_table.ssb_offset_point_a.value << (mu - 2);
Sakthivel Velumani's avatar
Sakthivel Velumani committed
602 603
        msgDataTx.ssb[i].ssb_pdu.ssb_pdu_rel15.bchPayload = 0x55dd33;
        msgDataTx.ssb[i].ssb_pdu.ssb_pdu_rel15.SsbBlockIndex = i;
francescomani's avatar
francescomani committed
604 605
        msgDataTx.ssb[i].ssb_pdu.ssb_pdu_rel15.SsbSubcarrierOffset = sc_offset;
        msgDataTx.ssb[i].ssb_pdu.ssb_pdu_rel15.ssbOffsetPointA = prb_offset;
606 607 608 609 610 611 612

        start_symbol = nr_get_ssb_start_symbol(frame_parms,i);
        int slot = start_symbol/14;

        for (aa=0; aa<gNB->frame_parms.nb_antennas_tx; aa++)
          memset(gNB->common_vars.txdataF[aa],0,frame_parms->samples_per_slot_wCP*sizeof(int32_t));

Sakthivel Velumani's avatar
Sakthivel Velumani committed
613
        nr_common_signal_procedures (gNB,frame,slot,msgDataTx.ssb[i].ssb_pdu);
614 615 616

        for (aa=0; aa<gNB->frame_parms.nb_antennas_tx; aa++) {
          if (cyclic_prefix_type == 1) {
617 618 619 620
            apply_nr_rotation(frame_parms,
                              (int16_t*)gNB->common_vars.txdataF[aa],
                              slot,
                              0,
621
                              12);
622

623 624 625 626 627 628 629
            PHY_ofdm_mod(gNB->common_vars.txdataF[aa],
            &txdata[aa][frame_parms->get_samples_slot_timestamp(slot,frame_parms,0)],
            frame_parms->ofdm_symbol_size,
            12,
            frame_parms->nb_prefix_samples,
            CYCLIC_PREFIX);
          } else {
630 631 632 633
            apply_nr_rotation(frame_parms,
                              (int16_t*)gNB->common_vars.txdataF[aa],
                              slot,
                              0,
634
                              14);
635

636 637 638 639
            /*nr_normal_prefix_mod(gNB->common_vars.txdataF[aa],
              &txdata[aa][frame_parms->get_samples_slot_timestamp(slot,frame_parms,0)],
              14,
              frame_parms);*/
640

641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656
            PHY_ofdm_mod(gNB->common_vars.txdataF[aa],
                         (int*)&txdata[aa][frame_parms->get_samples_slot_timestamp(slot,frame_parms,0)],
                         frame_parms->ofdm_symbol_size,
                         1,
                         frame_parms->nb_prefix_samples0,
                         CYCLIC_PREFIX);

            PHY_ofdm_mod(&gNB->common_vars.txdataF[aa][frame_parms->ofdm_symbol_size],
                         (int*)&txdata[aa][frame_parms->get_samples_slot_timestamp(slot,frame_parms,0)+frame_parms->nb_prefix_samples0+frame_parms->ofdm_symbol_size],
                         frame_parms->ofdm_symbol_size,
                         13,
                         frame_parms->nb_prefix_samples,
                         CYCLIC_PREFIX);
          }
        }
      }
657
    }
658 659 660 661
    LOG_M("txsigF0.m","txsF0", gNB->common_vars.txdataF[0],frame_length_complex_samples_no_prefix,1,1);
    if (gNB->frame_parms.nb_antennas_tx>1)
      LOG_M("txsigF1.m","txsF1", gNB->common_vars.txdataF[1],frame_length_complex_samples_no_prefix,1,1);

662 663
  } else {
    printf("Reading %d samples from file to antenna buffer %d\n",frame_length_complex_samples,0);
Francesco Mani's avatar
Francesco Mani committed
664
    UE->UE_fo_compensation = 1; // perform fo compensation when samples from file are used
665
    if (fread(txdata[0],
666 667 668
        sizeof(int32_t),
        frame_length_complex_samples,
        input_fd) != frame_length_complex_samples) {
669
      printf("error reading from file\n");
670
      //exit(-1);
671 672
    }
  }
673

674 675 676
  LOG_M("txsig0.m","txs0", txdata[0],frame_length_complex_samples,1,1);
  if (gNB->frame_parms.nb_antennas_tx>1)
    LOG_M("txsig1.m","txs1", txdata[1],frame_length_complex_samples,1,1);
677

678 679 680
  if (output_fd) 
    fwrite(txdata[0],sizeof(int32_t),frame_length_complex_samples,output_fd);

681 682 683
  /*int txlev = signal_energy(&txdata[0][5*frame_parms->ofdm_symbol_size + 4*frame_parms->nb_prefix_samples + frame_parms->nb_prefix_samples0],
		  	  	  	  	    frame_parms->ofdm_symbol_size + frame_parms->nb_prefix_samples);
  printf("txlev %d (%f)\n",txlev,10*log10(txlev));*/
684 685 686 687 688

  
  for (SNR=snr0; SNR<snr1; SNR+=.2) {

    n_errors = 0;
689
    n_errors_payload = 0;
690 691

    for (trial=0; trial<n_trials; trial++) {
692 693 694 695 696 697 698 699

      for (i=0; i<frame_length_complex_samples; i++) {
        for (aa=0; aa<frame_parms->nb_antennas_tx; aa++) {
          r_re[aa][i] = ((double)(((short *)txdata[aa]))[(i<<1)]);
          r_im[aa][i] = ((double)(((short *)txdata[aa]))[(i<<1)+1]);
        }
      }

700 701
      // multipath channel
      //multipath_channel(gNB2UE,s_re,s_im,r_re,r_im,frame_length_complex_samples,0);
702 703
      
      //AWGN
704
      sigma2_dB = 20*log10((double)AMP/4)-SNR;
705
      sigma2 = pow(10,sigma2_dB/10);
706
      //printf("sigma2 %f (%f dB), tx_lev %f (%f dB)\n",sigma2,sigma2_dB,txlev,10*log10((double)txlev));
Raymond Knopp's avatar
Raymond Knopp committed
707

Francesco Mani's avatar
Francesco Mani committed
708 709 710 711 712 713 714 715
      if(eps!=0.0)
        rf_rx(r_re,  // real part of txdata
           r_im,  // imag part of txdata
           NULL,  // interference real part
           NULL, // interference imag part
           0,  // interference power
           frame_parms->nb_antennas_rx,  // number of rx antennas
           frame_length_complex_samples,  // number of samples in frame
716
           1.0e9/fs,   //sampling time (ns)
Francesco Mani's avatar
Francesco Mani committed
717 718 719 720 721 722 723 724 725 726 727
           cfo,	// frequency offset in Hz
           0.0, // drift (not implemented)
           0.0, // noise figure (not implemented)
           0.0, // rx gain in dB ?
           200, // 3rd order non-linearity in dB ?
           &ip, // initial phase
           30.0e3,  // phase noise cutoff in kHz
           -500.0, // phase noise amplitude in dBc
           0.0,  // IQ imbalance (dB),
	   0.0); // IQ phase imbalance (rad)

728
      for (i=0; i<frame_length_complex_samples; i++) {
729 730 731 732
        for (aa=0; aa<frame_parms->nb_antennas_rx; aa++) {
          ((short*) UE->common_vars.rxdata[aa])[2*i]   = (short) ((r_re[aa][i] + sqrt(sigma2/2)*gaussdouble(0.0,1.0)));
          ((short*) UE->common_vars.rxdata[aa])[2*i+1] = (short) ((r_im[aa][i] + sqrt(sigma2/2)*gaussdouble(0.0,1.0)));
        }
733
      }
734 735

      if (n_trials==1) {
736
	LOG_M("rxsig0.m","rxs0", UE->common_vars.rxdata[0],frame_parms->samples_per_frame,1,1);
737
	if (gNB->frame_parms.nb_antennas_tx>1)
738
	  LOG_M("rxsig1.m","rxs1", UE->common_vars.rxdata[1],frame_parms->samples_per_frame,1,1);
739
      }
740
      if (UE->is_synchronized == 0) {
laurent's avatar
fixes  
laurent committed
741
	UE_nr_rxtx_proc_t proc={0};
742
	ret = nr_initial_sync(&proc, UE, 1, 0);
743 744 745 746
	printf("nr_initial_sync1 returns %d\n",ret);
	if (ret<0) n_errors++;
      }
      else {
747
        UE_nr_rxtx_proc_t proc={0};
748
        nr_phy_data_t phy_data={0};
749

750
	UE->rx_offset=0;
751
	uint8_t ssb_index = 0;
752
	const int estimateSz=7*2*sizeof(int)*frame_parms->ofdm_symbol_size;
753 754
	__attribute__ ((aligned(32))) struct complex16 dl_ch_estimates[frame_parms->nb_antennas_rx][estimateSz];
	__attribute__ ((aligned(32))) struct complex16 dl_ch_estimates_time[frame_parms->nb_antennas_rx][estimateSz];
755
        while (!((SSB_positions >> ssb_index) & 0x01)) ssb_index++;  // to select the first transmitted ssb
756
	UE->symbol_offset = nr_get_ssb_start_symbol(frame_parms,ssb_index);
757

758
        int ssb_slot = (UE->symbol_offset/14)+(n_hf*(frame_parms->slots_per_frame>>1));
759
	for (int i=UE->symbol_offset+1; i<UE->symbol_offset+4; i++) {
760 761 762
          nr_slot_fep(UE,
                      &proc,
                      i%frame_parms->symbols_per_slot,
763
                      ssb_slot);
764

765 766
          nr_pbch_channel_estimation(UE,estimateSz, dl_ch_estimates, dl_ch_estimates_time, &proc, 
				     0,ssb_slot,i%frame_parms->symbols_per_slot,i-(UE->symbol_offset+1),ssb_index%8,n_hf);
767

768
        }
769
	fapiPbch_t result;
770
        ret = nr_rx_pbch(UE,
771
                         &proc,
772 773
			 estimateSz, dl_ch_estimates,
			 UE->pbch_vars[0],
774 775 776
                         frame_parms,
                         0,
                         ssb_index%8,
777
                         SISO,
778
                         &phy_data,
779
                         &result);
Florian Kaltenberger's avatar
WIP  
Florian Kaltenberger committed
780

781 782 783
	if (ret==0) {
	  //UE->rx_ind.rx_indication_body->mib_pdu.ssb_index;  //not yet detected automatically
	  //UE->rx_ind.rx_indication_body->mib_pdu.ssb_length; //Lmax, not yet detected automatically
784 785 786
	  uint8_t gNB_xtra_byte=0;
	  for (int i=0; i<8; i++)
	    gNB_xtra_byte |= ((gNB->pbch.pbch_a>>(31-i))&1)<<(7-i);
Francesco Mani's avatar
Francesco Mani committed
787
 
788
	  payload_ret = (result.xtra_byte == gNB_xtra_byte);
Guy De Souza's avatar
Guy De Souza committed
789
	  for (i=0;i<3;i++){
790
	    payload_ret += (result.decoded_output[i] == ((msgDataTx.ssb[ssb_index].ssb_pdu.ssb_pdu_rel15.bchPayload>>(8*i)) & 0xff));
791
	  } 
792
	  //printf("xtra byte gNB: 0x%02x UE: 0x%02x\n",gNB_xtra_byte, UE->pbch_vars[0]->xtra_byte);
793
	  //printf("ret %d\n", payload_ret);
794 795
	  if (payload_ret!=4) 
	    n_errors_payload++;
796 797
	}

798
	if (ret!=0) n_errors++;
799
      }
800
    } //noise trials
801
    printf("SNR %f: trials %d, n_errors_crc = %d, n_errors_payload %d\n", SNR,n_trials,n_errors,n_errors_payload);
802

803
    if (((float)n_errors/(float)n_trials <= target_error_rate) && (n_errors_payload==0)) {
804 805 806 807
      printf("PBCH test OK\n");
      break;
    }
      
808 809 810
    if (n_trials==1)
      break;

811 812
  } // NSR

813 814 815 816 817 818 819 820 821
  free_channel_desc_scm(gNB2UE);

  phy_free_nr_gNB(gNB);
  free(RC.gNB[0]);
  free(RC.gNB);

  term_nr_ue_signal(UE, 1);
  free(UE);

822 823 824 825 826
  for (i=0; i<2; i++) {
    free(s_re[i]);
    free(s_im[i]);
    free(r_re[i]);
    free(r_im[i]);
827
    free(txdata[i]);
828 829 830 831 832 833
  }

  free(s_re);
  free(s_im);
  free(r_re);
  free(r_im);
834
  free(txdata);
835

836
  if (output_fd)
837 838
    fclose(output_fd);

839 840 841
  if (input_fd)
    fclose(input_fd);

842 843 844
  loader_reset();
  logTerm();

845 846 847
  return(n_errors);

}