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 | |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 14 | #include <offsets_short.h> |
Gerard Marull-Paretas | cffefc8 | 2022-05-06 11:04:23 +0200 | [diff] [blame] | 15 | #include <zephyr/kernel.h> |
| 16 | #include <zephyr/sys/printk.h> |
| 17 | #include <zephyr/debug/stack.h> |
| 18 | #include <zephyr/random/rand32.h> |
| 19 | #include <zephyr/linker/sections.h> |
| 20 | #include <zephyr/toolchain.h> |
| 21 | #include <zephyr/kernel_structs.h> |
| 22 | #include <zephyr/device.h> |
| 23 | #include <zephyr/init.h> |
| 24 | #include <zephyr/linker/linker-defs.h> |
Benjamin Walsh | b4b108d | 2016-10-13 10:31:48 -0400 | [diff] [blame] | 25 | #include <ksched.h> |
Mahavir Jain | acea241 | 2016-12-02 21:48:39 +0530 | [diff] [blame] | 26 | #include <string.h> |
Gerard Marull-Paretas | cffefc8 | 2022-05-06 11:04:23 +0200 | [diff] [blame] | 27 | #include <zephyr/sys/dlist.h> |
Andy Ross | 245b54e | 2018-02-08 09:10:46 -0800 | [diff] [blame] | 28 | #include <kernel_internal.h> |
Gerard Marull-Paretas | cffefc8 | 2022-05-06 11:04:23 +0200 | [diff] [blame] | 29 | #include <zephyr/drivers/entropy.h> |
| 30 | #include <zephyr/logging/log_ctrl.h> |
| 31 | #include <zephyr/tracing/tracing.h> |
Flavio Ceolin | b3d9202 | 2018-09-17 15:56:06 -0700 | [diff] [blame] | 32 | #include <stdbool.h> |
Gerard Marull-Paretas | cffefc8 | 2022-05-06 11:04:23 +0200 | [diff] [blame] | 33 | #include <zephyr/debug/gcov.h> |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 34 | #include <kswap.h> |
Gerard Marull-Paretas | cffefc8 | 2022-05-06 11:04:23 +0200 | [diff] [blame] | 35 | #include <zephyr/timing/timing.h> |
| 36 | #include <zephyr/logging/log.h> |
Krzysztof Chruscinski | 3ed8083 | 2020-11-26 19:32:34 +0100 | [diff] [blame] | 37 | LOG_MODULE_REGISTER(os, CONFIG_KERNEL_LOG_LEVEL); |
Anas Nashif | 5755405 | 2018-03-03 02:31:05 -0600 | [diff] [blame] | 38 | |
Krzysztof Chruscinski | 7dcff6e | 2021-04-16 15:16:00 +0200 | [diff] [blame] | 39 | /* the only struct z_kernel instance */ |
| 40 | struct z_kernel _kernel; |
| 41 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 42 | /* init/main and idle threads */ |
Daniel Leung | ebbfde9 | 2021-07-12 13:47:48 -0700 | [diff] [blame] | 43 | K_THREAD_PINNED_STACK_DEFINE(z_main_stack, CONFIG_MAIN_STACK_SIZE); |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 44 | struct k_thread z_main_thread; |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 45 | |
| 46 | #ifdef CONFIG_MULTITHREADING |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 47 | __pinned_bss |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 48 | struct k_thread z_idle_threads[CONFIG_MP_NUM_CPUS]; |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 49 | |
| 50 | static K_KERNEL_PINNED_STACK_ARRAY_DEFINE(z_idle_stacks, |
| 51 | CONFIG_MP_NUM_CPUS, |
| 52 | CONFIG_IDLE_STACK_SIZE); |
Andrew Boie | 80a0d9d | 2020-03-12 15:37:29 -0700 | [diff] [blame] | 53 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * storage space for the interrupt stack |
| 57 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 58 | * Note: This area is used as the system stack during kernel initialization, |
| 59 | * since the kernel hasn't yet set up its own stack areas. The dual purposing |
| 60 | * of this area is safe since interrupts are disabled until the kernel context |
| 61 | * switches to the init thread. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 62 | */ |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 63 | K_KERNEL_PINNED_STACK_ARRAY_DEFINE(z_interrupt_stacks, |
| 64 | CONFIG_MP_NUM_CPUS, |
| 65 | CONFIG_ISR_STACK_SIZE); |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 66 | |
Peter Mitsis | 96cb05c | 2016-09-15 12:37:58 -0400 | [diff] [blame] | 67 | extern void idle(void *unused1, void *unused2, void *unused3); |
| 68 | |
Carles Cufi | cb0cf9f | 2017-01-10 10:57:38 +0100 | [diff] [blame] | 69 | |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 70 | /* LCOV_EXCL_START |
| 71 | * |
| 72 | * This code is called so early in the boot process that code coverage |
| 73 | * doesn't work properly. In addition, not all arches call this code, |
| 74 | * some like x86 do this with optimized assembly |
| 75 | */ |
| 76 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 77 | /** |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 78 | * @brief equivalent of memset() for early boot usage |
| 79 | * |
| 80 | * Architectures that can't safely use the regular (optimized) memset very |
| 81 | * early during boot because e.g. hardware isn't yet sufficiently initialized |
| 82 | * may override this with their own safe implementation. |
| 83 | */ |
| 84 | __boot_func |
| 85 | void __weak z_early_memset(void *dst, int c, size_t n) |
| 86 | { |
| 87 | (void) memset(dst, c, n); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * @brief equivalent of memcpy() for early boot usage |
| 92 | * |
| 93 | * Architectures that can't safely use the regular (optimized) memcpy very |
| 94 | * early during boot because e.g. hardware isn't yet sufficiently initialized |
| 95 | * may override this with their own safe implementation. |
| 96 | */ |
| 97 | __boot_func |
| 98 | void __weak z_early_memcpy(void *dst, const void *src, size_t n) |
| 99 | { |
| 100 | (void) memcpy(dst, src, n); |
| 101 | } |
| 102 | |
| 103 | /** |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 104 | * @brief Clear BSS |
| 105 | * |
| 106 | * This routine clears the BSS region, so all bytes are 0. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 107 | */ |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 108 | __boot_func |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 109 | void z_bss_zero(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 110 | { |
Andy Ross | 5722da7 | 2022-08-09 17:55:14 -0700 | [diff] [blame^] | 111 | if (IS_ENABLED(CONFIG_ARCH_POSIX)) { |
| 112 | /* native_posix gets its memory cleared on entry by |
| 113 | * the host OS, and in any case the host clang/lld |
| 114 | * doesn't emit the __bss_end symbol this code expects |
| 115 | * to see |
| 116 | */ |
| 117 | return; |
| 118 | } |
| 119 | |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 120 | z_early_memset(__bss_start, 0, __bss_end - __bss_start); |
Martí Bolívar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 121 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay) |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 122 | z_early_memset(&__ccm_bss_start, 0, |
| 123 | (uintptr_t) &__ccm_bss_end |
| 124 | - (uintptr_t) &__ccm_bss_start); |
Erwin Rol | 1dc41d1 | 2017-10-05 01:22:32 +0200 | [diff] [blame] | 125 | #endif |
Martí Bolívar | 6e8775f | 2020-05-11 11:56:08 -0700 | [diff] [blame] | 126 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay) |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 127 | z_early_memset(&__dtcm_bss_start, 0, |
| 128 | (uintptr_t) &__dtcm_bss_end |
| 129 | - (uintptr_t) &__dtcm_bss_start); |
Alexander Wachter | b4c5f4b | 2019-07-03 14:19:29 +0200 | [diff] [blame] | 130 | #endif |
Immo Birnbaum | da28829 | 2022-01-21 12:38:30 +0100 | [diff] [blame] | 131 | #if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ocm), okay) |
Nicolas Pitre | 3617398 | 2022-02-22 00:00:52 -0500 | [diff] [blame] | 132 | z_early_memset(&__ocm_bss_start, 0, |
| 133 | (uintptr_t) &__ocm_bss_end |
| 134 | - (uintptr_t) &__ocm_bss_start); |
Immo Birnbaum | da28829 | 2022-01-21 12:38:30 +0100 | [diff] [blame] | 135 | #endif |
Adithya Baglody | 91c5b84 | 2018-11-13 16:57:45 +0530 | [diff] [blame] | 136 | #ifdef CONFIG_CODE_DATA_RELOCATION |
| 137 | extern void bss_zeroing_relocation(void); |
| 138 | |
| 139 | bss_zeroing_relocation(); |
| 140 | #endif /* CONFIG_CODE_DATA_RELOCATION */ |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 141 | #ifdef CONFIG_COVERAGE_GCOV |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 142 | z_early_memset(&__gcov_bss_start, 0, |
| 143 | ((uintptr_t) &__gcov_bss_end - (uintptr_t) &__gcov_bss_start)); |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 144 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 145 | } |
| 146 | |
Daniel Leung | d812728 | 2021-02-24 10:18:34 -0800 | [diff] [blame] | 147 | #ifdef CONFIG_LINKER_USE_BOOT_SECTION |
| 148 | /** |
| 149 | * @brief Clear BSS within the bot region |
| 150 | * |
| 151 | * This routine clears the BSS within the boot region. |
| 152 | * This is separate from z_bss_zero() as boot region may |
| 153 | * contain symbols required for the boot process before |
| 154 | * paging is initialized. |
| 155 | */ |
| 156 | __boot_func |
| 157 | void z_bss_zero_boot(void) |
| 158 | { |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 159 | z_early_memset(&lnkr_boot_bss_start, 0, |
| 160 | (uintptr_t)&lnkr_boot_bss_end |
| 161 | - (uintptr_t)&lnkr_boot_bss_start); |
Daniel Leung | d812728 | 2021-02-24 10:18:34 -0800 | [diff] [blame] | 162 | } |
| 163 | #endif /* CONFIG_LINKER_USE_BOOT_SECTION */ |
| 164 | |
Daniel Leung | 1310ad6 | 2021-02-23 13:33:38 -0800 | [diff] [blame] | 165 | #ifdef CONFIG_LINKER_USE_PINNED_SECTION |
| 166 | /** |
| 167 | * @brief Clear BSS within the pinned region |
| 168 | * |
| 169 | * This routine clears the BSS within the pinned region. |
| 170 | * This is separate from z_bss_zero() as pinned region may |
| 171 | * contain symbols required for the boot process before |
| 172 | * paging is initialized. |
| 173 | */ |
| 174 | #ifdef CONFIG_LINKER_USE_BOOT_SECTION |
| 175 | __boot_func |
| 176 | #else |
| 177 | __pinned_func |
| 178 | #endif |
| 179 | void z_bss_zero_pinned(void) |
| 180 | { |
Nicolas Pitre | 678b76e | 2022-02-10 13:54:49 -0500 | [diff] [blame] | 181 | z_early_memset(&lnkr_pinned_bss_start, 0, |
| 182 | (uintptr_t)&lnkr_pinned_bss_end |
| 183 | - (uintptr_t)&lnkr_pinned_bss_start); |
Daniel Leung | 1310ad6 | 2021-02-23 13:33:38 -0800 | [diff] [blame] | 184 | } |
| 185 | #endif /* CONFIG_LINKER_USE_PINNED_SECTION */ |
| 186 | |
Andrew Boie | 01100ea | 2019-02-21 15:02:22 -0800 | [diff] [blame] | 187 | #ifdef CONFIG_STACK_CANARIES |
| 188 | extern volatile uintptr_t __stack_chk_guard; |
| 189 | #endif /* CONFIG_STACK_CANARIES */ |
| 190 | |
Andrew Boie | fe228a8 | 2019-06-11 12:49:32 -0700 | [diff] [blame] | 191 | /* LCOV_EXCL_STOP */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 192 | |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 193 | __pinned_bss |
Peter Bigot | 74ef395 | 2019-12-23 11:48:43 -0600 | [diff] [blame] | 194 | bool z_sys_post_kernel; |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 195 | |
Anas Nashif | 4b59312 | 2020-08-27 09:08:40 -0400 | [diff] [blame] | 196 | extern void boot_banner(void); |
Peter Bigot | 74ef395 | 2019-12-23 11:48:43 -0600 | [diff] [blame] | 197 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 198 | /** |
Leandro Pereira | a1ae845 | 2018-03-06 15:08:55 -0800 | [diff] [blame] | 199 | * @brief Mainline for kernel's background thread |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 200 | * |
| 201 | * This routine completes kernel initialization by invoking the remaining |
| 202 | * init functions, then invokes application's main() routine. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 203 | */ |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 204 | __boot_func |
Leandro Pereira | a1ae845 | 2018-03-06 15:08:55 -0800 | [diff] [blame] | 205 | static void bg_thread_main(void *unused1, void *unused2, void *unused3) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 206 | { |
| 207 | ARG_UNUSED(unused1); |
| 208 | ARG_UNUSED(unused2); |
| 209 | ARG_UNUSED(unused3); |
| 210 | |
Andrew Boie | e35f179 | 2020-12-09 12:18:40 -0800 | [diff] [blame] | 211 | #ifdef CONFIG_MMU |
| 212 | /* Invoked here such that backing store or eviction algorithms may |
| 213 | * initialize kernel objects, and that all POST_KERNEL and later tasks |
| 214 | * may perform memory management tasks (except for z_phys_map() which |
| 215 | * is allowed at any time) |
| 216 | */ |
| 217 | z_mem_manage_init(); |
| 218 | #endif /* CONFIG_MMU */ |
Peter Bigot | 74ef395 | 2019-12-23 11:48:43 -0600 | [diff] [blame] | 219 | z_sys_post_kernel = true; |
| 220 | |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 221 | z_sys_init_run_level(_SYS_INIT_LEVEL_POST_KERNEL); |
Andrew Boie | 538754c | 2018-05-23 15:25:23 -0700 | [diff] [blame] | 222 | #if CONFIG_STACK_POINTER_RANDOM |
| 223 | z_stack_adjust_initialized = 1; |
| 224 | #endif |
Anas Nashif | 4b59312 | 2020-08-27 09:08:40 -0400 | [diff] [blame] | 225 | boot_banner(); |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 226 | |
David Palchak | b4a7f0f | 2022-06-07 15:25:37 -0700 | [diff] [blame] | 227 | #if defined(CONFIG_CPLUSPLUS) |
Evgeniy Paltsev | 497cb2e | 2021-04-26 16:15:49 +0300 | [diff] [blame] | 228 | void z_cpp_init_static(void); |
| 229 | z_cpp_init_static(); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 230 | #endif |
| 231 | |
Peter Bigot | c308f80 | 2020-05-08 09:28:44 -0500 | [diff] [blame] | 232 | /* Final init level before app starts */ |
| 233 | z_sys_init_run_level(_SYS_INIT_LEVEL_APPLICATION); |
| 234 | |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 235 | z_init_static_threads(); |
Anas Nashif | 83088a2 | 2017-08-24 04:27:51 -0400 | [diff] [blame] | 236 | |
Anas Nashif | 39f632e | 2020-12-07 13:15:42 -0500 | [diff] [blame] | 237 | #ifdef CONFIG_KERNEL_COHERENCE |
Daniel Leung | 079bc64 | 2021-02-02 16:12:15 -0800 | [diff] [blame] | 238 | __ASSERT_NO_MSG(arch_mem_coherent(&_kernel)); |
Andy Ross | f6d32ab | 2020-05-13 15:34:04 +0000 | [diff] [blame] | 239 | #endif |
| 240 | |
Andy Ross | eb25870 | 2018-04-12 12:10:10 -0700 | [diff] [blame] | 241 | #ifdef CONFIG_SMP |
Andy Ross | 2b210cb | 2022-01-17 11:56:54 -0800 | [diff] [blame] | 242 | if (!IS_ENABLED(CONFIG_SMP_BOOT_DELAY)) { |
| 243 | z_smp_init(); |
| 244 | } |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 245 | z_sys_init_run_level(_SYS_INIT_LEVEL_SMP); |
Andy Ross | eb25870 | 2018-04-12 12:10:10 -0700 | [diff] [blame] | 246 | #endif |
Inaky Perez-Gonzalez | c51f73f | 2017-06-20 17:01:09 -0700 | [diff] [blame] | 247 | |
Daniel Leung | e88afd2 | 2021-07-15 13:15:29 -0700 | [diff] [blame] | 248 | #ifdef CONFIG_MMU |
| 249 | z_mem_manage_boot_finish(); |
| 250 | #endif /* CONFIG_MMU */ |
| 251 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 252 | extern void main(void); |
Andrew Boie | f1c373c | 2016-10-28 12:45:05 -0700 | [diff] [blame] | 253 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 254 | main(); |
Allan Stephens | 073442e | 2016-11-09 07:46:56 -0600 | [diff] [blame] | 255 | |
Nazar Kazakov | 9713f0d | 2022-02-24 12:00:55 +0000 | [diff] [blame] | 256 | /* Mark nonessential since main() has no more work to do */ |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 257 | z_main_thread.base.user_options &= ~K_ESSENTIAL; |
Andrew Boie | 8e05333 | 2019-06-11 12:58:16 -0700 | [diff] [blame] | 258 | |
Anas Nashif | 471ffbe | 2020-01-30 08:44:10 -0500 | [diff] [blame] | 259 | #ifdef CONFIG_COVERAGE_DUMP |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 260 | /* Dump coverage data once the main() has exited. */ |
| 261 | gcov_coverage_dump(); |
Anas Nashif | 471ffbe | 2020-01-30 08:44:10 -0500 | [diff] [blame] | 262 | #endif |
Andrew Boie | 8e05333 | 2019-06-11 12:58:16 -0700 | [diff] [blame] | 263 | } /* LCOV_EXCL_LINE ... because we just dumped final coverage data */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 264 | |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 265 | #if defined(CONFIG_MULTITHREADING) |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 266 | __boot_func |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 267 | static void init_idle_thread(int i) |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 268 | { |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 269 | struct k_thread *thread = &z_idle_threads[i]; |
| 270 | k_thread_stack_t *stack = z_idle_stacks[i]; |
| 271 | |
| 272 | #ifdef CONFIG_THREAD_NAME |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 273 | |
Trond Einar Snekvik | 6224ecb | 2022-03-25 12:46:32 +0100 | [diff] [blame] | 274 | #if CONFIG_MP_NUM_CPUS > 1 |
| 275 | char tname[8]; |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 276 | snprintk(tname, 8, "idle %02d", i); |
| 277 | #else |
Trond Einar Snekvik | 6224ecb | 2022-03-25 12:46:32 +0100 | [diff] [blame] | 278 | char *tname = "idle"; |
| 279 | #endif |
| 280 | |
| 281 | #else |
Andrew Boie | c24673e | 2020-03-16 09:44:28 -0700 | [diff] [blame] | 282 | char *tname = NULL; |
| 283 | #endif /* CONFIG_THREAD_NAME */ |
| 284 | |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 285 | z_setup_new_thread(thread, stack, |
Andrew Boie | f5a7e1a | 2020-09-02 09:20:38 -0700 | [diff] [blame] | 286 | CONFIG_IDLE_STACK_SIZE, idle, &_kernel.cpus[i], |
Andy Ross | 851d14a | 2021-05-13 15:46:43 -0700 | [diff] [blame] | 287 | NULL, NULL, K_IDLE_PRIO, K_ESSENTIAL, |
Andrew Boie | f5a7e1a | 2020-09-02 09:20:38 -0700 | [diff] [blame] | 288 | tname); |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 289 | z_mark_thread_as_started(thread); |
Andy Ross | 6c283ca | 2019-08-16 22:09:30 -0700 | [diff] [blame] | 290 | |
| 291 | #ifdef CONFIG_SMP |
Anas Nashif | 9e3e7f6 | 2019-12-19 08:19:45 -0500 | [diff] [blame] | 292 | thread->base.is_idle = 1U; |
Andy Ross | 6c283ca | 2019-08-16 22:09:30 -0700 | [diff] [blame] | 293 | #endif |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 294 | } |
Andy Ross | 780ba23 | 2018-01-29 09:20:18 -0800 | [diff] [blame] | 295 | |
Andy Ross | 2b210cb | 2022-01-17 11:56:54 -0800 | [diff] [blame] | 296 | void z_init_cpu(int id) |
Andy Ross | c6d077e | 2021-08-18 06:28:11 -0700 | [diff] [blame] | 297 | { |
Andy Ross | 2b210cb | 2022-01-17 11:56:54 -0800 | [diff] [blame] | 298 | init_idle_thread(id); |
| 299 | _kernel.cpus[id].idle_thread = &z_idle_threads[id]; |
| 300 | _kernel.cpus[id].id = id; |
| 301 | _kernel.cpus[id].irq_stack = |
| 302 | (Z_KERNEL_STACK_BUFFER(z_interrupt_stacks[id]) + |
| 303 | K_KERNEL_STACK_SIZEOF(z_interrupt_stacks[id])); |
| 304 | #ifdef CONFIG_SCHED_THREAD_USAGE_ALL |
| 305 | _kernel.cpus[id].usage.track_usage = |
| 306 | CONFIG_SCHED_THREAD_USAGE_AUTO_ENABLE; |
| 307 | #endif |
Andy Ross | c6d077e | 2021-08-18 06:28:11 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 310 | /** |
| 311 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 312 | * @brief Initializes kernel data structures |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 313 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 314 | * This routine initializes various kernel data structures, including |
| 315 | * the init and idle threads and any architecture-specific initialization. |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 316 | * |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 317 | * 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] | 318 | * be all the initialization many of them require. |
| 319 | * |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 320 | * @return initial stack pointer for the main thread |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 321 | */ |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 322 | __boot_func |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 323 | static char *prepare_multithreading(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 324 | { |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 325 | char *stack_ptr; |
| 326 | |
Benjamin Walsh | f6ca7de | 2016-11-08 10:36:50 -0500 | [diff] [blame] | 327 | /* _kernel.ready_q is all zeroes */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 328 | z_sched_init(); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 329 | |
Andy Ross | 2724fd1 | 2018-01-29 14:55:20 -0800 | [diff] [blame] | 330 | #ifndef CONFIG_SMP |
Benjamin Walsh | 88b3691 | 2016-12-02 10:37:27 -0500 | [diff] [blame] | 331 | /* |
| 332 | * prime the cache with the main thread since: |
| 333 | * |
| 334 | * - the cache can never be NULL |
| 335 | * - the main thread will be the one to run first |
| 336 | * - no other thread is initialized yet and thus their priority fields |
| 337 | * contain garbage, which would prevent the cache loading algorithm |
| 338 | * to work as intended |
| 339 | */ |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 340 | _kernel.ready_q.cache = &z_main_thread; |
Andy Ross | 2724fd1 | 2018-01-29 14:55:20 -0800 | [diff] [blame] | 341 | #endif |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 342 | stack_ptr = z_setup_new_thread(&z_main_thread, z_main_stack, |
| 343 | CONFIG_MAIN_STACK_SIZE, bg_thread_main, |
| 344 | NULL, NULL, NULL, |
| 345 | CONFIG_MAIN_THREAD_PRIORITY, |
Ioannis Glaropoulos | 40aab32 | 2021-01-28 21:46:28 +0100 | [diff] [blame] | 346 | K_ESSENTIAL, "main"); |
Andrew Boie | fe03161 | 2019-09-21 17:54:37 -0700 | [diff] [blame] | 347 | z_mark_thread_as_started(&z_main_thread); |
| 348 | z_ready_thread(&z_main_thread); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 349 | |
Andy Ross | 2b210cb | 2022-01-17 11:56:54 -0800 | [diff] [blame] | 350 | z_init_cpu(0); |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 351 | |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 352 | return stack_ptr; |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 353 | } |
| 354 | |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 355 | __boot_func |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 356 | static FUNC_NORETURN void switch_to_main_thread(char *stack_ptr) |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 357 | { |
Benjamin Walsh | 296a234 | 2016-11-20 11:04:31 -0500 | [diff] [blame] | 358 | #ifdef CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 359 | 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] | 360 | #else |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 361 | ARG_UNUSED(stack_ptr); |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 362 | /* |
| 363 | * Context switch to main task (entry function is _main()): the |
| 364 | * current fake thread is not on a wait queue or ready queue, so it |
| 365 | * will never be rescheduled in. |
| 366 | */ |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 367 | z_swap_unlocked(); |
Benjamin Walsh | 296a234 | 2016-11-20 11:04:31 -0500 | [diff] [blame] | 368 | #endif |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 369 | CODE_UNREACHABLE; /* LCOV_EXCL_LINE */ |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 370 | } |
Anas Nashif | c0ea505 | 2019-01-30 09:58:41 -0500 | [diff] [blame] | 371 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | c742d7e | 2016-10-05 17:50:54 -0400 | [diff] [blame] | 372 | |
Flavio Ceolin | 8ae822c | 2020-02-14 16:35:54 -0800 | [diff] [blame] | 373 | #if defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR) |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 374 | __boot_func |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 375 | void z_early_boot_rand_get(uint8_t *buf, size_t length) |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 376 | { |
| 377 | #ifdef CONFIG_ENTROPY_HAS_DRIVER |
Gerard Marull-Paretas | 5573d8d | 2022-02-25 18:31:13 +0100 | [diff] [blame] | 378 | const struct device *entropy = DEVICE_DT_GET_OR_NULL(DT_CHOSEN(zephyr_entropy)); |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 379 | int rc; |
| 380 | |
Gerard Marull-Paretas | 5573d8d | 2022-02-25 18:31:13 +0100 | [diff] [blame] | 381 | if (!device_is_ready(entropy)) { |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 382 | goto sys_rand_fallback; |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 383 | } |
| 384 | |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 385 | /* Try to see if driver provides an ISR-specific API */ |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 386 | rc = entropy_get_entropy_isr(entropy, buf, length, ENTROPY_BUSYWAIT); |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 387 | if (rc == -ENOTSUP) { |
| 388 | /* Driver does not provide an ISR-specific API, assume it can |
| 389 | * be called from ISR context |
| 390 | */ |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 391 | rc = entropy_get_entropy(entropy, buf, length); |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | if (rc >= 0) { |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 395 | return; |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 396 | } |
| 397 | |
Carles Cufi | b546449 | 2018-05-24 20:12:23 +0200 | [diff] [blame] | 398 | /* Fall through to fallback */ |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 399 | |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 400 | sys_rand_fallback: |
Mazen NEIFER | e2bbad9 | 2017-02-07 10:01:12 +0100 | [diff] [blame] | 401 | #endif |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 402 | |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 403 | /* FIXME: this assumes sys_rand32_get() won't use any synchronization |
| 404 | * primitive, like semaphores or mutexes. It's too early in the boot |
| 405 | * process to use any of them. Ideally, only the path where entropy |
| 406 | * devices are available should be built, this is only a fallback for |
| 407 | * those devices without a HWRNG entropy driver. |
| 408 | */ |
Flavio Ceolin | ac079fc | 2022-03-09 12:07:57 -0800 | [diff] [blame] | 409 | sys_rand_get(buf, length); |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 410 | } |
Flavio Ceolin | 8ae822c | 2020-02-14 16:35:54 -0800 | [diff] [blame] | 411 | /* defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR) */ |
| 412 | #endif |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 413 | |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 414 | /** |
| 415 | * |
Anas Nashif | dc3d73b | 2016-12-19 20:25:56 -0500 | [diff] [blame] | 416 | * @brief Initialize kernel |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 417 | * |
| 418 | * This routine is invoked when the system is ready to run C code. The |
| 419 | * processor must be running in 32-bit mode, and the BSS must have been |
| 420 | * cleared/zeroed. |
| 421 | * |
| 422 | * @return Does not return |
| 423 | */ |
Daniel Leung | 660d147 | 2021-03-25 16:05:15 -0700 | [diff] [blame] | 424 | __boot_func |
Patrik Flykt | 4344e27 | 2019-03-08 14:19:05 -0700 | [diff] [blame] | 425 | FUNC_NORETURN void z_cstart(void) |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 426 | { |
Adithya Baglody | 71e90f9 | 2018-08-29 16:44:16 +0530 | [diff] [blame] | 427 | /* gcov hook needed to get the coverage report.*/ |
| 428 | gcov_static_init(); |
| 429 | |
Andrew Boie | 982d5c8 | 2018-05-23 13:30:34 -0700 | [diff] [blame] | 430 | /* perform any architecture-specific initialization */ |
Andrew Boie | 4f77c2a | 2019-11-07 12:43:29 -0800 | [diff] [blame] | 431 | arch_kernel_init(); |
Andrew Boie | 982d5c8 | 2018-05-23 13:30:34 -0700 | [diff] [blame] | 432 | |
Ederson de Souza | 75fd452 | 2022-01-25 10:47:05 -0800 | [diff] [blame] | 433 | LOG_CORE_INIT(); |
| 434 | |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 435 | #if defined(CONFIG_MULTITHREADING) |
| 436 | /* Note: The z_ready_thread() call in prepare_multithreading() requires |
| 437 | * a dummy thread even if CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN=y |
| 438 | */ |
| 439 | struct k_thread dummy_thread; |
Andy Ross | 6d9106f | 2019-02-01 14:42:28 -0800 | [diff] [blame] | 440 | |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 441 | z_dummy_thread_init(&dummy_thread); |
Andy Ross | 6d9106f | 2019-02-01 14:42:28 -0800 | [diff] [blame] | 442 | #endif |
Peter Bigot | 1cadd8b | 2021-02-02 10:07:18 -0600 | [diff] [blame] | 443 | /* do any necessary initialization of static devices */ |
| 444 | z_device_state_init(); |
| 445 | |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 446 | /* perform basic hardware initialization */ |
Tomasz Bursztyka | 8d7bb8f | 2020-03-09 11:02:20 +0100 | [diff] [blame] | 447 | z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_1); |
| 448 | z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_2); |
Andrew Boie | 0b474ee | 2016-11-08 11:06:55 -0800 | [diff] [blame] | 449 | |
Mazen NEIFER | e2bbad9 | 2017-02-07 10:01:12 +0100 | [diff] [blame] | 450 | #ifdef CONFIG_STACK_CANARIES |
Andrew Boie | 468efad | 2020-05-12 16:20:14 -0700 | [diff] [blame] | 451 | uintptr_t stack_guard; |
| 452 | |
Kumar Gala | a1b77fd | 2020-05-27 11:26:57 -0500 | [diff] [blame] | 453 | z_early_boot_rand_get((uint8_t *)&stack_guard, sizeof(stack_guard)); |
Flavio Ceolin | 394f66b | 2019-08-09 16:31:33 -0700 | [diff] [blame] | 454 | __stack_chk_guard = stack_guard; |
| 455 | __stack_chk_guard <<= 8; |
| 456 | #endif /* CONFIG_STACK_CANARIES */ |
Leandro Pereira | 389c364 | 2018-05-23 13:38:52 -0700 | [diff] [blame] | 457 | |
Daniel Leung | 1559712 | 2021-03-31 13:40:01 -0700 | [diff] [blame] | 458 | #ifdef CONFIG_TIMING_FUNCTIONS_NEED_AT_BOOT |
Daniel Leung | fd7a68d | 2020-10-14 12:17:12 -0700 | [diff] [blame] | 459 | timing_init(); |
| 460 | timing_start(); |
| 461 | #endif |
| 462 | |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 463 | #ifdef CONFIG_MULTITHREADING |
Andrew Boie | e4cc84a | 2020-04-24 11:29:47 -0700 | [diff] [blame] | 464 | switch_to_main_thread(prepare_multithreading()); |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 465 | #else |
Ioannis Glaropoulos | 60bd51a | 2020-08-03 11:11:19 +0200 | [diff] [blame] | 466 | #ifdef ARCH_SWITCH_TO_MAIN_NO_MULTITHREADING |
| 467 | /* Custom ARCH-specific routine to switch to main() |
| 468 | * in the case of no multi-threading. |
| 469 | */ |
| 470 | ARCH_SWITCH_TO_MAIN_NO_MULTITHREADING(bg_thread_main, |
| 471 | NULL, NULL, NULL); |
| 472 | #else |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 473 | bg_thread_main(NULL, NULL, NULL); |
| 474 | |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 475 | /* LCOV_EXCL_START |
| 476 | * We've already dumped coverage data at this point. |
| 477 | */ |
Andy Ross | 8daafd4 | 2018-08-30 09:45:12 -0700 | [diff] [blame] | 478 | irq_lock(); |
Flavio Ceolin | b3d9202 | 2018-09-17 15:56:06 -0700 | [diff] [blame] | 479 | while (true) { |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 480 | } |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 481 | /* LCOV_EXCL_STOP */ |
Andy Ross | 3d14615 | 2018-06-13 10:51:42 -0700 | [diff] [blame] | 482 | #endif |
Ioannis Glaropoulos | 60bd51a | 2020-08-03 11:11:19 +0200 | [diff] [blame] | 483 | #endif /* CONFIG_MULTITHREADING */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 484 | |
| 485 | /* |
| 486 | * Compiler can't tell that the above routines won't return and issues |
| 487 | * a warning unless we explicitly tell it that control never gets this |
| 488 | * far. |
| 489 | */ |
| 490 | |
Andrew Boie | c5164f3 | 2019-06-11 13:33:32 -0700 | [diff] [blame] | 491 | CODE_UNREACHABLE; /* LCOV_EXCL_LINE */ |
Benjamin Walsh | 456c6da | 2016-09-02 18:55:39 -0400 | [diff] [blame] | 492 | } |