NR_IF_Module.c 14.4 KB
Newer Older
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
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 28 29 30 31 32
/*
 * 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
 */

/*! \file openair2/NR_PHY_INTERFACE/NR_IF_Module.c
* \brief data structures for PHY/MAC interface modules
* \author EURECOM/NTUST
* \date 2018
* \version 0.1
* \company Eurecom, NTUST
* \email: raymond.knopp@eurecom.fr, kroempa@gmail.com
* \note
* \warning
*/

33 34
#include "openair1/PHY/defs_eNB.h"
#include "openair1/PHY/phy_extern.h"
35 36
#include "openair1/SCHED_NR/fapi_nr_l1.h"
#include "openair2/NR_PHY_INTERFACE/NR_IF_Module.h"
37
#include "LAYER2/NR_MAC_COMMON/nr_mac_extern.h"
38
#include "LAYER2/MAC/mac_proto.h"
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
#include "LAYER2/NR_MAC_gNB/mac_proto.h"
#include "common/ran_context.h"

#define MAX_IF_MODULES 100

NR_IF_Module_t *if_inst[MAX_IF_MODULES];
NR_Sched_Rsp_t Sched_INFO[MAX_IF_MODULES][MAX_NUM_CCs];

extern int oai_nfapi_harq_indication(nfapi_harq_indication_t *harq_ind);
extern int oai_nfapi_crc_indication(nfapi_crc_indication_t *crc_ind);
extern int oai_nfapi_cqi_indication(nfapi_cqi_indication_t *cqi_ind);
extern int oai_nfapi_sr_indication(nfapi_sr_indication_t *ind);
extern int oai_nfapi_rx_ind(nfapi_rx_indication_t *ind);
extern uint8_t nfapi_mode;
extern uint16_t sf_ahead;
54
extern uint16_t sl_ahead;
55

56
void handle_nr_rach(NR_UL_IND_t *UL_info) {
57 58 59 60 61 62 63 64 65 66
  if (UL_info->rach_ind.number_of_pdus>0) {
    AssertFatal(UL_info->rach_ind.number_of_pdus==1,"More than 1 RACH pdu not supported\n");
    UL_info->rach_ind.number_of_pdus=0;
    LOG_D(MAC,"UL_info[Frame %d, Slot %d] Calling initiate_ra_proc RACH:SFN/SLOT:%d/%d\n",UL_info->frame,UL_info->slot, UL_info->rach_ind.sfn,UL_info->rach_ind.slot);
    
    
    if (UL_info->rach_ind.pdu_list[0].num_preamble>0)
    AssertFatal(UL_info->rach_ind.pdu_list[0].num_preamble==1,
		"More than 1 preamble not supported\n");
    
67 68
    nr_initiate_ra_proc(UL_info->module_id,
                        UL_info->CC_id,
69 70 71
                        UL_info->rach_ind.sfn,
                        UL_info->rach_ind.slot,
                        UL_info->rach_ind.pdu_list[0].preamble_list[0].preamble_index,
72 73
                        UL_info->rach_ind.pdu_list[0].freq_index,
                        UL_info->rach_ind.pdu_list[0].symbol_index,
74 75
                        UL_info->rach_ind.pdu_list[0].preamble_list[0].timing_advance);
    
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
76 77 78 79 80 81 82 83 84 85
  }
}

void handle_nr_sr(NR_UL_IND_t *UL_info) {


  if (nfapi_mode == 1)  // PNF
  {
    if (UL_info->sr_ind.sr_indication_body.number_of_srs>0)
    {
Raymond Knopp's avatar
Raymond Knopp committed
86
      //      oai_nfapi_sr_indication(&UL_info->sr_ind);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
87 88 89 90
    }
  }
  else
  {
91

Raymond Knopp's avatar
Raymond Knopp committed
92 93
    /*
    for (int i=0;i<UL_info->sr_ind.sr_indication_body.number_of_srs;i++)
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
94 95 96
      SR_indication(UL_info->module_id,
          UL_info->CC_id,
          UL_info->frame,
97
          UL_info->slot,
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
98
          UL_info->sr_ind.sr_indication_body.sr_pdu_list[i].rx_ue_information.rnti,
Raymond Knopp's avatar
Raymond Knopp committed
99
          UL_info->sr_ind.sr_indication_body.sr_pdu_list[i].ul_cqi_information.ul_cqi);*/
100 101 102



WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
103 104 105 106 107 108
  }

  UL_info->sr_ind.sr_indication_body.number_of_srs=0;
}

