los_init.c 6.6 KB
Newer Older
W
wenjun 已提交
1
/*
M
mamingshuai 已提交
2 3
 * Copyright (c) 2013-2019 Huawei Technologies Co., Ltd. All rights reserved.
 * Copyright (c) 2020-2021 Huawei Device Co., Ltd. All rights reserved.
W
wenjun 已提交
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
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this list of
 *    conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright notice, this list
 *    of conditions and the following disclaimer in the documentation and/or other materials
 *    provided with the distribution.
 *
 * 3. Neither the name of the copyright holder nor the names of its contributors may be used
 *    to endorse or promote products derived from this software without specific prior written
 *    permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
 * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

A
arvinzzz 已提交
32
#include "stdarg.h"
C
Caoruihong 已提交
33
#include "los_arch.h"
A
arvinzzz 已提交
34 35
#include "los_config.h"
#include "los_debug.h"
L
likailong 已提交
36 37
#include "los_memory.h"
#include "los_mux.h"
A
arvinzzz 已提交
38
#include "los_queue.h"
C
Caoruihong 已提交
39
#include "los_sem.h"
W
wenjun 已提交
40

C
Caoruihong 已提交
41
#if (LOSCFG_PLATFORM_HWI == 1)
L
likailong 已提交
42
#include "los_interrupt.h"
W
wenjun 已提交
43 44
#endif

C
Caoruihong 已提交
45 46
#if (LOSCFG_BASE_CORE_SWTMR == 1)
#include "los_swtmr.h"
W
wenjun 已提交
47 48
#endif

星e雨's avatar
星e雨 已提交
49 50 51
#if (LOSCFG_BASE_CORE_CPUP == 1)
#include "los_cpup.h"
#endif
W
wenjun 已提交
52

53 54 55 56
#if (LOSCFG_PLATFORM_EXC == 1)
#include "los_exc_info.h"
#endif

zhushy_'s avatar
zhushy_ 已提交
57 58 59 60
#if (LOSCFG_BACKTRACE_TYPE != 0)
#include "los_backtrace.h"
#endif

Z
zhushengle 已提交
61 62 63
#if (LOSCFG_KERNEL_PM == 1)
#include "los_pm.h"
#endif
W
wenjun 已提交
64

H
Haryslee 已提交
65 66 67 68
#if (LOSCFG_DYNLINK == 1)
#include "los_dynlink.h"
#endif

L
LiteOS2021 已提交
69 70 71 72
#ifdef LOSCFG_KERNEL_LMS
#include "los_lms_pri.h"
#endif

73 74 75 76
#if (LOSCFG_KERNEL_LMK == 1)
#include "los_lmk.h"
#endif

77 78 79 80
#if (LOSCFG_POSIX_PIPE_API == 1)
#include "pipe_impl.h"
#endif

81 82 83 84
#if (LOSCFG_KERNEL_SIGNAL == 1)
#include "los_signal.h"
#endif

W
wenjun 已提交
85 86 87 88 89 90 91 92 93
/*****************************************************************************
 Function    : LOS_Reboot
 Description : system exception, die in here, wait for watchdog.
 Input       : None
 Output      : None
 Return      : None
 *****************************************************************************/
LITE_OS_SEC_TEXT_INIT VOID LOS_Reboot(VOID)
{
94
    OsDoExcHook(EXC_REBOOT);
L
LiteOS2021 已提交
95
    ArchSysExit();
C
Caoruihong 已提交
96 97 98 99 100 101 102 103
}

LITE_OS_SEC_TEXT_INIT VOID LOS_Panic(const CHAR *fmt, ...)
{
    va_list ap;
    va_start(ap, fmt);
    PRINT_ERR(fmt, ap);
    va_end(ap);
104 105 106
#if (LOSCFG_BACKTRACE_TYPE != 0)
    LOS_BackTrace();
#endif
L
LiteOS2021 已提交
107
    ArchSysExit();
W
wenjun 已提交
108
}
C
Caoruihong 已提交
109 110


W
wenjun 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
/*****************************************************************************
 Function    : OsRegister
 Description : Configuring the maximum number of tasks
 Input       : None
 Output      : None
 Return      : None
 *****************************************************************************/
LITE_OS_SEC_TEXT_INIT static VOID OsRegister(VOID)
{
    g_taskMaxNum = LOSCFG_BASE_CORE_TSK_LIMIT + 1; /* Reserved 1 for IDLE */

    return;
}

LITE_OS_SEC_TEXT_INIT UINT32 LOS_Start(VOID)
{
L
LiteOS2021 已提交
127
    return ArchStartSchedule();
W
wenjun 已提交
128 129 130 131 132 133 134 135 136 137 138 139
}

/*****************************************************************************
 Function    : LOS_KernelInit
 Description : System kernel initialization function, configure all system modules
 Input       : None
 Output      : None
 Return      : LOS_OK on success or error code on failure
 *****************************************************************************/
