nr_parms.c 7.4 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
#include "phy_init.h"
23
#include "log.h"
24

25 26
/// Subcarrier spacings in Hz indexed by numerology index
uint32_t nr_subcarrier_spacing[MAX_NUM_SUBCARRIER_SPACING] = {15e3, 30e3, 60e3, 120e3, 240e3};
27
uint16_t nr_slots_per_subframe[MAX_NUM_SUBCARRIER_SPACING] = {1, 2, 4, 16, 32};
28

Raymond Knopp's avatar
Raymond Knopp committed
29 30

int nr_init_frame_parms0(
Raymond Knopp's avatar
Raymond Knopp committed
31
			 NR_DL_FRAME_PARMS *fp,
Raymond Knopp's avatar
Raymond Knopp committed
32 33 34
			 int mu,
			 int Ncp)

35 36
{

Raymond Knopp's avatar
Raymond Knopp committed
37

38

hongzhi wang's avatar
hongzhi wang committed
39
#if DISABLE_LOG_X
Raymond Knopp's avatar
Raymond Knopp committed
40
  printf("Initializing frame parms for mu %d, N_RB %d, Ncp %d\n",mu, fp->N_RB_DL, Ncp);
hongzhi wang's avatar
hongzhi wang committed
41
#else
Raymond Knopp's avatar
Raymond Knopp committed
42
  LOG_I(PHY,"Initializing frame parms for mu %d, N_RB %d, Ncp %d\n",mu, fp->N_RB_DL, Ncp);
hongzhi wang's avatar
hongzhi wang committed
43 44
#endif

Guy De Souza's avatar
Guy De Souza committed
45
  if (Ncp == NFAPI_CP_EXTENDED)
hongzhi wang's avatar
hongzhi wang committed
46 47 48 49 50
    AssertFatal(mu == NR_MU_2,"Invalid cyclic prefix %d for numerology index %d\n", Ncp, mu);

  switch(mu) {

    case NR_MU_0: //15kHz scs
Raymond Knopp's avatar
Raymond Knopp committed
51 52
      fp->subcarrier_spacing = nr_subcarrier_spacing[NR_MU_0];
      fp->slots_per_subframe = nr_slots_per_subframe[NR_MU_0];
hongzhi wang's avatar
hongzhi wang committed
53 54 55
      break;

    case NR_MU_1: //30kHz scs
Raymond Knopp's avatar
Raymond Knopp committed
56 57
      fp->subcarrier_spacing = nr_subcarrier_spacing[NR_MU_1];
      fp->slots_per_subframe = nr_slots_per_subframe[NR_MU_1];
hongzhi wang's avatar
hongzhi wang committed
58

Raymond Knopp's avatar
Raymond Knopp committed
59
      switch(fp->N_RB_DL){
hongzhi wang's avatar
hongzhi wang committed
60 61 62 63 64 65 66 67
        case 11:
        case 24:
        case 38:
        case 78:
        case 51:
        case 65:

        case 106: //40 MHz
Raymond Knopp's avatar
Raymond Knopp committed
68 69 70 71 72
          if (fp->threequarter_fs) {
            fp->ofdm_symbol_size = 1536;
            fp->first_carrier_offset = 900; //1536 - 636
            fp->nb_prefix_samples0 = 132;
            fp->nb_prefix_samples = 108;
hongzhi wang's avatar
hongzhi wang committed
73 74
          }
          else {
Raymond Knopp's avatar
Raymond Knopp committed
75 76 77 78
            fp->ofdm_symbol_size = 2048;
            fp->first_carrier_offset = 1412; //2048 - 636
            fp->nb_prefix_samples0 = 176;
            fp->nb_prefix_samples = 144;
hongzhi wang's avatar
hongzhi wang committed
79 80 81 82 83 84 85 86
          }
          break;

        case 133:
        case 162:
        case 189:

        case 217: //80 MHz
Raymond Knopp's avatar
Raymond Knopp committed
87 88 89 90 91
          if (fp->threequarter_fs) {
            fp->ofdm_symbol_size = 3072;
            fp->first_carrier_offset = 1770; //3072 - 1302
            fp->nb_prefix_samples0 = 264;
            fp->nb_prefix_samples = 216;
hongzhi wang's avatar
hongzhi wang committed
92
          }
Raymond Knopp's avatar
Raymond Knopp committed
93
	  else {
Raymond Knopp's avatar
Raymond Knopp committed
94 95 96 97
	    fp->ofdm_symbol_size = 4096;
	    fp->first_carrier_offset = 2794; //4096 - 1302
	    fp->nb_prefix_samples0 = 352;
	    fp->nb_prefix_samples = 288;
Raymond Knopp's avatar
Raymond Knopp committed
98
	  }
hongzhi wang's avatar
hongzhi wang committed
99 100 101
          break;

        case 245:
Raymond Knopp's avatar
Raymond Knopp committed
102 103 104 105 106
	  AssertFatal(fp->threequarter_fs==0,"3/4 sampling impossible for N_RB %d and MU %d\n",fp->N_RB_DL,mu); 
	  fp->ofdm_symbol_size = 4096;
	  fp->first_carrier_offset = 2626; //4096 - 1478
	  fp->nb_prefix_samples0 = 352;
	  fp->nb_prefix_samples = 288;
Raymond Knopp's avatar
Raymond Knopp committed
107
	  break;
hongzhi wang's avatar
hongzhi wang committed
108
        case 273:
Raymond Knopp's avatar
Raymond Knopp committed
109 110 111 112 113
	  AssertFatal(fp->threequarter_fs==0,"3/4 sampling impossible for N_RB %d and MU %d\n",fp->N_RB_DL,mu); 
	  fp->ofdm_symbol_size = 4096;
	  fp->first_carrier_offset = 2458; //4096 - 1638
	  fp->nb_prefix_samples0 = 352;
	  fp->nb_prefix_samples = 288;
Raymond Knopp's avatar
Raymond Knopp committed
114
	  break;
hongzhi wang's avatar
hongzhi wang committed
115
      default:
Raymond Knopp's avatar
Raymond Knopp committed
116
        AssertFatal(1==0,"Number of resource blocks %d undefined for mu %d, frame parms = %p\n", fp->N_RB_DL, mu, fp);
hongzhi wang's avatar
hongzhi wang committed
117 118 119 120
      }
      break;

    case NR_MU_2: //60kHz scs
Raymond Knopp's avatar
Raymond Knopp committed
121 122
      fp->subcarrier_spacing = nr_subcarrier_spacing[NR_MU_2];
      fp->slots_per_subframe = nr_slots_per_subframe[NR_MU_2];
hongzhi wang's avatar
hongzhi wang committed
123

Raymond Knopp's avatar
Raymond Knopp committed
124
      switch(fp->N_RB_DL){ //FR1 bands only
hongzhi wang's avatar
hongzhi wang committed
125 126 127 128 129 130 131 132 133 134 135 136 137
        case 11:
        case 18:
        case 38:
        case 24:
        case 31:
        case 51:
        case 65:
        case 79:
        case 93:
        case 107:
        case 121:
        case 135:
      default:
Raymond Knopp's avatar
Raymond Knopp committed
138
        AssertFatal(1==0,"Number of resource blocks %d undefined for mu %d, frame parms = %p\n", fp->N_RB_DL, mu, fp);
hongzhi wang's avatar
hongzhi wang committed
139 140 141 142
      }
      break;

    case NR_MU_3:
Raymond Knopp's avatar
Raymond Knopp committed
143 144
      fp->subcarrier_spacing = nr_subcarrier_spacing[NR_MU_3];
      fp->slots_per_subframe = nr_slots_per_subframe[NR_MU_3];
hongzhi wang's avatar
hongzhi wang committed
145 146 147
      break;

    case NR_MU_4:
Raymond Knopp's avatar
Raymond Knopp committed
148 149
      fp->subcarrier_spacing = nr_subcarrier_spacing[NR_MU_4];
      fp->slots_per_subframe = nr_slots_per_subframe[NR_MU_4];
hongzhi wang's avatar
hongzhi wang committed
150 151 152 153 154 155
      break;

  default:
    AssertFatal(1==0,"Invalid numerology index %d", mu);
  }

Raymond Knopp's avatar
Raymond Knopp committed
156 157 158 159 160 161 162 163
  fp->slots_per_frame = 10* fp->slots_per_subframe;
  fp->symbols_per_slot = ((Ncp == NORMAL)? 14 : 12); // to redefine for different slot formats
  fp->samples_per_subframe_wCP = fp->ofdm_symbol_size * fp->symbols_per_slot * fp->slots_per_subframe;
  fp->samples_per_frame_wCP = 10 * fp->samples_per_subframe_wCP;
  fp->samples_per_subframe = (fp->samples_per_subframe_wCP + (fp->nb_prefix_samples0 * fp->slots_per_subframe) +
                                      (fp->nb_prefix_samples * fp->slots_per_subframe * (fp->symbols_per_slot - 1)));
  fp->samples_per_frame = 10 * fp->samples_per_subframe;
  fp->freq_range = (fp->dl_CarrierFreq < 6e9)? nr_FR1 : nr_FR2;
hongzhi wang's avatar
hongzhi wang committed
164

Guy De Souza's avatar
Guy De Souza committed
165
  // Initial bandwidth part configuration -- full carrier bandwidth
Raymond Knopp's avatar
Raymond Knopp committed
166 167 168 169 170 171
  fp->initial_bwp_dl.bwp_id = 0;
  fp->initial_bwp_dl.scs = fp->subcarrier_spacing;
  fp->initial_bwp_dl.location = 0;
  fp->initial_bwp_dl.N_RB = fp->N_RB_DL;
  fp->initial_bwp_dl.cyclic_prefix = Ncp;
  fp->initial_bwp_dl.ofdm_symbol_size = fp->ofdm_symbol_size;
Guy De Souza's avatar
Guy De Souza committed
172

hongzhi wang's avatar
hongzhi wang committed
173 174 175
  return 0;
}

