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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since bb655dab was ce732e74, checked in by Jakub Jermar <jakub@…>, 8 years ago

Allocate capabilities from a dedicated slab cache

  • Property mode set to 100644
File size: 9.9 KB
RevLine 
[f761f1eb]1/*
[df4ed85]2 * Copyright (c) 2001-2004 Jakub Jermar
[f761f1eb]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
[8e3bf3e2]29/** @addtogroup main
[b45c443]30 * @{
31 */
32
[9179d0a]33/**
[b45c443]34 * @file
[13a638d]35 * @brief Main initialization kernel function for all processors.
[9179d0a]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
[f761f1eb]49#include <arch/asm.h>
[63e27ef]50#include <debug.h>
[d5d2a3f]51#include <context.h>
[f761f1eb]52#include <print.h>
[02a99d2]53#include <panic.h>
[63e27ef]54#include <assert.h>
[f761f1eb]55#include <config.h>
56#include <time/clock.h>
[b3f8fb7]57#include <time/timeout.h>
[f761f1eb]58#include <proc/scheduler.h>
59#include <proc/thread.h>
60#include <proc/task.h>
61#include <main/kinit.h>
[5fe5f1e]62#include <main/version.h>
[f4338d2]63#include <console/kconsole.h>
[5d67baa]64#include <console/console.h>
[91db0280]65#include <log.h>
[f761f1eb]66#include <cpu.h>
[e0cdb7b6]67#include <align.h>
[aace6624]68#include <interrupt.h>
[f761f1eb]69#include <mm/frame.h>
70#include <mm/page.h>
[6d7ffa65]71#include <genarch/mm/page_pt.h>
[622f409]72#include <mm/km.h>
[169587a]73#include <mm/tlb.h>
[20d50a1]74#include <mm/as.h>
[4e147a6]75#include <mm/slab.h>
[8d308b9]76#include <mm/reserve.h>
[f761f1eb]77#include <synch/waitq.h>
[9aa72b4]78#include <synch/futex.h>
[8a64e81e]79#include <synch/workqueue.h>
[2ee1ccc]80#include <smp/smp_call.h>
[393f631]81#include <arch/arch.h>
[f761f1eb]82#include <arch.h>
[f2ffad4]83#include <arch/faddr.h>
[6d9c49a]84#include <ipc/ipc.h>
[93165be]85#include <macros.h>
[2810636]86#include <adt/btree.h>
[5fe5f1e]87#include <smp/smp.h>
[f8ddd17]88#include <ddi/ddi.h>
[4b241f3]89#include <main/main.h>
[13a638d]90#include <ipc/event.h>
[d9fae235]91#include <sysinfo/sysinfo.h>
[9dae191e]92#include <sysinfo/stats.h>
[41deb2a]93#include <lib/ra.h>
[ce732e74]94#include <cap/cap.h>
[5fe5f1e]95
[328cc31]96/* Ensure [u]int*_t types are of correct size.
97 *
98 * Probably, this is not the best place for such tests
99 * but this file is compiled on all architectures.
100 */
101#define CHECK_INT_TYPE_(signness, size) \
[63e27ef]102 static_assert(sizeof(signness##size##_t) * 8 == size, \
[328cc31]103 #signness #size "_t does not have " #size " bits");
[9e40355e]104
[328cc31]105#define CHECK_INT_TYPE(size) \
[9e40355e]106 CHECK_INT_TYPE_(int, size); \
107 CHECK_INT_TYPE_(uint, size)
[328cc31]108
109CHECK_INT_TYPE(8);
110CHECK_INT_TYPE(16);
111CHECK_INT_TYPE(32);
112CHECK_INT_TYPE(64);
113
[e459f12]114/** Global configuration structure. */
[55896b6]115config_t config = {
116 .identity_configured = false,
[40c8c17]117 .non_identity_configured = false,
118 .physmem_end = 0
[55896b6]119};
[e459f12]120
[3b3faf51]121/** Boot arguments. */
122char bargs[CONFIG_BOOT_ARGUMENTS_BUFLEN] = {};
123
[e459f12]124/** Initial user-space tasks */
125init_t init = {
[6c441cf8]126 .cnt = 0
[e459f12]127};
[5fe5f1e]128
[61e90dd]129/** Boot allocations. */
130ballocs_t ballocs = {
[0b4a67a]131 .base = (uintptr_t) NULL,
[61e90dd]132 .size = 0
133};
134
[f761f1eb]135context_t ctx;
136
[c0855a0]137/** Lowest safe stack virtual address. */
[263bda2]138uintptr_t stack_safe = 0;
[deaa22f]139
[f761f1eb]140/*
141 * These two functions prevent stack from underflowing during the
142 * kernel boot phase when SP is set to the very top of the reserved
143 * space. The stack could get corrupted by a fooled compiler-generated
144 * pop sequence otherwise.
145 */
146static void main_bsp_separated_stack(void);
[263bda2]147
[80d2bdb]148#ifdef CONFIG_SMP
[f761f1eb]149static void main_ap_separated_stack(void);
[80d2bdb]150#endif
[f761f1eb]151
[7f0837c]152/** Main kernel routine for bootstrap CPU.
[673104e]153 *
[7a4202d]154 * The code here still runs on the boot stack, which knows nothing about
155 * preemption counts. Because of that, this function cannot directly call
156 * functions that disable or enable preemption (e.g. spinlock_lock()). The
157 * primary task of this function is to calculate address of a new stack and
158 * switch to it.
[673104e]159 *
[22f7769]160 * Assuming interrupts_disable().
[673104e]161 *
[f761f1eb]162 */
[7a0359b]163NO_TRACE void main_bsp(void)
[f761f1eb]164{
165 config.cpu_count = 1;
166 config.cpu_active = 1;
[d6e8529]167
[aed4eca]168 config.base = hardcoded_load_address;
[f8ddd17]169 config.kernel_size = ALIGN_UP(hardcoded_ktext_size +
[6f4495f5]170 hardcoded_kdata_size, PAGE_SIZE);
[26aafe8]171 config.stack_size = STACK_SIZE;
[deaa22f]172
173 /* Initialy the stack is placed just after the kernel */
174 config.stack_base = config.base + config.kernel_size;
[b6b576c]175
[deaa22f]176 /* Avoid placing stack on top of init */
[98000fb]177 size_t i;
[deaa22f]178 for (i = 0; i < init.cnt; i++) {
[32817cc]179 if (overlaps(KA2PA(config.stack_base), config.stack_size,
180 init.tasks[i].paddr, init.tasks[i].size)) {
181 /*
182 * The init task overlaps with the memory behind the
183 * kernel image so it must be in low memory and we can
184 * use PA2KA on the init task's physical address.
185 */
186 config.stack_base = ALIGN_UP(
187 PA2KA(init.tasks[i].paddr) + init.tasks[i].size,
188 config.stack_size);
189 }
[deaa22f]190 }
[263bda2]191
[61e90dd]192 /* Avoid placing stack on top of boot allocations. */
193 if (ballocs.size) {
[e2650d3]194 if (PA_OVERLAPS(config.stack_base, config.stack_size,
[6f4495f5]195 ballocs.base, ballocs.size))
[f8ddd17]196 config.stack_base = ALIGN_UP(ballocs.base +
[6f4495f5]197 ballocs.size, PAGE_SIZE);
[61e90dd]198 }
[b6b576c]199
[deaa22f]200 if (config.stack_base < stack_safe)
201 config.stack_base = ALIGN_UP(stack_safe, PAGE_SIZE);
[393f631]202
[be50915]203 context_save(&ctx);
[26aafe8]204 context_set(&ctx, FADDR(main_bsp_separated_stack),
205 config.stack_base, STACK_SIZE);
[be50915]206 context_restore(&ctx);
[f761f1eb]207 /* not reached */
208}
209
[7f0837c]210/** Main kernel routine for bootstrap CPU using new stack.
[673104e]211 *
212 * Second part of main_bsp().
213 *
214 */
[263bda2]215void main_bsp_separated_stack(void)
[fde6429]216{
[7a4202d]217 /* Keep this the first thing. */
218 the_initialize(THE);
[8f91729]219
[7a4202d]220 version_print();
221
[7e752b2]222 LOG("\nconfig.base=%p config.kernel_size=%zu"
223 "\nconfig.stack_base=%p config.stack_size=%zu",
[1caeb2d]224 (void *) config.base, config.kernel_size,
225 (void *) config.stack_base, config.stack_size);
[3ad953c]226
[76fca31]227#ifdef CONFIG_KCONSOLE
[ff3b3197]228 /*
229 * kconsole data structures must be initialized very early
230 * because other subsystems will register their respective
231 * commands.
232 */
[263bda2]233 kconsole_init();
[76fca31]234#endif
[b6b576c]235
[ef67bab]236 /*
237 * Exception handler initialization, before architecture
[0132630]238 * starts adding its own handlers
[aace6624]239 */
[263bda2]240 exc_init();
[3ad953c]241
[fc1e4f6]242 /*
243 * Memory management subsystems initialization.
[b84aaba]244 */
[36df4109]245 ARCH_OP(pre_mm_init);
[622f409]246 km_identity_init();
[263bda2]247 frame_init();
248 slab_cache_init();
[dabbe28]249 ra_init();
[263bda2]250 sysinfo_init();
251 btree_init();
252 as_init();
253 page_init();
254 tlb_init();
[622f409]255 km_non_identity_init();
[263bda2]256 ddi_init();
[36df4109]257 ARCH_OP(post_mm_init);
[8d308b9]258 reserve_init();
[36df4109]259 ARCH_OP(pre_smp_init);
[263bda2]260 smp_init();
[71eef11]261
[f8ddd17]262 /* Slab must be initialized after we know the number of processors. */
[263bda2]263 slab_enable_cpucache();
[71eef11]264
[933cadf]265 uint64_t size;
266 const char *size_suffix;
267 bin_order_suffix(zones_total_size(), &size, &size_suffix, false);
268 printf("Detected %u CPU(s), %" PRIu64 " %s free memory\n",
269 config.cpu_count, size, size_suffix);
[b84aaba]270
[263bda2]271 cpu_init();
272 calibrate_delay_loop();
[36df4109]273 ARCH_OP(post_cpu_init);
[49e6c6b4]274
[2ee1ccc]275 smp_call_init();
[8a64e81e]276 workq_global_init();
[263bda2]277 clock_counter_init();
278 timeout_init();
279 scheduler_init();
[ce732e74]280 caps_init();
[263bda2]281 task_init();
282 thread_init();
283 futex_init();
[3b3faf51]284
285 sysinfo_set_item_data("boot_args", NULL, bargs, str_size(bargs) + 1);
286
[c06eb06]287 if (init.cnt > 0) {
[98000fb]288 size_t i;
[c06eb06]289 for (i = 0; i < init.cnt; i++)
[7e752b2]290 LOG("init[%zu].addr=%p, init[%zu].size=%zu",
[edd7c63c]291 i, (void *) init.tasks[i].paddr, i, init.tasks[i].size);
[c06eb06]292 } else
[ae5aa90]293 printf("No init binaries found.\n");
[6d9c49a]294
[263bda2]295 ipc_init();
296 event_init();
[6fa9a99d]297 kio_init();
[91db0280]298 log_init();
[263bda2]299 stats_init();
[3ad953c]300
[f761f1eb]301 /*
302 * Create kernel task.
303 */
[b84aaba]304 task_t *kernel = task_create(AS_KERNEL, "kernel");
305 if (!kernel)
[f651e80]306 panic("Cannot create kernel task.");
[6f8a426]307
[f761f1eb]308 /*
309 * Create the first thread.
310 */
[6eef3c4]311 thread_t *kinit_thread = thread_create(kinit, NULL, kernel,
312 THREAD_FLAG_UNCOUNTED, "kinit");
[b84aaba]313 if (!kinit_thread)
[f651e80]314 panic("Cannot create kinit thread.");
[263bda2]315 thread_ready(kinit_thread);
[6f8a426]316
[f761f1eb]317 /*
318 * This call to scheduler() will return to kinit,
319 * starting the thread of kernel threads.
320 */
321 scheduler();
322 /* not reached */
323}
324
[5f85c91]325#ifdef CONFIG_SMP
[263bda2]326
[7f0837c]327/** Main kernel routine for application CPUs.
[673104e]328 *
329 * Executed by application processors, temporary stack
[26678e5]330 * is at ctx.sp which was set during BSP boot.
[5fe5f1e]331 * This function passes control directly to
332 * main_ap_separated_stack().
[673104e]333 *
[22f7769]334 * Assuming interrupts_disable()'d.
[673104e]335 *
[f761f1eb]336 */
337void main_ap(void)
338{
339 /*
340 * Incrementing the active CPU counter will guarantee that the
[26678e5]341 * *_init() functions can find out that they need to
342 * do initialization for AP only.
[f761f1eb]343 */
344 config.cpu_active++;
[263bda2]345
[7ce9284]346 /*
347 * The THE structure is well defined because ctx.sp is used as stack.
348 */
349 the_initialize(THE);
[c0b45fa]350
[36df4109]351 ARCH_OP(pre_mm_init);
[f761f1eb]352 frame_init();
353 page_init();
[ce031f0]354 tlb_init();
[36df4109]355 ARCH_OP(post_mm_init);
[c0b45fa]356
[f761f1eb]357 cpu_init();
358 calibrate_delay_loop();
[36df4109]359 ARCH_OP(post_cpu_init);
[263bda2]360
[7ce9284]361 the_copy(THE, (the_t *) CPU->stack);
[263bda2]362
[f761f1eb]363 /*
364 * If we woke kmp up before we left the kernel stack, we could
365 * collide with another CPU coming up. To prevent this, we
366 * switch to this cpu's private stack prior to waking kmp up.
367 */
[b24786a3]368 context_save(&CPU->saved_context);
[f8ddd17]369 context_set(&CPU->saved_context, FADDR(main_ap_separated_stack),
[26aafe8]370 (uintptr_t) CPU->stack, STACK_SIZE);
[be50915]371 context_restore(&CPU->saved_context);
[f761f1eb]372 /* not reached */
373}
374
[7f0837c]375/** Main kernel routine for application CPUs using new stack.
[673104e]376 *
377 * Second part of main_ap().
378 *
379 */
[f761f1eb]380void main_ap_separated_stack(void)
381{
[2ee1ccc]382 smp_call_init();
383
[f761f1eb]384 /*
385 * Configure timeouts for this cpu.
386 */
387 timeout_init();
[263bda2]388
[f761f1eb]389 waitq_wakeup(&ap_completion_wq, WAKEUP_FIRST);
390 scheduler();
391 /* not reached */
392}
[263bda2]393
[5f85c91]394#endif /* CONFIG_SMP */
[b45c443]395
[8e3bf3e2]396/** @}
[b45c443]397 */
Note: See TracBrowser for help on using the repository browser.