LITE_OS_SEC_TEXT_INIT UINT32 LOS_KernelInit(VOID)
{
    UINT32 ret;
140
    PRINTK("entering kernel init...\n");
W
wenjun 已提交
141

zhushy_'s avatar
zhushy_ 已提交
142
#if (LOSCFG_BACKTRACE_TYPE != 0)
143
    OsBackTraceInit();
zhushy_'s avatar
zhushy_ 已提交
144 145
#endif

W
wenjun 已提交
146
    OsRegister();
L
LiteOS2021 已提交
147 148 149 150

#ifdef LOSCFG_KERNEL_LMS
    OsLmsInit();
#endif
W
wenjun 已提交
151 152 153 154 155 156
    ret = OsMemSystemInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsMemSystemInit error %d\n", ret);
        return ret;
    }

L
LiteOS2021 已提交
157
    ArchInit();
W
wenjun 已提交
158

159 160 161 162 163 164
    ret = OsTickTimerInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsTickTimerInit error! 0x%x\n", ret);
        return ret;
    }

W
wenjun 已提交
165 166 167 168 169 170
    ret = OsTaskInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsTaskInit error\n");
        return ret;
    }

C
Caoruihong 已提交
171
#if (LOSCFG_BASE_CORE_TSK_MONITOR == 1)
星e雨's avatar
星e雨 已提交
172
    OsTaskMonInit();
W
wenjun 已提交
173 174
#endif

C
Caoruihong 已提交
175
#if (LOSCFG_BASE_CORE_CPUP == 1)
W
wenjun 已提交
176 177 178 179 180 181 182
    ret = OsCpupInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsCpupInit error\n");
        return ret;
    }
#endif

C
Caoruihong 已提交
183
#if (LOSCFG_BASE_IPC_SEM == 1)
W
wenjun 已提交
184 185 186 187 188 189
    ret = OsSemInit();
    if (ret != LOS_OK) {
        return ret;
    }
#endif

C
Caoruihong 已提交
190
#if (LOSCFG_BASE_IPC_MUX == 1)
W
wenjun 已提交
191 192 193 194 195 196
    ret = OsMuxInit();
    if (ret != LOS_OK) {
        return ret;
    }
#endif

C
Caoruihong 已提交
197
#if (LOSCFG_BASE_IPC_QUEUE == 1)
W
wenjun 已提交
198 199 200 201 202 203 204
    ret = OsQueueInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsQueueInit error\n");
        return ret;
    }
#endif

C
Caoruihong 已提交
205
#if (LOSCFG_BASE_CORE_SWTMR == 1)
W
wenjun 已提交
206 207 208 209 210 211 212 213 214 215 216 217
    ret = OsSwtmrInit();
    if (ret != LOS_OK) {
        PRINT_ERR("OsSwtmrInit error\n");
        return ret;
    }
#endif

    ret = OsIdleTaskCreate();
    if (ret != LOS_OK) {
        return ret;
    }

L
LiteOS2021 已提交
218
#if (LOSCFG_KERNEL_TRACE == 1)
219
    ret = OsTraceInit(LOSCFG_TRACE_BUFFER_SIZE);
L
LiteOS2021 已提交
220
    if (ret != LOS_OK) {
221
        PRINT_ERR("OsTraceInit error\n");
L
LiteOS2021 已提交
222 223 224 225
        return ret;
    }
#endif

Z
zhushengle 已提交
226 227 228 229 230 231 232 233
#if (LOSCFG_KERNEL_PM == 1)
    ret = OsPmInit();
    if (ret != LOS_OK) {
        PRINT_ERR("Pm init failed!\n");
        return ret;
    }
#endif

234 235 236 237
#if (LOSCFG_KERNEL_LMK == 1)
    OsLmkInit();
#endif

238 239
#if (LOSCFG_PLATFORM_EXC == 1)
    OsExcMsgDumpInit();
W
wenjun 已提交
240
#endif
241

H
Haryslee 已提交
242 243 244 245 246 247 248
#if (LOSCFG_DYNLINK == 1)
    ret = LOS_DynlinkInit();
    if (ret != LOS_OK) {
        return ret;
    }
#endif

249 250 251 252 253 254 255 256
#if (LOSCFG_POSIX_PIPE_API == 1)
    ret = OsPipeInit();
    if (ret != LOS_OK) {
        PRINT_ERR("Pipe init failed!\n");
        return ret;
    }
#endif

257 258 259 260 261 262 263 264
#if (LOSCFG_KERNEL_SIGNAL == 1)
    ret = OsSignalInit();
    if (ret != LOS_OK) {
        PRINT_ERR("Signal init failed!\n");
        return ret;
    }
#endif

W
wenjun 已提交
265 266 267
    return LOS_OK;
}