[f761f1eb] | 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 | #include <arch/asm.h>
|
---|
[d5d2a3f] | 30 | #include <context.h>
|
---|
[f761f1eb] | 31 | #include <print.h>
|
---|
[02a99d2] | 32 | #include <panic.h>
|
---|
[940cac0] | 33 | #include <debug.h>
|
---|
[f761f1eb] | 34 | #include <config.h>
|
---|
| 35 | #include <time/clock.h>
|
---|
| 36 | #include <proc/scheduler.h>
|
---|
| 37 | #include <proc/thread.h>
|
---|
| 38 | #include <proc/task.h>
|
---|
| 39 | #include <main/kinit.h>
|
---|
[f4338d2] | 40 | #include <console/kconsole.h>
|
---|
[f761f1eb] | 41 | #include <cpu.h>
|
---|
[e0cdb7b6] | 42 | #include <align.h>
|
---|
[aace6624] | 43 | #include <interrupt.h>
|
---|
[f761f1eb] | 44 |
|
---|
[5f85c91] | 45 | #ifdef CONFIG_SMP
|
---|
[397c77f] | 46 | #include <arch/smp/apic.h>
|
---|
[ed0dd65] | 47 | #include <arch/smp/mps.h>
|
---|
[5f85c91] | 48 | #endif /* CONFIG_SMP */
|
---|
[f761f1eb] | 49 |
|
---|
[ed0dd65] | 50 | #include <smp/smp.h>
|
---|
| 51 |
|
---|
[a55f97f] | 52 | #include <arch/mm/memory_init.h>
|
---|
[4841104] | 53 | #include <mm/heap.h>
|
---|
[f761f1eb] | 54 | #include <mm/frame.h>
|
---|
| 55 | #include <mm/page.h>
|
---|
[169587a] | 56 | #include <mm/tlb.h>
|
---|
[4841104] | 57 | #include <mm/vm.h>
|
---|
| 58 |
|
---|
[f761f1eb] | 59 | #include <synch/waitq.h>
|
---|
| 60 |
|
---|
[393f631] | 61 | #include <arch/arch.h>
|
---|
[f761f1eb] | 62 | #include <arch.h>
|
---|
[f2ffad4] | 63 | #include <arch/faddr.h>
|
---|
[f761f1eb] | 64 |
|
---|
[ac5d02b] | 65 | #include <typedefs.h>
|
---|
| 66 |
|
---|
[ba22dcb] | 67 | char *project = "SPARTAN kernel";
|
---|
[940cac0] | 68 | char *copyright = "Copyright (C) 2001-2005 HelenOS project";
|
---|
| 69 | char *release = RELEASE;
|
---|
| 70 | char *name = NAME;
|
---|
[d91e54b] | 71 | char *arch = ARCH;
|
---|
[940cac0] | 72 |
|
---|
| 73 | #ifdef REVISION
|
---|
| 74 | char *revision = ", revision " REVISION;
|
---|
[ba22dcb] | 75 | #else
|
---|
[c6861f4] | 76 | char *revision = "";
|
---|
[ba22dcb] | 77 | #endif
|
---|
[940cac0] | 78 |
|
---|
| 79 | #ifdef TIMESTAMP
|
---|
| 80 | char *timestamp = " on " TIMESTAMP;
|
---|
| 81 | #else
|
---|
| 82 | char *timestamp = "";
|
---|
| 83 | #endif
|
---|
| 84 |
|
---|
[f761f1eb] | 85 | config_t config;
|
---|
| 86 | context_t ctx;
|
---|
| 87 |
|
---|
[880de6e] | 88 | /**
|
---|
| 89 | * These 'hardcoded' variables will be intialized by
|
---|
[dcbc8be] | 90 | * the linker or the low level assembler code with
|
---|
| 91 | * appropriate sizes and addresses.
|
---|
[f761f1eb] | 92 | */
|
---|
[2217ac3] | 93 | __address hardcoded_load_address = 0;
|
---|
[ac5d02b] | 94 | size_t hardcoded_ktext_size = 0;
|
---|
| 95 | size_t hardcoded_kdata_size = 0;
|
---|
[f761f1eb] | 96 |
|
---|
[aa72859] | 97 | __address init_addr = 0;
|
---|
| 98 | size_t init_size = 0;
|
---|
| 99 |
|
---|
[f761f1eb] | 100 | void main_bsp(void);
|
---|
| 101 | void main_ap(void);
|
---|
| 102 |
|
---|
| 103 | /*
|
---|
| 104 | * These two functions prevent stack from underflowing during the
|
---|
| 105 | * kernel boot phase when SP is set to the very top of the reserved
|
---|
| 106 | * space. The stack could get corrupted by a fooled compiler-generated
|
---|
| 107 | * pop sequence otherwise.
|
---|
| 108 | */
|
---|
| 109 | static void main_bsp_separated_stack(void);
|
---|
[80d2bdb] | 110 | #ifdef CONFIG_SMP
|
---|
[f761f1eb] | 111 | static void main_ap_separated_stack(void);
|
---|
[80d2bdb] | 112 | #endif
|
---|
[f761f1eb] | 113 |
|
---|
[673104e] | 114 | /** Bootstrap CPU main kernel routine
|
---|
| 115 | *
|
---|
| 116 | * Initializes the kernel by bootstrap CPU.
|
---|
| 117 | *
|
---|
[22f7769] | 118 | * Assuming interrupts_disable().
|
---|
[673104e] | 119 | *
|
---|
[f761f1eb] | 120 | */
|
---|
| 121 | void main_bsp(void)
|
---|
| 122 | {
|
---|
| 123 | config.cpu_count = 1;
|
---|
| 124 | config.cpu_active = 1;
|
---|
[d6e8529] | 125 |
|
---|
[aed4eca] | 126 | config.base = hardcoded_load_address;
|
---|
| 127 | config.memory_size = get_memory_size();
|
---|
[6c68b97] | 128 | config.init_addr = init_addr;
|
---|
| 129 | config.init_size = init_size;
|
---|
[393f631] | 130 |
|
---|
[d6e8529] | 131 | if (init_size > 0)
|
---|
| 132 | config.heap_addr = init_addr + init_size;
|
---|
| 133 | else
|
---|
| 134 | config.heap_addr = hardcoded_load_address + hardcoded_ktext_size + hardcoded_kdata_size;
|
---|
| 135 |
|
---|
| 136 | config.heap_size = CONFIG_HEAP_SIZE + (config.memory_size / FRAME_SIZE) * sizeof(frame_t);
|
---|
| 137 |
|
---|
| 138 | config.kernel_size = ALIGN_UP(config.heap_addr - hardcoded_load_address + config.heap_size, PAGE_SIZE);
|
---|
| 139 | config.heap_delta = config.kernel_size - (config.heap_addr - hardcoded_load_address + config.heap_size);
|
---|
| 140 | config.kernel_size = config.kernel_size + CONFIG_STACK_SIZE;
|
---|
[393f631] | 141 |
|
---|
[be50915] | 142 | context_save(&ctx);
|
---|
[d6e8529] | 143 | context_set(&ctx, FADDR(main_bsp_separated_stack), config.base + config.kernel_size, CONFIG_STACK_SIZE);
|
---|
[be50915] | 144 | context_restore(&ctx);
|
---|
[f761f1eb] | 145 | /* not reached */
|
---|
| 146 | }
|
---|
| 147 |
|
---|
[673104e] | 148 |
|
---|
| 149 | /** Bootstrap CPU main kernel routine stack wrapper
|
---|
| 150 | *
|
---|
| 151 | * Second part of main_bsp().
|
---|
| 152 | *
|
---|
| 153 | */
|
---|
[fde6429] | 154 | void main_bsp_separated_stack(void)
|
---|
| 155 | {
|
---|
[f761f1eb] | 156 | vm_t *m;
|
---|
| 157 | task_t *k;
|
---|
| 158 | thread_t *t;
|
---|
[8f91729] | 159 |
|
---|
[bcdd9aa] | 160 | the_initialize(THE);
|
---|
[5dce48b9] | 161 |
|
---|
[ff3b3197] | 162 | /*
|
---|
| 163 | * kconsole data structures must be initialized very early
|
---|
| 164 | * because other subsystems will register their respective
|
---|
| 165 | * commands.
|
---|
| 166 | */
|
---|
| 167 | kconsole_init();
|
---|
[dc747e3] | 168 |
|
---|
[aace6624] | 169 | /* Exception handler initialization, before architecture
|
---|
| 170 | * starts adding it's own handlers
|
---|
| 171 | */
|
---|
| 172 | exc_init();
|
---|
[ff3b3197] | 173 |
|
---|
[1fbbcd6] | 174 | arch_pre_mm_init();
|
---|
[d6e8529] | 175 | early_heap_init(config.heap_addr, config.heap_size + config.heap_delta);
|
---|
[7eade45] | 176 | frame_init();
|
---|
| 177 | page_init();
|
---|
| 178 | tlb_init();
|
---|
| 179 | arch_post_mm_init();
|
---|
[d6e8529] | 180 |
|
---|
[4acac843] | 181 | printf("%s, release %s (%s)%s\nBuilt%s for %s\n%s\n", project, release, name, revision, timestamp, arch, copyright);
|
---|
[da79d0fd] | 182 | printf("%P: hardcoded_ktext_size=%dK, hardcoded_kdata_size=%dK\n",
|
---|
[f761f1eb] | 183 | config.base, hardcoded_ktext_size/1024, hardcoded_kdata_size/1024);
|
---|
| 184 |
|
---|
[7453929] | 185 | arch_pre_smp_init();
|
---|
[ed0dd65] | 186 | smp_init();
|
---|
[11485dec] | 187 | printf("config.memory_size=%dM\n", config.memory_size/(1024*1024));
|
---|
[c9b8c5c] | 188 | printf("config.cpu_count=%d\n", config.cpu_count);
|
---|
[f761f1eb] | 189 |
|
---|
| 190 | cpu_init();
|
---|
[75d5721] | 191 |
|
---|
[f761f1eb] | 192 | calibrate_delay_loop();
|
---|
[2cf87e50] | 193 |
|
---|
[f761f1eb] | 194 | timeout_init();
|
---|
| 195 | scheduler_init();
|
---|
| 196 | task_init();
|
---|
| 197 | thread_init();
|
---|
[6c68b97] | 198 |
|
---|
| 199 | if (config.init_size > 0)
|
---|
| 200 | printf("config.init_addr=%X, config.init_size=%d\n", config.init_addr, config.init_size);
|
---|
[f761f1eb] | 201 |
|
---|
| 202 | /*
|
---|
| 203 | * Create kernel vm mapping.
|
---|
| 204 | */
|
---|
[b07769b6] | 205 | m = vm_create(GET_PTL0_ADDRESS());
|
---|
[393f631] | 206 | if (!m)
|
---|
| 207 | panic("can't create kernel vm address space\n");
|
---|
[f761f1eb] | 208 |
|
---|
| 209 | /*
|
---|
| 210 | * Create kernel task.
|
---|
| 211 | */
|
---|
| 212 | k = task_create(m);
|
---|
[393f631] | 213 | if (!k)
|
---|
| 214 | panic("can't create kernel task\n");
|
---|
| 215 |
|
---|
[f761f1eb] | 216 | /*
|
---|
| 217 | * Create the first thread.
|
---|
| 218 | */
|
---|
| 219 | t = thread_create(kinit, NULL, k, 0);
|
---|
[393f631] | 220 | if (!t)
|
---|
| 221 | panic("can't create kinit thread\n");
|
---|
[f761f1eb] | 222 | thread_ready(t);
|
---|
| 223 | /*
|
---|
| 224 | * This call to scheduler() will return to kinit,
|
---|
| 225 | * starting the thread of kernel threads.
|
---|
| 226 | */
|
---|
| 227 | scheduler();
|
---|
| 228 | /* not reached */
|
---|
| 229 | }
|
---|
| 230 |
|
---|
[673104e] | 231 |
|
---|
[5f85c91] | 232 | #ifdef CONFIG_SMP
|
---|
[673104e] | 233 | /** Application CPUs main kernel routine
|
---|
| 234 | *
|
---|
| 235 | * Executed by application processors, temporary stack
|
---|
| 236 | * is at ctx.sp which was set during BP boot.
|
---|
| 237 | *
|
---|
[22f7769] | 238 | * Assuming interrupts_disable()'d.
|
---|
[673104e] | 239 | *
|
---|
[f761f1eb] | 240 | */
|
---|
| 241 | void main_ap(void)
|
---|
| 242 | {
|
---|
| 243 | /*
|
---|
| 244 | * Incrementing the active CPU counter will guarantee that the
|
---|
| 245 | * pm_init() will not attempt to build GDT and IDT tables again.
|
---|
| 246 | * Neither frame_init() will do the complete thing. Neither cpu_init()
|
---|
| 247 | * will do.
|
---|
| 248 | */
|
---|
| 249 | config.cpu_active++;
|
---|
| 250 |
|
---|
[7ce9284] | 251 | /*
|
---|
| 252 | * The THE structure is well defined because ctx.sp is used as stack.
|
---|
| 253 | */
|
---|
| 254 | the_initialize(THE);
|
---|
[c0b45fa] | 255 |
|
---|
[f07bba5] | 256 | arch_pre_mm_init();
|
---|
[f761f1eb] | 257 | frame_init();
|
---|
| 258 | page_init();
|
---|
[ce031f0] | 259 | tlb_init();
|
---|
[f07bba5] | 260 | arch_post_mm_init();
|
---|
[c0b45fa] | 261 |
|
---|
[f761f1eb] | 262 | cpu_init();
|
---|
[c0b45fa] | 263 |
|
---|
[f761f1eb] | 264 | calibrate_delay_loop();
|
---|
| 265 |
|
---|
| 266 | l_apic_init();
|
---|
| 267 | l_apic_debug();
|
---|
| 268 |
|
---|
[7ce9284] | 269 | the_copy(THE, (the_t *) CPU->stack);
|
---|
[f761f1eb] | 270 |
|
---|
| 271 | /*
|
---|
| 272 | * If we woke kmp up before we left the kernel stack, we could
|
---|
| 273 | * collide with another CPU coming up. To prevent this, we
|
---|
| 274 | * switch to this cpu's private stack prior to waking kmp up.
|
---|
| 275 | */
|
---|
[4b2c872d] | 276 | context_set(&CPU->saved_context, FADDR(main_ap_separated_stack), (__address) CPU->stack, CPU_STACK_SIZE);
|
---|
[be50915] | 277 | context_restore(&CPU->saved_context);
|
---|
[f761f1eb] | 278 | /* not reached */
|
---|
| 279 | }
|
---|
| 280 |
|
---|
[673104e] | 281 |
|
---|
| 282 | /** Application CPUs main kernel routine stack wrapper
|
---|
| 283 | *
|
---|
| 284 | * Second part of main_ap().
|
---|
| 285 | *
|
---|
| 286 | */
|
---|
[f761f1eb] | 287 | void main_ap_separated_stack(void)
|
---|
| 288 | {
|
---|
| 289 | /*
|
---|
| 290 | * Configure timeouts for this cpu.
|
---|
| 291 | */
|
---|
| 292 | timeout_init();
|
---|
| 293 |
|
---|
| 294 | waitq_wakeup(&ap_completion_wq, WAKEUP_FIRST);
|
---|
| 295 | scheduler();
|
---|
| 296 | /* not reached */
|
---|
| 297 | }
|
---|
[5f85c91] | 298 | #endif /* CONFIG_SMP */
|
---|