blob: fb3b37f96d06d268d5071b828e91c272c22ef88c [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'Connor2929c352009-07-25 13:48:27 -04003// Copyright (C) 2008,2009 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
8#include "ioport.h" // PORT_*
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05009#include "config.h" // CONFIG_*
10#include "cmos.h" // CMOS_*
11#include "util.h" // memset
12#include "biosvar.h" // struct bios_data_area_s
Kevin O'Connor3bbcc142008-04-13 17:07:33 -040013#include "disk.h" // floppy_drive_setup
Kevin O'Connorc892b132009-08-11 21:59:37 -040014#include "ata.h" // ata_setup
Kevin O'Connorc7812932008-06-08 23:08:12 -040015#include "memmap.h" // add_e820
Kevin O'Connorf54c1502008-06-14 15:56:16 -040016#include "pic.h" // pic_setup
Kevin O'Connor0525d292008-07-04 06:18:30 -040017#include "pci.h" // create_pirtable
18#include "acpi.h" // acpi_bios_init
Kevin O'Connor9521e262008-07-04 13:04:29 -040019#include "bregs.h" // struct bregs
Kevin O'Connor35746442009-02-27 20:54:51 -050020#include "mptable.h" // mptable_init
Kevin O'Connorc659fde2008-12-28 23:43:20 -050021#include "boot.h" // IPL
Kevin O'Connor114592f2009-09-28 21:32:08 -040022#include "usb.h" // usb_setup
Kevin O'Connor01a85202009-10-18 09:49:59 -040023#include "smbios.h" // smbios_init
24#include "paravirt.h" // qemu_cfg_port_probe
Kevin O'Connor57877482009-12-09 21:00:41 -050025#include "ps2port.h" // ps2port_setup
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050026
Kevin O'Connord21c0892008-11-26 17:02:43 -050027void
28__set_irq(int vector, void *loc)
Kevin O'Connore3677b12008-07-04 15:29:23 -040029{
Kevin O'Connor9f985422009-09-09 11:34:39 -040030 SET_IVT(vector, SEGOFF(SEG_BIOS, (u32)loc - BUILD_BIOS_ADDR));
Kevin O'Connore3677b12008-07-04 15:29:23 -040031}
32
Kevin O'Connord21c0892008-11-26 17:02:43 -050033#define set_irq(vector, func) do { \
34 extern void func (void); \
35 __set_irq(vector, func); \
36 } while (0)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040037
Kevin O'Connore3677b12008-07-04 15:29:23 -040038static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -050039init_ivt(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'Connord67a7032009-01-17 19:37:26 -050043 // Initialize all vectors to the default handler.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050044 int i;
Kevin O'Connore3677b12008-07-04 15:29:23 -040045 for (i=0; i<256; i++)
Kevin O'Connord67a7032009-01-17 19:37:26 -050046 set_irq(i, entry_iret_official);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050047
Kevin O'Connord21c0892008-11-26 17:02:43 -050048 // Initialize all hw vectors to a default hw handler.
49 for (i=0x08; i<=0x0f; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050050 set_irq(i, entry_hwpic1);
Kevin O'Connord21c0892008-11-26 17:02:43 -050051 for (i=0x70; i<=0x77; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050052 set_irq(i, entry_hwpic2);
Kevin O'Connord21c0892008-11-26 17:02:43 -050053
54 // Initialize software handlers.
Kevin O'Connor75f49b32009-03-07 00:07:24 -050055 set_irq(0x02, entry_02);
Kevin O'Connord21c0892008-11-26 17:02:43 -050056 set_irq(0x10, entry_10);
Kevin O'Connor9f193b92009-05-16 23:31:27 -040057 set_irq(0x11, entry_11);
58 set_irq(0x12, entry_12);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050059 set_irq(0x13, entry_13_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050060 set_irq(0x14, entry_14);
61 set_irq(0x15, entry_15);
62 set_irq(0x16, entry_16);
63 set_irq(0x17, entry_17);
64 set_irq(0x18, entry_18);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050065 set_irq(0x19, entry_19_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050066 set_irq(0x1a, entry_1a);
Kevin O'Connord21c0892008-11-26 17:02:43 -050067 set_irq(0x40, entry_40);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050068
Kevin O'Connorb164d2c2009-12-26 23:24:52 -050069 // INT 60h-66h reserved for user interrupt
70 for (i=0x60; i<=0x66; i++)
71 SET_IVT(i, SEGOFF(0, 0));
72
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050073 // set vector 0x79 to zero
74 // this is used by 'gardian angel' protection system
Kevin O'Connor9f985422009-09-09 11:34:39 -040075 SET_IVT(0x79, SEGOFF(0, 0));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050076
Kevin O'Connord21c0892008-11-26 17:02:43 -050077 __set_irq(0x1E, &diskette_param_table2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050078}
79
80static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -050081init_bda(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050082{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050083 dprintf(3, "init bda\n");
84
Kevin O'Connor35ae7262009-01-19 15:44:44 -050085 struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050086 memset(bda, 0, sizeof(*bda));
87
Kevin O'Connor49553a42009-05-17 10:31:34 -040088 int esize = EBDA_SIZE_START;
Kevin O'Connorf416fe92009-09-24 20:51:55 -040089 SET_BDA(mem_size_kb, BUILD_LOWRAM_END/1024 - esize);
Kevin O'Connor49553a42009-05-17 10:31:34 -040090 u16 eseg = EBDA_SEGMENT_START;
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050091 SET_BDA(ebda_seg, eseg);
92
Kevin O'Connor9becbf12009-07-12 09:29:46 -040093 // Init ebda
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050094 struct extended_bios_data_area_s *ebda = get_ebda_ptr();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050095 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050096 ebda->size = esize;
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050097}
98
99static void
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400100ram_probe(void)
101{
Kevin O'Connor35192dd2008-06-08 19:18:33 -0400102 dprintf(3, "Find memory size\n");
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400103 if (CONFIG_COREBOOT) {
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -0400104 coreboot_setup();
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400105 } else {
106 // On emulators, get memory size from nvram.
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400107 u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
108 | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400109 if (rs)
110 rs += 16 * 1024 * 1024;
111 else
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400112 rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
113 | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400114 + 1 * 1024 * 1024);
Kevin O'Connore7916362008-12-28 22:03:17 -0500115 RamSize = rs;
Kevin O'Connorc7812932008-06-08 23:08:12 -0400116 add_e820(0, rs, E820_RAM);
117
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400118 // Check for memory over 4Gig
119 u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
Kevin O'Connor669c9912010-01-05 19:50:04 -0500120 | ((u32)inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400121 | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
Kevin O'Connore7916362008-12-28 22:03:17 -0500122 RamSizeOver4G = high;
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400123 add_e820(0x100000000ull, high, E820_RAM);
124
Kevin O'Connorc7812932008-06-08 23:08:12 -0400125 /* reserve 256KB BIOS area at the end of 4 GB */
126 add_e820(0xfffc0000, 256*1024, E820_RESERVED);
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400127 }
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400128
Kevin O'Connorb8d7a472008-06-21 11:43:32 -0400129 // Don't declare any memory between 0xa0000 and 0x100000
Kevin O'Connorf416fe92009-09-24 20:51:55 -0400130 add_e820(BUILD_LOWRAM_END, BUILD_BIOS_ADDR-BUILD_LOWRAM_END, E820_HOLE);
Kevin O'Connorb8d7a472008-06-21 11:43:32 -0400131
Kevin O'Connorc7812932008-06-08 23:08:12 -0400132 // Mark known areas as reserved.
Kevin O'Connor08815372008-12-29 21:16:31 -0500133 u16 ebda_seg = get_ebda_seg();
Kevin O'Connor35ae7262009-01-19 15:44:44 -0500134 add_e820((u32)MAKE_FLATPTR(ebda_seg, 0), GET_EBDA2(ebda_seg, size) * 1024
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -0500135 , E820_RESERVED);
Kevin O'Connore3677b12008-07-04 15:29:23 -0400136 add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400137
Kevin O'Connorb8bf14a2009-10-08 21:50:31 -0400138 if (kvm_para_available())
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500139 // 4 pages before the bios, 3 pages for vmx tss pages, the
140 // other page for EPT real mode pagetable
141 add_e820(0xfffbc000, 4*4096, E820_RESERVED);
142
Kevin O'Connor979862e2009-12-24 11:09:30 -0500143 dprintf(1, "Ram Size=0x%08x (0x%08x%08x high)\n"
144 , RamSize, (u32)(RamSizeOver4G >> 32), (u32)RamSizeOver4G);
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400145}
146
147static void
Kevin O'Connor0525d292008-07-04 06:18:30 -0400148init_bios_tables(void)
149{
Kevin O'Connordf5a5fd2009-07-28 20:46:03 -0400150 if (CONFIG_COREBOOT) {
151 coreboot_copy_biostable();
Kevin O'Connor0525d292008-07-04 06:18:30 -0400152 return;
Kevin O'Connordf5a5fd2009-07-28 20:46:03 -0400153 }
Kevin O'Connor0525d292008-07-04 06:18:30 -0400154
Kevin O'Connor0525d292008-07-04 06:18:30 -0400155 create_pirtable();
156
157 mptable_init();
158
159 smbios_init();
160
161 acpi_bios_init();
162}
163
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400164// Main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500165static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500166post(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500167{
Kevin O'Connor969df602009-11-25 19:05:04 -0500168 // Detect and init ram.
Kevin O'Connor8c0e3722009-01-02 14:19:43 -0500169 init_ivt();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500170 init_bda();
Kevin O'Connor969df602009-11-25 19:05:04 -0500171 memmap_setup();
172 ram_probe();
173 malloc_setup();
Kevin O'Connore9a67bf2009-12-09 20:04:54 -0500174 thread_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500175
Kevin O'Connor969df602009-11-25 19:05:04 -0500176 // Init base pc hardware.
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400177 pic_setup();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400178 timer_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400179 mathcp_setup();
180
Kevin O'Connor969df602009-11-25 19:05:04 -0500181 // Initialize smp
182 qemu_cfg_port_probe();
Kevin O'Connoracf13742008-11-29 11:19:19 -0500183 smp_probe_setup();
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500184 mtrr_setup();
Kevin O'Connore97ca7b2009-06-21 09:10:28 -0400185 smp_probe();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500186
Kevin O'Connor969df602009-11-25 19:05:04 -0500187 // Initialize pci
Kevin O'Connor40f5b5a2009-09-13 10:46:57 -0400188 pci_setup();
189 smm_init();
190
Kevin O'Connor98032802009-12-09 20:18:31 -0500191 // Setup interfaces that option roms may need
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500192 bios32_setup();
Kevin O'Connor969df602009-11-25 19:05:04 -0500193 pmm_setup();
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500194 pnp_setup();
Kevin O'Connor57877482009-12-09 21:00:41 -0500195 kbd_setup();
196 mouse_setup();
Kevin O'Connor98032802009-12-09 20:18:31 -0500197 init_bios_tables();
198
199 // Run vga option rom (if running synchronously)
200 if (!CONFIG_THREADS || !CONFIG_THREAD_OPTIONROMS)
201 vga_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400202
Kevin O'Connor969df602009-11-25 19:05:04 -0500203 // Initialize hardware devices
Kevin O'Connor114592f2009-09-28 21:32:08 -0400204 usb_setup();
Kevin O'Connor57877482009-12-09 21:00:41 -0500205 ps2port_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500206 lpt_setup();
207 serial_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500208
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500209 boot_setup();
Kevin O'Connorc892b132009-08-11 21:59:37 -0400210 drive_setup();
Kevin O'Connor36c93a52009-09-12 19:35:04 -0400211 cdemu_setup();
Kevin O'Connorc892b132009-08-11 21:59:37 -0400212 floppy_setup();
213 ata_setup();
Kevin O'Connora3855ad2009-08-16 21:59:40 -0400214 ramdisk_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500215
Kevin O'Connor98032802009-12-09 20:18:31 -0500216 // Run option roms
Kevin O'Connorad901592009-12-13 11:25:25 -0500217 if (CONFIG_THREADS && CONFIG_THREAD_OPTIONROMS) {
218 // Run option roms while hw init still in progress.
Kevin O'Connor98032802009-12-09 20:18:31 -0500219 vga_setup();
Kevin O'Connorad901592009-12-13 11:25:25 -0500220 optionrom_setup();
221 wait_threads();
222 } else {
223 // Wait for hw init to finish and run non-vga option roms.
224 wait_threads();
225 optionrom_setup();
226 }
Kevin O'Connore54ee382009-07-26 19:33:13 -0400227
Kevin O'Connor969df602009-11-25 19:05:04 -0500228 // Run BCVs and show optional boot menu
Kevin O'Connor0bf92702009-08-01 11:45:37 -0400229 boot_prep();
230
Kevin O'Connor969df602009-11-25 19:05:04 -0500231 // Finalize data structures before boot
Kevin O'Connore54ee382009-07-26 19:33:13 -0400232 pmm_finalize();
233 malloc_finalize();
234 memmap_finalize();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500235}
236
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400237// 32-bit entry point.
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500238void VISIBLE32FLAT
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500239_start(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500240{
Kevin O'Connor95576e72008-03-01 09:57:51 -0500241 init_dma();
Kevin O'Connor95576e72008-03-01 09:57:51 -0500242
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400243 debug_serial_setup();
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -0400244 dprintf(1, "Start bios (version %s)\n", VERSION);
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400245
Kevin O'Connoracf13742008-11-29 11:19:19 -0500246 // Allow writes to modify bios area (0xf0000)
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400247 make_bios_writable();
248
249 // Perform main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500250 post();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400251
Kevin O'Connore90f2642008-06-28 12:18:39 -0400252 // Setup bios checksum.
Kevin O'Connor523e5a92009-07-04 13:46:33 -0400253 BiosChecksum -= checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE);
Kevin O'Connore90f2642008-06-28 12:18:39 -0400254
Kevin O'Connor0bf92702009-08-01 11:45:37 -0400255 // Write protect bios memory.
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400256 make_bios_readonly();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400257
258 // Invoke int 19 to start boot process.
259 dprintf(3, "Jump to int19\n");
260 struct bregs br;
261 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -0400262 br.flags = F_IF;
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400263 call16_int(0x19, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500264}