Raymond Knopp's avatar
Raymond Knopp committed
176
int nr_init_frame_parms(nfapi_nr_config_request_t* config,
yilmazt's avatar
yilmazt committed
177 178
                        NR_DL_FRAME_PARMS *fp)
{
179

Raymond Knopp's avatar
Raymond Knopp committed
180 181 182
  nr_init_frame_parms0(fp,
		       config->subframe_config.numerology_index_mu.value,
		       config->subframe_config.dl_cyclic_prefix_type.value);
yilmazt's avatar
yilmazt committed
183
  return 0;
Raymond Knopp's avatar
Raymond Knopp committed
184
}
hongzhi wang's avatar
hongzhi wang committed
185

Raymond Knopp's avatar
Raymond Knopp committed
186
int nr_init_frame_parms_ue(NR_DL_FRAME_PARMS *fp,
Raymond Knopp's avatar
Raymond Knopp committed
187
			   int mu, 
Raymond Knopp's avatar
Raymond Knopp committed
188 189 190
			   int Ncp,
			   int n_ssb_crb,
			   int ssb_subcarrier_offset) 
Raymond Knopp's avatar
Raymond Knopp committed
191
{
hongzhi wang's avatar
hongzhi wang committed
192

Raymond Knopp's avatar
Raymond Knopp committed
193 194 195
  nr_init_frame_parms0(fp,mu,Ncp);
  int start_rb = n_ssb_crb / (1<<mu);
  fp->ssb_start_subcarrier = 12 * start_rb + ssb_subcarrier_offset;
196 197 198
  return 0;
}

