aboutsummaryrefslogtreecommitdiff
path: root/src/boot.c
blob: 19a4929d8fd9722dc95ee6daa13ce5fe83a322f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
// 16bit code to load disk image and start system boot.
//
// Copyright (C) 2008  Kevin O'Connor <kevin@koconnor.net>
// Copyright (C) 2002  MandrakeSoft S.A.
//
// This file may be distributed under the terms of the GNU GPLv3 license.

#include "util.h" // irq_enable
#include "biosvar.h" // struct bregs
#include "config.h" // CONFIG_*
#include "cmos.h" // inb_cmos
#include "ata.h" // ata_detect

// We need a copy of this string, but we are not actually a PnP BIOS,
// so make sure it is *not* aligned, so OSes will not see it if they
// scan.
char pnp_string[] VISIBLE __attribute__((aligned (2))) = " $PnP";

//--------------------------------------------------------------------------
// print_boot_device
//   displays the boot device
//--------------------------------------------------------------------------

static const char drivetypes[][10]={
    "", "Floppy","Hard Disk","CD-Rom", "Network"
};

static void
print_boot_device(u16 type)
{
    /* NIC appears as type 0x80 */
    if (type == IPL_TYPE_BEV)
        type = 0x4;
    if (type == 0 || type > 0x4)
        BX_PANIC("Bad drive type\n");
    printf("Booting from %s...\n", drivetypes[type]);

    // XXX - latest cvs has BEV description
}

//--------------------------------------------------------------------------
// print_boot_failure
//   displays the reason why boot failed
//--------------------------------------------------------------------------
static void
print_boot_failure(u16 type, u8 reason)
{
    if (type == 0 || type > 0x3)
        BX_PANIC("Bad drive type\n");

    printf("Boot failed");
    if (type < 4) {
        /* Report the reason too */
        if (reason==0)
            printf(": not a bootable disk");
        else
            printf(": could not read the boot disk");
    }
    printf("\n\n");
}

static void
try_boot(u16 seq_nr)
{
    SET_IPL(sequence, seq_nr);
    u16 bootseg;
    u8 bootdrv = 0;
    u16 bootdev, bootip;

    if (CONFIG_ELTORITO_BOOT) {
        bootdev = inb_cmos(CMOS_BIOS_BOOTFLAG2);
        bootdev |= ((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0xf0) << 4);
        bootdev >>= 4 * seq_nr;
        bootdev &= 0xf;
        if (bootdev == 0)
            BX_PANIC("No bootable device.\n");

        /* Translate from CMOS runes to an IPL table offset by subtracting 1 */
        bootdev -= 1;
    } else {
        if (seq_nr ==2)
            BX_PANIC("No more boot devices.");
        if (!!(inb_cmos(CMOS_BIOS_CONFIG) & 0x20) ^ (seq_nr == 1))
            /* Boot from floppy if the bit is set or it's the second boot */
            bootdev = 0x00;
        else
            bootdev = 0x01;
    }

    if (bootdev >= GET_IPL(count)) {
        BX_INFO("Invalid boot device (0x%x)\n", bootdev);
        return;
    }
    u16 type = GET_IPL(table[bootdev].type);

    /* Do the loading, and set up vector as a far pointer to the boot
     * address, and bootdrv as the boot drive */
    print_boot_device(type);

    struct bregs cr;
    switch(type) {
    case IPL_TYPE_FLOPPY: /* FDD */
    case IPL_TYPE_HARDDISK: /* HDD */

        bootdrv = (type == IPL_TYPE_HARDDISK) ? 0x80 : 0x00;
        bootseg = 0x07c0;

        // Read sector
        memset(&cr, 0, sizeof(cr));
        cr.dl = bootdrv;
        cr.es = bootseg;
        cr.ah = 2;
        cr.al = 1;
        cr.cl = 1;
        call16_int(0x13, &cr);

        if (cr.flags & F_CF) {
            print_boot_failure(type, 1);
            return;
        }

        /* Always check the signature on a HDD boot sector; on FDD,
         * only do the check if the CMOS doesn't tell us to skip it */
        if ((type != IPL_TYPE_FLOPPY)
            || !((inb_cmos(CMOS_BIOS_BOOTFLAG1) & 0x01))) {
            if (GET_FARVAR(bootseg, *(u16*)0x1fe) != 0xaa55) {
                print_boot_failure(type, 0);
                return;
            }
        }

        /* Canonicalize bootseg:bootip */
        bootip = (bootseg & 0x0fff) << 4;
        bootseg &= 0xf000;
        break;
    case IPL_TYPE_CDROM: /* CD-ROM */
        // XXX
        return;
        break;
    case IPL_TYPE_BEV: {
        /* Expansion ROM with a Bootstrap Entry Vector (a far
         * pointer) */
        u32 vector = GET_IPL(table[bootdev].vector);
        bootseg = vector >> 16;
        bootip = vector & 0xffff;
        break;
    }
    default:
        return;
    }

    memset(&cr, 0, sizeof(cr));
    cr.ip = bootip;
    cr.cs = bootseg;
    // Set the magic number in ax and the boot drive in dl.
    cr.dl = bootdrv;
    cr.ax = 0xaa55;
    call16(&cr);

    // Boot failed: invoke the boot recovery function
    memset(&cr, 0, sizeof(cr));
    call16_int(0x18, &cr);
}

// Boot Failure recovery: try the next device.
void VISIBLE
handle_18()
{
    debug_enter(NULL);
    u16 seq = GET_IPL(sequence) + 1;
    try_boot(seq);
}

// INT 19h Boot Load Service Entry Point
void VISIBLE
handle_19()
{
    debug_enter(NULL);
    try_boot(0);
}

// Called from 32bit code - start boot process
void VISIBLE
begin_boot()
{
    ata_detect();
    irq_enable();
    struct bregs br;
    memset(&br, 0, sizeof(br));
    call16_int(0x19, &br);
}