void handle_nr_cqi(NR_UL_IND_t *UL_info) {
109

Raymond Knopp's avatar
Raymond Knopp committed
110 111
    /*
    for (int i=0;i<UL_info->cqi_ind.number_of_cqis;i++) 
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
112 113 114
      cqi_indication(UL_info->module_id,
          UL_info->CC_id,
          UL_info->frame,
115
          UL_info->slot,
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
116 117 118 119
          UL_info->cqi_ind.cqi_pdu_list[i].rx_ue_information.rnti,
          &UL_info->cqi_ind.cqi_pdu_list[i].cqi_indication_rel9,
          UL_info->cqi_ind.cqi_raw_pdu_list[i].pdu,
          &UL_info->cqi_ind.cqi_pdu_list[i].ul_cqi_information);
Raymond Knopp's avatar
Raymond Knopp committed
120
    */
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
121
    UL_info->cqi_ind.number_of_cqis=0;
122

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
123 124 125
}

void handle_nr_harq(NR_UL_IND_t *UL_info) {
126
  if (nfapi_mode == 1 && UL_info->harq_ind.harq_indication_body.number_of_harqs>0) { // PNF
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
127
    //LOG_D(PHY, "UL_info->harq_ind.harq_indication_body.number_of_harqs:%d Send to VNF\n", UL_info->harq_ind.harq_indication_body.number_of_harqs);
Raymond Knopp's avatar
Raymond Knopp committed
128
    /*    int retval = oai_nfapi_harq_indication(&UL_info->harq_ind);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
129

130
    if (retval!=0) {
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
131 132
      LOG_E(PHY, "Failed to encode NFAPI HARQ_IND retval:%d\n", retval);
    }
Raymond Knopp's avatar
Raymond Knopp committed
133
    */
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
134 135 136 137
    UL_info->harq_ind.harq_indication_body.number_of_harqs = 0;
  }
  else
  {
Raymond Knopp's avatar
Raymond Knopp committed
138 139
    /*
    for (int i=0;i<UL_info->harq_ind.harq_indication_body.number_of_harqs;i++)
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
140 141 142 143 144
      harq_indication(UL_info->module_id,
          UL_info->CC_id,
          NFAPI_SFNSF2SFN(UL_info->harq_ind.sfn_sf),
          NFAPI_SFNSF2SF(UL_info->harq_ind.sfn_sf),
          &UL_info->harq_ind.harq_indication_body.harq_pdu_list[i]);
Raymond Knopp's avatar
Raymond Knopp committed
145
    */
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
146 147 148 149 150
    UL_info->harq_ind.harq_indication_body.number_of_harqs=0;
  }
}

