blob: e7d5068a3a80ef17ac770b08e024332ec7e09bbb [file] [log] [blame]
Benjamin Walsh456c6da2016-09-02 18:55:39 -04001/*
2 * Copyright (c) 2010-2014 Wind River Systems, Inc.
3 *
David B. Kinderac74d8b2017-01-18 17:01:01 -08004 * SPDX-License-Identifier: Apache-2.0
Benjamin Walsh456c6da2016-09-02 18:55:39 -04005 */
6
7/**
8 * @file
Anas Nashifcb888e62016-12-18 09:42:55 -05009 * @brief Kernel initialization module
Benjamin Walsh456c6da2016-09-02 18:55:39 -040010 *
Anas Nashifdc3d73b2016-12-19 20:25:56 -050011 * This module contains routines that are used to initialize the kernel.
Benjamin Walsh456c6da2016-09-02 18:55:39 -040012 */
13
Andrew Boief1c373c2016-10-28 12:45:05 -070014#include <zephyr.h>
Benjamin Walshf6ca7de2016-11-08 10:36:50 -050015#include <offsets_short.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040016#include <kernel.h>
Anas Nashif9ab2a562019-06-26 10:33:49 -040017#include <sys/printk.h>
Anas Nashifefb8df52019-06-26 10:42:45 -040018#include <debug/stack.h>
Leandro Pereiraadce1d12017-10-13 15:45:02 -070019#include <random/rand32.h>
Anas Nashif397d29d2017-06-17 11:30:47 -040020#include <linker/sections.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040021#include <toolchain.h>
Benjamin Walshf6ca7de2016-11-08 10:36:50 -050022#include <kernel_structs.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040023#include <device.h>
24#include <init.h>
Anas Nashif397d29d2017-06-17 11:30:47 -040025#include <linker/linker-defs.h>
Benjamin Walshb4b108d2016-10-13 10:31:48 -040026#include <ksched.h>
Mahavir Jaina6366042016-12-02 21:45:49 +053027#include <version.h>
Mahavir Jainacea2412016-12-02 21:48:39 +053028#include <string.h>
Anas Nashifee9dd1a2019-06-26 10:33:41 -040029#include <sys/dlist.h>
Andy Ross245b54e2018-02-08 09:10:46 -080030#include <kernel_internal.h>
Andy Ross9c62cc62018-01-25 15:24:15 -080031#include <kswap.h>
Anas Nashif969f8f12019-06-25 15:53:49 -040032#include <drivers/entropy.h>
Krzysztof Chruscinski6b01c892018-07-11 12:26:31 +020033#include <logging/log_ctrl.h>
Anas Nashif73008b42020-02-06 09:14:51 -050034#include <tracing/tracing.h>
Flavio Ceolinb3d92022018-09-17 15:56:06 -070035#include <stdbool.h>
Anas Nashiffa1c6002019-06-26 10:38:42 -040036#include <debug/gcov.h>
Andrew Boie468efad2020-05-12 16:20:14 -070037#include <kswap.h>
Benjamin Walsh456c6da2016-09-02 18:55:39 -040038
Anas Nashif0a0c8c82018-09-17 06:58:09 -050039#define LOG_LEVEL CONFIG_KERNEL_LOG_LEVEL
40#include <logging/log.h>
Anas Nashif6d359df2019-06-04 13:42:17 -040041LOG_MODULE_REGISTER(os);
Anas Nashif57554052018-03-03 02:31:05 -060042
Benjamin Walsh456c6da2016-09-02 18:55:39 -040043/* boot banner items */
Anas Nashif42f45382019-03-26 12:01:44 -040044#if defined(CONFIG_MULTITHREADING) && defined(CONFIG_BOOT_DELAY) \
45 && CONFIG_BOOT_DELAY > 0
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -070046#define BOOT_DELAY_BANNER " (delayed boot " \
47 STRINGIFY(CONFIG_BOOT_DELAY) "ms)"
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -070048#else
49#define BOOT_DELAY_BANNER ""
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -070050#endif
Anas Nashifdaf77162018-04-09 21:53:26 -050051
Benjamin Walsh456c6da2016-09-02 18:55:39 -040052/* boot time measurement items */
53
54#ifdef CONFIG_BOOT_TIME_MEASUREMENT
Kumar Galaa1b77fd2020-05-27 11:26:57 -050055uint32_t __noinit z_timestamp_main; /* timestamp when main task starts */
56uint32_t __noinit z_timestamp_idle; /* timestamp when CPU goes idle */
Benjamin Walsh456c6da2016-09-02 18:55:39 -040057#endif
58
Benjamin Walsh456c6da2016-09-02 18:55:39 -040059/* init/main and idle threads */
Andrew Boiefe031612019-09-21 17:54:37 -070060K_THREAD_STACK_DEFINE(z_main_stack, CONFIG_MAIN_STACK_SIZE);
Andrew Boiefe031612019-09-21 17:54:37 -070061struct k_thread z_main_thread;
Andrew Boie80a0d9d2020-03-12 15:37:29 -070062
63#ifdef CONFIG_MULTITHREADING
64struct k_thread z_idle_threads[CONFIG_MP_NUM_CPUS];
Andrew Boie0c297462020-04-26 15:01:03 -070065static K_KERNEL_STACK_ARRAY_DEFINE(z_idle_stacks, CONFIG_MP_NUM_CPUS,
Andrew Boie80a0d9d2020-03-12 15:37:29 -070066 CONFIG_IDLE_STACK_SIZE);
67#endif /* CONFIG_MULTITHREADING */
Benjamin Walsh456c6da2016-09-02 18:55:39 -040068
69/*
70 * storage space for the interrupt stack
71 *
Anas Nashifdc3d73b2016-12-19 20:25:56 -050072 * 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 Walsh456c6da2016-09-02 18:55:39 -040076 */
Andrew Boie8b4b0d62020-04-25 15:19:23 -070077K_KERNEL_STACK_ARRAY_DEFINE(z_interrupt_stacks, CONFIG_MP_NUM_CPUS,
Andrew Boie80a0d9d2020-03-12 15:37:29 -070078 CONFIG_ISR_STACK_SIZE);
Andy Ross780ba232018-01-29 09:20:18 -080079
Benjamin Walsh1a5450b2016-10-06 15:04:23 -040080#ifdef CONFIG_SYS_CLOCK_EXISTS
Benjamin Walsh456c6da2016-09-02 18:55:39 -040081 #define initialize_timeouts() do { \
Benjamin Walshf6ca7de2016-11-08 10:36:50 -050082 sys_dlist_init(&_timeout_q); \
Flavio Ceolin6fdc56d2018-09-18 12:32:27 -070083 } while (false)
Benjamin Walsh456c6da2016-09-02 18:55:39 -040084#else
85 #define initialize_timeouts() do { } while ((0))
86#endif
87
Peter Mitsis96cb05c2016-09-15 12:37:58 -040088extern void idle(void *unused1, void *unused2, void *unused3);
89
Carles Cuficb0cf9f2017-01-10 10:57:38 +010090
Andrew Boiefe228a82019-06-11 12:49:32 -070091/* 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 Walsh456c6da2016-09-02 18:55:39 -040098/**
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 Flykt4344e272019-03-08 14:19:05 -0700106void z_bss_zero(void)
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400107{
Nicolas Pitredf0b49c2019-05-17 17:44:19 -0400108 (void)memset(__bss_start, 0, __bss_end - __bss_start);
Martí Bolívar6e8775f2020-05-11 11:56:08 -0700109#if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay)
Flavio Ceolinda49f2e2018-09-11 19:09:03 -0700110 (void)memset(&__ccm_bss_start, 0,
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500111 ((uint32_t) &__ccm_bss_end - (uint32_t) &__ccm_bss_start));
Erwin Rol1dc41d12017-10-05 01:22:32 +0200112#endif
Martí Bolívar6e8775f2020-05-11 11:56:08 -0700113#if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay)
Alexander Wachterb4c5f4b2019-07-03 14:19:29 +0200114 (void)memset(&__dtcm_bss_start, 0,
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500115 ((uint32_t) &__dtcm_bss_end - (uint32_t) &__dtcm_bss_start));
Alexander Wachterb4c5f4b2019-07-03 14:19:29 +0200116#endif
Adithya Baglody91c5b842018-11-13 16:57:45 +0530117#ifdef CONFIG_CODE_DATA_RELOCATION
118 extern void bss_zeroing_relocation(void);
119
120 bss_zeroing_relocation();
121#endif /* CONFIG_CODE_DATA_RELOCATION */
Adithya Baglody71e90f92018-08-29 16:44:16 +0530122#ifdef CONFIG_COVERAGE_GCOV
123 (void)memset(&__gcov_bss_start, 0,
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500124 ((uint32_t) &__gcov_bss_end - (uint32_t) &__gcov_bss_start));
Adithya Baglody71e90f92018-08-29 16:44:16 +0530125#endif
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400126}
127
Andrew Boie01100ea2019-02-21 15:02:22 -0800128#ifdef CONFIG_STACK_CANARIES
129extern volatile uintptr_t __stack_chk_guard;
130#endif /* CONFIG_STACK_CANARIES */
131
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400132
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 Flykt4344e272019-03-08 14:19:05 -0700142void z_data_copy(void)
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400143{
Flavio Ceolin66994232018-08-13 15:17:04 -0700144 (void)memcpy(&__data_ram_start, &__data_rom_start,
Nicolas Pitredf0b49c2019-05-17 17:44:19 -0400145 __data_ram_end - __data_ram_start);
Aurelien Jarno992f29a2019-02-10 11:05:51 +0100146#ifdef CONFIG_ARCH_HAS_RAMFUNC_SUPPORT
qianfan Zhaoe1cc6572018-09-27 14:14:17 +0800147 (void)memcpy(&_ramfunc_ram_start, &_ramfunc_rom_start,
Nicolas Pitredf0b49c2019-05-17 17:44:19 -0400148 (uintptr_t) &_ramfunc_ram_size);
Aurelien Jarno992f29a2019-02-10 11:05:51 +0100149#endif /* CONFIG_ARCH_HAS_RAMFUNC_SUPPORT */
Martí Bolívar6e8775f2020-05-11 11:56:08 -0700150#if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_ccm), okay)
Flavio Ceolin66994232018-08-13 15:17:04 -0700151 (void)memcpy(&__ccm_data_start, &__ccm_data_rom_start,
Nicolas Pitredf0b49c2019-05-17 17:44:19 -0400152 __ccm_data_end - __ccm_data_start);
Erwin Rol1dc41d12017-10-05 01:22:32 +0200153#endif
Martí Bolívar6e8775f2020-05-11 11:56:08 -0700154#if DT_NODE_HAS_STATUS(DT_CHOSEN(zephyr_dtcm), okay)
Alexander Wachterb4c5f4b2019-07-03 14:19:29 +0200155 (void)memcpy(&__dtcm_data_start, &__dtcm_data_rom_start,
156 __dtcm_data_end - __dtcm_data_start);
157#endif
Adithya Baglody91c5b842018-11-13 16:57:45 +0530158#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 Boie4ce652e2019-02-22 16:08:44 -0800163#ifdef CONFIG_USERSPACE
Andrew Boie01100ea2019-02-21 15:02:22 -0800164#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 Flykt4344e272019-03-08 14:19:05 -0700169 * value gets set later in z_cstart().
Andrew Boie01100ea2019-02-21 15:02:22 -0800170 */
171 uintptr_t guard_copy = __stack_chk_guard;
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500172 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 Boie01100ea2019-02-21 15:02:22 -0800175
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 Ceolin66994232018-08-13 15:17:04 -0700183 (void)memcpy(&_app_smem_start, &_app_smem_rom_start,
Nicolas Pitredf0b49c2019-05-17 17:44:19 -0400184 _app_smem_end - _app_smem_start);
Andrew Boie01100ea2019-02-21 15:02:22 -0800185#endif /* CONFIG_STACK_CANARIES */
Andrew Boie4ce652e2019-02-22 16:08:44 -0800186#endif /* CONFIG_USERSPACE */
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400187}
Andrew Boiefe228a82019-06-11 12:49:32 -0700188#endif /* CONFIG_XIP */
189
190/* LCOV_EXCL_STOP */
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400191
Peter Bigot74ef3952019-12-23 11:48:43 -0600192bool z_sys_post_kernel;
193
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400194/**
195 *
Leandro Pereiraa1ae8452018-03-06 15:08:55 -0800196 * @brief Mainline for kernel's background thread
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400197 *
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 Pereiraa1ae8452018-03-06 15:08:55 -0800203static void bg_thread_main(void *unused1, void *unused2, void *unused3)
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400204{
205 ARG_UNUSED(unused1);
206 ARG_UNUSED(unused2);
207 ARG_UNUSED(unused3);
208
Flavio Ceolinac146852018-11-01 17:42:07 -0700209#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 Bigot74ef3952019-12-23 11:48:43 -0600215 z_sys_post_kernel = true;
216
Tomasz Bursztyka8d7bb8f2020-03-09 11:02:20 +0100217 z_sys_init_run_level(_SYS_INIT_LEVEL_POST_KERNEL);
Andrew Boie538754c2018-05-23 15:25:23 -0700218#if CONFIG_STACK_POINTER_RANDOM
219 z_stack_adjust_initialized = 1;
220#endif
Anas Nashif42f45382019-03-26 12:01:44 -0400221 if (boot_delay > 0 && IS_ENABLED(CONFIG_MULTITHREADING)) {
Inaky Perez-Gonzalez1abd0642017-09-07 15:24:39 -0700222 printk("***** delaying boot " STRINGIFY(CONFIG_BOOT_DELAY)
223 "ms (per build configuration) *****\n");
Youvedeep Singh9644f672017-10-24 13:30:33 +0530224 k_busy_wait(CONFIG_BOOT_DELAY * USEC_PER_MSEC);
Inaky Perez-Gonzalez1abd0642017-09-07 15:24:39 -0700225 }
Anas Nashife4a9be92019-11-28 13:15:42 -0500226
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 Boie0b474ee2016-11-08 11:06:55 -0800236
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400237#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 Bigotc308f802020-05-08 09:28:44 -0500245 /* Final init level before app starts */
246 z_sys_init_run_level(_SYS_INIT_LEVEL_APPLICATION);
247
Patrik Flykt4344e272019-03-08 14:19:05 -0700248 z_init_static_threads();
Anas Nashif83088a22017-08-24 04:27:51 -0400249
Andy Rosseb258702018-04-12 12:10:10 -0700250#ifdef CONFIG_SMP
Andy Rossa12f2d62019-06-05 08:58:42 -0700251 z_smp_init();
Tomasz Bursztyka8d7bb8f2020-03-09 11:02:20 +0100252 z_sys_init_run_level(_SYS_INIT_LEVEL_SMP);
Andy Rosseb258702018-04-12 12:10:10 -0700253#endif
Inaky Perez-Gonzalezc51f73f2017-06-20 17:01:09 -0700254
Peter Mitsis5f8fa672016-10-27 15:19:49 -0400255#ifdef CONFIG_BOOT_TIME_MEASUREMENT
Andrew Boiee6654102019-09-21 16:55:55 -0700256 z_timestamp_main = k_cycle_get_32();
Peter Mitsis5f8fa672016-10-27 15:19:49 -0400257#endif
258
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400259 extern void main(void);
Andrew Boief1c373c2016-10-28 12:45:05 -0700260
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400261 main();
Allan Stephens073442e2016-11-09 07:46:56 -0600262
Andrew Boie8e053332019-06-11 12:58:16 -0700263 /* Mark nonessenrial since main() has no more work to do */
Andrew Boiefe031612019-09-21 17:54:37 -0700264 z_main_thread.base.user_options &= ~K_ESSENTIAL;
Andrew Boie8e053332019-06-11 12:58:16 -0700265
Anas Nashif471ffbe2020-01-30 08:44:10 -0500266#ifdef CONFIG_COVERAGE_DUMP
Adithya Baglody71e90f92018-08-29 16:44:16 +0530267 /* Dump coverage data once the main() has exited. */
268 gcov_coverage_dump();
Anas Nashif471ffbe2020-01-30 08:44:10 -0500269#endif
Andrew Boie8e053332019-06-11 12:58:16 -0700270} /* LCOV_EXCL_LINE ... because we just dumped final coverage data */
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400271
Andrew Boiefe228a82019-06-11 12:49:32 -0700272/* LCOV_EXCL_START */
273
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400274void __weak main(void)
275{
276 /* NOP default main() if the application does not provide one. */
Andrew Boie4f77c2a2019-11-07 12:43:29 -0800277 arch_nop();
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400278}
279
Andrew Boiefe228a82019-06-11 12:49:32 -0700280/* LCOV_EXCL_STOP */
281
Andy Ross780ba232018-01-29 09:20:18 -0800282#if defined(CONFIG_MULTITHREADING)
Andrew Boiec24673e2020-03-16 09:44:28 -0700283static void init_idle_thread(int i)
Andy Ross780ba232018-01-29 09:20:18 -0800284{
Andrew Boiec24673e2020-03-16 09:44:28 -0700285 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 Nashif9e3e7f62019-12-19 08:19:45 -0500296 z_setup_new_thread(thread, stack,
Andrew Boiefe031612019-09-21 17:54:37 -0700297 CONFIG_IDLE_STACK_SIZE, idle, NULL, NULL, NULL,
Andrew Boiec24673e2020-03-16 09:44:28 -0700298 K_LOWEST_THREAD_PRIO, K_ESSENTIAL, tname);
Anas Nashif9e3e7f62019-12-19 08:19:45 -0500299 z_mark_thread_as_started(thread);
Andy Ross6c283ca2019-08-16 22:09:30 -0700300
301#ifdef CONFIG_SMP
Anas Nashif9e3e7f62019-12-19 08:19:45 -0500302 thread->base.is_idle = 1U;
Andy Ross6c283ca2019-08-16 22:09:30 -0700303#endif
Andy Ross780ba232018-01-29 09:20:18 -0800304}
Ioannis Glaropoulos75836962019-05-24 15:31:45 +0200305#endif /* CONFIG_MULTITHREADING */
Andy Ross780ba232018-01-29 09:20:18 -0800306
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400307/**
308 *
Anas Nashifdc3d73b2016-12-19 20:25:56 -0500309 * @brief Initializes kernel data structures
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400310 *
Anas Nashifdc3d73b2016-12-19 20:25:56 -0500311 * This routine initializes various kernel data structures, including
312 * the init and idle threads and any architecture-specific initialization.
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400313 *
Benjamin Walshf6ca7de2016-11-08 10:36:50 -0500314 * Note that all fields of "_kernel" are set to zero on entry, which may
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400315 * be all the initialization many of them require.
316 *
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700317 * @return initial stack pointer for the main thread
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400318 */
Andy Ross3d146152018-06-13 10:51:42 -0700319#ifdef CONFIG_MULTITHREADING
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700320static char *prepare_multithreading(void)
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400321{
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700322 char *stack_ptr;
323
Benjamin Walshf6ca7de2016-11-08 10:36:50 -0500324 /* _kernel.ready_q is all zeroes */
Patrik Flykt4344e272019-03-08 14:19:05 -0700325 z_sched_init();
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400326
Andy Ross2724fd12018-01-29 14:55:20 -0800327#ifndef CONFIG_SMP
Benjamin Walsh88b36912016-12-02 10:37:27 -0500328 /*
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 Boiefe031612019-09-21 17:54:37 -0700337 _kernel.ready_q.cache = &z_main_thread;
Andy Ross2724fd12018-01-29 14:55:20 -0800338#endif
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700339 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 Boiefe031612019-09-21 17:54:37 -0700344 z_mark_thread_as_started(&z_main_thread);
345 z_ready_thread(&z_main_thread);
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400346
Andrew Boie80a0d9d2020-03-12 15:37:29 -0700347 for (int i = 0; i < CONFIG_MP_NUM_CPUS; i++) {
Andrew Boiec24673e2020-03-16 09:44:28 -0700348 init_idle_thread(i);
Andrew Boie80a0d9d2020-03-12 15:37:29 -0700349 _kernel.cpus[i].idle_thread = &z_idle_threads[i];
350 _kernel.cpus[i].id = i;
351 _kernel.cpus[i].irq_stack =
Andrew Boie8b4b0d62020-04-25 15:19:23 -0700352 (Z_KERNEL_STACK_BUFFER(z_interrupt_stacks[i]) +
353 K_KERNEL_STACK_SIZEOF(z_interrupt_stacks[i]));
Andrew Boie80a0d9d2020-03-12 15:37:29 -0700354 }
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400355
356 initialize_timeouts();
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700357
358 return stack_ptr;
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400359}
360
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700361static FUNC_NORETURN void switch_to_main_thread(char *stack_ptr)
Benjamin Walshc742d7e2016-10-05 17:50:54 -0400362{
Benjamin Walsh296a2342016-11-20 11:04:31 -0500363#ifdef CONFIG_ARCH_HAS_CUSTOM_SWAP_TO_MAIN
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700364 arch_switch_to_main_thread(&z_main_thread, stack_ptr, bg_thread_main);
Benjamin Walsh296a2342016-11-20 11:04:31 -0500365#else
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700366 ARG_UNUSED(stack_ptr);
Benjamin Walshc742d7e2016-10-05 17:50:54 -0400367 /*
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 Flykt4344e272019-03-08 14:19:05 -0700372 z_swap_unlocked();
Benjamin Walsh296a2342016-11-20 11:04:31 -0500373#endif
Andrew Boiec5164f32019-06-11 13:33:32 -0700374 CODE_UNREACHABLE; /* LCOV_EXCL_LINE */
Benjamin Walshc742d7e2016-10-05 17:50:54 -0400375}
Anas Nashifc0ea5052019-01-30 09:58:41 -0500376#endif /* CONFIG_MULTITHREADING */
Benjamin Walshc742d7e2016-10-05 17:50:54 -0400377
Flavio Ceolin8ae822c2020-02-14 16:35:54 -0800378#if defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR)
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500379void z_early_boot_rand_get(uint8_t *buf, size_t length)
Leandro Pereira389c3642018-05-23 13:38:52 -0700380{
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500381 int n = sizeof(uint32_t);
Leandro Pereira389c3642018-05-23 13:38:52 -0700382#ifdef CONFIG_ENTROPY_HAS_DRIVER
Kumar Gala43a7d262020-04-06 09:59:03 -0500383 struct device *entropy = device_get_binding(DT_CHOSEN_ZEPHYR_ENTROPY_LABEL);
Leandro Pereira389c3642018-05-23 13:38:52 -0700384 int rc;
385
386 if (entropy == NULL) {
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700387 goto sys_rand_fallback;
Leandro Pereira389c3642018-05-23 13:38:52 -0700388 }
389
Carles Cufib5464492018-05-24 20:12:23 +0200390 /* Try to see if driver provides an ISR-specific API */
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700391 rc = entropy_get_entropy_isr(entropy, buf, length, ENTROPY_BUSYWAIT);
Carles Cufib5464492018-05-24 20:12:23 +0200392 if (rc == -ENOTSUP) {
393 /* Driver does not provide an ISR-specific API, assume it can
394 * be called from ISR context
395 */
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700396 rc = entropy_get_entropy(entropy, buf, length);
Carles Cufib5464492018-05-24 20:12:23 +0200397 }
398
399 if (rc >= 0) {
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700400 return;
Leandro Pereira389c3642018-05-23 13:38:52 -0700401 }
402
Carles Cufib5464492018-05-24 20:12:23 +0200403 /* Fall through to fallback */
Leandro Pereira389c3642018-05-23 13:38:52 -0700404
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700405sys_rand_fallback:
Mazen NEIFERe2bbad92017-02-07 10:01:12 +0100406#endif
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400407
Leandro Pereira389c3642018-05-23 13:38:52 -0700408 /* 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 Ceolin394f66b2019-08-09 16:31:33 -0700414
415 while (length > 0) {
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500416 uint32_t rndbits;
417 uint8_t *p_rndbits = (uint8_t *)&rndbits;
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700418
419 rndbits = sys_rand32_get();
420
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500421 if (length < sizeof(uint32_t)) {
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700422 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 Ceolin8ae822c2020-02-14 16:35:54 -0800434/* defined(CONFIG_ENTROPY_HAS_DRIVER) || defined(CONFIG_TEST_RANDOM_GENERATOR) */
435#endif
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700436
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400437/**
438 *
Anas Nashifdc3d73b2016-12-19 20:25:56 -0500439 * @brief Initialize kernel
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400440 *
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 Flykt4344e272019-03-08 14:19:05 -0700447FUNC_NORETURN void z_cstart(void)
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400448{
Adithya Baglody71e90f92018-08-29 16:44:16 +0530449 /* gcov hook needed to get the coverage report.*/
450 gcov_static_init();
451
Andrew Boie144f2cb2019-09-22 16:49:45 -0700452 LOG_CORE_INIT();
Krzysztof Chruscinski6b01c892018-07-11 12:26:31 +0200453
Andrew Boie982d5c82018-05-23 13:30:34 -0700454 /* perform any architecture-specific initialization */
Andrew Boie4f77c2a2019-11-07 12:43:29 -0800455 arch_kernel_init();
Andrew Boie982d5c82018-05-23 13:30:34 -0700456
Andrew Boie468efad2020-05-12 16:20:14 -0700457#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 Ross6d9106f2019-02-01 14:42:28 -0800462
Andrew Boie468efad2020-05-12 16:20:14 -0700463 z_dummy_thread_init(&dummy_thread);
Andy Ross6d9106f2019-02-01 14:42:28 -0800464#endif
465
Andrew Boie0b474ee2016-11-08 11:06:55 -0800466 /* perform basic hardware initialization */
Tomasz Bursztyka8d7bb8f2020-03-09 11:02:20 +0100467 z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_1);
468 z_sys_init_run_level(_SYS_INIT_LEVEL_PRE_KERNEL_2);
Andrew Boie0b474ee2016-11-08 11:06:55 -0800469
Mazen NEIFERe2bbad92017-02-07 10:01:12 +0100470#ifdef CONFIG_STACK_CANARIES
Andrew Boie468efad2020-05-12 16:20:14 -0700471 uintptr_t stack_guard;
472
Kumar Galaa1b77fd2020-05-27 11:26:57 -0500473 z_early_boot_rand_get((uint8_t *)&stack_guard, sizeof(stack_guard));
Flavio Ceolin394f66b2019-08-09 16:31:33 -0700474 __stack_chk_guard = stack_guard;
475 __stack_chk_guard <<= 8;
476#endif /* CONFIG_STACK_CANARIES */
Leandro Pereira389c3642018-05-23 13:38:52 -0700477
Andy Ross3d146152018-06-13 10:51:42 -0700478#ifdef CONFIG_MULTITHREADING
Andrew Boiee4cc84a2020-04-24 11:29:47 -0700479 switch_to_main_thread(prepare_multithreading());
Andy Ross3d146152018-06-13 10:51:42 -0700480#else
Ioannis Glaropoulos60bd51a2020-08-03 11:11:19 +0200481#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 Ross3d146152018-06-13 10:51:42 -0700488 bg_thread_main(NULL, NULL, NULL);
489
Andrew Boiec5164f32019-06-11 13:33:32 -0700490 /* LCOV_EXCL_START
491 * We've already dumped coverage data at this point.
492 */
Andy Ross8daafd42018-08-30 09:45:12 -0700493 irq_lock();
Flavio Ceolinb3d92022018-09-17 15:56:06 -0700494 while (true) {
Andy Ross3d146152018-06-13 10:51:42 -0700495 }
Andrew Boiec5164f32019-06-11 13:33:32 -0700496 /* LCOV_EXCL_STOP */
Andy Ross3d146152018-06-13 10:51:42 -0700497#endif
Ioannis Glaropoulos60bd51a2020-08-03 11:11:19 +0200498#endif /* CONFIG_MULTITHREADING */
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400499
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 Boiec5164f32019-06-11 13:33:32 -0700506 CODE_UNREACHABLE; /* LCOV_EXCL_LINE */
Benjamin Walsh456c6da2016-09-02 18:55:39 -0400507}