blob: f55d53d095e4e9b2267bfe49b2a367f976b0482f [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//
6// This file may be distributed under the terms of the GNU GPLv3 license.
7
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'Connor2ad37442008-05-06 19:49:01 -040013#include "ata.h" // hard_drive_setup
Kevin O'Connor3bbcc142008-04-13 17:07:33 -040014#include "disk.h" // floppy_drive_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'Connorf076a3e2008-02-25 22:25:15 -050020
Kevin O'Connor438f6352008-03-30 21:46:53 -040021#define bda ((struct bios_data_area_s *)MAKE_FARPTR(SEG_BDA, 0))
22#define ebda ((struct extended_bios_data_area_s *)MAKE_FARPTR(SEG_EBDA, 0))
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050023
Kevin O'Connord21c0892008-11-26 17:02:43 -050024void
25__set_irq(int vector, void *loc)
Kevin O'Connore3677b12008-07-04 15:29:23 -040026{
27 SET_BDA(ivecs[vector].seg, SEG_BIOS);
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040028 SET_BDA(ivecs[vector].offset, (u32)loc - BUILD_BIOS_ADDR);
Kevin O'Connore3677b12008-07-04 15:29:23 -040029}
30
Kevin O'Connord21c0892008-11-26 17:02:43 -050031#define set_irq(vector, func) do { \
32 extern void func (void); \
33 __set_irq(vector, func); \
34 } while (0)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -040035
Kevin O'Connore3677b12008-07-04 15:29:23 -040036static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050037init_bda()
38{
Kevin O'Connor35192dd2008-06-08 19:18:33 -040039 dprintf(3, "init bda\n");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050040 memset(bda, 0, sizeof(*bda));
41
Kevin O'Connorf54c1502008-06-14 15:56:16 -040042 SET_BDA(mem_size_kb, BASE_MEM_IN_K);
43
Kevin O'Connord21c0892008-11-26 17:02:43 -050044 // Initialize all vectors to a dummy handler.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050045 int i;
Kevin O'Connore3677b12008-07-04 15:29:23 -040046 for (i=0; i<256; i++)
Kevin O'Connord21c0892008-11-26 17:02:43 -050047 set_irq(i, dummy_iret_handler);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050048
Kevin O'Connord21c0892008-11-26 17:02:43 -050049 // Initialize all hw vectors to a default hw handler.
50 for (i=0x08; i<=0x0f; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050051 set_irq(i, entry_hwpic1);
Kevin O'Connord21c0892008-11-26 17:02:43 -050052 for (i=0x70; i<=0x77; i++)
Kevin O'Connorffdc9ee2008-12-20 13:10:00 -050053 set_irq(i, entry_hwpic2);
Kevin O'Connord21c0892008-11-26 17:02:43 -050054
55 // Initialize software handlers.
56 set_irq(0x10, entry_10);
Kevin O'Connorb4f0e892008-12-13 18:33:05 -050057 set_irq(0x11, entry_11_official);
58 set_irq(0x12, entry_12_official);
59 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);
67 set_irq(0x1c, entry_1c);
68 set_irq(0x40, entry_40);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050069
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050070 // set vector 0x79 to zero
71 // this is used by 'gardian angel' protection system
Kevin O'Connore9061492008-03-11 21:54:18 -040072 SET_BDA(ivecs[0x79].seg, 0);
73 SET_BDA(ivecs[0x79].offset, 0);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050074
Kevin O'Connord21c0892008-11-26 17:02:43 -050075 __set_irq(0x1E, &diskette_param_table2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050076}
77
78static void
79init_ebda()
80{
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050081 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050082 ebda->size = EBDA_SIZE;
Kevin O'Connor438f6352008-03-30 21:46:53 -040083 SET_BDA(ebda_seg, SEG_EBDA);
84 SET_BDA(ivecs[0x41].seg, SEG_EBDA);
Kevin O'Connore9061492008-03-11 21:54:18 -040085 SET_BDA(ivecs[0x41].offset
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -040086 , offsetof(struct extended_bios_data_area_s, fdpt[0]));
Kevin O'Connor438f6352008-03-30 21:46:53 -040087 SET_BDA(ivecs[0x46].seg, SEG_EBDA);
Kevin O'Connore9061492008-03-11 21:54:18 -040088 SET_BDA(ivecs[0x41].offset
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -040089 , offsetof(struct extended_bios_data_area_s, fdpt[1]));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050090}
91
92static void
Kevin O'Connor9571ac22008-05-17 22:20:27 -040093ram_probe(void)
94{
Kevin O'Connor35192dd2008-06-08 19:18:33 -040095 dprintf(3, "Find memory size\n");
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040096 if (CONFIG_COREBOOT) {
Kevin O'Connorc7812932008-06-08 23:08:12 -040097 coreboot_fill_map();
Kevin O'Connorf64f0db2008-05-18 02:42:58 -040098 } else {
99 // On emulators, get memory size from nvram.
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400100 u32 rs = ((inb_cmos(CMOS_MEM_EXTMEM2_LOW) << 16)
101 | (inb_cmos(CMOS_MEM_EXTMEM2_HIGH) << 24));
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400102 if (rs)
103 rs += 16 * 1024 * 1024;
104 else
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400105 rs = (((inb_cmos(CMOS_MEM_EXTMEM_LOW) << 10)
106 | (inb_cmos(CMOS_MEM_EXTMEM_HIGH) << 18))
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400107 + 1 * 1024 * 1024);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400108 SET_EBDA(ram_size, rs);
109 add_e820(0, rs, E820_RAM);
110
Kevin O'Connor59c35f22008-10-25 23:05:42 -0400111 // Check for memory over 4Gig
112 u64 high = ((inb_cmos(CMOS_MEM_HIGHMEM_LOW) << 16)
113 | (inb_cmos(CMOS_MEM_HIGHMEM_MID) << 24)
114 | ((u64)inb_cmos(CMOS_MEM_HIGHMEM_HIGH) << 32));
115 SET_EBDA(ram_size_over4G, high);
116 add_e820(0x100000000ull, high, E820_RAM);
117
Kevin O'Connorc7812932008-06-08 23:08:12 -0400118 /* reserve 256KB BIOS area at the end of 4 GB */
119 add_e820(0xfffc0000, 256*1024, E820_RESERVED);
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400120 }
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400121
Kevin O'Connorb8d7a472008-06-21 11:43:32 -0400122 // Don't declare any memory between 0xa0000 and 0x100000
123 add_e820(0xa0000, 0x50000, E820_HOLE);
124
Kevin O'Connorc7812932008-06-08 23:08:12 -0400125 // Mark known areas as reserved.
126 add_e820((u32)MAKE_FARPTR(SEG_EBDA, 0), EBDA_SIZE * 1024, E820_RESERVED);
Kevin O'Connore3677b12008-07-04 15:29:23 -0400127 add_e820(BUILD_BIOS_ADDR, BUILD_BIOS_SIZE, E820_RESERVED);
Kevin O'Connorc7812932008-06-08 23:08:12 -0400128
129 dprintf(1, "ram_size=0x%08x\n", GET_EBDA(ram_size));
Kevin O'Connor9571ac22008-05-17 22:20:27 -0400130}
131
132static void
Kevin O'Connor0525d292008-07-04 06:18:30 -0400133init_bios_tables(void)
134{
135 if (CONFIG_COREBOOT)
136 // XXX - not supported on coreboot yet.
137 return;
138
Kevin O'Connor0525d292008-07-04 06:18:30 -0400139 create_pirtable();
140
141 mptable_init();
142
143 smbios_init();
144
145 acpi_bios_init();
146}
147
148static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500149init_boot_vectors()
150{
Kevin O'Connor40967022008-07-21 22:23:05 -0400151 if (! CONFIG_BOOT)
152 return;
Kevin O'Connor35192dd2008-06-08 19:18:33 -0400153 dprintf(3, "init boot device ordering\n");
154
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500155 // Floppy drive
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400156 struct ipl_entry_s *ip = &ebda->ipl.table[0];
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500157 ip->type = IPL_TYPE_FLOPPY;
158 ip++;
159
160 // First HDD
161 ip->type = IPL_TYPE_HARDDISK;
162 ip++;
163
164 // CDROM
Kevin O'Connor180a9592008-03-04 22:50:53 -0500165 if (CONFIG_CDROM_BOOT) {
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500166 ip->type = IPL_TYPE_CDROM;
167 ip++;
168 }
169
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400170 ebda->ipl.count = ip - ebda->ipl.table;
171 ebda->ipl.sequence = 0xffff;
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400172 if (CONFIG_COREBOOT) {
173 // XXX - hardcode defaults for coreboot.
174 ebda->ipl.bootorder = 0x00000231;
Kevin O'Connorabc75972008-05-18 00:20:53 -0400175 ebda->ipl.checkfloppysig = 1;
Kevin O'Connorf64f0db2008-05-18 02:42:58 -0400176 } else {
177 // On emulators, get boot order from nvram.
178 ebda->ipl.bootorder = (inb_cmos(CMOS_BIOS_BOOTFLAG2)
179 | ((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0xf0) << 4));
180 if (!(inb_cmos(CMOS_BIOS_BOOTFLAG1) & 1))
181 ebda->ipl.checkfloppysig = 1;
182 }
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500183}
184
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400185// Main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500186static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500187post()
188{
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500189 init_bda();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500190 init_ebda();
191
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400192 pic_setup();
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400193 timer_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400194 mathcp_setup();
195
Kevin O'Connoracf13742008-11-29 11:19:19 -0500196 smp_probe_setup();
Kevin O'Connorcf89e662008-11-28 11:56:37 -0500197
Kevin O'Connorceea03c2008-11-08 21:36:35 -0500198 memmap_setup();
199 ram_probe();
200
Kevin O'Connor0c3068d2008-12-21 17:51:36 -0500201 pnp_setup();
Kevin O'Connor714325c2008-11-01 20:32:27 -0400202 vga_setup();
203
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500204 kbd_setup();
205 lpt_setup();
206 serial_setup();
Kevin O'Connorf54c1502008-06-14 15:56:16 -0400207 mouse_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500208
Kevin O'Connor0525d292008-07-04 06:18:30 -0400209 pci_bios_setup();
Kevin O'Connor4bbd3b32008-12-10 21:01:00 -0500210 smm_init();
211
Kevin O'Connor0525d292008-07-04 06:18:30 -0400212 init_bios_tables();
Kevin O'Connorc7812932008-06-08 23:08:12 -0400213 memmap_finalize();
214
Kevin O'Connor3bbcc142008-04-13 17:07:33 -0400215 floppy_drive_setup();
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -0400216 hard_drive_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500217
218 init_boot_vectors();
Kevin O'Connora4d35762008-03-08 15:43:03 -0500219
Kevin O'Connor714325c2008-11-01 20:32:27 -0400220 optionrom_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500221}
222
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400223// 32-bit entry point.
Kevin O'Connor19786762008-03-05 21:09:59 -0500224void VISIBLE32
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500225_start()
226{
Kevin O'Connor95576e72008-03-01 09:57:51 -0500227 init_dma();
Kevin O'Connor95576e72008-03-01 09:57:51 -0500228
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400229 debug_serial_setup();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400230 dprintf(1, "Start bios\n");
231
Kevin O'Connoracf13742008-11-29 11:19:19 -0500232 // Allow writes to modify bios area (0xf0000)
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400233 make_bios_writable();
234
235 // Perform main setup code.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500236 post();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400237
238 // Present the user with a bootup menu.
239 interactive_bootmenu();
240
Kevin O'Connore90f2642008-06-28 12:18:39 -0400241 // Setup bios checksum.
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400242 extern char bios_checksum;
243 bios_checksum = -checksum((u8*)BUILD_BIOS_ADDR, BUILD_BIOS_SIZE - 1);
Kevin O'Connore90f2642008-06-28 12:18:39 -0400244
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400245 // Prep for boot process.
246 make_bios_readonly();
Kevin O'Connorda4a6482008-06-08 13:48:06 -0400247
248 // Invoke int 19 to start boot process.
249 dprintf(3, "Jump to int19\n");
250 struct bregs br;
251 memset(&br, 0, sizeof(br));
252 call16_int(0x19, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500253}
Kevin O'Connor4b39b822008-05-08 21:47:33 -0400254
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400255// Ughh - some older gcc compilers have a bug which causes VISIBLE32
256// functions to not be exported as a global variable - force _start
257// to be global here.
258asm(".global _start");