Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2010-2014 Wind River Systems, Inc. |
| 3 | * |
David B. Kinder | ac74d8b | 2017-01-18 17:01:01 -0800 | [diff] [blame] | 4 | * SPDX-License-Identifier: Apache-2.0 |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /** |
| 8 | * @file |
Anas Nashif | cb888e6 | 2016-12-18 09:42:55 -0500 | [diff] [blame] | 9 | * @brief Kernel initialization module |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 10 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 11 | * This module contains routines that are used to initialize the kernel. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 12 | */ |
| 13 | |
Andrew Boie | f1c373c | 2016-10-28 12:45:05 -0700 | [diff] [blame] | 14 | #include <zephyr.h> |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 15 | #include <offsets_short.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 16 | #include <kernel.h> |
Anas Nashif | 9ab2a56 | 2019-06-26 10:33:49 -0400 | [diff] [blame] | 17 | #include <sys/printk.h> |
Anas Nashif | efb8df5 | 2019-06-26 10:42:45 -0400 | [diff] [blame] | 18 | #include <debug/stack.h> |
Leandro Pereira | adce1d1 | 2017-10-13 15:45:02 -0700 | [diff] [blame] | 19 | #include <random/rand32.h> |
Anas Nashif | 397d29d | 2017-06-17 11:30:47 -0400 | [diff] [blame] | 20 | #include <linker/sections.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 21 | #include <toolchain.h> |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 22 | #include <kernel_structs.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 23 | #include <device.h> |
| 24 | #include <init.h> |
Anas Nashif | 397d29d | 2017-06-17 11:30:47 -0400 | [diff] [blame] | 25 | #include <linker/linker-defs.h> |
Benjamin Walsh | b4b108d | 2016-10-13 10:31:48 -0400 | [diff] [blame] | 26 | #include <ksched.h> |
Mahavir Jain | a636604 | 2016-12-02 21:45:49 +0530 | [diff] [blame] | 27 | #include <version.h> |
Mahavir Jain | acea241 | 2016-12-02 21:48:39 +0530 | [diff] [blame] | 28 | #include <string.h> |
Anas Nashif | ee9dd1a | 2019-06-26 10:33:41 -0400 | [diff] [blame] | 29 | #include <sys/dlist.h> |
Andy Ross | 245b54e | 2018-02-08 09:10:46 -0800 | [diff] [blame] | 30 | #include <kernel_internal.h> |
Andy Ross | 9c62cc6 | 2018-01-25 15:24:15 -0800 | [diff] [blame] | 31 | #include <kswap.h> |
Anas Nashif | 969f8f1 | 2019-06-25 15:53:49 -0400 | [diff] [blame] | 32 | #include <drivers/entropy.h> |
Krzysztof Chruscinski | 6b01c89 | 2018-07-11 12:26:31 +0200 | [diff] [blame] | 33 | #include <logging/log_ctrl.h> |
Anas Nashif | 73008b4 | 2020-02-06 09:14:51 -0500 | [diff] [blame] | 34 | #include <tracing/tracing.h> |
Flavio Ceolin | b3d9202 | 2018-09-17 15:56:06 -0700 | [diff] [blame] | 35 | #include <stdbool.h> |
Anas Nashif | fa1c600 | 2019-06-26 10:38:42 -0400 | [diff] [blame] | 36 | #include <debug/gcov.h> |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 37 | #include <kswap.h> |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 38 | |
Anas Nashif | 0a0c8c8 | 2018-09-17 06:58:09 -0500 | [diff] [blame] | 39 | #define LOG_LEVEL CONFIG_KERNEL_LOG_LEVEL |
| 40 | #include <logging/log.h> |
Anas Nashif | 6d359df | 2019-06-04 13:42:17 -0400 | [diff] [blame] | 41 | LOG_MODULE_REGISTER(os); |
Anas Nashif | 5755405 | 2018-03-03 02:31:05 -0600 | [diff] [blame] | 42 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 43 | /* boot banner items */ |
Anas Nashif | 42f4538 | 2019-03-26 12:01:44 -0400 | [diff] [blame] | 44 | #if defined(CONFIG_MULTITHREADING) && defined(CONFIG_BOOT_DELAY) \ |
| 45 | && CONFIG_BOOT_DELAY > 0 |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 46 | #define BOOT_DELAY_BANNER " (delayed boot " \ |
| 47 | STRINGIFY(CONFIG_BOOT_DELAY) "ms)" |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 48 | #else |
| 49 | #define BOOT_DELAY_BANNER "" |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 50 | #endif |
Anas Nashif | daf7716 | 2018-04-09 21:53:26 -0500 | [diff] [blame] | 51 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 52 | /* boot time measurement items */ |
| 53 | |
| 54 | #ifdef CONFIG_BOOT_TIME_MEASUREMENT |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 55 | uint32_t __noinit z_timestamp_main; /* timestamp when main task starts */ |
| 56 | uint32_t __noinit z_timestamp_idle; /* timestamp when CPU goes idle */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 57 | #endif |
| 58 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 59 | /* init/main and idle threads */ |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 60 | K_THREAD_STACK_DEFINE(z_main_stack, CONFIG_MAIN_STACK_SIZE); |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 61 | struct k_thread z_main_thread; |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 62 | |
| 63 | #ifdef CONFIG_MULTITHREADING |
| 64 | struct k_thread z_idle_threads[CONFIG_MP_NUM_CPUS]; |
Andrew Boie | 0c29746 | 2020-04-26 15:01:03 -0700 | [diff] [blame] | 65 | static K_KERNEL_STACK_ARRAY_DEFINE(z_idle_stacks, CONFIG_MP_NUM_CPUS, |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 66 | CONFIG_IDLE_STACK_SIZE); |
| 67 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | * storage space for the interrupt stack |
| 71 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 72 | * Note: This area is used as the system stack during kernel initialization, |
| 73 | * since the kernel hasn't yet set up its own stack areas. The dual purposing |
| 74 | * of this area is safe since interrupts are disabled until the kernel context |
| 75 | * switches to the init thread. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 76 | */ |
Andrew Boie | 8b4b0d6 | 2020-04-25 15:19:23 -0700 | [diff] [blame] | 77 | K_KERNEL_STACK_ARRAY_DEFINE(z_interrupt_stacks, CONFIG_MP_NUM_CPUS, |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 78 | CONFIG_ISR_STACK_SIZE); |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 79 | |
Benjamin Walsh | 1a5450b | 2016-10-06 15:04:23 -0400 | [diff] [blame] | 80 | #ifdef CONFIG_SYS_CLOCK_EXISTS |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 81 | #define initialize_timeouts() do { \ |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 82 | sys_dlist_init(&_timeout_q); \ |
Flavio Ceolin | 6fdc56d | 2018-09-18 12:32:27 -0700 | [diff] [blame] | 83 | } while (false) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 84 | #else |
| 85 | #define initialize_timeouts() do { } while ((0)) |
| 86 | #endif |
| 87 | |
Peter Mitsis | 96cb05c | 2016-09-15 12:37:58 -0400 | [diff] [blame] | 88 | extern void idle(void *unused1, void *unused2, void *unused3); |
| 89 | |
Carles Cufi | cb0cf9f | 2017-01-10 10:57:38 +0100 | [diff] [blame] | 90 | |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 91 | /* LCOV_EXCL_START |
| 92 | * |
| 93 | * This code is called so early in the boot process that code coverage |
| 94 | * doesn't work properly. In addition, not all arches call this code, |
| 95 | * some like x86 do this with optimized assembly |
| 96 | */ |
| 97 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 98 | /** |
| 99 | * |
| 100 | * @brief Clear BSS |
| 101 | * |
| 102 | * This routine clears the BSS region, so all bytes are 0. |
| 103 | * |
| 104 | * @return N/A |
| 105 | */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 106 | void z_bss_zero(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 107 | { |
Nicolas Pitre | df0b49c | 2019-05-17 17:44:19 -0400 | [diff] [blame] | 108 | (void)memset(__bss_start, 0, __bss_end - __bss_start); |
Martà BolÃvar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 109 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay) |
Flavio Ceolin | da49f2e | 2018-09-11 19:09:03 -0700 | [diff] [blame] | 110 | (void)memset(&__ccm_bss_start, 0, |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 111 | ((uint32_t) &__ccm_bss_end - (uint32_t) &__ccm_bss_start)); |
Erwin Rol | 1dc41d1 | 2017-10-05 01:22:32 +0200 | [diff] [blame] | 112 | #endif |
Martà BolÃvar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 113 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay) |
Alexander Wachter | b4c5f4b | 2019-07-03 14:19:29 +0200 | [diff] [blame] | 114 | (void)memset(&__dtcm_bss_start, 0, |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 115 | ((uint32_t) &__dtcm_bss_end - (uint32_t) &__dtcm_bss_start)); |
Alexander Wachter | b4c5f4b | 2019-07-03 14:19:29 +0200 | [diff] [blame] | 116 | #endif |
Adithya Baglody | 91c5b84 | 2018-11-13 16:57:45 +0530 | [diff] [blame] | 117 | #ifdef CONFIG_CODE_DATA_RELOCATION |
| 118 | extern void bss_zeroing_relocation(void); |
| 119 | |
| 120 | bss_zeroing_relocation(); |
| 121 | #endif /* CONFIG_CODE_DATA_RELOCATION */ |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 122 | #ifdef CONFIG_COVERAGE_GCOV |
| 123 | (void)memset(&__gcov_bss_start, 0, |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 124 | ((uint32_t) &__gcov_bss_end - (uint32_t) &__gcov_bss_start)); |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 125 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 126 | } |
| 127 | |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 128 | #ifdef CONFIG_STACK_CANARIES |
| 129 | extern volatile uintptr_t __stack_chk_guard; |
| 130 | #endif /* CONFIG_STACK_CANARIES */ |
| 131 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 132 | |
| 133 | #ifdef CONFIG_XIP |
| 134 | /** |
| 135 | * |
| 136 | * @brief Copy the data section from ROM to RAM |
| 137 | * |
| 138 | * This routine copies the data section from ROM to RAM. |
| 139 | * |
| 140 | * @return N/A |
| 141 | */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 142 | void z_data_copy(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 143 | { |
Flavio Ceolin | 6699423 | 2018-08-13 15:17:04 -0700 | [diff] [blame] | 144 | (void)memcpy(&__data_ram_start, &__data_rom_start, |
Nicolas Pitre | df0b49c | 2019-05-17 17:44:19 -0400 | [diff] [blame] | 145 | __data_ram_end - __data_ram_start); |
Aurelien Jarno | 992f29a | 2019-02-10 11:05:51 +0100 | [diff] [blame] | 146 | #ifdef CONFIG_ARCH_HAS_RAMFUNC_SUPPORT |
qianfan Zhao | e1cc657 | 2018-09-27 14:14:17 +0800 | [diff] [blame] | 147 | (void)memcpy(&_ramfunc_ram_start, &_ramfunc_rom_start, |
Nicolas Pitre | df0b49c | 2019-05-17 17:44:19 -0400 | [diff] [blame] | 148 | (uintptr_t) &_ramfunc_ram_size); |
Aurelien Jarno | 992f29a | 2019-02-10 11:05:51 +0100 | [diff] [blame] | 149 | #endif /* CONFIG_ARCH_HAS_RAMFUNC_SUPPORT */ |
Martà BolÃvar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 150 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay) |
Flavio Ceolin | 6699423 | 2018-08-13 15:17:04 -0700 | [diff] [blame] | 151 | (void)memcpy(&__ccm_data_start, &__ccm_data_rom_start, |
Nicolas Pitre | df0b49c | 2019-05-17 17:44:19 -0400 | [diff] [blame] | 152 | __ccm_data_end - __ccm_data_start); |
Erwin Rol | 1dc41d1 | 2017-10-05 01:22:32 +0200 | [diff] [blame] | 153 | #endif |
Martà BolÃvar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 154 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay) |
Alexander Wachter | b4c5f4b | 2019-07-03 14:19:29 +0200 | [diff] [blame] | 155 | (void)memcpy(&__dtcm_data_start, &__dtcm_data_rom_start, |
| 156 | __dtcm_data_end - __dtcm_data_start); |
| 157 | #endif |
Adithya Baglody | 91c5b84 | 2018-11-13 16:57:45 +0530 | [diff] [blame] | 158 | #ifdef CONFIG_CODE_DATA_RELOCATION |
| 159 | extern void data_copy_xip_relocation(void); |
| 160 | |
| 161 | data_copy_xip_relocation(); |
| 162 | #endif /* CONFIG_CODE_DATA_RELOCATION */ |
Andrew Boie | 4ce652e | 2019-02-22 16:08:44 -0800 | [diff] [blame] | 163 | #ifdef CONFIG_USERSPACE |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 164 | #ifdef CONFIG_STACK_CANARIES |
| 165 | /* stack canary checking is active for all C functions. |
| 166 | * __stack_chk_guard is some uninitialized value living in the |
| 167 | * app shared memory sections. Preserve it, and don't make any |
| 168 | * function calls to perform the memory copy. The true canary |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 169 | * value gets set later in z_cstart(). |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 170 | */ |
| 171 | uintptr_t guard_copy = __stack_chk_guard; |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 172 | uint8_t *src = (uint8_t *)&_app_smem_rom_start; |
| 173 | uint8_t *dst = (uint8_t *)&_app_smem_start; |
| 174 | uint32_t count = _app_smem_end - _app_smem_start; |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 175 | |
| 176 | guard_copy = __stack_chk_guard; |
| 177 | while (count > 0) { |
| 178 | *(dst++) = *(src++); |
| 179 | count--; |
| 180 | } |
| 181 | __stack_chk_guard = guard_copy; |
| 182 | #else |
Flavio Ceolin | 6699423 | 2018-08-13 15:17:04 -0700 | [diff] [blame] | 183 | (void)memcpy(&_app_smem_start, &_app_smem_rom_start, |
Nicolas Pitre | df0b49c | 2019-05-17 17:44:19 -0400 | [diff] [blame] | 184 | _app_smem_end - _app_smem_start); |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 185 | #endif /* CONFIG_STACK_CANARIES */ |
Andrew Boie | 4ce652e | 2019-02-22 16:08:44 -0800 | [diff] [blame] | 186 | #endif /* CONFIG_USERSPACE */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 187 | } |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 188 | #endif /* CONFIG_XIP */ |
| 189 | |
| 190 | /* LCOV_EXCL_STOP */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 191 | |
Peter Bigot | 74ef395 | 2019-12-23 11:48:43 -0600 | [diff] [blame] | 192 | bool z_sys_post_kernel; |
| 193 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 194 | /** |
| 195 | * |
Leandro Pereira | a1ae845 | 2018-03-06 15:08:55 -0800 | [diff] [blame] | 196 | * @brief Mainline for kernel's background thread |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 197 | * |
| 198 | * This routine completes kernel initialization by invoking the remaining |
| 199 | * init functions, then invokes application's main() routine. |
| 200 | * |
| 201 | * @return N/A |
| 202 | */ |
Leandro Pereira | a1ae845 | 2018-03-06 15:08:55 -0800 | [diff] [blame] | 203 | static void bg_thread_main(void *unused1, void *unused2, void *unused3) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 204 | { |
| 205 | ARG_UNUSED(unused1); |
| 206 | ARG_UNUSED(unused2); |
| 207 | ARG_UNUSED(unused3); |
| 208 | |
Flavio Ceolin | ac14685 | 2018-11-01 17:42:07 -0700 | [diff] [blame] | 209 | #if defined(CONFIG_BOOT_DELAY) && CONFIG_BOOT_DELAY > 0 |
| 210 | static const unsigned int boot_delay = CONFIG_BOOT_DELAY; |
| 211 | #else |
| 212 | static const unsigned int boot_delay; |
| 213 | #endif |
| 214 | |
Peter Bigot | 74ef395 | 2019-12-23 11:48:43 -0600 | [diff] [blame] | 215 | z_sys_post_kernel = true; |
| 216 | |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 217 | z_sys_init_run_level(_SYS_INIT_LEVEL_POST_KERNEL); |
Andrew Boie | 538754c | 2018-05-23 15:25:23 -0700 | [diff] [blame] | 218 | #if CONFIG_STACK_POINTER_RANDOM |
| 219 | z_stack_adjust_initialized = 1; |
| 220 | #endif |
Anas Nashif | 42f4538 | 2019-03-26 12:01:44 -0400 | [diff] [blame] | 221 | if (boot_delay > 0 && IS_ENABLED(CONFIG_MULTITHREADING)) { |
Inaky Perez-Gonzalez | 1abd064 | 2017-09-07 15:24:39 -0700 | [diff] [blame] | 222 | printk("***** delaying boot " STRINGIFY(CONFIG_BOOT_DELAY) |
| 223 | "ms (per build configuration) *****\n"); |
Youvedeep Singh | 9644f67 | 2017-10-24 13:30:33 +0530 | [diff] [blame] | 224 | k_busy_wait(CONFIG_BOOT_DELAY * USEC_PER_MSEC); |
Inaky Perez-Gonzalez | 1abd064 | 2017-09-07 15:24:39 -0700 | [diff] [blame] | 225 | } |
Anas Nashif | e4a9be9 | 2019-11-28 13:15:42 -0500 | [diff] [blame] | 226 | |
| 227 | #if defined(CONFIG_BOOT_BANNER) |
| 228 | #ifdef BUILD_VERSION |
| 229 | printk("*** Booting Zephyr OS build %s %s ***\n", |
| 230 | STRINGIFY(BUILD_VERSION), BOOT_DELAY_BANNER); |
| 231 | #else |
| 232 | printk("*** Booting Zephyr OS version %s %s ***\n", |
| 233 | KERNEL_VERSION_STRING, BOOT_DELAY_BANNER); |
| 234 | #endif |
| 235 | #endif |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 236 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 237 | #ifdef CONFIG_CPLUSPLUS |
| 238 | /* Process the .ctors and .init_array sections */ |
| 239 | extern void __do_global_ctors_aux(void); |
| 240 | extern void __do_init_array_aux(void); |
| 241 | __do_global_ctors_aux(); |
| 242 | __do_init_array_aux(); |
| 243 | #endif |
| 244 | |
Peter Bigot | c308f80 | 2020-05-08 09:28:44 -0500 | [diff] [blame] | 245 | /* Final init level before app starts */ |
| 246 | z_sys_init_run_level(_SYS_INIT_LEVEL_APPLICATION); |
| 247 | |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 248 | z_init_static_threads(); |
Anas Nashif | 83088a2 | 2017-08-24 04:27:51 -0400 | [diff] [blame] | 249 | |
Andy Ross | eb25870 | 2018-04-12 12:10:10 -0700 | [diff] [blame] | 250 | #ifdef CONFIG_SMP |
Andy Ross | a12f2d6 | 2019-06-05 08:58:42 -0700 | [diff] [blame] | 251 | z_smp_init(); |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 252 | z_sys_init_run_level(_SYS_INIT_LEVEL_SMP); |
Andy Ross | eb25870 | 2018-04-12 12:10:10 -0700 | [diff] [blame] | 253 | #endif |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 254 | |
Peter Mitsis | 5f8fa67 | 2016-10-27 15:19:49 -0400 | [diff] [blame] | 255 | #ifdef CONFIG_BOOT_TIME_MEASUREMENT |
Andrew Boie | e665410 | 2019-09-21 16:55:55 -0700 | [diff] [blame] | 256 | z_timestamp_main = k_cycle_get_32(); |
Peter Mitsis | 5f8fa67 | 2016-10-27 15:19:49 -0400 | [diff] [blame] | 257 | #endif |
| 258 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 259 | extern void main(void); |
Andrew Boie | f1c373c | 2016-10-28 12:45:05 -0700 | [diff] [blame] | 260 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 261 | main(); |
Allan Stephens | 073442e | 2016-11-09 07:46:56 -0600 | [diff] [blame] | 262 | |
Andrew Boie | 8e05333 | 2019-06-11 12:58:16 -0700 | [diff] [blame] | 263 | /* Mark nonessenrial since main() has no more work to do */ |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 264 | z_main_thread.base.user_options &= ~K_ESSENTIAL; |
Andrew Boie | 8e05333 | 2019-06-11 12:58:16 -0700 | [diff] [blame] | 265 | |
Anas Nashif | 471ffbe | 2020-01-30 08:44:10 -0500 | [diff] [blame] | 266 | #ifdef CONFIG_COVERAGE_DUMP |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 267 | /* Dump coverage data once the main() has exited. */ |
| 268 | gcov_coverage_dump(); |
Anas Nashif | 471ffbe | 2020-01-30 08:44:10 -0500 | [diff] [blame] | 269 | #endif |
Andrew Boie | 8e05333 | 2019-06-11 12:58:16 -0700 | [diff] [blame] | 270 | } /* LCOV_EXCL_LINE ... because we just dumped final coverage data */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 271 | |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 272 | /* LCOV_EXCL_START */ |
| 273 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 274 | void __weak main(void) |
| 275 | { |
| 276 | /* NOP default main() if the application does not provide one. */ |
Andrew Boie | 4f77c2a | 2019-11-07 12:43:29 -0800 | [diff] [blame] | 277 | arch_nop(); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 278 | } |
| 279 | |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 280 | /* LCOV_EXCL_STOP */ |
| 281 | |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 282 | #if defined(CONFIG_MULTITHREADING) |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 283 | static void init_idle_thread(int i) |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 284 | { |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 285 | struct k_thread *thread = &z_idle_threads[i]; |
| 286 | k_thread_stack_t *stack = z_idle_stacks[i]; |
| 287 | |
| 288 | #ifdef CONFIG_THREAD_NAME |
| 289 | char tname[8]; |
| 290 | |
| 291 | snprintk(tname, 8, "idle %02d", i); |
| 292 | #else |
| 293 | char *tname = NULL; |
| 294 | #endif /* CONFIG_THREAD_NAME */ |
| 295 | |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 296 | z_setup_new_thread(thread, stack, |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 297 | CONFIG_IDLE_STACK_SIZE, idle, NULL, NULL, NULL, |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 298 | K_LOWEST_THREAD_PRIO, K_ESSENTIAL, tname); |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 299 | z_mark_thread_as_started(thread); |
Andy Ross | 6c283ca | 2019-08-16 22:09:30 -0700 | [diff] [blame] | 300 | |
| 301 | #ifdef CONFIG_SMP |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 302 | thread->base.is_idle = 1U; |
Andy Ross | 6c283ca | 2019-08-16 22:09:30 -0700 | [diff] [blame] | 303 | #endif |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 304 | } |
Ioannis Glaropoulos | 7583696 | 2019-05-24 15:31:45 +0200 | [diff] [blame] | 305 | #endif /* CONFIG_MULTITHREADING */ |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 306 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 307 | /** |
| 308 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 309 | * @brief Initializes kernel data structures |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 310 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 311 | * This routine initializes various kernel data structures, including |
| 312 | * the init and idle threads and any architecture-specific initialization. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 313 | * |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 314 | * Note that all fields of "_kernel" are set to zero on entry, which may |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 315 | * be all the initialization many of them require. |
| 316 | * |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 317 | * @return initial stack pointer for the main thread |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 318 | */ |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 319 | #ifdef CONFIG_MULTITHREADING |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 320 | static char *prepare_multithreading(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 321 | { |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 322 | char *stack_ptr; |
| 323 | |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 324 | /* _kernel.ready_q is all zeroes */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 325 | z_sched_init(); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 326 | |
Andy Ross | 2724fd1 | 2018-01-29 14:55:20 -0800 | [diff] [blame] | 327 | #ifndef CONFIG_SMP |
Benjamin Walsh | 88b3691 | 2016-12-02 10:37:27 -0500 | [diff] [blame] | 328 | /* |
| 329 | * prime the cache with the main thread since: |
| 330 | * |
| 331 | * - the cache can never be NULL |
| 332 | * - the main thread will be the one to run first |
| 333 | * - no other thread is initialized yet and thus their priority fields |
| 334 | * contain garbage, which would prevent the cache loading algorithm |
| 335 | * to work as intended |
| 336 | */ |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 337 | _kernel.ready_q.cache = &z_main_thread; |
Andy Ross | 2724fd1 | 2018-01-29 14:55:20 -0800 | [diff] [blame] | 338 | #endif |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 339 | stack_ptr = z_setup_new_thread(&z_main_thread, z_main_stack, |
| 340 | CONFIG_MAIN_STACK_SIZE, bg_thread_main, |
| 341 | NULL, NULL, NULL, |
| 342 | CONFIG_MAIN_THREAD_PRIORITY, |
| 343 | K_ESSENTIAL, "main"); |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 344 | z_mark_thread_as_started(&z_main_thread); |
| 345 | z_ready_thread(&z_main_thread); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 346 | |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 347 | for (int i = 0; i < CONFIG_MP_NUM_CPUS; i++) { |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 348 | init_idle_thread(i); |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 349 | _kernel.cpus[i].idle_thread = &z_idle_threads[i]; |
| 350 | _kernel.cpus[i].id = i; |
| 351 | _kernel.cpus[i].irq_stack = |
Andrew Boie | 8b4b0d6 | 2020-04-25 15:19:23 -0700 | [diff] [blame] | 352 | (Z_KERNEL_STACK_BUFFER(z_interrupt_stacks[i]) + |
| 353 | K_KERNEL_STACK_SIZEOF(z_interrupt_stacks[i])); |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 354 | } |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 355 | |
| 356 | initialize_timeouts(); |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 357 | |
| 358 | return stack_ptr; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 359 | } |
| 360 | |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 361 | static FUNC_NORETURN void switch_to_main_thread(char *stack_ptr) |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 362 | { |
Benjamin Walsh | 296a234 | 2016-11-20 11:04:31 -0500 | [diff] [blame] | 363 | #ifdef CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 364 | arch_switch_to_main_thread(&z_main_thread, stack_ptr, bg_thread_main); |
Benjamin Walsh | 296a234 | 2016-11-20 11:04:31 -0500 | [diff] [blame] | 365 | #else |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 366 | ARG_UNUSED(stack_ptr); |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 367 | /* |
| 368 | * Context switch to main task (entry function is _main()): the |
| 369 | * current fake thread is not on a wait queue or ready queue, so it |
| 370 | * will never be rescheduled in. |
| 371 | */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 372 | z_swap_unlocked(); |
Benjamin Walsh | 296a234 | 2016-11-20 11:04:31 -0500 | [diff] [blame] | 373 | #endif |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 374 | CODE_UNREACHABLE; /* LCOV_EXCL_LINE */ |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 375 | } |
Anas Nashif | c0ea505 | 2019-01-30 09:58:41 -0500 | [diff] [blame] | 376 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 377 | |
Flavio Ceolin | 8ae822c | 2020-02-14 16:35:54 -0800 | [diff] [blame] | 378 | #if defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR) |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 379 | void z_early_boot_rand_get(uint8_t *buf, size_t length) |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 380 | { |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 381 | int n = sizeof(uint32_t); |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 382 | #ifdef CONFIG_ENTROPY_HAS_DRIVER |
Kumar Gala | 43a7d26 | 2020-04-06 09:59:03 -0500 | [diff] [blame] | 383 | struct device *entropy = device_get_binding(DT_CHOSEN_ZEPHYR_ENTROPY_LABEL); |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 384 | int rc; |
| 385 | |
| 386 | if (entropy == NULL) { |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 387 | goto sys_rand_fallback; |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 388 | } |
| 389 | |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 390 | /* Try to see if driver provides an ISR-specific API */ |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 391 | rc = entropy_get_entropy_isr(entropy, buf, length, ENTROPY_BUSYWAIT); |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 392 | if (rc == -ENOTSUP) { |
| 393 | /* Driver does not provide an ISR-specific API, assume it can |
| 394 | * be called from ISR context |
| 395 | */ |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 396 | rc = entropy_get_entropy(entropy, buf, length); |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | if (rc >= 0) { |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 400 | return; |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 403 | /* Fall through to fallback */ |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 404 | |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 405 | sys_rand_fallback: |
Mazen NEIFER | e2bbad9 | 2017-02-07 10:01:12 +0100 | [diff] [blame] | 406 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 407 | |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 408 | /* FIXME: this assumes sys_rand32_get() won't use any synchronization |
| 409 | * primitive, like semaphores or mutexes. It's too early in the boot |
| 410 | * process to use any of them. Ideally, only the path where entropy |
| 411 | * devices are available should be built, this is only a fallback for |
| 412 | * those devices without a HWRNG entropy driver. |
| 413 | */ |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 414 | |
| 415 | while (length > 0) { |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 416 | uint32_t rndbits; |
| 417 | uint8_t *p_rndbits = (uint8_t *)&rndbits; |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 418 | |
| 419 | rndbits = sys_rand32_get(); |
| 420 | |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 421 | if (length < sizeof(uint32_t)) { |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 422 | n = length; |
| 423 | } |
| 424 | |
| 425 | for (int i = 0; i < n; i++) { |
| 426 | *buf = *p_rndbits; |
| 427 | buf++; |
| 428 | p_rndbits++; |
| 429 | } |
| 430 | |
| 431 | length -= n; |
| 432 | } |
| 433 | } |
Flavio Ceolin | 8ae822c | 2020-02-14 16:35:54 -0800 | [diff] [blame] | 434 | /* defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR) */ |
| 435 | #endif |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 436 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 437 | /** |
| 438 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 439 | * @brief Initialize kernel |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 440 | * |
| 441 | * This routine is invoked when the system is ready to run C code. The |
| 442 | * processor must be running in 32-bit mode, and the BSS must have been |
| 443 | * cleared/zeroed. |
| 444 | * |
| 445 | * @return Does not return |
| 446 | */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 447 | FUNC_NORETURN void z_cstart(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 448 | { |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 449 | /* gcov hook needed to get the coverage report.*/ |
| 450 | gcov_static_init(); |
| 451 | |
Andrew Boie | 144f2cb | 2019-09-22 16:49:45 -0700 | [diff] [blame] | 452 | LOG_CORE_INIT(); |
Krzysztof Chruscinski | 6b01c89 | 2018-07-11 12:26:31 +0200 | [diff] [blame] | 453 | |
Andrew Boie | 982d5c8 | 2018-05-23 13:30:34 -0700 | [diff] [blame] | 454 | /* perform any architecture-specific initialization */ |
Andrew Boie | 4f77c2a | 2019-11-07 12:43:29 -0800 | [diff] [blame] | 455 | arch_kernel_init(); |
Andrew Boie | 982d5c8 | 2018-05-23 13:30:34 -0700 | [diff] [blame] | 456 | |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 457 | #if defined(CONFIG_MULTITHREADING) |
| 458 | /* Note: The z_ready_thread() call in prepare_multithreading() requires |
| 459 | * a dummy thread even if CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y |
| 460 | */ |
| 461 | struct k_thread dummy_thread; |
Andy Ross | 6d9106f | 2019-02-01 14:42:28 -0800 | [diff] [blame] | 462 | |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 463 | z_dummy_thread_init(&dummy_thread); |
Andy Ross | 6d9106f | 2019-02-01 14:42:28 -0800 | [diff] [blame] | 464 | #endif |
| 465 | |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 466 | /* perform basic hardware initialization */ |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 467 | z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_1); |
| 468 | z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_2); |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 469 | |
Mazen NEIFER | e2bbad9 | 2017-02-07 10:01:12 +0100 | [diff] [blame] | 470 | #ifdef CONFIG_STACK_CANARIES |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 471 | uintptr_t stack_guard; |
| 472 | |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 473 | z_early_boot_rand_get((uint8_t *)&stack_guard, sizeof(stack_guard)); |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 474 | __stack_chk_guard = stack_guard; |
| 475 | __stack_chk_guard <<= 8; |
| 476 | #endif /* CONFIG_STACK_CANARIES */ |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 477 | |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 478 | #ifdef CONFIG_MULTITHREADING |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 479 | switch_to_main_thread(prepare_multithreading()); |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 480 | #else |
Ioannis Glaropoulos | 60bd51a | 2020-08-03 11:11:19 +0200 | [diff] [blame^] | 481 | #ifdef ARCH_SWITCH_TO_MAIN_NO_MULTITHREADING |
| 482 | /* Custom ARCH-specific routine to switch to main() |
| 483 | * in the case of no multi-threading. |
| 484 | */ |
| 485 | ARCH_SWITCH_TO_MAIN_NO_MULTITHREADING(bg_thread_main, |
| 486 | NULL, NULL, NULL); |
| 487 | #else |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 488 | bg_thread_main(NULL, NULL, NULL); |
| 489 | |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 490 | /* LCOV_EXCL_START |
| 491 | * We've already dumped coverage data at this point. |
| 492 | */ |
Andy Ross | 8daafd4 | 2018-08-30 09:45:12 -0700 | [diff] [blame] | 493 | irq_lock(); |
Flavio Ceolin | b3d9202 | 2018-09-17 15:56:06 -0700 | [diff] [blame] | 494 | while (true) { |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 495 | } |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 496 | /* LCOV_EXCL_STOP */ |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 497 | #endif |
Ioannis Glaropoulos | 60bd51a | 2020-08-03 11:11:19 +0200 | [diff] [blame^] | 498 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 499 | |
| 500 | /* |
| 501 | * Compiler can't tell that the above routines won't return and issues |
| 502 | * a warning unless we explicitly tell it that control never gets this |
| 503 | * far. |
| 504 | */ |
| 505 | |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 506 | CODE_UNREACHABLE; /* LCOV_EXCL_LINE */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 507 | } |