source: mainline/kernel/generic/src/main/main.c@ 86b3ae98

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 86b3ae98 was 7c3fb9b, checked in by Jiri Svoboda <jiri@…>, 8 years ago

Fix block comment formatting (ccheck).

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