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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since d59718e was d59718e, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

Move stack to always be after all boot allocations

This works around an issue on pcc32.
Since this is not a proper solution and I've so far been unable
to determine root cause, I'm also opening a ticket to track it.

  • Property mode set to 100644
File size: 9.6 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 <print.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/futex.h>
80#include <synch/workqueue.h>
81#include <smp/smp_call.h>
82#include <arch/arch.h>
83#include <arch.h>
84#include <arch/faddr.h>
85#include <ipc/ipc.h>
86#include <macros.h>
87#include <adt/btree.h>
88#include <smp/smp.h>
89#include <ddi/ddi.h>
90#include <main/main.h>
91#include <ipc/event.h>
92#include <sysinfo/sysinfo.h>
93#include <sysinfo/stats.h>
94#include <lib/ra.h>
95#include <cap/cap.h>
96
97/*
98 * Ensure [u]int*_t types are of correct size.
99 *
100 * Probably, this is not the best place for such tests
101 * but this file is compiled on all architectures.
102 */
103#define CHECK_INT_TYPE_(signness, size) \
104 static_assert(sizeof(signness##size##_t) * 8 == size, \
105 #signness #size "_t does not have " #size " bits");
106
107#define CHECK_INT_TYPE(size) \
108 CHECK_INT_TYPE_(int, size); \
109 CHECK_INT_TYPE_(uint, size)
110
111CHECK_INT_TYPE(8);
112CHECK_INT_TYPE(16);
113CHECK_INT_TYPE(32);
114CHECK_INT_TYPE(64);
115
116/** Global configuration structure. */
117config_t config = {
118 .identity_configured = false,
119 .non_identity_configured = false,
120 .physmem_end = 0
121};
122
123/** Boot arguments. */
124char bargs[CONFIG_BOOT_ARGUMENTS_BUFLEN] = { };
125
126/** Initial user-space tasks */
127init_t init = {
128 .cnt = 0
129};
130
131/** Boot allocations. */
132ballocs_t ballocs = {
133 .base = (uintptr_t) NULL,
134 .size = 0
135};
136
137context_t ctx;
138
139/** Lowest safe stack virtual address. */
140uintptr_t stack_safe = 0;
141
142/*
143 * These two functions prevent stack from underflowing during the
144 * kernel boot phase when SP is set to the very top of the reserved
145 * space. The stack could get corrupted by a fooled compiler-generated
146 * pop sequence otherwise.
147 */
148static void main_bsp_separated_stack(void);
149
150#ifdef CONFIG_SMP
151static void main_ap_separated_stack(void);
152#endif
153
154/** Main kernel routine for bootstrap CPU.
155 *
156 * The code here still runs on the boot stack, which knows nothing about
157 * preemption counts. Because of that, this function cannot directly call
158 * functions that disable or enable preemption (e.g. spinlock_lock()). The
159 * primary task of this function is to calculate address of a new stack and
160 * switch to it.
161 *
162 * Assuming interrupts_disable().
163 *
164 */
165NO_TRACE void main_bsp(void)
166{
167 config.cpu_count = 1;
168 config.cpu_active = 1;
169
170 config.base = (uintptr_t) kernel_load_address;
171
172 config.kernel_size =
173 ALIGN_UP((uintptr_t) kdata_end - config.base, PAGE_SIZE);
174
175 /* Place the stack after the kernel, init and ballocs. */
176 config.stack_base = config.base + config.kernel_size;
177 config.stack_size = STACK_SIZE;
178
179 /* Avoid placing stack on top of init */
180 size_t i;
181 for (i = 0; i < init.cnt; i++) {
182 uintptr_t p = init.tasks[i].paddr + init.tasks[i].size;
183 uintptr_t bottom = PA2KA(ALIGN_UP(p, PAGE_SIZE));
184
185 if (config.stack_base < bottom)
186 config.stack_base = bottom;
187 }
188
189 /* Avoid placing stack on top of boot allocations. */
190 if (ballocs.size) {
191 uintptr_t bottom =
192 ALIGN_UP(ballocs.base + ballocs.size, PAGE_SIZE);
193 if (config.stack_base < bottom)
194 config.stack_base = bottom;
195 }
196
197 if (config.stack_base < stack_safe)
198 config.stack_base = ALIGN_UP(stack_safe, PAGE_SIZE);
199
200 context_save(&ctx);
201 context_set(&ctx, FADDR(main_bsp_separated_stack),
202 config.stack_base, STACK_SIZE);
203 context_restore(&ctx);
204 /* not reached */
205}
206
207/** Main kernel routine for bootstrap CPU using new stack.
208 *
209 * Second part of main_bsp().
210 *
211 */
212void main_bsp_separated_stack(void)
213{
214 /* Keep this the first thing. */
215 the_initialize(THE);
216
217 version_print();
218
219 LOG("\nconfig.base=%p config.kernel_size=%zu"
220 "\nconfig.stack_base=%p config.stack_size=%zu",
221 (void *) config.base, config.kernel_size,
222 (void *) config.stack_base, config.stack_size);
223
224#ifdef CONFIG_KCONSOLE
225 /*
226 * kconsole data structures must be initialized very early
227 * because other subsystems will register their respective
228 * commands.
229 */
230 kconsole_init();
231#endif
232
233 /*
234 * Exception handler initialization, before architecture
235 * starts adding its own handlers
236 */
237 exc_init();
238
239 /*
240 * Memory management subsystems initialization.
241 */
242 ARCH_OP(pre_mm_init);
243 km_identity_init();
244 frame_init();
245 slab_cache_init();
246 ra_init();
247 sysinfo_init();
248 btree_init();
249 as_init();
250 page_init();
251 tlb_init();
252 km_non_identity_init();
253 ddi_init();
254 ARCH_OP(post_mm_init);
255 reserve_init();
256 ARCH_OP(pre_smp_init);
257 smp_init();
258
259 /* Slab must be initialized after we know the number of processors. */
260 slab_enable_cpucache();
261
262 uint64_t size;
263 const char *size_suffix;
264 bin_order_suffix(zones_total_size(), &size, &size_suffix, false);
265 printf("Detected %u CPU(s), %" PRIu64 " %s free memory\n",
266 config.cpu_count, size, size_suffix);
267
268 cpu_init();
269 calibrate_delay_loop();
270 ARCH_OP(post_cpu_init);
271
272 smp_call_init();
273 workq_global_init();
274 clock_counter_init();
275 timeout_init();
276 scheduler_init();
277 caps_init();
278 task_init();
279 thread_init();
280 futex_init();
281
282 sysinfo_set_item_data("boot_args", NULL, bargs, str_size(bargs) + 1);
283
284 if (init.cnt > 0) {
285 size_t i;
286 for (i = 0; i < init.cnt; i++)
287 LOG("init[%zu].addr=%p, init[%zu].size=%zu",
288 i, (void *) init.tasks[i].paddr, i, init.tasks[i].size);
289 } else
290 printf("No init binaries found.\n");
291
292 ipc_init();
293 event_init();
294 kio_init();
295 log_init();
296 stats_init();
297
298 /*
299 * Create kernel task.
300 */
301 task_t *kernel = task_create(AS_KERNEL, "kernel");
302 if (!kernel)
303 panic("Cannot create kernel task.");
304
305 /*
306 * Create the first thread.
307 */
308 thread_t *kinit_thread = thread_create(kinit, NULL, kernel,
309 THREAD_FLAG_UNCOUNTED, "kinit");
310 if (!kinit_thread)
311 panic("Cannot create kinit thread.");
312 thread_ready(kinit_thread);
313
314 /*
315 * This call to scheduler() will return to kinit,
316 * starting the thread of kernel threads.
317 */
318 scheduler();
319 /* not reached */
320}
321
322#ifdef CONFIG_SMP
323
324/** Main kernel routine for application CPUs.
325 *
326 * Executed by application processors, temporary stack
327 * is at ctx.sp which was set during BSP boot.
328 * This function passes control directly to
329 * main_ap_separated_stack().
330 *
331 * Assuming interrupts_disable()'d.
332 *
333 */
334void main_ap(void)
335{
336 /*
337 * Incrementing the active CPU counter will guarantee that the
338 * *_init() functions can find out that they need to
339 * do initialization for AP only.
340 */
341 config.cpu_active++;
342
343 /*
344 * The THE structure is well defined because ctx.sp is used as stack.
345 */
346 the_initialize(THE);
347
348 ARCH_OP(pre_mm_init);
349 frame_init();
350 page_init();
351 tlb_init();
352 ARCH_OP(post_mm_init);
353
354 cpu_init();
355 calibrate_delay_loop();
356 ARCH_OP(post_cpu_init);
357
358 the_copy(THE, (the_t *) CPU->stack);
359
360 /*
361 * If we woke kmp up before we left the kernel stack, we could
362 * collide with another CPU coming up. To prevent this, we
363 * switch to this cpu's private stack prior to waking kmp up.
364 */
365 context_save(&CPU->saved_context);
366 context_set(&CPU->saved_context, FADDR(main_ap_separated_stack),
367 (uintptr_t) CPU->stack, STACK_SIZE);
368 context_restore(&CPU->saved_context);
369 /* not reached */
370}
371
372/** Main kernel routine for application CPUs using new stack.
373 *
374 * Second part of main_ap().
375 *
376 */
377void main_ap_separated_stack(void)
378{
379 smp_call_init();
380
381 /*
382 * Configure timeouts for this cpu.
383 */
384 timeout_init();
385
386 waitq_wakeup(&ap_completion_wq, WAKEUP_FIRST);
387 scheduler();
388 /* not reached */
389}
390
391#endif /* CONFIG_SMP */
392
393/** @}
394 */
Note: See TracBrowser for help on using the repository browser.