Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 1 | // 32bit code to Power On Self Test (POST) a machine. |
| 2 | // |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 3 | // Copyright (C) 2008-2013 Kevin O'Connor <kevin@koconnor.net> |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 4 | // Copyright (C) 2002 MandrakeSoft S.A. |
| 5 | // |
Kevin O'Connor | b1b7c2a | 2009-01-15 20:52:58 -0500 | [diff] [blame] | 6 | // This file may be distributed under the terms of the GNU LGPLv3 license. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 7 | |
Kevin O'Connor | 392d2aa | 2013-09-15 00:14:28 -0400 | [diff] [blame] | 8 | #include "biosvar.h" // SET_BDA |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 9 | #include "bregs.h" // struct bregs |
| 10 | #include "config.h" // CONFIG_* |
Kevin O'Connor | ccee6e8 | 2013-09-02 21:25:21 -0400 | [diff] [blame] | 11 | #include "fw/paravirt.h" // qemu_cfg_preinit |
| 12 | #include "fw/xen.h" // xen_preinit |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 13 | #include "hw/ahci.h" // ahci_setup |
| 14 | #include "hw/ata.h" // ata_setup |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 15 | #include "hw/esp-scsi.h" // esp_scsi_setup |
| 16 | #include "hw/lsi-scsi.h" // lsi_scsi_setup |
| 17 | #include "hw/megasas.h" // megasas_setup |
Evgeny Budilovsky | 83d60b3 | 2013-10-14 18:03:36 +0300 | [diff] [blame] | 18 | #include "hw/pvscsi.h" // pvscsi_setup |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 19 | #include "hw/pic.h" // pic_setup |
Kevin O'Connor | 5d369d8 | 2013-09-02 20:48:46 -0400 | [diff] [blame] | 20 | #include "hw/ps2port.h" // ps2port_setup |
Kevin O'Connor | 8b7861c | 2013-09-15 02:29:06 -0400 | [diff] [blame] | 21 | #include "hw/rtc.h" // rtc_write |
Kevin O'Connor | 940fc1f | 2014-01-15 13:42:50 -0500 | [diff] [blame] | 22 | #include "hw/serialio.h" // serial_debug_preinit |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 23 | #include "hw/usb.h" // usb_setup |
Kevin O'Connor | 5d369d8 | 2013-09-02 20:48:46 -0400 | [diff] [blame] | 24 | #include "hw/virtio-blk.h" // virtio_blk_setup |
| 25 | #include "hw/virtio-scsi.h" // virtio_scsi_setup |
Kevin O'Connor | 9dea590 | 2013-09-14 20:23:54 -0400 | [diff] [blame] | 26 | #include "malloc.h" // malloc_init |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 27 | #include "memmap.h" // add_e820 |
| 28 | #include "output.h" // dprintf |
Kevin O'Connor | fa9c66a | 2013-09-14 19:10:40 -0400 | [diff] [blame] | 29 | #include "string.h" // memset |
Kevin O'Connor | 2d2fa31 | 2013-09-14 21:55:26 -0400 | [diff] [blame] | 30 | #include "util.h" // kbd_init |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 31 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 32 | |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 33 | /**************************************************************** |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 34 | * BIOS initialization and hardware setup |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 35 | ****************************************************************/ |
| 36 | |
Kevin O'Connor | e3677b1 | 2008-07-04 15:29:23 -0400 | [diff] [blame] | 37 | static void |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 38 | ivt_init(void) |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 39 | { |
Kevin O'Connor | 8c0e372 | 2009-01-02 14:19:43 -0500 | [diff] [blame] | 40 | dprintf(3, "init ivt\n"); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 41 | |
Kevin O'Connor | 9e4d41c | 2013-01-21 12:14:29 -0500 | [diff] [blame] | 42 | // Setup reset-vector entry point (controls legacy reboots). |
| 43 | HaveRunPost = 1; |
Kevin O'Connor | 8b7861c | 2013-09-15 02:29:06 -0400 | [diff] [blame] | 44 | rtc_write(CMOS_RESET_CODE, 0); |
Kevin O'Connor | 9e4d41c | 2013-01-21 12:14:29 -0500 | [diff] [blame] | 45 | |
Kevin O'Connor | d67a703 | 2009-01-17 19:37:26 -0500 | [diff] [blame] | 46 | // Initialize all vectors to the default handler. |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 47 | int i; |
Kevin O'Connor | e3677b1 | 2008-07-04 15:29:23 -0400 | [diff] [blame] | 48 | for (i=0; i<256; i++) |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 49 | SET_IVT(i, FUNC16(entry_iret_official)); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 50 | |
Kevin O'Connor | d21c089 | 2008-11-26 17:02:43 -0500 | [diff] [blame] | 51 | // Initialize all hw vectors to a default hw handler. |
Kevin O'Connor | f465e1e | 2013-02-23 21:33:36 -0500 | [diff] [blame] | 52 | for (i=BIOS_HWIRQ0_VECTOR; i<BIOS_HWIRQ0_VECTOR+8; i++) |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 53 | SET_IVT(i, FUNC16(entry_hwpic1)); |
Kevin O'Connor | f465e1e | 2013-02-23 21:33:36 -0500 | [diff] [blame] | 54 | for (i=BIOS_HWIRQ8_VECTOR; i<BIOS_HWIRQ8_VECTOR+8; i++) |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 55 | SET_IVT(i, FUNC16(entry_hwpic2)); |
Kevin O'Connor | d21c089 | 2008-11-26 17:02:43 -0500 | [diff] [blame] | 56 | |
| 57 | // Initialize software handlers. |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 58 | SET_IVT(0x02, FUNC16(entry_02)); |
| 59 | SET_IVT(0x10, FUNC16(entry_10)); |
| 60 | SET_IVT(0x11, FUNC16(entry_11)); |
| 61 | SET_IVT(0x12, FUNC16(entry_12)); |
| 62 | SET_IVT(0x13, FUNC16(entry_13_official)); |
| 63 | SET_IVT(0x14, FUNC16(entry_14)); |
Kevin O'Connor | 3fcabf0 | 2014-05-08 18:32:32 -0400 | [diff] [blame] | 64 | SET_IVT(0x15, FUNC16(entry_15_official)); |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 65 | SET_IVT(0x16, FUNC16(entry_16)); |
| 66 | SET_IVT(0x17, FUNC16(entry_17)); |
| 67 | SET_IVT(0x18, FUNC16(entry_18)); |
| 68 | SET_IVT(0x19, FUNC16(entry_19_official)); |
Kevin O'Connor | 922aa1b | 2013-03-02 04:02:11 -0500 | [diff] [blame] | 69 | SET_IVT(0x1a, FUNC16(entry_1a_official)); |
Kevin O'Connor | cc9e1bf | 2010-07-28 21:31:38 -0400 | [diff] [blame] | 70 | SET_IVT(0x40, FUNC16(entry_40)); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 71 | |
Kevin O'Connor | b164d2c | 2009-12-26 23:24:52 -0500 | [diff] [blame] | 72 | // INT 60h-66h reserved for user interrupt |
| 73 | for (i=0x60; i<=0x66; i++) |
| 74 | SET_IVT(i, SEGOFF(0, 0)); |
| 75 | |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 76 | // set vector 0x79 to zero |
| 77 | // this is used by 'gardian angel' protection system |
Kevin O'Connor | 9f98542 | 2009-09-09 11:34:39 -0400 | [diff] [blame] | 78 | SET_IVT(0x79, SEGOFF(0, 0)); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 79 | } |
| 80 | |
| 81 | static void |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 82 | bda_init(void) |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 83 | { |
Kevin O'Connor | 8c0e372 | 2009-01-02 14:19:43 -0500 | [diff] [blame] | 84 | dprintf(3, "init bda\n"); |
| 85 | |
Kevin O'Connor | 35ae726 | 2009-01-19 15:44:44 -0500 | [diff] [blame] | 86 | struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0); |
Kevin O'Connor | 8c0e372 | 2009-01-02 14:19:43 -0500 | [diff] [blame] | 87 | memset(bda, 0, sizeof(*bda)); |
| 88 | |
Kevin O'Connor | 49553a4 | 2009-05-17 10:31:34 -0400 | [diff] [blame] | 89 | int esize = EBDA_SIZE_START; |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 90 | u16 ebda_seg = EBDA_SEGMENT_START; |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 91 | extern u8 final_varlow_start[]; |
| 92 | if (!CONFIG_MALLOC_UPPERMEMORY) |
| 93 | ebda_seg = FLATPTR_TO_SEG(ALIGN_DOWN((u32)final_varlow_start, 1024) |
| 94 | - EBDA_SIZE_START*1024); |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 95 | SET_BDA(ebda_seg, ebda_seg); |
Kevin O'Connor | 4d7c37e | 2008-12-26 23:50:17 -0500 | [diff] [blame] | 96 | |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 97 | SET_BDA(mem_size_kb, ebda_seg / (1024/16)); |
| 98 | |
Kevin O'Connor | 9becbf1 | 2009-07-12 09:29:46 -0400 | [diff] [blame] | 99 | // Init ebda |
Kevin O'Connor | 4d7c37e | 2008-12-26 23:50:17 -0500 | [diff] [blame] | 100 | struct extended_bios_data_area_s *ebda = get_ebda_ptr(); |
Kevin O'Connor | 38fcbfe | 2008-02-25 22:30:47 -0500 | [diff] [blame] | 101 | memset(ebda, 0, sizeof(*ebda)); |
Kevin O'Connor | 4d7c37e | 2008-12-26 23:50:17 -0500 | [diff] [blame] | 102 | ebda->size = esize; |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 103 | |
Kevin O'Connor | 2b0fb8c | 2013-08-07 23:03:47 -0400 | [diff] [blame] | 104 | add_e820((u32)ebda, BUILD_LOWRAM_END-(u32)ebda, E820_RESERVED); |
Kevin O'Connor | bf2e8c2 | 2012-05-28 12:59:58 -0400 | [diff] [blame] | 105 | |
| 106 | // Init extra stack |
Kevin O'Connor | c924344 | 2013-02-17 13:58:28 -0500 | [diff] [blame] | 107 | StackPos = (void*)(&ExtraStack[BUILD_EXTRA_STACK_SIZE] - zonelow_base); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 108 | } |
| 109 | |
David Woodhouse | a216451 | 2013-01-25 19:26:48 -0600 | [diff] [blame] | 110 | void |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 111 | interface_init(void) |
Kevin O'Connor | 9571ac2 | 2008-05-17 22:20:27 -0400 | [diff] [blame] | 112 | { |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 113 | // Running at new code address - do code relocation fixups |
Kevin O'Connor | 6afc6f8 | 2013-02-19 01:02:50 -0500 | [diff] [blame] | 114 | malloc_init(); |
Kevin O'Connor | c781293 | 2008-06-08 23:08:12 -0400 | [diff] [blame] | 115 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 116 | // Setup romfile items. |
Kevin O'Connor | b840ba9 | 2013-02-09 20:09:22 -0500 | [diff] [blame] | 117 | qemu_cfg_init(); |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 118 | coreboot_cbfs_init(); |
Kevin O'Connor | 59c35f2 | 2008-10-25 23:05:42 -0400 | [diff] [blame] | 119 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 120 | // Setup ivt/bda/ebda |
| 121 | ivt_init(); |
| 122 | bda_init(); |
Kevin O'Connor | 9571ac2 | 2008-05-17 22:20:27 -0400 | [diff] [blame] | 123 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 124 | // Other interfaces |
Kevin O'Connor | d29ce62 | 2014-04-07 12:15:34 -0400 | [diff] [blame] | 125 | thread_init(); |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 126 | boot_init(); |
| 127 | bios32_init(); |
| 128 | pmm_init(); |
| 129 | pnp_init(); |
| 130 | kbd_init(); |
| 131 | mouse_init(); |
Kevin O'Connor | 0525d29 | 2008-07-04 06:18:30 -0400 | [diff] [blame] | 132 | } |
| 133 | |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 134 | // Initialize hardware devices |
David Woodhouse | a216451 | 2013-01-25 19:26:48 -0600 | [diff] [blame] | 135 | void |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 136 | device_hardware_setup(void) |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 137 | { |
| 138 | usb_setup(); |
| 139 | ps2port_setup(); |
| 140 | lpt_setup(); |
| 141 | serial_setup(); |
| 142 | |
| 143 | floppy_setup(); |
| 144 | ata_setup(); |
Gerd Hoffmann | d52fdf6 | 2010-11-29 09:42:13 +0100 | [diff] [blame] | 145 | ahci_setup(); |
Kevin O'Connor | 72691a5 | 2014-12-16 09:55:16 -0500 | [diff] [blame] | 146 | sdcard_setup(); |
Kevin O'Connor | 89a1efd | 2011-01-08 12:24:39 -0500 | [diff] [blame] | 147 | cbfs_payload_setup(); |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 148 | ramdisk_setup(); |
Gleb Natapov | 89acfa3 | 2010-05-10 11:36:37 +0300 | [diff] [blame] | 149 | virtio_blk_setup(); |
Paolo Bonzini | c5c488f | 2012-02-27 17:22:23 +0100 | [diff] [blame] | 150 | virtio_scsi_setup(); |
Gerd Hoffmann | 9d6bac1 | 2012-07-20 10:59:25 +0200 | [diff] [blame] | 151 | lsi_scsi_setup(); |
Paolo Bonzini | 7a39e72 | 2012-08-06 13:15:06 +0200 | [diff] [blame] | 152 | esp_scsi_setup(); |
Hannes Reinecke | 2df70bf | 2012-11-13 15:03:31 +0100 | [diff] [blame] | 153 | megasas_setup(); |
Evgeny Budilovsky | 83d60b3 | 2013-10-14 18:03:36 +0300 | [diff] [blame] | 154 | pvscsi_setup(); |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 155 | } |
| 156 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 157 | static void |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 158 | platform_hardware_setup(void) |
| 159 | { |
Kevin O'Connor | 9e4d41c | 2013-01-21 12:14:29 -0500 | [diff] [blame] | 160 | // Enable CPU caching |
| 161 | setcr0(getcr0() & ~(CR0_CD|CR0_NW)); |
| 162 | |
| 163 | // Make sure legacy DMA isn't running. |
| 164 | dma_setup(); |
| 165 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 166 | // Init base pc hardware. |
| 167 | pic_setup(); |
Kevin O'Connor | 3a735ba | 2013-02-10 00:35:01 -0500 | [diff] [blame] | 168 | mathcp_setup(); |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 169 | timer_setup(); |
Kevin O'Connor | c6e8c07 | 2013-07-20 10:51:58 -0400 | [diff] [blame] | 170 | clock_setup(); |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 171 | |
Kevin O'Connor | a2a86e2 | 2013-02-13 19:35:12 -0500 | [diff] [blame] | 172 | // Platform specific setup |
| 173 | qemu_platform_setup(); |
| 174 | coreboot_platform_setup(); |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 175 | } |
| 176 | |
David Woodhouse | a216451 | 2013-01-25 19:26:48 -0600 | [diff] [blame] | 177 | void |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 178 | prepareboot(void) |
| 179 | { |
| 180 | // Run BCVs |
| 181 | bcv_prepboot(); |
| 182 | |
| 183 | // Finalize data structures before boot |
| 184 | cdrom_prepboot(); |
| 185 | pmm_prepboot(); |
| 186 | malloc_prepboot(); |
| 187 | memmap_prepboot(); |
| 188 | |
Kevin O'Connor | 6c68e7a | 2014-04-19 12:22:22 -0400 | [diff] [blame] | 189 | HaveRunPost = 2; |
| 190 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 191 | // Setup bios checksum. |
| 192 | BiosChecksum -= checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE); |
| 193 | } |
| 194 | |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 195 | // Begin the boot process by invoking an int0x19 in 16bit mode. |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 196 | void VISIBLE32FLAT |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 197 | startBoot(void) |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 198 | { |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 199 | // Clear low-memory allocations (required by PMM spec). |
| 200 | memset((void*)BUILD_STACK_ADDR, 0, BUILD_EBDA_MINIMUM - BUILD_STACK_ADDR); |
| 201 | |
| 202 | dprintf(3, "Jump to int19\n"); |
| 203 | struct bregs br; |
| 204 | memset(&br, 0, sizeof(br)); |
| 205 | br.flags = F_IF; |
| 206 | call16_int(0x19, &br); |
| 207 | } |
| 208 | |
| 209 | // Main setup code. |
| 210 | static void |
| 211 | maininit(void) |
| 212 | { |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 213 | // Initialize internal interfaces. |
| 214 | interface_init(); |
Kevin O'Connor | 59d6ca5 | 2012-05-31 00:20:55 -0400 | [diff] [blame] | 215 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 216 | // Setup platform devices. |
| 217 | platform_hardware_setup(); |
Kevin O'Connor | 9803280 | 2009-12-09 20:18:31 -0500 | [diff] [blame] | 218 | |
Kevin O'Connor | d29ce62 | 2014-04-07 12:15:34 -0400 | [diff] [blame] | 219 | // Start hardware initialization (if threads allowed during optionroms) |
| 220 | if (threads_during_optionroms()) |
Kevin O'Connor | 9f08c90 | 2013-02-10 00:25:53 -0500 | [diff] [blame] | 221 | device_hardware_setup(); |
| 222 | |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 223 | // Run vga option rom |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 224 | vgarom_setup(); |
Kevin O'Connor | 714325c | 2008-11-01 20:32:27 -0400 | [diff] [blame] | 225 | |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 226 | // Do hardware initialization (if running synchronously) |
Kevin O'Connor | d29ce62 | 2014-04-07 12:15:34 -0400 | [diff] [blame] | 227 | if (!threads_during_optionroms()) { |
Kevin O'Connor | d83c87b | 2013-01-21 01:14:12 -0500 | [diff] [blame] | 228 | device_hardware_setup(); |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 229 | wait_threads(); |
| 230 | } |
Kevin O'Connor | a2e7380 | 2008-02-27 10:27:00 -0500 | [diff] [blame] | 231 | |
Kevin O'Connor | 9803280 | 2009-12-09 20:18:31 -0500 | [diff] [blame] | 232 | // Run option roms |
Kevin O'Connor | e438b0c | 2010-05-01 12:20:33 -0400 | [diff] [blame] | 233 | optionrom_setup(); |
Kevin O'Connor | e54ee38 | 2009-07-26 19:33:13 -0400 | [diff] [blame] | 234 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 235 | // Allow user to modify overall boot order. |
| 236 | interactive_bootmenu(); |
| 237 | wait_threads(); |
Kevin O'Connor | 0bf9270 | 2009-08-01 11:45:37 -0400 | [diff] [blame] | 238 | |
Kevin O'Connor | 8a0a972 | 2013-01-21 01:53:31 -0500 | [diff] [blame] | 239 | // Prepare for boot. |
| 240 | prepareboot(); |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 241 | |
| 242 | // Write protect bios memory. |
| 243 | make_bios_readonly(); |
| 244 | |
| 245 | // Invoke int 19 to start boot process. |
| 246 | startBoot(); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 247 | } |
| 248 | |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 249 | |
| 250 | /**************************************************************** |
Kevin O'Connor | 87b533b | 2011-07-10 22:35:07 -0400 | [diff] [blame] | 251 | * POST entry and code relocation |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 252 | ****************************************************************/ |
| 253 | |
| 254 | // Update given relocs for the code at 'dest' with a given 'delta' |
| 255 | static void |
| 256 | updateRelocs(void *dest, u32 *rstart, u32 *rend, u32 delta) |
| 257 | { |
| 258 | u32 *reloc; |
| 259 | for (reloc = rstart; reloc < rend; reloc++) |
| 260 | *((u32*)(dest + *reloc)) += delta; |
| 261 | } |
| 262 | |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 263 | // Relocate init code and then call a function at its new address. |
| 264 | // The passed function should be in the "init" section and must not |
| 265 | // return. |
David Woodhouse | a216451 | 2013-01-25 19:26:48 -0600 | [diff] [blame] | 266 | void __noreturn |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 267 | reloc_preinit(void *f, void *arg) |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 268 | { |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 269 | void (*func)(void *) __noreturn = f; |
| 270 | if (!CONFIG_RELOCATE_INIT) |
| 271 | func(arg); |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 272 | // Symbols populated by the build. |
| 273 | extern u8 code32flat_start[]; |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 274 | extern u8 _reloc_min_align; |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 275 | extern u32 _reloc_abs_start[], _reloc_abs_end[]; |
| 276 | extern u32 _reloc_rel_start[], _reloc_rel_end[]; |
| 277 | extern u32 _reloc_init_start[], _reloc_init_end[]; |
| 278 | extern u8 code32init_start[], code32init_end[]; |
| 279 | |
| 280 | // Allocate space for init code. |
| 281 | u32 initsize = code32init_end - code32init_start; |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 282 | u32 codealign = (u32)&_reloc_min_align; |
| 283 | void *codedest = memalign_tmp(codealign, initsize); |
Kevin O'Connor | c91da7a | 2012-06-08 21:14:19 -0400 | [diff] [blame] | 284 | if (!codedest) |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 285 | panic("No space for init relocation.\n"); |
| 286 | |
| 287 | // Copy code and update relocs (init absolute, init relative, and runtime) |
| 288 | dprintf(1, "Relocating init from %p to %p (size %d)\n" |
Kevin O'Connor | 46b8262 | 2012-05-13 12:10:30 -0400 | [diff] [blame] | 289 | , code32init_start, codedest, initsize); |
| 290 | s32 delta = codedest - (void*)code32init_start; |
| 291 | memcpy(codedest, code32init_start, initsize); |
| 292 | updateRelocs(codedest, _reloc_abs_start, _reloc_abs_end, delta); |
| 293 | updateRelocs(codedest, _reloc_rel_start, _reloc_rel_end, -delta); |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 294 | updateRelocs(code32flat_start, _reloc_init_start, _reloc_init_end, delta); |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 295 | if (f >= (void*)code32init_start && f < (void*)code32init_end) |
| 296 | func = f + delta; |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 297 | |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 298 | // Call function in relocated code. |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 299 | barrier(); |
Kevin O'Connor | bc62809 | 2013-02-05 20:57:10 -0500 | [diff] [blame] | 300 | func(arg); |
Kevin O'Connor | 7f55fd3 | 2010-09-25 11:34:06 -0400 | [diff] [blame] | 301 | } |
| 302 | |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 303 | // Setup for code relocation and then relocate. |
Kevin O'Connor | 025cabd | 2010-09-15 21:59:11 -0400 | [diff] [blame] | 304 | void VISIBLE32INIT |
Kevin O'Connor | 9acdc28 | 2011-09-20 19:42:14 -0400 | [diff] [blame] | 305 | dopost(void) |
| 306 | { |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 307 | // Detect ram and setup internal malloc. |
Kevin O'Connor | a2a86e2 | 2013-02-13 19:35:12 -0500 | [diff] [blame] | 308 | qemu_preinit(); |
| 309 | coreboot_preinit(); |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 310 | malloc_preinit(); |
| 311 | |
| 312 | // Relocate initialization code and call maininit(). |
| 313 | reloc_preinit(maininit, NULL); |
| 314 | } |
| 315 | |
Kevin O'Connor | b1885fc | 2013-02-08 21:00:46 -0500 | [diff] [blame] | 316 | // Entry point for Power On Self Test (POST) - the BIOS initilization |
| 317 | // phase. This function makes the memory at 0xc0000-0xfffff |
| 318 | // read/writable and then calls dopost(). |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 319 | void VISIBLE32FLAT |
| 320 | handle_post(void) |
| 321 | { |
Kevin O'Connor | 4cf2067 | 2013-02-18 11:49:53 -0500 | [diff] [blame] | 322 | if (!CONFIG_QEMU && !CONFIG_COREBOOT) |
| 323 | return; |
| 324 | |
Kevin O'Connor | 940fc1f | 2014-01-15 13:42:50 -0500 | [diff] [blame] | 325 | serial_debug_preinit(); |
Kevin O'Connor | bb1fcb4 | 2014-01-15 13:52:14 -0500 | [diff] [blame] | 326 | debug_banner(); |
Kevin O'Connor | b1885fc | 2013-02-08 21:00:46 -0500 | [diff] [blame] | 327 | |
| 328 | // Check if we are running under Xen. |
| 329 | xen_preinit(); |
Kevin O'Connor | 6ca0460 | 2013-01-21 11:38:49 -0500 | [diff] [blame] | 330 | |
Kevin O'Connor | a899945 | 2010-09-25 12:48:43 -0400 | [diff] [blame] | 331 | // Allow writes to modify bios area (0xf0000) |
| 332 | make_bios_writable(); |
Kevin O'Connor | a899945 | 2010-09-25 12:48:43 -0400 | [diff] [blame] | 333 | |
Kevin O'Connor | 9acdc28 | 2011-09-20 19:42:14 -0400 | [diff] [blame] | 334 | // Now that memory is read/writable - start post process. |
| 335 | dopost(); |
Kevin O'Connor | f076a3e | 2008-02-25 22:25:15 -0500 | [diff] [blame] | 336 | } |