create_tasks.c 3.08 KB
Newer Older
1 2 3 4 5
/*
 * 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
6
 * the OAI Public License, Version 1.1  (the "License"); you may not use this file
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
 * 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 24
#if defined(ENABLE_ITTI)
# include "intertask_interface.h"
# include "create_tasks.h"
25
# include "common/utils/LOG/log.h"
26 27 28 29 30 31

# ifdef OPENAIR2
#   if defined(ENABLE_USE_MME)
#     include "sctp_eNB_task.h"
#     include "s1ap_eNB.h"
#     include "nas_ue_task.h"
Lionel Gauthier's avatar
Lionel Gauthier committed
32
#     include "udp_eNB_task.h"
33
#     include "gtpv1u_eNB_task.h"
frtabu's avatar
frtabu committed
34 35
#   else
#     define EPC_MODE_ENABLED 0
36
#   endif
37
#   if ENABLE_RAL
38 39 40
#     include "lteRALue.h"
#     include "lteRALenb.h"
#   endif
41
#   include "RRC/LTE/rrc_defs.h"
42 43 44
# endif
# include "enb_app.h"

45
extern int emulate_rf;
Wang Tsu-Han's avatar
Wang Tsu-Han committed
46

47
int create_tasks(uint32_t enb_nb)
48
{
49
  LOG_D(ENB_APP, "%s(enb_nb:%d\n", __FUNCTION__, enb_nb);
50

51
  itti_wait_ready(1);
52 53 54 55 56 57 58 59 60 61 62 63
  if (itti_create_task (TASK_L2L1, l2l1_task, NULL) < 0) {
    LOG_E(PDCP, "Create task for L2L1 failed\n");
    return -1;
  }

  if (enb_nb > 0) {
    /* Last task to create, others task must be ready before its start */
    if (itti_create_task (TASK_ENB_APP, eNB_app_task, NULL) < 0) {
      LOG_E(ENB_APP, "Create task for eNB APP failed\n");
      return -1;
    }
  }
frtabu's avatar
frtabu committed
64
# if defined(ENABLE_USE_MME)
65
  if (EPC_MODE_ENABLED) {
66 67 68 69 70 71 72 73 74 75
      if (enb_nb > 0) {
        if (itti_create_task (TASK_SCTP, sctp_eNB_task, NULL) < 0) {
          LOG_E(SCTP, "Create task for SCTP failed\n");
          return -1;
        }

        if (itti_create_task (TASK_S1AP, s1ap_eNB_task, NULL) < 0) {
          LOG_E(S1AP, "Create task for S1AP failed\n");
          return -1;
        }
76 77 78 79 80
        if(!emulate_rf){
          if (itti_create_task (TASK_UDP, udp_eNB_task, NULL) < 0) {
            LOG_E(UDP_, "Create task for UDP failed\n");
            return -1;
          }
81 82 83 84 85 86 87 88
        }

        if (itti_create_task (TASK_GTPV1_U, &gtpv1u_eNB_task, NULL) < 0) {
          LOG_E(GTPU, "Create task for GTPV1U failed\n");
          return -1;
        }
      }

89
  } /* if (EPC_MODE_ENABLED) */
frtabu's avatar
frtabu committed
90
#endif
91
    if (enb_nb > 0) {
92 93
      LOG_I(RRC,"Creating RRC eNB Task\n");

94 95 96 97
      if (itti_create_task (TASK_RRC_ENB, rrc_enb_task, NULL) < 0) {
        LOG_E(RRC, "Create task for RRC eNB failed\n");
        return -1;
      }
98 99
    }

100 101

  itti_wait_ready(0);
102

103
  return 0;
104 105
}
#endif