blob: 9c370237301dd422508dbe864bfe57f57ba9197c [file] [log] [blame]
Kevin O'Connorf13b0082008-08-17 11:26:42 -04001// Code to load disk image and start system boot.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05002//
Kevin O'Connorcadaf0e2010-07-26 23:47:26 -04003// Copyright (C) 2008-2010 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
Kevin O'Connor10ad7992009-10-24 11:06:08 -04008#include "util.h" // dprintf
Kevin O'Connor9521e262008-07-04 13:04:29 -04009#include "biosvar.h" // GET_EBDA
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -050010#include "config.h" // CONFIG_*
Kevin O'Connor180a9592008-03-04 22:50:53 -050011#include "disk.h" // cdrom_boot
Kevin O'Connor9521e262008-07-04 13:04:29 -040012#include "bregs.h" // struct bregs
Kevin O'Connorc659fde2008-12-28 23:43:20 -050013#include "boot.h" // struct ipl_s
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050014#include "cmos.h" // inb_cmos
Kevin O'Connore7cc7642009-10-04 10:05:16 -040015#include "paravirt.h"
Kevin O'Connorc659fde2008-12-28 23:43:20 -050016
17struct ipl_s IPL;
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050018
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050019
20/****************************************************************
Kevin O'Connor0a924122009-02-08 19:43:47 -050021 * IPL and BCV handlers
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050022 ****************************************************************/
23
24void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -050025boot_setup(void)
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050026{
27 if (! CONFIG_BOOT)
28 return;
29 dprintf(3, "init boot device ordering\n");
30
31 memset(&IPL, 0, sizeof(IPL));
Stefan Reinauer203f6f32010-06-09 21:10:13 +020032 struct ipl_entry_s *ie = &IPL.bev[0];
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050033
34 // Floppy drive
Kevin O'Connor71f036d2009-02-08 16:57:22 -050035 ie->type = IPL_TYPE_FLOPPY;
36 ie->description = "Floppy";
37 ie++;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050038
39 // First HDD
Kevin O'Connor71f036d2009-02-08 16:57:22 -050040 ie->type = IPL_TYPE_HARDDISK;
41 ie->description = "Hard Disk";
42 ie++;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050043
44 // CDROM
45 if (CONFIG_CDROM_BOOT) {
Kevin O'Connor71f036d2009-02-08 16:57:22 -050046 ie->type = IPL_TYPE_CDROM;
Stefan Reinauer203f6f32010-06-09 21:10:13 +020047 ie->description = "DVD/CD";
Kevin O'Connor71f036d2009-02-08 16:57:22 -050048 ie++;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050049 }
50
Kevin O'Connord9c93612010-03-20 11:00:45 -040051 if (CONFIG_COREBOOT && CONFIG_COREBOOT_FLASH) {
Kevin O'Connor67823442009-04-13 14:14:51 -040052 ie->type = IPL_TYPE_CBFS;
53 ie->description = "CBFS";
54 ie++;
55 }
56
Kevin O'Connor0a924122009-02-08 19:43:47 -050057 IPL.bevcount = ie - IPL.bev;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050058 SET_EBDA(boot_sequence, 0xffff);
59 if (CONFIG_COREBOOT) {
60 // XXX - hardcode defaults for coreboot.
Kevin O'Connorff8c1412009-04-18 17:02:41 -040061 IPL.bootorder = 0x87654231;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050062 IPL.checkfloppysig = 1;
63 } else {
64 // On emulators, get boot order from nvram.
65 IPL.bootorder = (inb_cmos(CMOS_BIOS_BOOTFLAG2)
66 | ((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0xf0) << 4));
67 if (!(inb_cmos(CMOS_BIOS_BOOTFLAG1) & 1))
68 IPL.checkfloppysig = 1;
69 }
Gleb Natapovb9a75912010-12-23 11:29:38 +020070
71 u32 file = romfile_find("bootorder");
72 if (!file)
73 return;
74
75 int filesize = romfile_size(file);
76 dprintf(3, "bootorder file found (len %d)\n", filesize);
77
78 if (filesize == 0)
79 return;
80
81 char *f = malloc_tmphigh(filesize);
82
83 if (!f) {
84 warn_noalloc();
85 return;
86 }
87
88 romfile_copy(file, f, filesize);
89 int i;
90 IPL.fw_bootorder_count = 1;
91 while(f[i]) {
92 if (f[i] == '\n')
93 IPL.fw_bootorder_count++;
94 i++;
95 }
96 IPL.fw_bootorder = malloc_tmphigh(IPL.fw_bootorder_count*sizeof(char*));
97 if (!IPL.fw_bootorder) {
98 warn_noalloc();
99 free(f);
100 return;
101 }
102
103 dprintf(3, "boot order:\n");
104 i = 0;
105 do {
106 IPL.fw_bootorder[i] = f;
107 f = strchr(f, '\n');
108 if (f) {
109 *f = '\0';
110 f++;
111 dprintf(3, "%d: %s\n", i, IPL.fw_bootorder[i]);
112 i++;
113 }
114 } while(f);
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500115}
116
117// Add a BEV vector for a given pnp compatible option rom.
118void
119add_bev(u16 seg, u16 bev, u16 desc)
120{
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500121 if (! CONFIG_BOOT)
122 return;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500123 if (IPL.bevcount >= ARRAY_SIZE(IPL.bev))
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500124 return;
125
Kevin O'Connor0a924122009-02-08 19:43:47 -0500126 struct ipl_entry_s *ie = &IPL.bev[IPL.bevcount++];
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500127 ie->type = IPL_TYPE_BEV;
128 ie->vector = (seg << 16) | bev;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500129 const char *d = "Unknown";
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500130 if (desc)
Kevin O'Connor0a924122009-02-08 19:43:47 -0500131 d = MAKE_FLATPTR(seg, desc);
132 ie->description = d;
133}
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500134
Gleb Natapov4c90a202010-12-07 13:50:54 +0200135// Add a IPL entry for BAID cdrom.
136void
137add_baid_cdrom(struct drive_s *drive_g)
138{
139 if (! CONFIG_CDROM_BOOT)
140 return;
141
142 /* put first cdrom into ipl 3 for compatability with qemu */
143 struct ipl_entry_s *ie = &IPL.bev[2];
144 if (IPL.bevcount >= ARRAY_SIZE(IPL.bev) && ie->vector)
145 return;
146
147 if (ie->vector)
148 ie = &IPL.bev[IPL.bevcount++];
149 ie->type = IPL_TYPE_CDROM;
150 ie->vector = (u32)drive_g;
151 ie->description = "DVD/CD";
152}
153
Kevin O'Connor0a924122009-02-08 19:43:47 -0500154// Add a bcv entry for an expansion card harddrive or legacy option rom
155void
156add_bcv(u16 seg, u16 ip, u16 desc)
157{
158 if (! CONFIG_BOOT)
159 return;
160 if (IPL.bcvcount >= ARRAY_SIZE(IPL.bcv))
161 return;
162
163 struct ipl_entry_s *ie = &IPL.bcv[IPL.bcvcount++];
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400164 ie->type = BCV_TYPE_EXTERNAL;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500165 ie->vector = (seg << 16) | ip;
166 const char *d = "Legacy option rom";
167 if (desc)
168 d = MAKE_FLATPTR(seg, desc);
169 ie->description = d;
170}
171
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400172// Add a bcv entry for an internal harddrive
Kevin O'Connor0a924122009-02-08 19:43:47 -0500173void
Kevin O'Connor77d227b2009-10-22 21:48:39 -0400174add_bcv_internal(struct drive_s *drive_g)
Kevin O'Connor0a924122009-02-08 19:43:47 -0500175{
176 if (! CONFIG_BOOT)
177 return;
178 if (IPL.bcvcount >= ARRAY_SIZE(IPL.bcv))
179 return;
180
181 struct ipl_entry_s *ie = &IPL.bcv[IPL.bcvcount++];
Kevin O'Connora5826b52009-10-24 17:57:29 -0400182 if (CONFIG_THREADS) {
183 // Add to bcv list with assured drive order.
184 struct ipl_entry_s *end = ie;
185 for (;;) {
186 struct ipl_entry_s *prev = ie - 1;
187 if (prev < IPL.bcv || prev->type != BCV_TYPE_INTERNAL)
188 break;
189 struct drive_s *prevdrive = (void*)prev->vector;
190 if (prevdrive->type < drive_g->type
191 || (prevdrive->type == drive_g->type
192 && prevdrive->cntl_id < drive_g->cntl_id))
193 break;
194 ie--;
195 }
196 if (ie != end)
197 memmove(ie+1, ie, (void*)end-(void*)ie);
198 }
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400199 ie->type = BCV_TYPE_INTERNAL;
Kevin O'Connor77d227b2009-10-22 21:48:39 -0400200 ie->vector = (u32)drive_g;
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400201 ie->description = "";
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500202}
203
204
205/****************************************************************
Kevin O'Connor0a924122009-02-08 19:43:47 -0500206 * Boot menu and BCV execution
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500207 ****************************************************************/
208
Kevin O'Connor0a924122009-02-08 19:43:47 -0500209// Show a generic menu item
210static int
211menu_show_default(struct ipl_entry_s *ie, int menupos)
212{
213 char desc[33];
214 printf("%d. %s\n", menupos
215 , strtcpy(desc, ie->description, ARRAY_SIZE(desc)));
216 return 1;
217}
218
219// Show floppy menu item - but only if there exists a floppy drive.
220static int
221menu_show_floppy(struct ipl_entry_s *ie, int menupos)
222{
Kevin O'Connorafd05202009-08-16 12:21:44 -0400223 int i;
224 for (i = 0; i < Drives.floppycount; i++) {
Kevin O'Connor77d227b2009-10-22 21:48:39 -0400225 struct drive_s *drive_g = getDrive(EXTTYPE_FLOPPY, i);
Kevin O'Connor575ffc82010-02-21 23:20:10 -0500226 printf("%d. Floppy [%s]\n", menupos + i, drive_g->desc);
Kevin O'Connorafd05202009-08-16 12:21:44 -0400227 }
228 return Drives.floppycount;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500229}
230
231// Show menu items from BCV list.
232static int
233menu_show_harddisk(struct ipl_entry_s *ie, int menupos)
234{
235 int i;
236 for (i = 0; i < IPL.bcvcount; i++) {
237 struct ipl_entry_s *ie = &IPL.bcv[i];
Kevin O'Connor575ffc82010-02-21 23:20:10 -0500238 struct drive_s *drive_g = (void*)ie->vector;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500239 switch (ie->type) {
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400240 case BCV_TYPE_INTERNAL:
Kevin O'Connor575ffc82010-02-21 23:20:10 -0500241 printf("%d. %s\n", menupos + i, drive_g->desc);
Kevin O'Connor0a924122009-02-08 19:43:47 -0500242 break;
243 default:
244 menu_show_default(ie, menupos+i);
245 break;
246 }
247 }
248 return IPL.bcvcount;
249}
250
251// Show cdrom menu item - but only if there exists a cdrom drive.
252static int
253menu_show_cdrom(struct ipl_entry_s *ie, int menupos)
254{
Gleb Natapov4c90a202010-12-07 13:50:54 +0200255 struct drive_s *drive_g = (void*)ie->vector;
256 if (!ie->vector)
257 return 0;
258 printf("%d. DVD/CD [%s]\n", menupos, drive_g->desc);
259 return 1;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500260}
261
Kevin O'Connor67823442009-04-13 14:14:51 -0400262// Show coreboot-fs menu item.
263static int
264menu_show_cbfs(struct ipl_entry_s *ie, int menupos)
265{
266 int count = 0;
Kevin O'Connor31ae6382009-09-20 15:42:39 -0400267 struct cbfs_file *file = NULL;
Kevin O'Connor67823442009-04-13 14:14:51 -0400268 for (;;) {
Kevin O'Connor1f836252009-08-16 20:17:35 -0400269 file = cbfs_findprefix("img/", file);
270 if (!file)
Kevin O'Connor67823442009-04-13 14:14:51 -0400271 break;
Kevin O'Connor1f836252009-08-16 20:17:35 -0400272 const char *filename = cbfs_filename(file);
Kevin O'Connor67823442009-04-13 14:14:51 -0400273 printf("%d. Payload [%s]\n", menupos + count, &filename[4]);
274 count++;
275 if (count > 8)
276 break;
277 }
278 return count;
279}
280
Kevin O'Connor0a924122009-02-08 19:43:47 -0500281// Show IPL option menu.
282static void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500283interactive_bootmenu(void)
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500284{
Kevin O'Connore7cc7642009-10-04 10:05:16 -0400285 if (! CONFIG_BOOTMENU || ! qemu_cfg_show_boot_menu())
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500286 return;
287
288 while (get_keystroke(0) >= 0)
289 ;
290
291 printf("Press F12 for boot menu.\n\n");
292
Kevin O'Connor9a01a9c2010-08-25 21:07:48 -0400293 enable_bootsplash();
Kevin O'Connor217d3632009-04-29 22:00:21 -0400294 int scan_code = get_keystroke(CONFIG_BOOTMENU_WAIT);
Kevin O'Connor9a01a9c2010-08-25 21:07:48 -0400295 disable_bootsplash();
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500296 if (scan_code != 0x86)
297 /* not F12 */
298 return;
299
300 while (get_keystroke(0) >= 0)
301 ;
302
303 printf("Select boot device:\n\n");
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400304 wait_threads();
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500305
Kevin O'Connor0a924122009-02-08 19:43:47 -0500306 int subcount[ARRAY_SIZE(IPL.bev)];
307 int menupos = 1;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500308 int i;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500309 for (i = 0; i < IPL.bevcount; i++) {
310 struct ipl_entry_s *ie = &IPL.bev[i];
Kevin O'Connor31ae6382009-09-20 15:42:39 -0400311 int sc;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500312 switch (ie->type) {
313 case IPL_TYPE_FLOPPY:
314 sc = menu_show_floppy(ie, menupos);
315 break;
316 case IPL_TYPE_HARDDISK:
317 sc = menu_show_harddisk(ie, menupos);
318 break;
319 case IPL_TYPE_CDROM:
320 sc = menu_show_cdrom(ie, menupos);
321 break;
Kevin O'Connor67823442009-04-13 14:14:51 -0400322 case IPL_TYPE_CBFS:
323 sc = menu_show_cbfs(ie, menupos);
324 break;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500325 default:
326 sc = menu_show_default(ie, menupos);
327 break;
328 }
329 subcount[i] = sc;
330 menupos += sc;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500331 }
332
333 for (;;) {
334 scan_code = get_keystroke(1000);
335 if (scan_code == 0x01)
336 // ESC
337 break;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500338 if (scan_code < 1 || scan_code > menupos)
339 continue;
340 int choice = scan_code - 1;
341
342 // Find out which IPL this was for.
343 int bev = 0;
344 while (choice > subcount[bev]) {
345 choice -= subcount[bev];
346 bev++;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500347 }
Kevin O'Connor67823442009-04-13 14:14:51 -0400348 IPL.bev[bev].subchoice = choice-1;
Kevin O'Connor0a924122009-02-08 19:43:47 -0500349
350 // Add user choice to the boot order.
351 IPL.bootorder = (IPL.bootorder << 4) | (bev+1);
352 break;
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500353 }
354 printf("\n");
355}
356
Kevin O'Connor0a924122009-02-08 19:43:47 -0500357// Run the specified bcv.
358static void
359run_bcv(struct ipl_entry_s *ie)
360{
361 switch (ie->type) {
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400362 case BCV_TYPE_INTERNAL:
Kevin O'Connor77d227b2009-10-22 21:48:39 -0400363 map_hd_drive((void*)ie->vector);
Kevin O'Connor0a924122009-02-08 19:43:47 -0500364 break;
Kevin O'Connor51fd0a12009-09-12 13:20:14 -0400365 case BCV_TYPE_EXTERNAL:
Kevin O'Connor0a924122009-02-08 19:43:47 -0500366 call_bcv(ie->vector >> 16, ie->vector & 0xffff);
367 break;
368 }
369}
370
371// Prepare for boot - show menu and run bcvs.
372void
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500373boot_prep(void)
Kevin O'Connor0a924122009-02-08 19:43:47 -0500374{
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400375 if (! CONFIG_BOOT) {
376 wait_threads();
Kevin O'Connor0a924122009-02-08 19:43:47 -0500377 return;
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400378 }
Kevin O'Connor0a924122009-02-08 19:43:47 -0500379
Kevin O'Connora5826b52009-10-24 17:57:29 -0400380 // XXX - show available drives?
381
Kevin O'Connor0a924122009-02-08 19:43:47 -0500382 // Allow user to modify BCV/IPL order.
383 interactive_bootmenu();
Kevin O'Connore438b0c2010-05-01 12:20:33 -0400384 wait_threads();
Kevin O'Connor0a924122009-02-08 19:43:47 -0500385
Kevin O'Connorafd05202009-08-16 12:21:44 -0400386 // Setup floppy boot order
387 int override = IPL.bev[0].subchoice;
Kevin O'Connord7e998f2010-02-15 22:48:28 -0500388 struct drive_s *tmp = Drives.idmap[EXTTYPE_FLOPPY][0];
Kevin O'Connorafd05202009-08-16 12:21:44 -0400389 Drives.idmap[EXTTYPE_FLOPPY][0] = Drives.idmap[EXTTYPE_FLOPPY][override];
390 Drives.idmap[EXTTYPE_FLOPPY][override] = tmp;
391
Kevin O'Connor0a924122009-02-08 19:43:47 -0500392 // Run BCVs
Kevin O'Connorafd05202009-08-16 12:21:44 -0400393 override = IPL.bev[1].subchoice;
Kevin O'Connor7da1dcd2009-02-16 10:51:24 -0500394 if (override < IPL.bcvcount)
Kevin O'Connor0a924122009-02-08 19:43:47 -0500395 run_bcv(&IPL.bcv[override]);
396 int i;
397 for (i=0; i<IPL.bcvcount; i++)
398 if (i != override)
399 run_bcv(&IPL.bcv[i]);
400}
401
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -0500402
403/****************************************************************
404 * Boot code (int 18/19)
405 ****************************************************************/
406
Kevin O'Connor0a924122009-02-08 19:43:47 -0500407// Jump to a bootup entry point.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500408static void
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500409call_boot_entry(u16 bootseg, u16 bootip, u8 bootdrv)
410{
Kevin O'Connorcadaf0e2010-07-26 23:47:26 -0400411 dprintf(1, "Booting from %04x:%04x\n", bootseg, bootip);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500412 struct bregs br;
413 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -0400414 br.flags = F_IF;
Kevin O'Connor9f985422009-09-09 11:34:39 -0400415 br.code = SEGOFF(bootseg, bootip);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500416 // Set the magic number in ax and the boot drive in dl.
417 br.dl = bootdrv;
418 br.ax = 0xaa55;
419 call16(&br);
420}
421
422// Boot from a disk (either floppy or harddrive)
423static void
424boot_disk(u8 bootdrv, int checksig)
425{
426 u16 bootseg = 0x07c0;
427
428 // Read sector
429 struct bregs br;
430 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -0400431 br.flags = F_IF;
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500432 br.dl = bootdrv;
433 br.es = bootseg;
434 br.ah = 2;
435 br.al = 1;
436 br.cl = 1;
437 call16_int(0x13, &br);
438
439 if (br.flags & F_CF) {
440 printf("Boot failed: could not read the boot disk\n\n");
441 return;
442 }
443
444 if (checksig) {
445 struct mbr_s *mbr = (void*)0;
446 if (GET_FARVAR(bootseg, mbr->signature) != MBR_SIGNATURE) {
447 printf("Boot failed: not a bootable disk\n\n");
448 return;
449 }
450 }
451
452 /* Canonicalize bootseg:bootip */
453 u16 bootip = (bootseg & 0x0fff) << 4;
454 bootseg &= 0xf000;
455
456 call_boot_entry(bootseg, bootip, bootdrv);
457}
458
459// Boot from a CD-ROM
460static void
Kevin O'Connor67823442009-04-13 14:14:51 -0400461boot_cdrom(struct ipl_entry_s *ie)
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500462{
463 if (! CONFIG_CDROM_BOOT)
464 return;
Gleb Natapov4c90a202010-12-07 13:50:54 +0200465
466 if (!ie->vector)
467 return;
468
469 struct drive_s *drive_g = (void*)ie->vector;
470 int status = cdrom_boot(drive_g);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500471 if (status) {
Gleb Natapov4c90a202010-12-07 13:50:54 +0200472 printf("Boot failed: Could not read from CDROM %s (code %04x)\n", drive_g->desc, status);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500473 return;
474 }
475
476 u16 ebda_seg = get_ebda_seg();
Kevin O'Connor669e6442009-08-11 22:36:30 -0400477 u8 bootdrv = GET_EBDA2(ebda_seg, cdemu.emulated_extdrive);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500478 u16 bootseg = GET_EBDA2(ebda_seg, cdemu.load_segment);
479 /* Canonicalize bootseg:bootip */
480 u16 bootip = (bootseg & 0x0fff) << 4;
481 bootseg &= 0xf000;
482
483 call_boot_entry(bootseg, bootip, bootdrv);
484}
485
Kevin O'Connore8f00ee2009-07-04 04:04:36 -0400486// Boot from a CBFS payload
Kevin O'Connor67823442009-04-13 14:14:51 -0400487static void
488boot_cbfs(struct ipl_entry_s *ie)
489{
Kevin O'Connord9c93612010-03-20 11:00:45 -0400490 if (!CONFIG_COREBOOT || !CONFIG_COREBOOT_FLASH)
Kevin O'Connor67823442009-04-13 14:14:51 -0400491 return;
Kevin O'Connor1f836252009-08-16 20:17:35 -0400492 int count = ie->subchoice;
Kevin O'Connor2edace12009-12-13 11:19:01 -0500493 struct cbfs_file *file = NULL;
Kevin O'Connor1f836252009-08-16 20:17:35 -0400494 for (;;) {
495 file = cbfs_findprefix("img/", file);
496 if (!file)
497 return;
498 if (count--)
499 continue;
500 cbfs_run_payload(file);
501 }
Kevin O'Connor67823442009-04-13 14:14:51 -0400502}
503
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500504static void
505do_boot(u16 seq_nr)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500506{
Kevin O'Connor40967022008-07-21 22:23:05 -0400507 if (! CONFIG_BOOT)
Kevin O'Connore07e18e2009-02-08 17:07:29 -0500508 panic("Boot support not compiled in.\n");
Kevin O'Connor40967022008-07-21 22:23:05 -0400509
Kevin O'Connorc659fde2008-12-28 23:43:20 -0500510 u32 bootdev = IPL.bootorder;
Kevin O'Connor840c5342008-03-29 14:04:34 -0400511 bootdev >>= 4 * seq_nr;
512 bootdev &= 0xf;
Kevin O'Connore0113c92008-04-05 15:51:12 -0400513
Kevin O'Connorabc75972008-05-18 00:20:53 -0400514 /* Translate bootdev to an IPL table offset by subtracting 1 */
Kevin O'Connor840c5342008-03-29 14:04:34 -0400515 bootdev -= 1;
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500516
Kevin O'Connor0a924122009-02-08 19:43:47 -0500517 if (bootdev >= IPL.bevcount) {
Kevin O'Connorff8c1412009-04-18 17:02:41 -0400518 printf("No bootable device.\n");
519 // Loop with irqs enabled - this allows ctrl+alt+delete to work.
520 for (;;)
Kevin O'Connor9c447c32010-05-23 10:24:22 -0400521 wait_irq();
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500522 }
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500523
524 /* Do the loading, and set up vector as a far pointer to the boot
525 * address, and bootdrv as the boot drive */
Kevin O'Connor0a924122009-02-08 19:43:47 -0500526 struct ipl_entry_s *ie = &IPL.bev[bootdev];
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500527 char desc[33];
528 printf("Booting from %s...\n"
529 , strtcpy(desc, ie->description, ARRAY_SIZE(desc)));
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500530
Kevin O'Connorcadaf0e2010-07-26 23:47:26 -0400531 switch (ie->type) {
Kevin O'Connorf13b0082008-08-17 11:26:42 -0400532 case IPL_TYPE_FLOPPY:
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500533 boot_disk(0x00, IPL.checkfloppysig);
534 break;
Kevin O'Connorf13b0082008-08-17 11:26:42 -0400535 case IPL_TYPE_HARDDISK:
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500536 boot_disk(0x80, 1);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500537 break;
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500538 case IPL_TYPE_CDROM:
Kevin O'Connor67823442009-04-13 14:14:51 -0400539 boot_cdrom(ie);
540 break;
541 case IPL_TYPE_CBFS:
542 boot_cbfs(ie);
Kevin O'Connor71f036d2009-02-08 16:57:22 -0500543 break;
544 case IPL_TYPE_BEV:
545 call_boot_entry(ie->vector >> 16, ie->vector & 0xffff, 0);
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500546 break;
Kevin O'Connor180a9592008-03-04 22:50:53 -0500547 }
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500548
Kevin O'Connor38fcbfe2008-02-25 22:30:47 -0500549 // Boot failed: invoke the boot recovery function
Kevin O'Connor7af49bf2008-03-09 13:46:13 -0400550 struct bregs br;
551 memset(&br, 0, sizeof(br));
Kevin O'Connorf8e800d2009-09-24 21:01:16 -0400552 br.flags = F_IF;
Kevin O'Connor7af49bf2008-03-09 13:46:13 -0400553 call16_int(0x18, &br);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500554}
555
556// Boot Failure recovery: try the next device.
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500557void VISIBLE32FLAT
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500558handle_18(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500559{
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400560 debug_serial_setup();
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400561 debug_enter(NULL, DEBUG_HDL_18);
Kevin O'Connor08815372008-12-29 21:16:31 -0500562 u16 ebda_seg = get_ebda_seg();
563 u16 seq = GET_EBDA2(ebda_seg, boot_sequence) + 1;
564 SET_EBDA2(ebda_seg, boot_sequence, seq);
Kevin O'Connor7af49bf2008-03-09 13:46:13 -0400565 do_boot(seq);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500566}
567
568// INT 19h Boot Load Service Entry Point
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500569void VISIBLE32FLAT
Kevin O'Connor1ca05b02010-01-03 17:43:37 -0500570handle_19(void)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500571{
Kevin O'Connor61d6b062008-06-21 12:15:10 -0400572 debug_serial_setup();
Kevin O'Connor15c1f222008-06-12 22:59:43 -0400573 debug_enter(NULL, DEBUG_HDL_19);
Kevin O'Connor08815372008-12-29 21:16:31 -0500574 SET_EBDA(boot_sequence, 0);
Kevin O'Connor7af49bf2008-03-09 13:46:13 -0400575 do_boot(0);
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500576}