[f761f1eb] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2001-2004 Jakub Jermar
|
---|
[deca67b] | 3 | * Copyright (c) 2009 Jiri Svoboda
|
---|
| 4 | * Copyright (c) 2009 Martin Decky
|
---|
[f761f1eb] | 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 |
|
---|
[06e1e95] | 31 | /** @addtogroup ia32
|
---|
[b45c443] | 32 | * @{
|
---|
| 33 | */
|
---|
| 34 | /** @file
|
---|
| 35 | */
|
---|
| 36 |
|
---|
[f761f1eb] | 37 | #include <arch.h>
|
---|
[36df4109] | 38 | #include <arch/arch.h>
|
---|
[83dab11] | 39 | #include <stdint.h>
|
---|
[d8db519] | 40 | #include <errno.h>
|
---|
[44a7ee5] | 41 | #include <mem.h>
|
---|
[fcfac420] | 42 | #include <interrupt.h>
|
---|
[41d33ac] | 43 | #include <console/console.h>
|
---|
[d8db519] | 44 | #include <syscall/syscall.h>
|
---|
[4c7257b] | 45 | #include <sysinfo/sysinfo.h>
|
---|
[d8db519] | 46 | #include <arch/bios/bios.h>
|
---|
[deca67b] | 47 | #include <arch/boot/boot.h>
|
---|
[d8db519] | 48 | #include <arch/drivers/i8254.h>
|
---|
| 49 | #include <arch/drivers/i8259.h>
|
---|
| 50 | #include <genarch/acpi/acpi.h>
|
---|
| 51 | #include <genarch/drivers/ega/ega.h>
|
---|
| 52 | #include <genarch/drivers/i8042/i8042.h>
|
---|
[3296df5] | 53 | #include <genarch/drivers/ns16550/ns16550.h>
|
---|
[d8db519] | 54 | #include <genarch/drivers/legacy/ia32/io.h>
|
---|
| 55 | #include <genarch/fb/bfb.h>
|
---|
| 56 | #include <genarch/kbrd/kbrd.h>
|
---|
[3296df5] | 57 | #include <genarch/srln/srln.h>
|
---|
[d8db519] | 58 | #include <genarch/multiboot/multiboot.h>
|
---|
| 59 | #include <genarch/multiboot/multiboot2.h>
|
---|
[d6f9fff] | 60 | #include <arch/pm.h>
|
---|
| 61 | #include <arch/vreg.h>
|
---|
[ad36bd6] | 62 |
|
---|
[26678e5] | 63 | #ifdef CONFIG_SMP
|
---|
| 64 | #include <arch/smp/apic.h>
|
---|
| 65 | #endif
|
---|
| 66 |
|
---|
[36df4109] | 67 | static void ia32_pre_mm_init(void);
|
---|
| 68 | static void ia32_post_mm_init(void);
|
---|
| 69 | static void ia32_post_cpu_init(void);
|
---|
| 70 | static void ia32_pre_smp_init(void);
|
---|
| 71 | static void ia32_post_smp_init(void);
|
---|
| 72 |
|
---|
| 73 | arch_ops_t ia32_ops = {
|
---|
| 74 | .pre_mm_init = ia32_pre_mm_init,
|
---|
| 75 | .post_mm_init = ia32_post_mm_init,
|
---|
| 76 | .post_cpu_init = ia32_post_cpu_init,
|
---|
| 77 | .pre_smp_init = ia32_pre_smp_init,
|
---|
| 78 | .post_smp_init = ia32_post_smp_init,
|
---|
| 79 | };
|
---|
| 80 |
|
---|
| 81 | arch_ops_t *arch_ops = &ia32_ops;
|
---|
| 82 |
|
---|
[5d8d71e] | 83 | /** Perform ia32-specific initialization before main_bsp() is called.
|
---|
[deca67b] | 84 | *
|
---|
[1f5c9c96] | 85 | * @param signature Multiboot signature.
|
---|
| 86 | * @param info Multiboot information structure.
|
---|
| 87 | *
|
---|
[deca67b] | 88 | */
|
---|
[36df4109] | 89 | void ia32_pre_main(uint32_t signature, void *info)
|
---|
[deca67b] | 90 | {
|
---|
[5d8d71e] | 91 | /* Parse multiboot information obtained from the bootloader. */
|
---|
[1f5c9c96] | 92 | multiboot_info_parse(signature, (multiboot_info_t *) info);
|
---|
| 93 | multiboot2_info_parse(signature, (multiboot2_info_t *) info);
|
---|
[a35b458] | 94 |
|
---|
[deca67b] | 95 | #ifdef CONFIG_SMP
|
---|
| 96 | /* Copy AP bootstrap routines below 1 MB. */
|
---|
| 97 | memcpy((void *) AP_BOOT_OFFSET, (void *) BOOT_OFFSET,
|
---|
| 98 | (size_t) &_hardcoded_unmapped_size);
|
---|
| 99 | #endif
|
---|
| 100 | }
|
---|
| 101 |
|
---|
[36df4109] | 102 | void ia32_pre_mm_init(void)
|
---|
[f761f1eb] | 103 | {
|
---|
| 104 | pm_init();
|
---|
| 105 |
|
---|
| 106 | if (config.cpu_active == 1) {
|
---|
[cea12e9] | 107 | interrupt_init();
|
---|
[dba84ff] | 108 | bios_init();
|
---|
[a35b458] | 109 |
|
---|
[cea12e9] | 110 | /* PIC */
|
---|
| 111 | i8259_init();
|
---|
[f761f1eb] | 112 | }
|
---|
| 113 | }
|
---|
| 114 |
|
---|
[36df4109] | 115 | void ia32_post_mm_init(void)
|
---|
[7eade45] | 116 | {
|
---|
[d6f9fff] | 117 | vreg_init();
|
---|
| 118 |
|
---|
[425913b] | 119 | if (config.cpu_active == 1) {
|
---|
[cea12e9] | 120 | /* Initialize IRQ routing */
|
---|
| 121 | irq_init(IRQ_COUNT, IRQ_COUNT);
|
---|
[a35b458] | 122 |
|
---|
[cea12e9] | 123 | /* hard clock */
|
---|
| 124 | i8254_init();
|
---|
[a35b458] | 125 |
|
---|
[a71c158] | 126 | #if (defined(CONFIG_FB) || defined(CONFIG_EGA))
|
---|
[1f5c9c96] | 127 | bool bfb = false;
|
---|
[a71c158] | 128 | #endif
|
---|
[a35b458] | 129 |
|
---|
[22cf454d] | 130 | #ifdef CONFIG_FB
|
---|
[1f5c9c96] | 131 | bfb = bfb_init();
|
---|
[22cf454d] | 132 | #endif
|
---|
[a35b458] | 133 |
|
---|
[ec944b1] | 134 | #ifdef CONFIG_EGA
|
---|
[1f5c9c96] | 135 | if (!bfb) {
|
---|
[a71c158] | 136 | outdev_t *egadev = ega_init(EGA_BASE, EGA_VIDEORAM);
|
---|
| 137 | if (egadev)
|
---|
| 138 | stdout_wire(egadev);
|
---|
| 139 | }
|
---|
[ec944b1] | 140 | #endif
|
---|
[a35b458] | 141 |
|
---|
[381465e] | 142 | /* Merge all memory zones to 1 big zone */
|
---|
| 143 | zone_merge_all();
|
---|
[babcb148] | 144 | }
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[36df4109] | 147 | void ia32_post_cpu_init(void)
|
---|
[26678e5] | 148 | {
|
---|
| 149 | #ifdef CONFIG_SMP
|
---|
[49eb681] | 150 | if (config.cpu_active > 1) {
|
---|
[26678e5] | 151 | l_apic_init();
|
---|
| 152 | l_apic_debug();
|
---|
| 153 | }
|
---|
| 154 | #endif
|
---|
| 155 | }
|
---|
| 156 |
|
---|
[36df4109] | 157 | void ia32_pre_smp_init(void)
|
---|
[babcb148] | 158 | {
|
---|
| 159 | if (config.cpu_active == 1) {
|
---|
[f619ec11] | 160 | #ifdef CONFIG_SMP
|
---|
[85bfdcc8] | 161 | acpi_init();
|
---|
[f619ec11] | 162 | #endif /* CONFIG_SMP */
|
---|
[425913b] | 163 | }
|
---|
[7eade45] | 164 | }
|
---|
| 165 |
|
---|
[36df4109] | 166 | void ia32_post_smp_init(void)
|
---|
[7453929] | 167 | {
|
---|
[eff1f033] | 168 | /* Currently the only supported platform for ia32 is 'pc'. */
|
---|
| 169 | static const char *platform = "pc";
|
---|
| 170 |
|
---|
| 171 | sysinfo_set_item_data("platform", NULL, (void *) platform,
|
---|
| 172 | str_size(platform));
|
---|
| 173 |
|
---|
[2a34e4c] | 174 | #ifdef CONFIG_PC_KBD
|
---|
[411b6a6] | 175 | /*
|
---|
[2a34e4c] | 176 | * Initialize the i8042 controller. Then initialize the keyboard
|
---|
| 177 | * module and connect it to i8042. Enable keyboard interrupts.
|
---|
[411b6a6] | 178 | */
|
---|
[c2417bc] | 179 | i8042_instance_t *i8042_instance = i8042_init((i8042_t *) I8042_BASE, IRQ_KBD);
|
---|
| 180 | if (i8042_instance) {
|
---|
| 181 | kbrd_instance_t *kbrd_instance = kbrd_init();
|
---|
| 182 | if (kbrd_instance) {
|
---|
| 183 | indev_t *sink = stdin_wire();
|
---|
| 184 | indev_t *kbrd = kbrd_wire(kbrd_instance, sink);
|
---|
| 185 | i8042_wire(i8042_instance, kbrd);
|
---|
| 186 | trap_virtual_enable_irqs(1 << IRQ_KBD);
|
---|
[385a3d6] | 187 | trap_virtual_enable_irqs(1 << IRQ_MOUSE);
|
---|
[c2417bc] | 188 | }
|
---|
[2a34e4c] | 189 | }
|
---|
| 190 | #endif
|
---|
[3296df5] | 191 |
|
---|
[6bbe470] | 192 | #if (defined(CONFIG_NS16550) || defined(CONFIG_NS16550_OUT))
|
---|
[3296df5] | 193 | /*
|
---|
[6bbe470] | 194 | * Initialize the ns16550 controller.
|
---|
[3296df5] | 195 | */
|
---|
[21b6307] | 196 | #ifdef CONFIG_NS16550_OUT
|
---|
| 197 | outdev_t *ns16550_out;
|
---|
| 198 | outdev_t **ns16550_out_ptr = &ns16550_out;
|
---|
| 199 | #else
|
---|
| 200 | outdev_t **ns16550_out_ptr = NULL;
|
---|
| 201 | #endif
|
---|
[3296df5] | 202 | ns16550_instance_t *ns16550_instance
|
---|
[38b0ae2] | 203 | = ns16550_init(NS16550_BASE, 0, IRQ_NS16550, NULL, NULL,
|
---|
[21b6307] | 204 | ns16550_out_ptr);
|
---|
[3296df5] | 205 | if (ns16550_instance) {
|
---|
[6bbe470] | 206 | #ifdef CONFIG_NS16550
|
---|
[3296df5] | 207 | srln_instance_t *srln_instance = srln_init();
|
---|
| 208 | if (srln_instance) {
|
---|
| 209 | indev_t *sink = stdin_wire();
|
---|
| 210 | indev_t *srln = srln_wire(srln_instance, sink);
|
---|
| 211 | ns16550_wire(ns16550_instance, srln);
|
---|
[5030acad] | 212 | trap_virtual_enable_irqs(1 << IRQ_NS16550);
|
---|
[3296df5] | 213 | }
|
---|
| 214 | #endif
|
---|
[6bbe470] | 215 | #ifdef CONFIG_NS16550_OUT
|
---|
| 216 | if (ns16550_out) {
|
---|
| 217 | stdout_wire(ns16550_out);
|
---|
| 218 | }
|
---|
| 219 | #endif
|
---|
[24b06199] | 220 | }
|
---|
| 221 | #endif
|
---|
[a35b458] | 222 |
|
---|
[acc7ce4] | 223 | if (irqs_info != NULL)
|
---|
| 224 | sysinfo_set_item_val(irqs_info, NULL, true);
|
---|
[7453929] | 225 | }
|
---|
| 226 |
|
---|
[f761f1eb] | 227 | void calibrate_delay_loop(void)
|
---|
| 228 | {
|
---|
| 229 | i8254_calibrate_delay_loop();
|
---|
[f701b236] | 230 | if (config.cpu_active == 1) {
|
---|
| 231 | /*
|
---|
| 232 | * This has to be done only on UP.
|
---|
| 233 | * On SMP, i8254 is not used for time keeping and its interrupt pin remains masked.
|
---|
| 234 | */
|
---|
| 235 | i8254_normal_operation();
|
---|
| 236 | }
|
---|
[f761f1eb] | 237 | }
|
---|
[281b607] | 238 |
|
---|
[6da1013f] | 239 | /** Construct function pointer
|
---|
| 240 | *
|
---|
| 241 | * @param fptr function pointer structure
|
---|
| 242 | * @param addr function address
|
---|
| 243 | * @param caller calling function address
|
---|
| 244 | *
|
---|
| 245 | * @return address of the function pointer
|
---|
| 246 | *
|
---|
| 247 | */
|
---|
| 248 | void *arch_construct_function(fncptr_t *fptr, void *addr, void *caller)
|
---|
| 249 | {
|
---|
| 250 | return addr;
|
---|
| 251 | }
|
---|
| 252 |
|
---|
[149d14e5] | 253 | void arch_reboot(void)
|
---|
| 254 | {
|
---|
| 255 | #ifdef CONFIG_PC_KBD
|
---|
| 256 | i8042_cpu_reset((i8042_t *) I8042_BASE);
|
---|
| 257 | #endif
|
---|
| 258 | }
|
---|
| 259 |
|
---|
[3a2f8aa] | 260 | void irq_initialize_arch(irq_t *irq)
|
---|
| 261 | {
|
---|
| 262 | (void) irq;
|
---|
| 263 | }
|
---|
| 264 |
|
---|
[06e1e95] | 265 | /** @}
|
---|
[b45c443] | 266 | */
|
---|