blob: e2569b0cd770fae25734a562b25b278498e365cc [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'Connorf076a3e2008-02-25 22:25:15 -050022
Kevin O'Connord21c0892008-11-26 17:02:43 -050023void
24__set_irq(int vector, void *loc)
Kevin O'Connore3677b12008-07-04 15:29:23 -040025{
Kevin O'Connor9f985422009-09-09 11:34:39 -040026 SET_IVT(vector, SEGOFF(SEG_BIOS, (u32)loc - BUILD_BIOS_ADDR));
Kevin O'Connore3677b12008-07-04 15:29:23 -040027}
28
Kevin O'Connord21c0892008-11-26 17:02:43 -050029#define set_irq(vector, func) do { \
30 extern void func (void); \
31 __set_irq(vector, func); \
32 } while (0)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040033
Kevin O'Connore3677b12008-07-04 15:29:23 -040034static void
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050035init_ivt()
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050036{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050037 dprintf(3, "init ivt\n");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050038
Kevin O'Connord67a7032009-01-17 19:37:26 -050039 // Initialize all vectors to the default handler.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050040 int i;
Kevin O'Connore3677b12008-07-04 15:29:23 -040041 for (i=0; i<256; i++)
Kevin O'Connord67a7032009-01-17 19:37:26 -050042 set_irq(i, entry_iret_official);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050043
Kevin O'Connord21c0892008-11-26 17:02:43 -050044 // Initialize all hw vectors to a default hw handler.
45 for (i=0x08; i<=0x0f; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050046 set_irq(i, entry_hwpic1);
Kevin O'Connord21c0892008-11-26 17:02:43 -050047 for (i=0x70; i<=0x77; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050048 set_irq(i, entry_hwpic2);
Kevin O'Connord21c0892008-11-26 17:02:43 -050049
50 // Initialize software handlers.
Kevin O'Connor75f49b32009-03-07 00:07:24 -050051 set_irq(0x02, entry_02);
Kevin O'Connord21c0892008-11-26 17:02:43 -050052 set_irq(0x10, entry_10);
Kevin O'Connor9f193b92009-05-16 23:31:27 -040053 set_irq(0x11, entry_11);
54 set_irq(0x12, entry_12);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050055 set_irq(0x13, entry_13_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050056 set_irq(0x14, entry_14);
57 set_irq(0x15, entry_15);
58 set_irq(0x16, entry_16);
59 set_irq(0x17, entry_17);
60 set_irq(0x18, entry_18);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050061 set_irq(0x19, entry_19_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050062 set_irq(0x1a, entry_1a);
Kevin O'Connord21c0892008-11-26 17:02:43 -050063 set_irq(0x40, entry_40);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050064
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050065 // set vector 0x79 to zero
66 // this is used by 'gardian angel' protection system
Kevin O'Connor9f985422009-09-09 11:34:39 -040067 SET_IVT(0x79, SEGOFF(0, 0));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050068
Kevin O'Connord21c0892008-11-26 17:02:43 -050069 __set_irq(0x1E, &diskette_param_table2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050070}
71
72static void
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050073init_bda()
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050074{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050075 dprintf(3, "init bda\n");
76
Kevin O'Connor35ae7262009-01-19 15:44:44 -050077 struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050078 memset(bda, 0, sizeof(*bda));
79
Kevin O'Connor49553a42009-05-17 10:31:34 -040080 int esize = EBDA_SIZE_START;
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050081 SET_BDA(mem_size_kb, 640 - esize);
Kevin O'Connor49553a42009-05-17 10:31:34 -040082 u16 eseg = EBDA_SEGMENT_START;
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050083 SET_BDA(ebda_seg, eseg);
84
Kevin O'Connor9becbf12009-07-12 09:29:46 -040085 // Init ebda
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050086 struct extended_bios_data_area_s *ebda = get_ebda_ptr();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050087 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050088 ebda->size = esize;
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050089}
90
91static void
Kevin O'Connor9571ac22008-05-17 22:20:27 -040092ram_probe(void)
93{
Kevin O'Connor35192dd2008-06-08 19:18:33 -040094 dprintf(3, "Find memory size\n");
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040095 if (CONFIG_COREBOOT) {
Kevin O'Connor4c0c85a2009-04-11 23:31:29 -040096 coreboot_setup();
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040097 } else {
98 // On emulators, get memory size from nvram.
Kevin O'Connor59c35f22008-10-25 23:05:42 -040099 u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
100 | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400101 if (rs)
102 rs += 16 * 1024 * 1024;
103 else
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400104 rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
105 | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400106 + 1 * 1024 * 1024);
Kevin O'Connore7916362008-12-28 22:03:17 -0500107 RamSize = rs;
Kevin O'Connorc7812932008-06-08 23:08:12 -0400108 add_e820(0, rs, E820_RAM);
109
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400110 // Check for memory over 4Gig
111 u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
112 | (inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
113 | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
Kevin O'Connore7916362008-12-28 22:03:17 -0500114 RamSizeOver4G = high;
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400115 add_e820(0x100000000ull, high, E820_RAM);
116
Kevin O'Connorc7812932008-06-08 23:08:12 -0400117 /* reserve 256KB BIOS area at the end of 4 GB */
118 add_e820(0xfffc0000, 256*1024, E820_RESERVED);
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400119 }
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400120
Kevin O'Connorb8d7a472008-06-21 11:43:32 -0400121 // Don't declare any memory between 0xa0000 and 0x100000
122 add_e820(0xa0000, 0x50000, E820_HOLE);
123
Kevin O'Connorc7812932008-06-08 23:08:12 -0400124 // Mark known areas as reserved.
Kevin O'Connor08815372008-12-29 21:16:31 -0500125 u16 ebda_seg = get_ebda_seg();
Kevin O'Connor35ae7262009-01-19 15:44:44 -0500126 add_e820((u32)MAKE_FLATPTR(ebda_seg, 0), GET_EBDA2(ebda_seg, size) * 1024
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -0500127 , E820_RESERVED);
Kevin O'Connore3677b12008-07-04 15:29:23 -0400128 add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400129
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500130 if (CONFIG_KVM)
131 // 4 pages before the bios, 3 pages for vmx tss pages, the
132 // other page for EPT real mode pagetable
133 add_e820(0xfffbc000, 4*4096, E820_RESERVED);
134
Kevin O'Connore7916362008-12-28 22:03:17 -0500135 dprintf(1, "Ram Size=0x%08x\n", RamSize);
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400136}
137
138static void
Kevin O'Connor0525d292008-07-04 06:18:30 -0400139init_bios_tables(void)
140{
Kevin O'Connordf5a5fd2009-07-28 20:46:03 -0400141 if (CONFIG_COREBOOT) {
142 coreboot_copy_biostable();
Kevin O'Connor0525d292008-07-04 06:18:30 -0400143 return;
Kevin O'Connordf5a5fd2009-07-28 20:46:03 -0400144 }
Kevin O'Connor0525d292008-07-04 06:18:30 -0400145
Kevin O'Connor0525d292008-07-04 06:18:30 -0400146 create_pirtable();
147
148 mptable_init();
149
150 smbios_init();
151
152 acpi_bios_init();
153}
154
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400155// Main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500156static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500157post()
158{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -0500159 init_ivt();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500160 init_bda();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500161
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400162 pic_setup();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400163 timer_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400164 mathcp_setup();
165
Kevin O'Connoracf13742008-11-29 11:19:19 -0500166 smp_probe_setup();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500167 memmap_setup();
168 ram_probe();
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500169 mtrr_setup();
Kevin O'Connore97ca7b2009-06-21 09:10:28 -0400170 smp_probe();
Kevin O'Connor2929c352009-07-25 13:48:27 -0400171 malloc_setup();
Kevin O'Connore54ee382009-07-26 19:33:13 -0400172 pmm_setup();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500173
Kevin O'Connor40f5b5a2009-09-13 10:46:57 -0400174 pci_setup();
175 smm_init();
176
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500177 pnp_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400178 vga_setup();
179
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500180 kbd_setup();
181 lpt_setup();
182 serial_setup();
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400183 mouse_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500184
Kevin O'Connor0525d292008-07-04 06:18:30 -0400185 init_bios_tables();
Kevin O'Connorc7812932008-06-08 23:08:12 -0400186
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500187 boot_setup();
188
Kevin O'Connorc892b132009-08-11 21:59:37 -0400189 drive_setup();
Kevin O'Connor36c93a52009-09-12 19:35:04 -0400190 cdemu_setup();
Kevin O'Connorc892b132009-08-11 21:59:37 -0400191 floppy_setup();
192 ata_setup();
Kevin O'Connora3855ad2009-08-16 21:59:40 -0400193 ramdisk_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500194
Kevin O'Connor714325c2008-11-01 20:32:27 -0400195 optionrom_setup();
Kevin O'Connore54ee382009-07-26 19:33:13 -0400196
Kevin O'Connor0bf92702009-08-01 11:45:37 -0400197 // Run BCVs
198 boot_prep();
199
Kevin O'Connore54ee382009-07-26 19:33:13 -0400200 pmm_finalize();
201 malloc_finalize();
202 memmap_finalize();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500203}
204
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400205// 32-bit entry point.
Kevin O'Connor19786762008-03-05 21:09:59 -0500206void VISIBLE32
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500207_start()
208{
Kevin O'Connor95576e72008-03-01 09:57:51 -0500209 init_dma();
Kevin O'Connor95576e72008-03-01 09:57:51 -0500210
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400211 debug_serial_setup();
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -0400212 dprintf(1, "Start bios (version %s)\n", VERSION);
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400213
Kevin O'Connoracf13742008-11-29 11:19:19 -0500214 // Allow writes to modify bios area (0xf0000)
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400215 make_bios_writable();
216
217 // Perform main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500218 post();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400219
Kevin O'Connore90f2642008-06-28 12:18:39 -0400220 // Setup bios checksum.
Kevin O'Connor523e5a92009-07-04 13:46:33 -0400221 BiosChecksum -= checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE);
Kevin O'Connore90f2642008-06-28 12:18:39 -0400222
Kevin O'Connor0bf92702009-08-01 11:45:37 -0400223 // Write protect bios memory.
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400224 make_bios_readonly();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400225
226 // Invoke int 19 to start boot process.
227 dprintf(3, "Jump to int19\n");
228 struct bregs br;
229 memset(&br, 0, sizeof(br));
230 call16_int(0x19, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500231}