void handle_nr_ulsch(NR_UL_IND_t *UL_info) {
151 152
  if(nfapi_mode == 1) {
    if (UL_info->crc_ind.crc_indication_body.number_of_crcs>0) {
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
153
      //LOG_D(PHY,"UL_info->crc_ind.crc_indication_body.number_of_crcs:%d CRC_IND:SFN/SF:%d\n", UL_info->crc_ind.crc_indication_body.number_of_crcs, NFAPI_SFNSF2DEC(UL_info->crc_ind.sfn_sf));
Raymond Knopp's avatar
Raymond Knopp committed
154
      //      oai_nfapi_crc_indication(&UL_info->crc_ind);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
155 156 157 158

      UL_info->crc_ind.crc_indication_body.number_of_crcs = 0;
    }

159
    if (UL_info->rx_ind.rx_indication_body.number_of_pdus>0) {
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
160
      //LOG_D(PHY,"UL_info->rx_ind.number_of_pdus:%d RX_IND:SFN/SF:%d\n", UL_info->rx_ind.rx_indication_body.number_of_pdus, NFAPI_SFNSF2DEC(UL_info->rx_ind.sfn_sf));
Raymond Knopp's avatar
Raymond Knopp committed
161
      //      oai_nfapi_rx_ind(&UL_info->rx_ind);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
162 163
      UL_info->rx_ind.rx_indication_body.number_of_pdus = 0;
    }
164
  } else {
cig's avatar
cig committed
165

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
166
    if (UL_info->rx_ind.rx_indication_body.number_of_pdus>0 && UL_info->crc_ind.crc_indication_body.number_of_crcs>0) {
167 168
      for (int i=0; i<UL_info->rx_ind.rx_indication_body.number_of_pdus; i++) {
        for (int j=0; j<UL_info->crc_ind.crc_indication_body.number_of_crcs; j++) {
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
169
          // find crc_indication j corresponding rx_indication i
170 171 172
          LOG_D(PHY,"UL_info->crc_ind.crc_indication_body.crc_pdu_list[%d].rx_ue_information.rnti:%04x UL_info->rx_ind.rx_indication_body.rx_pdu_list[%d].rx_ue_information.rnti:%04x\n", j,
                UL_info->crc_ind.crc_indication_body.crc_pdu_list[j].rx_ue_information.rnti, i, UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_ue_information.rnti);

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
173 174 175
          if (UL_info->crc_ind.crc_indication_body.crc_pdu_list[j].rx_ue_information.rnti ==
              UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_ue_information.rnti) {
            LOG_D(PHY, "UL_info->crc_ind.crc_indication_body.crc_pdu_list[%d].crc_indication_rel8.crc_flag:%d\n", j, UL_info->crc_ind.crc_indication_body.crc_pdu_list[j].crc_indication_rel8.crc_flag);
176

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
177
            if (UL_info->crc_ind.crc_indication_body.crc_pdu_list[j].crc_indication_rel8.crc_flag == 1) { // CRC error indication
178
              LOG_D(MAC,"Frame %d, Slot %d Calling rx_sdu (CRC error) \n",UL_info->frame,UL_info->slot);
cig's avatar
cig committed
179

180
              nr_rx_sdu(UL_info->module_id,
cig's avatar
cig committed
181 182 183 184 185 186 187 188 189
                        UL_info->CC_id,
                        NFAPI_SFNSF2SFN(UL_info->rx_ind.sfn_sf), //UL_info->frame,
                        NFAPI_SFNSF2SF(UL_info->rx_ind.sfn_sf), //UL_info->slot,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_ue_information.rnti,
                        (uint8_t *)NULL,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.length,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.timing_advance,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.ul_cqi);
            } else {
190
              LOG_D(MAC,"Frame %d, Slot %d Calling rx_sdu (CRC ok) \n",UL_info->frame,UL_info->slot);
191
              nr_rx_sdu(UL_info->module_id,
cig's avatar
cig committed
192 193 194 195 196 197 198 199
                        UL_info->CC_id,
                        NFAPI_SFNSF2SFN(UL_info->rx_ind.sfn_sf), //UL_info->frame,
                        NFAPI_SFNSF2SF(UL_info->rx_ind.sfn_sf), //UL_info->slot,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_ue_information.rnti,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].data,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.length,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.timing_advance,
                        UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.ul_cqi);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
200
            }
201
            //printf("rx_indication_rel8.timing_advance %d\n", UL_info->rx_ind.rx_indication_body.rx_pdu_list[i].rx_indication_rel8.timing_advance);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
202 203
            break;
          } //if (UL_info->crc_ind.crc_pdu_list[j].rx_ue_information.rnti ==
204

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
205 206 207
          //    UL_info->rx_ind.rx_pdu_list[i].rx_ue_information.rnti)
        } //    for (j=0;j<UL_info->crc_ind.crc_indication_body.number_of_crcs;j++)
      } //   for (i=0;i<UL_info->rx_ind.number_of_pdus;i++)
208

WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
209 210
      UL_info->crc_ind.crc_indication_body.number_of_crcs=0;
      UL_info->rx_ind.rx_indication_body.number_of_pdus = 0;
211
    } // UL_info->rx_ind.rx_indication_body.number_of_pdus>0 && UL_info->slot && UL_info->crc_ind.crc_indication_body.number_of_crcs>0
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
212 213
    else if (UL_info->rx_ind.rx_indication_body.number_of_pdus!=0 || UL_info->crc_ind.crc_indication_body.number_of_crcs!=0) {
      LOG_E(PHY,"hoping not to have mis-match between CRC ind and RX ind - hopefully the missing message is coming shortly rx_ind:%d(SFN/SF:%05d) crc_ind:%d(SFN/SF:%05d) UL_info(SFN/SF):%04d%d\n",
214 215 216
            UL_info->rx_ind.rx_indication_body.number_of_pdus, NFAPI_SFNSF2DEC(UL_info->rx_ind.sfn_sf),
            UL_info->crc_ind.crc_indication_body.number_of_crcs, NFAPI_SFNSF2DEC(UL_info->crc_ind.sfn_sf),
            UL_info->frame, UL_info->slot);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
217 218 219 220
    }
  }
}

