blob: e84dcaeffa61eaaead8a977e7321a121c9e298e0 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001// 32bit code to Power On Self Test (POST) a machine.
2//
Kevin O'Connor8a0a9722013-01-21 01:53:31 -05003// Copyright (C) 2008-2013 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004// Copyright (C) 2002 MandrakeSoft S.A.
5//
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05006// This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05007
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05008#include "biosvar.h" // struct bios_data_area_s
Kevin O'Connord83c87b2013-01-21 01:14:12 -05009#include "boot.h" // boot_init
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040010#include "bregs.h" // struct bregs
11#include "config.h" // CONFIG_*
12#include "disk.h" // floppy_setup
Kevin O'Connorccee6e82013-09-02 21:25:21 -040013#include "fw/paravirt.h" // qemu_cfg_preinit
14#include "fw/xen.h" // xen_preinit
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040015#include "hw/ahci.h" // ahci_setup
16#include "hw/ata.h" // ata_setup
17#include "hw/cmos.h" // CMOS_*
18#include "hw/esp-scsi.h" // esp_scsi_setup
19#include "hw/lsi-scsi.h" // lsi_scsi_setup
20#include "hw/megasas.h" // megasas_setup
21#include "hw/pic.h" // pic_setup
Kevin O'Connor5d369d82013-09-02 20:48:46 -040022#include "hw/ps2port.h" // ps2port_setup
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040023#include "hw/usb.h" // usb_setup
Kevin O'Connor5d369d82013-09-02 20:48:46 -040024#include "hw/virtio-blk.h" // virtio_blk_setup
25#include "hw/virtio-scsi.h" // virtio_scsi_setup
Kevin O'Connor9dea5902013-09-14 20:23:54 -040026#include "malloc.h" // malloc_init
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040027#include "memmap.h" // add_e820
28#include "output.h" // dprintf
David Woodhousea2164512013-01-25 19:26:48 -060029#include "post.h" // interface_init
Kevin O'Connorfa9c66a2013-09-14 19:10:40 -040030#include "string.h" // memset
Kevin O'Connor2d2fa312013-09-14 21:55:26 -040031#include "util.h" // kbd_init
Kevin O'Connor025cabd2010-09-15 21:59:11 -040032
Kevin O'Connor8a0a9722013-01-21 01:53:31 -050033
Kevin O'Connor025cabd2010-09-15 21:59:11 -040034/****************************************************************
Kevin O'Connor6ca04602013-01-21 11:38:49 -050035 * BIOS initialization and hardware setup
Kevin O'Connor025cabd2010-09-15 21:59:11 -040036 ****************************************************************/
37
Kevin O'Connore3677b12008-07-04 15:29:23 -040038static void
Kevin O'Connord83c87b2013-01-21 01:14:12 -050039ivt_init(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050040{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050041 dprintf(3, "init ivt\n");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050042
Kevin O'Connor9e4d41c2013-01-21 12:14:29 -050043 // Setup reset-vector entry point (controls legacy reboots).
44 HaveRunPost = 1;
45 outb_cmos(0, CMOS_RESET_CODE);
46
Kevin O'Connord67a7032009-01-17 19:37:26 -050047 // Initialize all vectors to the default handler.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050048 int i;
Kevin O'Connore3677b12008-07-04 15:29:23 -040049 for (i=0; i<256; i++)
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -040050 SET_IVT(i, FUNC16(entry_iret_official));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050051
Kevin O'Connord21c0892008-11-26 17:02:43 -050052 // Initialize all hw vectors to a default hw handler.
Kevin O'Connorf465e1e2013-02-23 21:33:36 -050053 for (i=BIOS_HWIRQ0_VECTOR; i<BIOS_HWIRQ0_VECTOR+8; i++)
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -040054 SET_IVT(i, FUNC16(entry_hwpic1));
Kevin O'Connorf465e1e2013-02-23 21:33:36 -050055 for (i=BIOS_HWIRQ8_VECTOR; i<BIOS_HWIRQ8_VECTOR+8; i++)
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -040056 SET_IVT(i, FUNC16(entry_hwpic2));
Kevin O'Connord21c0892008-11-26 17:02:43 -050057
58 // Initialize software handlers.
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -040059 SET_IVT(0x02, FUNC16(entry_02));
60 SET_IVT(0x10, FUNC16(entry_10));
61 SET_IVT(0x11, FUNC16(entry_11));
62 SET_IVT(0x12, FUNC16(entry_12));
63 SET_IVT(0x13, FUNC16(entry_13_official));
64 SET_IVT(0x14, FUNC16(entry_14));
65 SET_IVT(0x15, FUNC16(entry_15));
66 SET_IVT(0x16, FUNC16(entry_16));
67 SET_IVT(0x17, FUNC16(entry_17));
68 SET_IVT(0x18, FUNC16(entry_18));
69 SET_IVT(0x19, FUNC16(entry_19_official));
Kevin O'Connor922aa1b2013-03-02 04:02:11 -050070 SET_IVT(0x1a, FUNC16(entry_1a_official));
Kevin O'Connorcc9e1bf2010-07-28 21:31:38 -040071 SET_IVT(0x40, FUNC16(entry_40));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050072
Kevin O'Connorb164d2c2009-12-26 23:24:52 -050073 // INT 60h-66h reserved for user interrupt
74 for (i=0x60; i<=0x66; i++)
75 SET_IVT(i, SEGOFF(0, 0));
76
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050077 // set vector 0x79 to zero
78 // this is used by 'gardian angel' protection system
Kevin O'Connor9f985422009-09-09 11:34:39 -040079 SET_IVT(0x79, SEGOFF(0, 0));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050080}
81
82static void
Kevin O'Connord83c87b2013-01-21 01:14:12 -050083bda_init(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050084{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050085 dprintf(3, "init bda\n");
86
Kevin O'Connor35ae7262009-01-19 15:44:44 -050087 struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050088 memset(bda, 0, sizeof(*bda));
89
Kevin O'Connor49553a42009-05-17 10:31:34 -040090 int esize = EBDA_SIZE_START;
Kevin O'Connor025cabd2010-09-15 21:59:11 -040091 u16 ebda_seg = EBDA_SEGMENT_START;
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -040092 extern u8 final_varlow_start[];
93 if (!CONFIG_MALLOC_UPPERMEMORY)
94 ebda_seg = FLATPTR_TO_SEG(ALIGN_DOWN((u32)final_varlow_start, 1024)
95 - EBDA_SIZE_START*1024);
Kevin O'Connor025cabd2010-09-15 21:59:11 -040096 SET_BDA(ebda_seg, ebda_seg);
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050097
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -040098 SET_BDA(mem_size_kb, ebda_seg / (1024/16));
99
Kevin O'Connor9becbf12009-07-12 09:29:46 -0400100 // Init ebda
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -0500101 struct extended_bios_data_area_s *ebda = get_ebda_ptr();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500102 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -0500103 ebda->size = esize;
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400104
Kevin O'Connor2b0fb8c2013-08-07 23:03:47 -0400105 add_e820((u32)ebda, BUILD_LOWRAM_END-(u32)ebda, E820_RESERVED);
Kevin O'Connorbf2e8c22012-05-28 12:59:58 -0400106
107 // Init extra stack
Kevin O'Connorc9243442013-02-17 13:58:28 -0500108 StackPos = (void*)(&ExtraStack[BUILD_EXTRA_STACK_SIZE] - zonelow_base);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500109}
110
David Woodhousea2164512013-01-25 19:26:48 -0600111void
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500112interface_init(void)
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400113{
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500114 // Running at new code address - do code relocation fixups
Kevin O'Connor6afc6f82013-02-19 01:02:50 -0500115 malloc_init();
Kevin O'Connorc7812932008-06-08 23:08:12 -0400116
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500117 // Setup romfile items.
Kevin O'Connorb840ba92013-02-09 20:09:22 -0500118 qemu_cfg_init();
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500119 coreboot_cbfs_init();
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400120
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500121 // Setup ivt/bda/ebda
122 ivt_init();
123 bda_init();
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400124
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500125 // Other interfaces
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500126 boot_init();
127 bios32_init();
128 pmm_init();
129 pnp_init();
130 kbd_init();
131 mouse_init();
Kevin O'Connor0525d292008-07-04 06:18:30 -0400132}
133
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400134// Initialize hardware devices
David Woodhousea2164512013-01-25 19:26:48 -0600135void
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500136device_hardware_setup(void)
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400137{
138 usb_setup();
139 ps2port_setup();
140 lpt_setup();
141 serial_setup();
142
143 floppy_setup();
144 ata_setup();
Gerd Hoffmannd52fdf62010-11-29 09:42:13 +0100145 ahci_setup();
Kevin O'Connor89a1efd2011-01-08 12:24:39 -0500146 cbfs_payload_setup();
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400147 ramdisk_setup();
Gleb Natapov89acfa32010-05-10 11:36:37 +0300148 virtio_blk_setup();
Paolo Bonzinic5c488f2012-02-27 17:22:23 +0100149 virtio_scsi_setup();
Gerd Hoffmann9d6bac12012-07-20 10:59:25 +0200150 lsi_scsi_setup();
Paolo Bonzini7a39e722012-08-06 13:15:06 +0200151 esp_scsi_setup();
Hannes Reinecke2df70bf2012-11-13 15:03:31 +0100152 megasas_setup();
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400153}
154
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500155static void
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500156platform_hardware_setup(void)
157{
Kevin O'Connor9e4d41c2013-01-21 12:14:29 -0500158 // Enable CPU caching
159 setcr0(getcr0() & ~(CR0_CD|CR0_NW));
160
161 // Make sure legacy DMA isn't running.
162 dma_setup();
163
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500164 // Init base pc hardware.
165 pic_setup();
Kevin O'Connor3a735ba2013-02-10 00:35:01 -0500166 mathcp_setup();
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500167 timer_setup();
Kevin O'Connorc6e8c072013-07-20 10:51:58 -0400168 clock_setup();
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500169
Kevin O'Connora2a86e22013-02-13 19:35:12 -0500170 // Platform specific setup
171 qemu_platform_setup();
172 coreboot_platform_setup();
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500173}
174
David Woodhousea2164512013-01-25 19:26:48 -0600175void
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500176prepareboot(void)
177{
178 // Run BCVs
179 bcv_prepboot();
180
181 // Finalize data structures before boot
182 cdrom_prepboot();
183 pmm_prepboot();
184 malloc_prepboot();
185 memmap_prepboot();
186
187 // Setup bios checksum.
188 BiosChecksum -= checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE);
189}
190
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400191// Begin the boot process by invoking an int0x19 in 16bit mode.
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400192void VISIBLE32FLAT
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400193startBoot(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500194{
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400195 // Clear low-memory allocations (required by PMM spec).
196 memset((void*)BUILD_STACK_ADDR, 0, BUILD_EBDA_MINIMUM - BUILD_STACK_ADDR);
197
198 dprintf(3, "Jump to int19\n");
199 struct bregs br;
200 memset(&br, 0, sizeof(br));
201 br.flags = F_IF;
202 call16_int(0x19, &br);
203}
204
205// Main setup code.
206static void
207maininit(void)
208{
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500209 // Initialize internal interfaces.
210 interface_init();
Kevin O'Connor59d6ca52012-05-31 00:20:55 -0400211
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500212 // Setup platform devices.
213 platform_hardware_setup();
Kevin O'Connor98032802009-12-09 20:18:31 -0500214
Kevin O'Connor9f08c902013-02-10 00:25:53 -0500215 // Start hardware initialization (if optionrom threading)
216 if (CONFIG_THREAD_OPTIONROMS)
217 device_hardware_setup();
218
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400219 // Run vga option rom
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500220 vgarom_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400221
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400222 // Do hardware initialization (if running synchronously)
Kevin O'Connorb5c7da62013-02-08 00:45:44 -0500223 if (!CONFIG_THREAD_OPTIONROMS) {
Kevin O'Connord83c87b2013-01-21 01:14:12 -0500224 device_hardware_setup();
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400225 wait_threads();
226 }
Kevin O'Connora2e73802008-02-27 10:27:00 -0500227
Kevin O'Connor98032802009-12-09 20:18:31 -0500228 // Run option roms
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400229 optionrom_setup();
Kevin O'Connore54ee382009-07-26 19:33:13 -0400230
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500231 // Allow user to modify overall boot order.
232 interactive_bootmenu();
233 wait_threads();
Kevin O'Connor0bf92702009-08-01 11:45:37 -0400234
Kevin O'Connor8a0a9722013-01-21 01:53:31 -0500235 // Prepare for boot.
236 prepareboot();
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400237
238 // Write protect bios memory.
239 make_bios_readonly();
240
241 // Invoke int 19 to start boot process.
242 startBoot();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500243}
244
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400245
246/****************************************************************
Kevin O'Connor87b533b2011-07-10 22:35:07 -0400247 * POST entry and code relocation
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400248 ****************************************************************/
249
250// Update given relocs for the code at 'dest' with a given 'delta'
251static void
252updateRelocs(void *dest, u32 *rstart, u32 *rend, u32 delta)
253{
254 u32 *reloc;
255 for (reloc = rstart; reloc < rend; reloc++)
256 *((u32*)(dest + *reloc)) += delta;
257}
258
Kevin O'Connorbc628092013-02-05 20:57:10 -0500259// Relocate init code and then call a function at its new address.
260// The passed function should be in the "init" section and must not
261// return.
David Woodhousea2164512013-01-25 19:26:48 -0600262void __noreturn
Kevin O'Connorbc628092013-02-05 20:57:10 -0500263reloc_preinit(void *f, void *arg)
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400264{
Kevin O'Connorbc628092013-02-05 20:57:10 -0500265 void (*func)(void *) __noreturn = f;
266 if (!CONFIG_RELOCATE_INIT)
267 func(arg);
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400268 // Symbols populated by the build.
269 extern u8 code32flat_start[];
Kevin O'Connor46b82622012-05-13 12:10:30 -0400270 extern u8 _reloc_min_align;
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400271 extern u32 _reloc_abs_start[], _reloc_abs_end[];
272 extern u32 _reloc_rel_start[], _reloc_rel_end[];
273 extern u32 _reloc_init_start[], _reloc_init_end[];
274 extern u8 code32init_start[], code32init_end[];
275
276 // Allocate space for init code.
277 u32 initsize = code32init_end - code32init_start;
Kevin O'Connor46b82622012-05-13 12:10:30 -0400278 u32 codealign = (u32)&_reloc_min_align;
279 void *codedest = memalign_tmp(codealign, initsize);
Kevin O'Connorc91da7a2012-06-08 21:14:19 -0400280 if (!codedest)
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400281 panic("No space for init relocation.\n");
282
283 // Copy code and update relocs (init absolute, init relative, and runtime)
284 dprintf(1, "Relocating init from %p to %p (size %d)\n"
Kevin O'Connor46b82622012-05-13 12:10:30 -0400285 , code32init_start, codedest, initsize);
286 s32 delta = codedest - (void*)code32init_start;
287 memcpy(codedest, code32init_start, initsize);
288 updateRelocs(codedest, _reloc_abs_start, _reloc_abs_end, delta);
289 updateRelocs(codedest, _reloc_rel_start, _reloc_rel_end, -delta);
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400290 updateRelocs(code32flat_start, _reloc_init_start, _reloc_init_end, delta);
Kevin O'Connorbc628092013-02-05 20:57:10 -0500291 if (f >= (void*)code32init_start && f < (void*)code32init_end)
292 func = f + delta;
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400293
Kevin O'Connorbc628092013-02-05 20:57:10 -0500294 // Call function in relocated code.
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400295 barrier();
Kevin O'Connorbc628092013-02-05 20:57:10 -0500296 func(arg);
Kevin O'Connor7f55fd32010-09-25 11:34:06 -0400297}
298
Kevin O'Connor6ca04602013-01-21 11:38:49 -0500299// Setup for code relocation and then relocate.
Kevin O'Connor025cabd2010-09-15 21:59:11 -0400300void VISIBLE32INIT
Kevin O'Connor9acdc282011-09-20 19:42:14 -0400301dopost(void)
302{
Kevin O'Connor6ca04602013-01-21 11:38:49 -0500303 // Detect ram and setup internal malloc.
Kevin O'Connora2a86e22013-02-13 19:35:12 -0500304 qemu_preinit();
305 coreboot_preinit();
Kevin O'Connor6ca04602013-01-21 11:38:49 -0500306 malloc_preinit();
307
308 // Relocate initialization code and call maininit().
309 reloc_preinit(maininit, NULL);
310}
311
Kevin O'Connorb1885fc2013-02-08 21:00:46 -0500312// Entry point for Power On Self Test (POST) - the BIOS initilization
313// phase. This function makes the memory at 0xc0000-0xfffff
314// read/writable and then calls dopost().
Kevin O'Connor6ca04602013-01-21 11:38:49 -0500315void VISIBLE32FLAT
316handle_post(void)
317{
Kevin O'Connor4cf20672013-02-18 11:49:53 -0500318 if (!CONFIG_QEMU && !CONFIG_COREBOOT)
319 return;
320
Kevin O'Connorb1885fc2013-02-08 21:00:46 -0500321 debug_serial_preinit();
322 dprintf(1, "Start bios (version %s)\n", VERSION);
323
324 // Check if we are running under Xen.
325 xen_preinit();
Kevin O'Connor6ca04602013-01-21 11:38:49 -0500326
Kevin O'Connora8999452010-09-25 12:48:43 -0400327 // Allow writes to modify bios area (0xf0000)
328 make_bios_writable();
Kevin O'Connora8999452010-09-25 12:48:43 -0400329
Kevin O'Connor9acdc282011-09-20 19:42:14 -0400330 // Now that memory is read/writable - start post process.
331 dopost();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500332}