Changes in kernel/arch/amd64/src/amd64.c [d8db519:f902d36] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/amd64/src/amd64.c
rd8db519 rf902d36 34 34 35 35 #include <arch.h> 36 36 37 #include <typedefs.h> 37 #include <errno.h> 38 #include <memstr.h> 39 #include <interrupt.h> 40 #include <console/console.h> 41 #include <syscall/syscall.h> 42 #include <sysinfo/sysinfo.h> 43 #include <arch/bios/bios.h> 44 #include <arch/boot/boot.h> 45 #include <arch/debugger.h> 38 39 #include <config.h> 40 41 #include <proc/thread.h> 42 #include <genarch/multiboot/multiboot.h> 43 #include <genarch/drivers/legacy/ia32/io.h> 44 #include <genarch/drivers/ega/ega.h> 45 #include <arch/drivers/vesa.h> 46 #include <genarch/drivers/i8042/i8042.h> 47 #include <genarch/kbrd/kbrd.h> 46 48 #include <arch/drivers/i8254.h> 47 49 #include <arch/drivers/i8259.h> 50 #include <arch/boot/boot.h> 51 52 #ifdef CONFIG_SMP 53 #include <arch/smp/apic.h> 54 #endif 55 56 #include <arch/bios/bios.h> 57 #include <arch/cpu.h> 58 #include <print.h> 59 #include <arch/cpuid.h> 60 #include <genarch/acpi/acpi.h> 61 #include <panic.h> 62 #include <interrupt.h> 48 63 #include <arch/syscall.h> 49 #include <genarch/acpi/acpi.h> 50 #include <genarch/drivers/ega/ega.h> 51 #include <genarch/drivers/i8042/i8042.h> 52 #include <genarch/drivers/legacy/ia32/io.h> 53 #include <genarch/fb/bfb.h> 54 #include <genarch/kbrd/kbrd.h> 55 #include <genarch/multiboot/multiboot.h> 56 #include <genarch/multiboot/multiboot2.h> 57 58 #ifdef CONFIG_SMP 59 #include <arch/smp/apic.h> 60 #endif 64 #include <arch/debugger.h> 65 #include <syscall/syscall.h> 66 #include <console/console.h> 67 #include <ddi/irq.h> 68 #include <sysinfo/sysinfo.h> 69 #include <memstr.h> 61 70 62 71 /** Disable I/O on non-privileged levels … … 92 101 /** Perform amd64-specific initialization before main_bsp() is called. 93 102 * 94 * @param signature Multiboot signature. 95 * @param info Multiboot information structure. 96 * 97 */ 98 void arch_pre_main(uint32_t signature, void *info) 103 * @param signature Should contain the multiboot signature. 104 * @param mi Pointer to the multiboot information structure. 105 */ 106 void arch_pre_main(uint32_t signature, const multiboot_info_t *mi) 99 107 { 100 108 /* Parse multiboot information obtained from the bootloader. */ 101 multiboot_info_parse(signature, (multiboot_info_t *) info); 102 multiboot2_info_parse(signature, (multiboot2_info_t *) info); 109 multiboot_info_parse(signature, mi); 103 110 104 111 #ifdef CONFIG_SMP … … 146 153 147 154 #if (defined(CONFIG_FB) || defined(CONFIG_EGA)) 148 bool bfb= false;155 bool vesa = false; 149 156 #endif 150 157 151 158 #ifdef CONFIG_FB 152 bfb = bfb_init();159 vesa = vesa_init(); 153 160 #endif 154 161 155 162 #ifdef CONFIG_EGA 156 if (! bfb) {163 if (!vesa) { 157 164 outdev_t *egadev = ega_init(EGA_BASE, EGA_VIDEORAM); 158 165 if (egadev) … … 254 261 * we need not to go to CPL0 to read it. 255 262 */ 256 sysarg_t sys_tls_set( uintptr_t addr)263 sysarg_t sys_tls_set(sysarg_t addr) 257 264 { 258 265 THREAD->arch.tls = addr; 259 266 write_msr(AMD_MSR_FS, addr); 260 267 261 return EOK;268 return 0; 262 269 } 263 270
Note:
See TracChangeset
for help on using the changeset viewer.