| 1 | /*
|
|---|
| 2 | * Copyright (c) 2001-2004 Jakub Jermar
|
|---|
| 3 | * Copyright (c) 2009 Jiri Svoboda
|
|---|
| 4 | * Copyright (c) 2009 Martin Decky
|
|---|
| 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 |
|
|---|
| 31 | /** @addtogroup ia32
|
|---|
| 32 | * @{
|
|---|
| 33 | */
|
|---|
| 34 | /** @file
|
|---|
| 35 | */
|
|---|
| 36 |
|
|---|
| 37 | #include <arch.h>
|
|---|
| 38 | #include <typedefs.h>
|
|---|
| 39 | #include <errno.h>
|
|---|
| 40 | #include <memstr.h>
|
|---|
| 41 | #include <interrupt.h>
|
|---|
| 42 | #include <console/console.h>
|
|---|
| 43 | #include <syscall/syscall.h>
|
|---|
| 44 | #include <sysinfo/sysinfo.h>
|
|---|
| 45 | #include <arch/bios/bios.h>
|
|---|
| 46 | #include <arch/boot/boot.h>
|
|---|
| 47 | #include <arch/drivers/i8254.h>
|
|---|
| 48 | #include <arch/drivers/i8259.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
|
|---|
| 61 |
|
|---|
| 62 | /** Perform ia32-specific initialization before main_bsp() is called.
|
|---|
| 63 | *
|
|---|
| 64 | * @param signature Multiboot signature.
|
|---|
| 65 | * @param info Multiboot information structure.
|
|---|
| 66 | *
|
|---|
| 67 | */
|
|---|
| 68 | void arch_pre_main(uint32_t signature, void *info)
|
|---|
| 69 | {
|
|---|
| 70 | /* Parse multiboot information obtained from the bootloader. */
|
|---|
| 71 | multiboot_info_parse(signature, (multiboot_info_t *) info);
|
|---|
| 72 | multiboot2_info_parse(signature, (multiboot2_info_t *) info);
|
|---|
| 73 |
|
|---|
| 74 | #ifdef CONFIG_SMP
|
|---|
| 75 | /* Copy AP bootstrap routines below 1 MB. */
|
|---|
| 76 | memcpy((void *) AP_BOOT_OFFSET, (void *) BOOT_OFFSET,
|
|---|
| 77 | (size_t) &_hardcoded_unmapped_size);
|
|---|
| 78 | #endif
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | void arch_pre_mm_init(void)
|
|---|
| 82 | {
|
|---|
| 83 | pm_init();
|
|---|
| 84 |
|
|---|
| 85 | if (config.cpu_active == 1) {
|
|---|
| 86 | interrupt_init();
|
|---|
| 87 | bios_init();
|
|---|
| 88 |
|
|---|
| 89 | /* PIC */
|
|---|
| 90 | i8259_init();
|
|---|
| 91 | }
|
|---|
| 92 | }
|
|---|
| 93 |
|
|---|
| 94 | void arch_post_mm_init(void)
|
|---|
| 95 | {
|
|---|
| 96 | if (config.cpu_active == 1) {
|
|---|
| 97 | /* Initialize IRQ routing */
|
|---|
| 98 | irq_init(IRQ_COUNT, IRQ_COUNT);
|
|---|
| 99 |
|
|---|
| 100 | /* hard clock */
|
|---|
| 101 | i8254_init();
|
|---|
| 102 |
|
|---|
| 103 | #if (defined(CONFIG_FB) || defined(CONFIG_EGA))
|
|---|
| 104 | bool bfb = false;
|
|---|
| 105 | #endif
|
|---|
| 106 |
|
|---|
| 107 | #ifdef CONFIG_FB
|
|---|
| 108 | bfb = bfb_init();
|
|---|
| 109 | #endif
|
|---|
| 110 |
|
|---|
| 111 | #ifdef CONFIG_EGA
|
|---|
| 112 | if (!bfb) {
|
|---|
| 113 | outdev_t *egadev = ega_init(EGA_BASE, EGA_VIDEORAM);
|
|---|
| 114 | if (egadev)
|
|---|
| 115 | stdout_wire(egadev);
|
|---|
| 116 | }
|
|---|
| 117 | #endif
|
|---|
| 118 |
|
|---|
| 119 | /* Merge all memory zones to 1 big zone */
|
|---|
| 120 | zone_merge_all();
|
|---|
| 121 | }
|
|---|
| 122 | }
|
|---|
| 123 |
|
|---|
| 124 | void arch_post_cpu_init()
|
|---|
| 125 | {
|
|---|
| 126 | #ifdef CONFIG_SMP
|
|---|
| 127 | if (config.cpu_active > 1) {
|
|---|
| 128 | l_apic_init();
|
|---|
| 129 | l_apic_debug();
|
|---|
| 130 | }
|
|---|
| 131 | #endif
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | void arch_pre_smp_init(void)
|
|---|
| 135 | {
|
|---|
| 136 | if (config.cpu_active == 1) {
|
|---|
| 137 | #ifdef CONFIG_SMP
|
|---|
| 138 | acpi_init();
|
|---|
| 139 | #endif /* CONFIG_SMP */
|
|---|
| 140 | }
|
|---|
| 141 | }
|
|---|
| 142 |
|
|---|
| 143 | void arch_post_smp_init(void)
|
|---|
| 144 | {
|
|---|
| 145 | /* Currently the only supported platform for ia32 is 'pc'. */
|
|---|
| 146 | static const char *platform = "pc";
|
|---|
| 147 |
|
|---|
| 148 | sysinfo_set_item_data("platform", NULL, (void *) platform,
|
|---|
| 149 | str_size(platform));
|
|---|
| 150 |
|
|---|
| 151 | #ifdef CONFIG_PC_KBD
|
|---|
| 152 | /*
|
|---|
| 153 | * Initialize the i8042 controller. Then initialize the keyboard
|
|---|
| 154 | * module and connect it to i8042. Enable keyboard interrupts.
|
|---|
| 155 | */
|
|---|
| 156 | i8042_instance_t *i8042_instance = i8042_init((i8042_t *) I8042_BASE, IRQ_KBD);
|
|---|
| 157 | if (i8042_instance) {
|
|---|
| 158 | kbrd_instance_t *kbrd_instance = kbrd_init();
|
|---|
| 159 | if (kbrd_instance) {
|
|---|
| 160 | indev_t *sink = stdin_wire();
|
|---|
| 161 | indev_t *kbrd = kbrd_wire(kbrd_instance, sink);
|
|---|
| 162 | i8042_wire(i8042_instance, kbrd);
|
|---|
| 163 | trap_virtual_enable_irqs(1 << IRQ_KBD);
|
|---|
| 164 | trap_virtual_enable_irqs(1 << IRQ_MOUSE);
|
|---|
| 165 | }
|
|---|
| 166 | }
|
|---|
| 167 | #endif
|
|---|
| 168 |
|
|---|
| 169 | if (irqs_info != NULL)
|
|---|
| 170 | sysinfo_set_item_val(irqs_info, NULL, true);
|
|---|
| 171 | }
|
|---|
| 172 |
|
|---|
| 173 | void calibrate_delay_loop(void)
|
|---|
| 174 | {
|
|---|
| 175 | i8254_calibrate_delay_loop();
|
|---|
| 176 | if (config.cpu_active == 1) {
|
|---|
| 177 | /*
|
|---|
| 178 | * This has to be done only on UP.
|
|---|
| 179 | * On SMP, i8254 is not used for time keeping and its interrupt pin remains masked.
|
|---|
| 180 | */
|
|---|
| 181 | i8254_normal_operation();
|
|---|
| 182 | }
|
|---|
| 183 | }
|
|---|
| 184 |
|
|---|
| 185 | /** Set thread-local-storage pointer
|
|---|
| 186 | *
|
|---|
| 187 | * TLS pointer is set in GS register. That means, the GS contains
|
|---|
| 188 | * selector, and the descriptor->base is the correct address.
|
|---|
| 189 | */
|
|---|
| 190 | sysarg_t sys_tls_set(uintptr_t addr)
|
|---|
| 191 | {
|
|---|
| 192 | THREAD->arch.tls = addr;
|
|---|
| 193 | set_tls_desc(addr);
|
|---|
| 194 |
|
|---|
| 195 | return EOK;
|
|---|
| 196 | }
|
|---|
| 197 |
|
|---|
| 198 | /** Construct function pointer
|
|---|
| 199 | *
|
|---|
| 200 | * @param fptr function pointer structure
|
|---|
| 201 | * @param addr function address
|
|---|
| 202 | * @param caller calling function address
|
|---|
| 203 | *
|
|---|
| 204 | * @return address of the function pointer
|
|---|
| 205 | *
|
|---|
| 206 | */
|
|---|
| 207 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
|
|---|
| 208 | {
|
|---|
| 209 | return addr;
|
|---|
| 210 | }
|
|---|
| 211 |
|
|---|
| 212 | void arch_reboot(void)
|
|---|
| 213 | {
|
|---|
| 214 | #ifdef CONFIG_PC_KBD
|
|---|
| 215 | i8042_cpu_reset((i8042_t *) I8042_BASE);
|
|---|
| 216 | #endif
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | void irq_initialize_arch(irq_t *irq)
|
|---|
| 220 | {
|
|---|
| 221 | (void) irq;
|
|---|
| 222 | }
|
|---|
| 223 |
|
|---|
| 224 | /** @}
|
|---|
| 225 | */
|
|---|