blob: 1b9fc5bfe1b46f2d51bb232b353d8d809181594e [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_*
9#include "../out/rom16.offset.auto.h" // OFFSET_*
10#include "config.h" // CONFIG_*
11#include "cmos.h" // CMOS_*
12#include "util.h" // memset
13#include "biosvar.h" // struct bios_data_area_s
Kevin O'Connor3bbcc142008-04-13 17:07:33 -040014#include "ata.h" // ata_detect
15#include "kbd.h" // kbd_setup
16#include "disk.h" // floppy_drive_setup
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050017
Kevin O'Connor438f6352008-03-30 21:46:53 -040018#define bda ((struct bios_data_area_s *)MAKE_FARPTR(SEG_BDA, 0))
19#define ebda ((struct extended_bios_data_area_s *)MAKE_FARPTR(SEG_EBDA, 0))
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050020
21static void
22init_bda()
23{
24 memset(bda, 0, sizeof(*bda));
25
26 int i;
27 for (i=0; i<256; i++) {
Kevin O'Connore9061492008-03-11 21:54:18 -040028 SET_BDA(ivecs[i].seg, SEG_BIOS);
29 SET_BDA(ivecs[i].offset, OFFSET_dummy_iret_handler);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050030 }
31
Kevin O'Connore9061492008-03-11 21:54:18 -040032 SET_BDA(mem_size_kb, BASE_MEM_IN_K);
Kevin O'Connor9bd83912008-03-08 12:42:36 -050033
34 // mov CMOS Equipment Byte to BDA Equipment Word
Kevin O'Connore9061492008-03-11 21:54:18 -040035 SET_BDA(equipment_list_flags, inb_cmos(CMOS_EQUIPMENT_INFO));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050036}
37
38static void
39init_handlers()
40{
41 // set vector 0x79 to zero
42 // this is used by 'gardian angel' protection system
Kevin O'Connore9061492008-03-11 21:54:18 -040043 SET_BDA(ivecs[0x79].seg, 0);
44 SET_BDA(ivecs[0x79].offset, 0);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050045
Kevin O'Connore9061492008-03-11 21:54:18 -040046 SET_BDA(ivecs[0x40].offset, OFFSET_entry_40);
47 SET_BDA(ivecs[0x0e].offset, OFFSET_entry_0e);
48 SET_BDA(ivecs[0x13].offset, OFFSET_entry_13);
49 SET_BDA(ivecs[0x76].offset, OFFSET_entry_76);
50 SET_BDA(ivecs[0x17].offset, OFFSET_entry_17);
51 SET_BDA(ivecs[0x18].offset, OFFSET_entry_18);
52 SET_BDA(ivecs[0x19].offset, OFFSET_entry_19);
53 SET_BDA(ivecs[0x1c].offset, OFFSET_entry_1c);
54 SET_BDA(ivecs[0x12].offset, OFFSET_entry_12);
55 SET_BDA(ivecs[0x11].offset, OFFSET_entry_11);
56 SET_BDA(ivecs[0x15].offset, OFFSET_entry_15);
57 SET_BDA(ivecs[0x08].offset, OFFSET_entry_08);
58 SET_BDA(ivecs[0x09].offset, OFFSET_entry_09);
59 SET_BDA(ivecs[0x16].offset, OFFSET_entry_16);
60 SET_BDA(ivecs[0x14].offset, OFFSET_entry_14);
61 SET_BDA(ivecs[0x1a].offset, OFFSET_entry_1a);
62 SET_BDA(ivecs[0x70].offset, OFFSET_entry_70);
63 SET_BDA(ivecs[0x74].offset, OFFSET_entry_74);
64 SET_BDA(ivecs[0x75].offset, OFFSET_entry_75);
65 SET_BDA(ivecs[0x10].offset, OFFSET_entry_10);
Kevin O'Connor3bbcc142008-04-13 17:07:33 -040066
67 SET_BDA(ivecs[0x1E].offset, OFFSET_diskette_param_table2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050068}
69
70static void
71init_ebda()
72{
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050073 memset(ebda, 0, sizeof(*ebda));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050074 ebda->size = EBDA_SIZE;
Kevin O'Connor438f6352008-03-30 21:46:53 -040075 SET_BDA(ebda_seg, SEG_EBDA);
76 SET_BDA(ivecs[0x41].seg, SEG_EBDA);
Kevin O'Connore9061492008-03-11 21:54:18 -040077 SET_BDA(ivecs[0x41].offset
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -040078 , offsetof(struct extended_bios_data_area_s, fdpt[0]));
Kevin O'Connor438f6352008-03-30 21:46:53 -040079 SET_BDA(ivecs[0x46].seg, SEG_EBDA);
Kevin O'Connore9061492008-03-11 21:54:18 -040080 SET_BDA(ivecs[0x41].offset
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -040081 , offsetof(struct extended_bios_data_area_s, fdpt[1]));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050082}
83
84static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050085pic_setup()
86{
87 outb(0x11, PORT_PIC1);
Kevin O'Connorc65a3802008-03-02 13:58:23 -050088 outb(0x11, PORT_PIC2);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050089 outb(0x08, PORT_PIC1_DATA);
90 outb(0x70, PORT_PIC2_DATA);
91 outb(0x04, PORT_PIC1_DATA);
92 outb(0x02, PORT_PIC2_DATA);
93 outb(0x01, PORT_PIC1_DATA);
94 outb(0x01, PORT_PIC2_DATA);
95 outb(0xb8, PORT_PIC1_DATA);
96 if (CONFIG_PS2_MOUSE)
97 outb(0x8f, PORT_PIC2_DATA);
98 else
99 outb(0x9f, PORT_PIC2_DATA);
100}
101
102static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500103init_boot_vectors()
104{
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500105 // Floppy drive
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400106 struct ipl_entry_s *ip = &ebda->ipl.table[0];
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500107 ip->type = IPL_TYPE_FLOPPY;
108 ip++;
109
110 // First HDD
111 ip->type = IPL_TYPE_HARDDISK;
112 ip++;
113
114 // CDROM
Kevin O'Connor180a9592008-03-04 22:50:53 -0500115 if (CONFIG_CDROM_BOOT) {
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500116 ip->type = IPL_TYPE_CDROM;
117 ip++;
118 }
119
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400120 ebda->ipl.count = ip - ebda->ipl.table;
121 ebda->ipl.sequence = 0xffff;
Kevin O'Connore0113c92008-04-05 15:51:12 -0400122 ebda->ipl.bootfirst = 0xffff;
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500123}
124
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500125static void
126callrom(u16 seg, u16 offset)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500127{
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500128 struct bregs br;
129 memset(&br, 0, sizeof(br));
Kevin O'Connor44c631d2008-03-02 11:24:36 -0500130 br.es = SEG_BIOS;
131 br.di = OFFSET_pnp_string + 1; // starts 1 past for alignment
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500132 br.cs = seg;
133 br.ip = offset;
134 call16(&br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500135}
136
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500137static void
Kevin O'Connora2e73802008-02-27 10:27:00 -0500138rom_scan(u32 start, u32 end)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500139{
Kevin O'Connora2e73802008-02-27 10:27:00 -0500140 u8 *p = (u8*)start;
141 for (; p <= (u8*)end; p += 2048) {
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500142 u8 *rom = p;
143 if (*(u16*)rom != 0xaa55)
144 continue;
145 u32 len = rom[2] * 512;
146 if (checksum(rom, len) != 0)
147 continue;
148 p = (u8*)(((u32)p + len) / 2048 * 2048);
Kevin O'Connor070231b2008-03-22 20:44:37 -0400149 callrom(FARPTR_TO_SEG(rom), FARPTR_TO_OFFSET(rom + 3));
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500150
151 // Look at the ROM's PnP Expansion header. Properly, we're supposed
152 // to init all the ROMs and then go back and build an IPL table of
153 // all the bootable devices, but we can get away with one pass.
154 if (rom[0x1a] != '$' || rom[0x1b] != 'P'
155 || rom[0x1c] != 'n' || rom[0x1d] != 'P')
156 continue;
157 // 0x1A is also the offset into the expansion header of...
158 // the Bootstrap Entry Vector, or zero if there is none.
159 u16 entry = *(u16*)&rom[0x1a+0x1a];
160 if (!entry)
161 continue;
162 // Found a device that thinks it can boot the system. Record
163 // its BEV and product name string.
164
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400165 if (ebda->ipl.count >= ARRAY_SIZE(ebda->ipl.table))
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500166 continue;
167
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400168 struct ipl_entry_s *ip = &ebda->ipl.table[ebda->ipl.count];
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500169 ip->type = IPL_TYPE_BEV;
Kevin O'Connor070231b2008-03-22 20:44:37 -0400170 ip->vector = (FARPTR_TO_SEG(rom) << 16) | entry;
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500171
172 u16 desc = *(u16*)&rom[0x1a+0x10];
173 if (desc)
Kevin O'Connore0113c92008-04-05 15:51:12 -0400174 ip->description = (u32)MAKE_FARPTR(FARPTR_TO_SEG(rom), desc);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500175
Kevin O'Connor56a506d2008-03-29 13:15:36 -0400176 ebda->ipl.count++;
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500177 }
178}
179
180static void
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500181post()
182{
Kevin O'Connor4ce6a492008-02-29 00:21:27 -0500183 BX_INFO("Start bios\n");
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500184
185 init_bda();
186 init_handlers();
187 init_ebda();
188
Kevin O'Connore6eb3f52008-04-13 17:37:41 -0400189 timer_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500190 kbd_setup();
191 lpt_setup();
192 serial_setup();
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500193 pic_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500194
195 rom_scan(0xc0000, 0xc7800);
196
197 printf("BIOS - begin\n\n");
198
Kevin O'Connor7958de32008-03-16 21:07:33 -0400199 // clear bss section -- XXX - shouldn't use globals
200 extern char __bss_start[], __bss_end[];
201 memset(__bss_start, 0, __bss_end - __bss_start);
202
Kevin O'Connora4d35762008-03-08 15:43:03 -0500203 rombios32_init();
204
Kevin O'Connor3bbcc142008-04-13 17:07:33 -0400205 floppy_drive_setup();
Kevin O'Connor9f0d94d2008-04-13 17:25:30 -0400206 hard_drive_setup();
Kevin O'Connora2e73802008-02-27 10:27:00 -0500207
208 init_boot_vectors();
Kevin O'Connora4d35762008-03-08 15:43:03 -0500209
Kevin O'Connora2e73802008-02-27 10:27:00 -0500210 rom_scan(0xc8000, 0xe0000);
211
Kevin O'Connore0113c92008-04-05 15:51:12 -0400212 interactive_bootmenu();
213
Kevin O'Connor157e2132008-03-09 13:32:03 -0400214 // reset the memory (some boot loaders such as syslinux suppose
215 // that the memory is set to zero)
216 memset((void*)0x40000, 0, 0x40000); // XXX - shouldn't use globals
217
Kevin O'Connor63ccc132008-03-12 20:57:08 -0400218 // Invoke int 19 to start boot process.
219 struct bregs br;
220 memset(&br, 0, sizeof(br));
221 call16_int(0x19, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500222}
223
Kevin O'Connor95576e72008-03-01 09:57:51 -0500224static void
225init_dma()
226{
227 // first reset the DMA controllers
228 outb(0, PORT_DMA1_MASTER_CLEAR);
229 outb(0, PORT_DMA2_MASTER_CLEAR);
230
231 // then initialize the DMA controllers
232 outb(0xc0, PORT_DMA2_MODE_REG);
233 outb(0x00, PORT_DMA2_MASK_REG);
234}
235
236static void
237check_restart_status()
238{
239 // Get and then clear CMOS shutdown status.
240 u8 status = inb_cmos(CMOS_RESET_CODE);
241 outb_cmos(0, CMOS_RESET_CODE);
242
243 if (status == 0x00 || status == 0x09 || status >= 0x0d)
244 // Normal post
245 return;
246
Kevin O'Connorad4ec342008-03-02 23:25:11 -0500247 if (status != 0x05) {
248 BX_PANIC("Unimplemented shutdown status: %02x\n", status);
249 return;
250 }
Kevin O'Connor95576e72008-03-01 09:57:51 -0500251
Kevin O'Connorad4ec342008-03-02 23:25:11 -0500252 // XXX - this is supposed to jump without changing any memory -
253 // but the stack has been altered by the time the code gets here.
254 eoi_both_pics();
255 struct bregs br;
256 memset(&br, 0, sizeof(br));
Kevin O'Connore9061492008-03-11 21:54:18 -0400257 br.cs = GET_BDA(jump_cs_ip) >> 16;
258 br.ip = GET_BDA(jump_cs_ip);
Kevin O'Connorad4ec342008-03-02 23:25:11 -0500259 call16(&br);
Kevin O'Connor95576e72008-03-01 09:57:51 -0500260}
261
Kevin O'Connor19786762008-03-05 21:09:59 -0500262void VISIBLE32
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500263_start()
264{
Kevin O'Connor95576e72008-03-01 09:57:51 -0500265 init_dma();
266 check_restart_status();
267
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500268 post();
269}