source: mainline/kernel/generic/src/main/main.c@ 5663872

Last change on this file since 5663872 was 4760793, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 18 months ago

Add CPU_LOCAL alongside CPU and segregate fields that are only used locally

This makes it more clear which fields can be used without synchronization
and which need more care.

  • Property mode set to 100644
File size: 8.9 KB
Line 
1/*
2 * Copyright (c) 2001-2004 Jakub Jermar
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup kernel_generic
30 * @{
31 */
32
33/**
34 * @file
35 * @brief Main initialization kernel function for all processors.
36 *
37 * During kernel boot, all processors, after architecture dependent
38 * initialization, start executing code found in this file. After
39 * bringing up all subsystems, control is passed to scheduler().
40 *
41 * The bootstrap processor starts executing main_bsp() while
42 * the application processors start executing main_ap().
43 *
44 * @see scheduler()
45 * @see main_bsp()
46 * @see main_ap()
47 */
48
49#include <arch/asm.h>
50#include <debug.h>
51#include <context.h>
52#include <stdio.h>
53#include <panic.h>
54#include <assert.h>
55#include <config.h>
56#include <time/clock.h>
57#include <time/timeout.h>
58#include <proc/scheduler.h>
59#include <proc/thread.h>
60#include <proc/task.h>
61#include <main/kinit.h>
62#include <main/version.h>
63#include <console/kconsole.h>
64#include <console/console.h>
65#include <log.h>
66#include <cpu.h>
67#include <align.h>
68#include <interrupt.h>
69#include <str.h>
70#include <mm/frame.h>
71#include <mm/page.h>
72#include <genarch/mm/page_pt.h>
73#include <mm/km.h>
74#include <mm/tlb.h>
75#include <mm/as.h>
76#include <mm/slab.h>
77#include <mm/reserve.h>
78#include <synch/waitq.h>
79#include <synch/syswaitq.h>
80#include <arch/arch.h>
81#include <arch.h>
82#include <arch/faddr.h>
83#include <ipc/ipc.h>
84#include <macros.h>
85#include <smp/smp.h>
86#include <ddi/ddi.h>
87#include <main/main.h>
88#include <ipc/event.h>
89#include <sysinfo/sysinfo.h>
90#include <sysinfo/stats.h>
91#include <lib/ra.h>
92#include <cap/cap.h>
93
94/*
95 * Ensure [u]int*_t types are of correct size.
96 *
97 * Probably, this is not the best place for such tests
98 * but this file is compiled on all architectures.
99 */
100#define CHECK_INT_TYPE_(signness, size) \
101 static_assert(sizeof(signness##size##_t) * 8 == size, \
102 #signness #size "_t does not have " #size " bits");
103
104#define CHECK_INT_TYPE(size) \
105 CHECK_INT_TYPE_(int, size); \
106 CHECK_INT_TYPE_(uint, size)
107
108CHECK_INT_TYPE(8);
109CHECK_INT_TYPE(16);
110CHECK_INT_TYPE(32);
111CHECK_INT_TYPE(64);
112
113/** Global configuration structure. */
114config_t config = {
115 .identity_configured = false,
116 .non_identity_configured = false,
117 .physmem_end = 0
118};
119
120/** Boot arguments. */
121char bargs[CONFIG_BOOT_ARGUMENTS_BUFLEN] = { };
122
123/** Initial user-space tasks */
124init_t init = {
125 .cnt = 0
126};
127
128/** Boot allocations. */
129ballocs_t ballocs = {
130 .base = (uintptr_t) NULL,
131 .size = 0
132};
133
134static context_t ctx;
135
136// NOTE: All kernel stacks must be aligned to STACK_SIZE, see CURRENT.
137static const size_t bootstrap_stack_size = STACK_SIZE;
138static _Alignas(STACK_SIZE) uint8_t bootstrap_stack[STACK_SIZE];
139
140/* Just a convenient value for some assembly code. */
141uint8_t *const bootstrap_stack_top = bootstrap_stack + STACK_SIZE;
142
143/*
144 * These two functions prevent stack from underflowing during the
145 * kernel boot phase when SP is set to the very top of the reserved
146 * space. The stack could get corrupted by a fooled compiler-generated
147 * pop sequence otherwise.
148 */
149static void main_bsp_separated_stack(void);
150
151#ifdef CONFIG_SMP
152static void main_ap_separated_stack(void);
153#endif
154
155/** Main kernel routine for bootstrap CPU.
156 *
157 * The code here still runs on the boot stack, which knows nothing about
158 * preemption counts. Because of that, this function cannot directly call
159 * functions that disable or enable preemption (e.g. spinlock_lock()). The
160 * primary task of this function is to calculate address of a new stack and
161 * switch to it.
162 *
163 * Assuming interrupts_disable().
164 *
165 */
166_NO_TRACE void main_bsp(void)
167{
168 config.cpu_count = 1;
169 config.cpu_active = 1;
170
171 config.base = (uintptr_t) kernel_load_address;
172
173 config.kernel_size =
174 ALIGN_UP((uintptr_t) kdata_end - config.base, PAGE_SIZE);
175
176 context_save(&ctx);
177 context_set(&ctx, FADDR(main_bsp_separated_stack),
178 bootstrap_stack, bootstrap_stack_size);
179 context_restore(&ctx);
180 /* not reached */
181}
182
183/** Main kernel routine for bootstrap CPU using new stack.
184 *
185 * Second part of main_bsp().
186 *
187 */
188void main_bsp_separated_stack(void)
189{
190 /* Keep this the first thing. */
191 current_initialize(CURRENT);
192
193 version_print();
194
195 LOG("\nconfig.base=%p config.kernel_size=%zu",
196 (void *) config.base, config.kernel_size);
197
198#ifdef CONFIG_KCONSOLE
199 /*
200 * kconsole data structures must be initialized very early
201 * because other subsystems will register their respective
202 * commands.
203 */
204 kconsole_init();
205#endif
206
207 /*
208 * Exception handler initialization, before architecture
209 * starts adding its own handlers
210 */
211 exc_init();
212
213 /*
214 * Memory management subsystems initialization.
215 */
216 ARCH_OP(pre_mm_init);
217 km_identity_init();
218 frame_init();
219 slab_cache_init();
220 malloc_init();
221 ra_init();
222 sysinfo_init();
223 as_init();
224 page_init();
225 tlb_init();
226 km_non_identity_init();
227 ddi_init();
228 ARCH_OP(post_mm_init);
229 reserve_init();
230 ARCH_OP(pre_smp_init);
231 smp_init();
232
233 /* Slab must be initialized after we know the number of processors. */
234 slab_enable_cpucache();
235
236 uint64_t size;
237 const char *size_suffix;
238 bin_order_suffix(zones_total_size(), &size, &size_suffix, false);
239 printf("Detected %u CPU(s), %" PRIu64 " %s free memory\n",
240 config.cpu_count, size, size_suffix);
241
242 cpu_init();
243 calibrate_delay_loop();
244 ARCH_OP(post_cpu_init);
245
246 clock_counter_init();
247 timeout_init();
248 scheduler_init();
249 caps_init();
250 task_init();
251 thread_init();
252 sys_waitq_init();
253
254 sysinfo_set_item_data("boot_args", NULL, bargs, str_size(bargs) + 1);
255
256 if (init.cnt > 0) {
257 size_t i;
258 for (i = 0; i < init.cnt; i++)
259 LOG("init[%zu].addr=%p, init[%zu].size=%zu",
260 i, (void *) init.tasks[i].paddr, i, init.tasks[i].size);
261 } else
262 printf("No init binaries found.\n");
263
264 ipc_init();
265 event_init();
266 kio_init();
267 log_init();
268 stats_init();
269
270 /*
271 * Create kernel task.
272 */
273 task_t *kernel = task_create(AS_KERNEL, "kernel");
274 if (!kernel)
275 panic("Cannot create kernel task.");
276
277 /*
278 * Create the first thread.
279 */
280 thread_t *kinit_thread = thread_create(kinit, NULL, kernel,
281 THREAD_FLAG_UNCOUNTED, "kinit");
282 if (!kinit_thread)
283 panic("Cannot create kinit thread.");
284 thread_ready(kinit_thread);
285
286 /*
287 * This call to scheduler() will return to kinit,
288 * starting the thread of kernel threads.
289 */
290 scheduler();
291 /* not reached */
292}
293
294#ifdef CONFIG_SMP
295
296/** Main kernel routine for application CPUs.
297 *
298 * Executed by application processors, temporary stack
299 * is at ctx.sp which was set during BSP boot.
300 * This function passes control directly to
301 * main_ap_separated_stack().
302 *
303 * Assuming interrupts_disable()'d.
304 *
305 */
306void main_ap(void)
307{
308 /*
309 * Incrementing the active CPU counter will guarantee that the
310 * *_init() functions can find out that they need to
311 * do initialization for AP only.
312 */
313 config.cpu_active++;
314
315 /*
316 * The CURRENT structure is well defined because ctx.sp is used as stack.
317 */
318 current_initialize(CURRENT);
319
320 ARCH_OP(pre_mm_init);
321 frame_init();
322 page_init();
323 tlb_init();
324 ARCH_OP(post_mm_init);
325
326 cpu_init();
327 calibrate_delay_loop();
328 ARCH_OP(post_cpu_init);
329
330 current_copy(CURRENT, (current_t *) CPU_LOCAL->stack);
331
332 /*
333 * If we woke kmp up before we left the kernel stack, we could
334 * collide with another CPU coming up. To prevent this, we
335 * switch to this cpu's private stack prior to waking kmp up.
336 */
337 context_t ctx;
338 context_save(&ctx);
339 context_set(&ctx, FADDR(main_ap_separated_stack),
340 (uintptr_t) CPU_LOCAL->stack, STACK_SIZE);
341 context_restore(&ctx);
342 /* not reached */
343}
344
345/** Main kernel routine for application CPUs using new stack.
346 *
347 * Second part of main_ap().
348 *
349 */
350void main_ap_separated_stack(void)
351{
352 /*
353 * Configure timeouts for this cpu.
354 */
355 timeout_init();
356
357 semaphore_up(&ap_completion_semaphore);
358 scheduler();
359 /* not reached */
360}
361
362#endif /* CONFIG_SMP */
363
364/** @}
365 */
Note: See TracBrowser for help on using the repository browser.