main_ue_nr.c 4.46 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
/* \file main_ue_nr.c
23
 * \brief top init of Layer 2
24 25 26 27 28 29 30
 * \author R. Knopp, K.H. HSU
 * \date 2018
 * \version 0.1
 * \company Eurecom / NTUST
 * \email: knopp@eurecom.fr, kai-hsiang.hsu@eurecom.fr
 * \note
 * \warning
31 32
 */

33 34
//#include "defs.h"
#include "mac_proto.h"
francescomani's avatar
francescomani committed
35
#include "radio/COMMON/common_lib.h"
36 37 38
//#undef MALLOC
#include "assertions.h"
#include "executables/softmodem-common.h"
39
#include "openair2/LAYER2/nr_pdcp/nr_pdcp.h"
40
#include "openair2/LAYER2/nr_pdcp/nr_pdcp_oai_api.h"
41 42
#include "nr_rlc/nr_rlc_oai_api.h"
#include "RRC/NR/MESSAGES/asn1_msg.h"
43
#include <pthread.h>
44

45
static NR_UE_MAC_INST_t *nr_ue_mac_inst; 
46

47 48
NR_UE_MAC_INST_t * nr_l2_init_ue(NR_UE_RRC_INST_t* rrc_inst) {

49
    //LOG_I(MAC, "[MAIN] MAC_INIT_GLOBAL_PARAM IN...\n");
50

51
    //LOG_I(MAC, "[MAIN] init UE MAC functions \n");
52 53
    
    //init mac here
54
    nr_ue_mac_inst = (NR_UE_MAC_INST_t *)calloc(sizeof(NR_UE_MAC_INST_t), NB_NR_UE_MAC_INST);
55

56 57
    for (int j = 0; j < NB_NR_UE_MAC_INST; j++)
      nr_ue_init_mac(j);
58

59 60 61
    if (rrc_inst && rrc_inst->scell_group_config) {

      nr_rrc_mac_config_req_ue(0,0,0,NULL,NULL,NULL,rrc_inst->scell_group_config);
62
      AssertFatal(rlc_module_init(0) == 0, "%s: Could not initialize RLC layer\n", __FUNCTION__);
63
      if (IS_SOFTMODEM_NOS1){
64 65 66 67 68 69 70 71 72
        // get default noS1 configuration
        NR_RadioBearerConfig_t *rbconfig = NULL;
        NR_RLC_BearerConfig_t *rlc_rbconfig = NULL;
        fill_nr_noS1_bearer_config(&rbconfig, &rlc_rbconfig);
        struct NR_CellGroupConfig__rlc_BearerToAddModList rlc_bearer_list = {
          .list = { .array = &rlc_rbconfig, .count = 1, .size = 1, }
        };

        // set up PDCP, RLC, MAC
73
        nr_pdcp_layer_init();
74 75
        nr_pdcp_add_drbs(ENB_FLAG_NO, nr_ue_mac_inst->crnti, 0, rbconfig->drb_ToAddModList, 0, NULL, NULL, &rlc_bearer_list);
        nr_rlc_add_drb(nr_ue_mac_inst->crnti, rbconfig->drb_ToAddModList->list.array[0]->drb_Identity, rlc_rbconfig);
76
        nr_ue_mac_inst->logicalChannelBearer_exist[0] = true;
77 78 79

        // free memory
        free_nr_noS1_bearer_config(&rbconfig, &rlc_rbconfig);
80
      }
81 82 83 84
      // Allocate memory for ul_config_request in the mac instance. This is now a pointer and will
      // point to a list of structures (one for each UL slot) to store PUSCH scheduling parameters
      // received from UL DCI.
      if (nr_ue_mac_inst->scc) {
85 86 87
        NR_TDD_UL_DL_ConfigCommon_t *tdd = nr_ue_mac_inst->scc->tdd_UL_DL_ConfigurationCommon;
        int num_slots_ul = tdd ? tdd->pattern1.nrofUplinkSlots : nr_slots_per_frame[*nr_ue_mac_inst->scc->ssbSubcarrierSpacing];
        if (tdd && nr_ue_mac_inst->scc->tdd_UL_DL_ConfigurationCommon->pattern1.nrofUplinkSymbols > 0) {
88
          num_slots_ul++;
89 90
        }
        LOG_D(NR_MAC, "In %s: Initializing ul_config_request. num_slots_ul = %d\n", __FUNCTION__, num_slots_ul);
91
        nr_ue_mac_inst->ul_config_request = (fapi_nr_ul_config_request_t *)calloc(num_slots_ul, sizeof(fapi_nr_ul_config_request_t));
92 93
        for (int i=0; i<num_slots_ul; i++)
          pthread_mutex_init(&(nr_ue_mac_inst->ul_config_request[i].mutex_ul_config), NULL);
94
      }
95 96
    }
    else {
97 98
      LOG_I(MAC,"Running without CellGroupConfig\n");
      nr_rrc_mac_config_req_ue(0,0,0,NULL,NULL,NULL,NULL);
rmagueta's avatar
rmagueta committed
99 100 101 102
      if(get_softmodem_params()->sa == 1) {
        AssertFatal(rlc_module_init(0) == 0, "%s: Could not initialize RLC layer\n", __FUNCTION__);
      }
    }
103

104
    return (nr_ue_mac_inst);
105 106
}

107 108
NR_UE_MAC_INST_t *get_mac_inst(module_id_t module_id){
    return &nr_ue_mac_inst[(int)module_id];
109
}