Raymond Knopp's avatar
Raymond Knopp committed
199
void nr_dump_frame_parms(NR_DL_FRAME_PARMS *fp)
200
{
Raymond Knopp's avatar
Raymond Knopp committed
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
  LOG_I(PHY,"fp->scs=%d\n",fp->subcarrier_spacing);
  LOG_I(PHY,"fp->ofdm_symbol_size=%d\n",fp->ofdm_symbol_size);
  LOG_I(PHY,"fp->nb_prefix_samples0=%d\n",fp->nb_prefix_samples0);
  LOG_I(PHY,"fp->nb_prefix_samples=%d\n",fp->nb_prefix_samples);
  LOG_I(PHY,"fp->slots_per_subframe=%d\n",fp->slots_per_subframe);
  LOG_I(PHY,"fp->samples_per_subframe_wCP=%d\n",fp->samples_per_subframe_wCP);
  LOG_I(PHY,"fp->samples_per_frame_wCP=%d\n",fp->samples_per_frame_wCP);
  LOG_I(PHY,"fp->samples_per_subframe=%d\n",fp->samples_per_subframe);
  LOG_I(PHY,"fp->samples_per_frame=%d\n",fp->samples_per_frame);
  LOG_I(PHY,"fp->initial_bwp_dl.bwp_id=%d\n",fp->initial_bwp_dl.bwp_id);
  LOG_I(PHY,"fp->initial_bwp_dl.scs=%d\n",fp->initial_bwp_dl.scs);
  LOG_I(PHY,"fp->initial_bwp_dl.N_RB=%d\n",fp->initial_bwp_dl.N_RB);
  LOG_I(PHY,"fp->initial_bwp_dl.cyclic_prefix=%d\n",fp->initial_bwp_dl.cyclic_prefix);
  LOG_I(PHY,"fp->initial_bwp_dl.location=%d\n",fp->initial_bwp_dl.location);
  LOG_I(PHY,"fp->initial_bwp_dl.ofdm_symbol_size=%d\n",fp->initial_bwp_dl.ofdm_symbol_size);
216
}