221
void NR_UL_indication(NR_UL_IND_t *UL_info) {
222 223 224 225
  AssertFatal(UL_info!=NULL,"UL_INFO is null\n");
#ifdef DUMP_FAPI
  dump_ul(UL_info);
#endif
226 227 228 229 230
  module_id_t      module_id   = UL_info->module_id;
  int              CC_id       = UL_info->CC_id;
  NR_Sched_Rsp_t   *sched_info = &Sched_INFO[module_id][CC_id];
  NR_IF_Module_t   *ifi        = if_inst[module_id];
  gNB_MAC_INST     *mac        = RC.nrmac[module_id];
231
  LOG_D(PHY,"SFN/SF:%d%d module_id:%d CC_id:%d UL_info[rx_ind:%d harqs:%d crcs:%d cqis:%d rach_pdus:%d sr_ind:%d]\n",
232
        UL_info->frame,UL_info->slot,
233
        module_id,CC_id,
234
        UL_info->rx_ind.rx_indication_body.number_of_pdus, UL_info->harq_ind.harq_indication_body.number_of_harqs, UL_info->crc_ind.crc_indication_body.number_of_crcs, UL_info->cqi_ind.number_of_cqis,
235
        UL_info->rach_ind.number_of_pdus, UL_info->sr_ind.sr_indication_body.number_of_srs);
236

237
  if (nfapi_mode != 1) {
238 239
    if (ifi->CC_mask==0) {
      ifi->current_frame    = UL_info->frame;
240
      ifi->current_slot = UL_info->slot;
241
    } else {
242
      AssertFatal(UL_info->frame != ifi->current_frame,"CC_mask %x is not full and frame has changed\n",ifi->CC_mask);
243
      AssertFatal(UL_info->slot != ifi->current_slot,"CC_mask %x is not full and slot has changed\n",ifi->CC_mask);
244
    }
245

246 247 248 249
    ifi->CC_mask |= (1<<CC_id);
  }

  // clear DL/UL info for new scheduling round
250
  clear_nr_nfapi_information(mac,CC_id,UL_info->frame,UL_info->slot);
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
251 252 253 254
  handle_nr_rach(UL_info);
  handle_nr_sr(UL_info);
  handle_nr_cqi(UL_info);
  handle_nr_harq(UL_info);
255
  // clear HI prior to handling ULSCH
256
  mac->UL_dci_req[CC_id].numPdus = 0;
WEI-TAI CHEN's avatar
WEI-TAI CHEN committed
257
  handle_nr_ulsch(UL_info);
258

259
  if (nfapi_mode != 1) {
260
    if (ifi->CC_mask == ((1<<MAX_NUM_CCs)-1)) {
261
      /*
262
      eNB_dlsch_ulsch_scheduler(module_id,
263 264
          (UL_info->frame+((UL_info->slot>(9-sl_ahead))?1:0)) % 1024,
          (UL_info->slot+sl_ahead)%10);
265
      */
266
      nfapi_nr_config_request_scf_t *cfg = &mac->config[CC_id];
267
      int spf = get_spf(cfg);
268
      gNB_dlsch_ulsch_scheduler(module_id,
269 270
				UL_info->frame,
				UL_info->slot,
271 272
				(UL_info->frame+((UL_info->slot>(spf-1-sl_ahead))?1:0)) % 1024,
				(UL_info->slot+sl_ahead)%spf);
273
      
274 275 276
      ifi->CC_mask            = 0;
      sched_info->module_id   = module_id;
      sched_info->CC_id       = CC_id;
277 278
      sched_info->frame       = (UL_info->frame + ((UL_info->slot>(spf-1-sl_ahead)) ? 1 : 0)) % 1024;
      sched_info->slot        = (UL_info->slot+sl_ahead)%spf;
279
      sched_info->DL_req      = &mac->DL_req[CC_id];
280
      sched_info->UL_dci_req  = &mac->UL_dci_req[CC_id];
281

282
      if ((mac->common_channels[CC_id].ServingCellConfigCommon->tdd_UL_DL_ConfigurationCommon==NULL) ||
283 284
          (is_nr_UL_slot(mac->common_channels[CC_id].ServingCellConfigCommon,UL_info->slot)>0)) {
	//printf("NR_UL_indication: this is an UL slot. UL_info: frame %d, slot %d. UL_tti_req: frame %d, slot %d\n",UL_info->frame,UL_info->slot,mac->UL_tti_req[CC_id].SFN,mac->UL_tti_req[CC_id].Slot);
285
        sched_info->UL_tti_req      = &mac->UL_tti_req[CC_id];
286
      }
287
      else
288
        sched_info->UL_tti_req      = NULL;
289 290 291 292 293 294

      sched_info->TX_req      = &mac->TX_req[CC_id];
#ifdef DUMP_FAPI
      dump_dl(sched_info);
#endif

295
      if (ifi->NR_Schedule_response) {
296 297 298 299 300
        AssertFatal(ifi->NR_Schedule_response!=NULL,
                    "nr_schedule_response is null (mod %d, cc %d)\n",
                    module_id,
                    CC_id);
        ifi->NR_Schedule_response(sched_info);
301 302
      }

Raymond Knopp's avatar
Raymond Knopp committed
303 304 305 306
      LOG_D(PHY,"NR_Schedule_response: SFN_SF:%d%d dl_pdus:%d\n",
	    sched_info->frame,
	    sched_info->slot,
	    sched_info->DL_req->dl_tti_request_body.nPDUs);
307 308 309 310
    }
  }
}

311
NR_IF_Module_t *NR_IF_Module_init(int Mod_id) {
312
  AssertFatal(Mod_id<MAX_MODULES,"Asking for Module %d > %d\n",Mod_id,MAX_IF_MODULES);
Raymond Knopp's avatar
Raymond Knopp committed
313
  LOG_I(PHY,"Installing callbacks for IF_Module - UL_indication\n");
314 315 316 317 318

  if (if_inst[Mod_id]==NULL) {
    if_inst[Mod_id] = (NR_IF_Module_t*)malloc(sizeof(NR_IF_Module_t));
    memset((void*)if_inst[Mod_id],0,sizeof(NR_IF_Module_t));

319 320
    LOG_I(MAC,"Allocating shared L1/L2 interface structure for instance %d @ %p\n",Mod_id,if_inst[Mod_id]);

321
    if_inst[Mod_id]->CC_mask=0;
322
    if_inst[Mod_id]->NR_UL_indication = NR_UL_indication;
323
    AssertFatal(pthread_mutex_init(&if_inst[Mod_id]->if_mutex,NULL)==0,
324
                "allocation of if_inst[%d]->if_mutex fails\n",Mod_id);
325
  }
326

327
  return if_inst[Mod_id];
328
}