Rev 4148 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1 | jermar | 1 | /* |
| 2071 | jermar | 2 | * Copyright (c) 2001-2004 Jakub Jermar |
| 4015 | decky | 3 | * Copyright (c) 2009 Jiri Svoboda |
| 4 | * Copyright (c) 2009 Martin Decky |
||
| 1 | jermar | 5 | * All rights reserved. |
| 6 | * |
||
| 7 | * Redistribution and use in source and binary forms, with or without |
||
| 8 | * modification, are permitted provided that the following conditions |
||
| 9 | * are met: |
||
| 10 | * |
||
| 11 | * - Redistributions of source code must retain the above copyright |
||
| 12 | * notice, this list of conditions and the following disclaimer. |
||
| 13 | * - Redistributions in binary form must reproduce the above copyright |
||
| 14 | * notice, this list of conditions and the following disclaimer in the |
||
| 15 | * documentation and/or other materials provided with the distribution. |
||
| 16 | * - The name of the author may not be used to endorse or promote products |
||
| 17 | * derived from this software without specific prior written permission. |
||
| 18 | * |
||
| 19 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
||
| 20 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
||
| 21 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
| 22 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
| 23 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
| 24 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
||
| 25 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
||
| 26 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
||
| 27 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
||
| 28 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
| 29 | */ |
||
| 30 | |||
| 1888 | jermar | 31 | /** @addtogroup ia32 |
| 1702 | cejka | 32 | * @{ |
| 33 | */ |
||
| 34 | /** @file |
||
| 35 | */ |
||
| 36 | |||
| 1 | jermar | 37 | #include <arch.h> |
| 38 | |||
| 39 | #include <arch/types.h> |
||
| 40 | |||
| 41 | #include <arch/pm.h> |
||
| 42 | |||
| 4022 | svoboda | 43 | #include <genarch/multiboot/multiboot.h> |
| 3932 | jermar | 44 | #include <genarch/drivers/legacy/ia32/io.h> |
| 3779 | jermar | 45 | #include <genarch/drivers/ega/ega.h> |
| 1477 | decky | 46 | #include <arch/drivers/vesa.h> |
| 4042 | jermar | 47 | #include <genarch/drivers/i8042/i8042.h> |
| 48 | #include <genarch/kbrd/kbrd.h> |
||
| 1477 | decky | 49 | #include <arch/drivers/i8254.h> |
| 50 | #include <arch/drivers/i8259.h> |
||
| 1 | jermar | 51 | |
| 52 | #include <arch/context.h> |
||
| 53 | |||
| 54 | #include <config.h> |
||
| 55 | |||
| 56 | #include <arch/interrupt.h> |
||
| 28 | jermar | 57 | #include <arch/asm.h> |
| 452 | decky | 58 | #include <genarch/acpi/acpi.h> |
| 195 | vana | 59 | |
| 60 | #include <arch/bios/bios.h> |
||
| 61 | |||
| 576 | palkovsky | 62 | #include <interrupt.h> |
| 1956 | decky | 63 | #include <ddi/irq.h> |
| 1074 | palkovsky | 64 | #include <arch/debugger.h> |
| 1112 | palkovsky | 65 | #include <proc/thread.h> |
| 66 | #include <syscall/syscall.h> |
||
| 1474 | palkovsky | 67 | #include <console/console.h> |
| 3982 | jermar | 68 | #include <sysinfo/sysinfo.h> |
| 4015 | decky | 69 | #include <arch/boot/boot.h> |
| 1 | jermar | 70 | |
| 1901 | jermar | 71 | #ifdef CONFIG_SMP |
| 72 | #include <arch/smp/apic.h> |
||
| 73 | #endif |
||
| 74 | |||
| 4022 | svoboda | 75 | /** Perform ia32-specific initialization before main_bsp() is called. |
| 4015 | decky | 76 | * |
| 77 | * @param signature Should contain the multiboot signature. |
||
| 78 | * @param mi Pointer to the multiboot information structure. |
||
| 79 | */ |
||
| 4022 | svoboda | 80 | void arch_pre_main(uint32_t signature, const multiboot_info_t *mi) |
| 4015 | decky | 81 | { |
| 4022 | svoboda | 82 | /* Parse multiboot information obtained from the bootloader. */ |
| 83 | multiboot_info_parse(signature, mi); |
||
| 4015 | decky | 84 | |
| 85 | #ifdef CONFIG_SMP |
||
| 86 | /* Copy AP bootstrap routines below 1 MB. */ |
||
| 87 | memcpy((void *) AP_BOOT_OFFSET, (void *) BOOT_OFFSET, |
||
| 88 | (size_t) &_hardcoded_unmapped_size); |
||
| 89 | #endif |
||
| 90 | } |
||
| 91 | |||
| 26 | jermar | 92 | void arch_pre_mm_init(void) |
| 1 | jermar | 93 | { |
| 94 | pm_init(); |
||
| 95 | |||
| 96 | if (config.cpu_active == 1) { |
||
| 1956 | decky | 97 | interrupt_init(); |
| 30 | jermar | 98 | bios_init(); |
| 235 | decky | 99 | |
| 1956 | decky | 100 | /* PIC */ |
| 101 | i8259_init(); |
||
| 1 | jermar | 102 | } |
| 103 | } |
||
| 104 | |||
| 72 | decky | 105 | void arch_post_mm_init(void) |
| 23 | jermar | 106 | { |
| 24 | jermar | 107 | if (config.cpu_active == 1) { |
| 1956 | decky | 108 | /* Initialize IRQ routing */ |
| 109 | irq_init(IRQ_COUNT, IRQ_COUNT); |
||
| 110 | |||
| 111 | /* hard clock */ |
||
| 112 | i8254_init(); |
||
| 4057 | decky | 113 | |
| 1287 | vana | 114 | #ifdef CONFIG_FB |
| 4099 | decky | 115 | if (vesa_present()) |
| 1303 | palkovsky | 116 | vesa_init(); |
| 1287 | vana | 117 | else |
| 118 | #endif |
||
| 4057 | decky | 119 | #ifdef CONFIG_EGA |
| 120 | ega_init(EGA_BASE, EGA_VIDEORAM); /* video */ |
||
| 121 | #else |
||
| 122 | {} |
||
| 123 | #endif |
||
| 1287 | vana | 124 | |
| 1074 | palkovsky | 125 | /* Enable debugger */ |
| 126 | debugger_init(); |
||
| 1303 | palkovsky | 127 | /* Merge all memory zones to 1 big zone */ |
| 128 | zone_merge_all(); |
||
| 32 | jermar | 129 | } |
| 130 | } |
||
| 131 | |||
| 1901 | jermar | 132 | void arch_post_cpu_init() |
| 133 | { |
||
| 134 | #ifdef CONFIG_SMP |
||
| 135 | if (config.cpu_active > 1) { |
||
| 136 | l_apic_init(); |
||
| 137 | l_apic_debug(); |
||
| 138 | } |
||
| 139 | #endif |
||
| 140 | } |
||
| 141 | |||
| 503 | jermar | 142 | void arch_pre_smp_init(void) |
| 32 | jermar | 143 | { |
| 144 | if (config.cpu_active == 1) { |
||
| 2107 | jermar | 145 | #ifdef CONFIG_SMP |
| 29 | jermar | 146 | acpi_init(); |
| 2107 | jermar | 147 | #endif /* CONFIG_SMP */ |
| 24 | jermar | 148 | } |
| 23 | jermar | 149 | } |
| 150 | |||
| 503 | jermar | 151 | void arch_post_smp_init(void) |
| 152 | { |
||
| 4099 | decky | 153 | #ifdef CONFIG_PC_KBD |
| 3982 | jermar | 154 | /* |
| 4099 | decky | 155 | * Initialize the i8042 controller. Then initialize the keyboard |
| 156 | * module and connect it to i8042. Enable keyboard interrupts. |
||
| 4042 | jermar | 157 | */ |
| 4148 | decky | 158 | indev_t *kbrdin = i8042_init((i8042_t *) I8042_BASE, IRQ_KBD); |
| 4099 | decky | 159 | if (kbrdin) { |
| 160 | kbrd_init(kbrdin); |
||
| 161 | trap_virtual_enable_irqs(1 << IRQ_KBD); |
||
| 162 | } |
||
| 163 | |||
| 4042 | jermar | 164 | /* |
| 3982 | jermar | 165 | * This is the necessary evil until the userspace driver is entirely |
| 166 | * self-sufficient. |
||
| 167 | */ |
||
| 168 | sysinfo_set_item_val("kbd", NULL, true); |
||
| 169 | sysinfo_set_item_val("kbd.inr", NULL, IRQ_KBD); |
||
| 4026 | jermar | 170 | sysinfo_set_item_val("kbd.address.physical", NULL, |
| 171 | (uintptr_t) I8042_BASE); |
||
| 172 | sysinfo_set_item_val("kbd.address.kernel", NULL, |
||
| 173 | (uintptr_t) I8042_BASE); |
||
| 4099 | decky | 174 | #endif |
| 503 | jermar | 175 | } |
| 176 | |||
| 1 | jermar | 177 | void calibrate_delay_loop(void) |
| 178 | { |
||
| 179 | i8254_calibrate_delay_loop(); |
||
| 514 | jermar | 180 | if (config.cpu_active == 1) { |
| 181 | /* |
||
| 182 | * This has to be done only on UP. |
||
| 183 | * On SMP, i8254 is not used for time keeping and its interrupt pin remains masked. |
||
| 184 | */ |
||
| 185 | i8254_normal_operation(); |
||
| 186 | } |
||
| 1 | jermar | 187 | } |
| 1112 | palkovsky | 188 | |
| 1121 | jermar | 189 | /** Set thread-local-storage pointer |
| 1112 | palkovsky | 190 | * |
| 1119 | palkovsky | 191 | * TLS pointer is set in GS register. That means, the GS contains |
| 192 | * selector, and the descriptor->base is the correct address. |
||
| 1112 | palkovsky | 193 | */ |
| 1780 | jermar | 194 | unative_t sys_tls_set(unative_t addr) |
| 1112 | palkovsky | 195 | { |
| 1184 | jermar | 196 | THREAD->arch.tls = addr; |
| 1112 | palkovsky | 197 | set_tls_desc(addr); |
| 198 | |||
| 199 | return 0; |
||
| 200 | } |
||
| 1474 | palkovsky | 201 | |
| 202 | /** Acquire console back for kernel |
||
| 203 | * |
||
| 204 | */ |
||
| 205 | void arch_grab_console(void) |
||
| 206 | { |
||
| 3707 | decky | 207 | #ifdef CONFIG_FB |
| 4099 | decky | 208 | if (vesa_present()) |
| 209 | vesa_redraw(); |
||
| 210 | else |
||
| 211 | #endif |
||
| 212 | #ifdef CONFIG_EGA |
||
| 213 | ega_redraw(); |
||
| 3707 | decky | 214 | #else |
| 4099 | decky | 215 | {} |
| 3707 | decky | 216 | #endif |
| 1474 | palkovsky | 217 | } |
| 3707 | decky | 218 | |
| 1474 | palkovsky | 219 | /** Return console to userspace |
| 220 | * |
||
| 221 | */ |
||
| 222 | void arch_release_console(void) |
||
| 223 | { |
||
| 224 | } |
||
| 1702 | cejka | 225 | |
| 3880 | decky | 226 | /** Construct function pointer |
| 227 | * |
||
| 228 | * @param fptr function pointer structure |
||
| 229 | * @param addr function address |
||
| 230 | * @param caller calling function address |
||
| 231 | * |
||
| 232 | * @return address of the function pointer |
||
| 233 | * |
||
| 234 | */ |
||
| 235 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller) |
||
| 236 | { |
||
| 237 | return addr; |
||
| 238 | } |
||
| 239 | |||
| 4251 | decky | 240 | void arch_reboot(void) |
| 241 | { |
||
| 242 | #ifdef CONFIG_PC_KBD |
||
| 243 | i8042_cpu_reset((i8042_t *) I8042_BASE); |
||
| 244 | #endif |
||
| 245 | } |
||
| 246 | |||
| 1888 | jermar | 247 | /** @} |
| 1702 | cejka | 248 | */ |