blob: 5985a570bb37c2e909f56946772919793d567aa7 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001// 32bit code to Power On Self Test (POST) a machine.
2//
3// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
4// 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'Connorc7812932008-06-08 23:08:12 -040014#include "memmap.h" // add_e820
Kevin O'Connorf54c1502008-06-14 15:56:16 -040015#include "pic.h" // pic_setup
Kevin O'Connor0525d292008-07-04 06:18:30 -040016#include "pci.h" // create_pirtable
17#include "acpi.h" // acpi_bios_init
Kevin O'Connor9521e262008-07-04 13:04:29 -040018#include "bregs.h" // struct bregs
Kevin O'Connorc659fde2008-12-28 23:43:20 -050019#include "boot.h" // IPL
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050020
Kevin O'Connord21c0892008-11-26 17:02:43 -050021void
22__set_irq(int vector, void *loc)
Kevin O'Connore3677b12008-07-04 15:29:23 -040023{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050024 SET_IVT(vector, SEG_BIOS, (u32)loc - BUILD_BIOS_ADDR);
Kevin O'Connore3677b12008-07-04 15:29:23 -040025}
26
Kevin O'Connord21c0892008-11-26 17:02:43 -050027#define set_irq(vector, func) do { \
28 extern void func (void); \
29 __set_irq(vector, func); \
30 } while (0)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040031
Kevin O'Connore3677b12008-07-04 15:29:23 -040032static void
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050033init_ivt()
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050034{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050035 dprintf(3, "init ivt\n");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050036
Kevin O'Connord67a7032009-01-17 19:37:26 -050037 // Initialize all vectors to the default handler.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050038 int i;
Kevin O'Connore3677b12008-07-04 15:29:23 -040039 for (i=0; i<256; i++)
Kevin O'Connord67a7032009-01-17 19:37:26 -050040 set_irq(i, entry_iret_official);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050041
Kevin O'Connord21c0892008-11-26 17:02:43 -050042 // Initialize all hw vectors to a default hw handler.
43 for (i=0x08; i<=0x0f; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050044 set_irq(i, entry_hwpic1);
Kevin O'Connord21c0892008-11-26 17:02:43 -050045 for (i=0x70; i<=0x77; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050046 set_irq(i, entry_hwpic2);
Kevin O'Connord21c0892008-11-26 17:02:43 -050047
48 // Initialize software handlers.
49 set_irq(0x10, entry_10);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050050 set_irq(0x11, entry_11_official);
51 set_irq(0x12, entry_12_official);
52 set_irq(0x13, entry_13_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050053 set_irq(0x14, entry_14);
54 set_irq(0x15, entry_15);
55 set_irq(0x16, entry_16);
56 set_irq(0x17, entry_17);
57 set_irq(0x18, entry_18);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050058 set_irq(0x19, entry_19_official);
Kevin O'Connord21c0892008-11-26 17:02:43 -050059 set_irq(0x1a, entry_1a);
Kevin O'Connord21c0892008-11-26 17:02:43 -050060 set_irq(0x40, entry_40);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050061
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050062 // set vector 0x79 to zero
63 // this is used by 'gardian angel' protection system
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050064 SET_IVT(0x79, 0, 0);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050065
Kevin O'Connord21c0892008-11-26 17:02:43 -050066 __set_irq(0x1E, &diskette_param_table2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050067}
68
69static void
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050070init_bda()
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050071{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050072 dprintf(3, "init bda\n");
73
Kevin O'Connor35ae7262009-01-19 15:44:44 -050074 struct bios_data_area_s *bda = MAKE_FLATPTR(SEG_BDA, 0);
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050075 memset(bda, 0, sizeof(*bda));
76
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050077 int esize = DIV_ROUND_UP(sizeof(struct extended_bios_data_area_s), 1024);
78 SET_BDA(mem_size_kb, 640 - esize);
Kevin O'Connor35ae7262009-01-19 15:44:44 -050079 u16 eseg = FLATPTR_TO_SEG((640 - esize) * 1024);
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050080 SET_BDA(ebda_seg, eseg);
81
82 struct extended_bios_data_area_s *ebda = get_ebda_ptr();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050083 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -050084 ebda->size = esize;
Kevin O'Connor8c0e3722009-01-02 14:19:43 -050085 SET_IVT(0x41, eseg, offsetof(struct extended_bios_data_area_s, fdpt[0]));
86 SET_IVT(0x46, eseg, offsetof(struct extended_bios_data_area_s, fdpt[1]));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050087}
88
89static void
Kevin O'Connor9571ac22008-05-17 22:20:27 -040090ram_probe(void)
91{
Kevin O'Connor35192dd2008-06-08 19:18:33 -040092 dprintf(3, "Find memory size\n");
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040093 if (CONFIG_COREBOOT) {
Kevin O'Connorc7812932008-06-08 23:08:12 -040094 coreboot_fill_map();
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040095 } else {
96 // On emulators, get memory size from nvram.
Kevin O'Connor59c35f22008-10-25 23:05:42 -040097 u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
98 | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040099 if (rs)
100 rs += 16 * 1024 * 1024;
101 else
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400102 rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
103 | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400104 + 1 * 1024 * 1024);
Kevin O'Connore7916362008-12-28 22:03:17 -0500105 RamSize = rs;
Kevin O'Connorc7812932008-06-08 23:08:12 -0400106 add_e820(0, rs, E820_RAM);
107
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400108 // Check for memory over 4Gig
109 u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
110 | (inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
111 | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
Kevin O'Connore7916362008-12-28 22:03:17 -0500112 RamSizeOver4G = high;
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400113 add_e820(0x100000000ull, high, E820_RAM);
114
Kevin O'Connorc7812932008-06-08 23:08:12 -0400115 /* reserve 256KB BIOS area at the end of 4 GB */
116 add_e820(0xfffc0000, 256*1024, E820_RESERVED);
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400117 }
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400118
Kevin O'Connorb8d7a472008-06-21 11:43:32 -0400119 // Don't declare any memory between 0xa0000 and 0x100000
120 add_e820(0xa0000, 0x50000, E820_HOLE);
121
Kevin O'Connorc7812932008-06-08 23:08:12 -0400122 // Mark known areas as reserved.
Kevin O'Connor08815372008-12-29 21:16:31 -0500123 u16 ebda_seg = get_ebda_seg();
Kevin O'Connor35ae7262009-01-19 15:44:44 -0500124 add_e820((u32)MAKE_FLATPTR(ebda_seg, 0), GET_EBDA2(ebda_seg, size) * 1024
Kevin O'Connor4d7c37e2008-12-26 23:50:17 -0500125 , E820_RESERVED);
Kevin O'Connore3677b12008-07-04 15:29:23 -0400126 add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400127
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500128 if (CONFIG_KVM)
129 // 4 pages before the bios, 3 pages for vmx tss pages, the
130 // other page for EPT real mode pagetable
131 add_e820(0xfffbc000, 4*4096, E820_RESERVED);
132
Kevin O'Connore7916362008-12-28 22:03:17 -0500133 dprintf(1, "Ram Size=0x%08x\n", RamSize);
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400134}
135
136static void
Kevin O'Connor0525d292008-07-04 06:18:30 -0400137init_bios_tables(void)
138{
139 if (CONFIG_COREBOOT)
140 // XXX - not supported on coreboot yet.
141 return;
142
Kevin O'Connor0525d292008-07-04 06:18:30 -0400143 create_pirtable();
144
145 mptable_init();
146
147 smbios_init();
148
149 acpi_bios_init();
150}
151
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400152// Main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500153static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500154post()
155{
Kevin O'Connor8c0e3722009-01-02 14:19:43 -0500156 init_ivt();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500157 init_bda();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500158
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400159 pic_setup();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400160 timer_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400161 mathcp_setup();
162
Kevin O'Connoracf13742008-11-29 11:19:19 -0500163 smp_probe_setup();
Kevin O'Connorcf89e662008-11-28 11:56:37 -0500164
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500165 memmap_setup();
166 ram_probe();
Kevin O'Connor7061eb62009-01-04 21:48:22 -0500167 mtrr_setup();
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500168
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500169 pnp_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400170 vga_setup();
171
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500172 kbd_setup();
173 lpt_setup();
174 serial_setup();
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400175 mouse_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500176
Kevin O'Connor0525d292008-07-04 06:18:30 -0400177 pci_bios_setup();
Kevin O'Connor4bbd3b32008-12-10 21:01:00 -0500178 smm_init();
179
Kevin O'Connor0525d292008-07-04 06:18:30 -0400180 init_bios_tables();
Kevin O'Connorc7812932008-06-08 23:08:12 -0400181 memmap_finalize();
182
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500183 boot_setup();
184
Kevin O'Connor3bbcc142008-04-13 17:07:33 -0400185 floppy_drive_setup();
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -0400186 hard_drive_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500187
Kevin O'Connor714325c2008-11-01 20:32:27 -0400188 optionrom_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500189}
190
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400191// 32-bit entry point.
Kevin O'Connor19786762008-03-05 21:09:59 -0500192void VISIBLE32
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500193_start()
194{
Kevin O'Connor95576e72008-03-01 09:57:51 -0500195 init_dma();
Kevin O'Connor95576e72008-03-01 09:57:51 -0500196
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400197 debug_serial_setup();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400198 dprintf(1, "Start bios\n");
199
Kevin O'Connoracf13742008-11-29 11:19:19 -0500200 // Allow writes to modify bios area (0xf0000)
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400201 make_bios_writable();
202
203 // Perform main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500204 post();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400205
206 // Present the user with a bootup menu.
207 interactive_bootmenu();
208
Kevin O'Connore90f2642008-06-28 12:18:39 -0400209 // Setup bios checksum.
Kevin O'Connor30853762009-01-17 18:49:20 -0500210 BiosChecksum = -checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE - 1);
Kevin O'Connore90f2642008-06-28 12:18:39 -0400211
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400212 // Prep for boot process.
213 make_bios_readonly();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400214
215 // Invoke int 19 to start boot process.
216 dprintf(3, "Jump to int19\n");
217 struct bregs br;
218 memset(&br, 0, sizeof(br));
219 call16_int(0x19, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500220}
Kevin O'Connor4b39b822008-05-08 21:47:33 -0400221
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400222// Ughh - some older gcc compilers have a bug which causes VISIBLE32
223// functions to not be exported as a global variable - force _start
224// to be global here.
225asm(".global _start");