/* * Copyright (C) 2016 Kaspar Schleiser * 2013 Freie Universität Berlin * * This file is subject to the terms and conditions of the GNU Lesser * General Public License v2.1. See the file LICENSE in the top level * directory for more details. */ /** * @ingroup core_internal * @{ * * @file * @brief Platform-independent kernel initialization * * @author Kaspar Schleiser * * @} */ #include #include #include #include "auto_init.h" #include "irq.h" #include "kernel_init.h" #include "log.h" #include "periph/pm.h" #include "thread.h" #define ENABLE_DEBUG 0 #include "debug.h" #ifndef CONFIG_BOOT_MSG_STRING #define CONFIG_BOOT_MSG_STRING "main(): This is RIOT! (Version: " \ RIOT_VERSION ")" #endif extern int main(void); static void *main_trampoline(void *arg) { (void)arg; if (IS_USED(MODULE_AUTO_INIT)) { auto_init(); } if (!IS_ACTIVE(CONFIG_SKIP_BOOT_MSG)) { LOG_INFO(CONFIG_BOOT_MSG_STRING "\n"); } main(); return NULL; } static char main_stack[THREAD_STACKSIZE_MAIN]; static char idle_stack[THREAD_STACKSIZE_IDLE]; static void *idle_thread(void *arg) { (void)arg; while (1) { pm_set_lowest(); } return NULL; } void kernel_init(void) { irq_disable(); if (IS_USED(MODULE_CORE_IDLE_THREAD)) { thread_create(idle_stack, sizeof(idle_stack), THREAD_PRIORITY_IDLE, THREAD_CREATE_WOUT_YIELD | THREAD_CREATE_STACKTEST, idle_thread, NULL, "idle"); } thread_create(main_stack, sizeof(main_stack), THREAD_PRIORITY_MAIN, THREAD_CREATE_WOUT_YIELD | THREAD_CREATE_STACKTEST, main_trampoline, NULL, "main"); cpu_switch_context_exit(); }