]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/boot/i386/loader/main.c
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / boot / i386 / loader / main.c
1 /*-
2  * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 /*
31  * MD bootstrap main() and assorted miscellaneous
32  * commands.
33  */
34
35 #include <stand.h>
36 #include <string.h>
37 #include <machine/bootinfo.h>
38 #include <machine/psl.h>
39 #include <sys/reboot.h>
40
41 #include "bootstrap.h"
42 #include "libi386/libi386.h"
43 #include "btxv86.h"
44
45 #define KARGS_FLAGS_CD          0x1
46 #define KARGS_FLAGS_PXE         0x2
47 #define KARGS_FLAGS_ZFS         0x4
48
49 /* Arguments passed in from the boot1/boot2 loader */
50 static struct 
51 {
52     u_int32_t   howto;
53     u_int32_t   bootdev;
54     u_int32_t   bootflags;
55     union {
56         struct {
57             u_int32_t   pxeinfo;
58             u_int32_t   res2;
59         };
60         uint64_t        zfspool;
61     };
62     u_int32_t   bootinfo;
63 } *kargs;
64
65 static u_int32_t        initial_howto;
66 static u_int32_t        initial_bootdev;
67 static struct bootinfo  *initial_bootinfo;
68
69 struct arch_switch      archsw;         /* MI/MD interface boundary */
70
71 static void             extract_currdev(void);
72 static int              isa_inb(int port);
73 static void             isa_outb(int port, int value);
74 void                    exit(int code);
75
76 /* from vers.c */
77 extern  char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[];
78
79 /* XXX debugging */
80 extern char end[];
81
82 static void *heap_top;
83 static void *heap_bottom;
84
85 int
86 main(void)
87 {
88     int                 i;
89
90     /* Pick up arguments */
91     kargs = (void *)__args;
92     initial_howto = kargs->howto;
93     initial_bootdev = kargs->bootdev;
94     initial_bootinfo = kargs->bootinfo ? (struct bootinfo *)PTOV(kargs->bootinfo) : NULL;
95
96     /* Initialize the v86 register set to a known-good state. */
97     bzero(&v86, sizeof(v86));
98     v86.efl = PSL_RESERVED_DEFAULT | PSL_I;
99
100     /* 
101      * Initialise the heap as early as possible.  Once this is done, malloc() is usable.
102      */
103     bios_getmem();
104
105 #if defined(LOADER_BZIP2_SUPPORT) || defined(LOADER_FIREWIRE_SUPPORT) || \
106     defined(LOADER_GPT_SUPPORT) || defined(LOADER_ZFS_SUPPORT)
107     if (high_heap_size > 0) {
108         heap_top = PTOV(high_heap_base + high_heap_size);
109         heap_bottom = PTOV(high_heap_base);
110         if (high_heap_base < memtop_copyin)
111             memtop_copyin = high_heap_base;
112     } else
113 #endif
114     {
115         heap_top = (void *)PTOV(bios_basemem);
116         heap_bottom = (void *)end;
117     }
118     setheap(heap_bottom, heap_top);
119
120     /* 
121      * XXX Chicken-and-egg problem; we want to have console output early, but some
122      * console attributes may depend on reading from eg. the boot device, which we
123      * can't do yet.
124      *
125      * We can use printf() etc. once this is done.
126      * If the previous boot stage has requested a serial console, prefer that.
127      */
128     bi_setboothowto(initial_howto);
129     if (initial_howto & RB_MULTIPLE) {
130         if (initial_howto & RB_SERIAL)
131             setenv("console", "comconsole vidconsole", 1);
132         else
133             setenv("console", "vidconsole comconsole", 1);
134     } else if (initial_howto & RB_SERIAL)
135         setenv("console", "comconsole", 1);
136     else if (initial_howto & RB_MUTE)
137         setenv("console", "nullconsole", 1);
138     cons_probe();
139
140     /*
141      * Initialise the block cache
142      */
143     bcache_init(32, 512);       /* 16k cache XXX tune this */
144
145     /*
146      * Special handling for PXE and CD booting.
147      */
148     if (kargs->bootinfo == 0) {
149         /*
150          * We only want the PXE disk to try to init itself in the below
151          * walk through devsw if we actually booted off of PXE.
152          */
153         if (kargs->bootflags & KARGS_FLAGS_PXE)
154             pxe_enable(kargs->pxeinfo ? PTOV(kargs->pxeinfo) : NULL);
155         else if (kargs->bootflags & KARGS_FLAGS_CD)
156             bc_add(initial_bootdev);
157     }
158
159     archsw.arch_autoload = i386_autoload;
160     archsw.arch_getdev = i386_getdev;
161     archsw.arch_copyin = i386_copyin;
162     archsw.arch_copyout = i386_copyout;
163     archsw.arch_readin = i386_readin;
164     archsw.arch_isainb = isa_inb;
165     archsw.arch_isaoutb = isa_outb;
166
167     /*
168      * March through the device switch probing for things.
169      */
170     for (i = 0; devsw[i] != NULL; i++)
171         if (devsw[i]->dv_init != NULL)
172             (devsw[i]->dv_init)();
173     printf("BIOS %dkB/%dkB available memory\n", bios_basemem / 1024, bios_extmem / 1024);
174     if (initial_bootinfo != NULL) {
175         initial_bootinfo->bi_basemem = bios_basemem / 1024;
176         initial_bootinfo->bi_extmem = bios_extmem / 1024;
177     }
178
179     /* detect ACPI for future reference */
180     biosacpi_detect();
181
182     /* detect SMBIOS for future reference */
183     smbios_detect();
184
185     printf("\n");
186     printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
187     printf("(%s, %s)\n", bootprog_maker, bootprog_date);
188
189     extract_currdev();                          /* set $currdev and $loaddev */
190     setenv("LINES", "24", 1);                   /* optional */
191     
192     bios_getsmap();
193
194     interact();                 /* doesn't return */
195
196     /* if we ever get here, it is an error */
197     return (1);
198 }
199
200 /*
201  * Set the 'current device' by (if possible) recovering the boot device as 
202  * supplied by the initial bootstrap.
203  *
204  * XXX should be extended for netbooting.
205  */
206 static void
207 extract_currdev(void)
208 {
209     struct i386_devdesc new_currdev;
210     int                 biosdev = -1;
211
212     /* Assume we are booting from a BIOS disk by default */
213     new_currdev.d_dev = &biosdisk;
214
215     /* new-style boot loaders such as pxeldr and cdldr */
216     if (kargs->bootinfo == 0) {
217         if ((kargs->bootflags & KARGS_FLAGS_CD) != 0) {
218             /* we are booting from a CD with cdboot */
219             new_currdev.d_dev = &bioscd;
220             new_currdev.d_unit = bc_bios2unit(initial_bootdev);
221         } else if ((kargs->bootflags & KARGS_FLAGS_PXE) != 0) {
222             /* we are booting from pxeldr */
223             new_currdev.d_dev = &pxedisk;
224             new_currdev.d_unit = 0;
225         } else {
226             /* we don't know what our boot device is */
227             new_currdev.d_kind.biosdisk.slice = -1;
228             new_currdev.d_kind.biosdisk.partition = 0;
229             biosdev = -1;
230         }
231     } else if ((initial_bootdev & B_MAGICMASK) != B_DEVMAGIC) {
232         /* The passed-in boot device is bad */
233         new_currdev.d_kind.biosdisk.slice = -1;
234         new_currdev.d_kind.biosdisk.partition = 0;
235         biosdev = -1;
236     } else {
237         new_currdev.d_kind.biosdisk.slice = B_SLICE(initial_bootdev) - 1;
238         new_currdev.d_kind.biosdisk.partition = B_PARTITION(initial_bootdev);
239         biosdev = initial_bootinfo->bi_bios_dev;
240
241         /*
242          * If we are booted by an old bootstrap, we have to guess at the BIOS
243          * unit number.  We will lose if there is more than one disk type
244          * and we are not booting from the lowest-numbered disk type 
245          * (ie. SCSI when IDE also exists).
246          */
247         if ((biosdev == 0) && (B_TYPE(initial_bootdev) != 2))   /* biosdev doesn't match major */
248             biosdev = 0x80 + B_UNIT(initial_bootdev);           /* assume harddisk */
249     }
250     new_currdev.d_type = new_currdev.d_dev->dv_type;
251     
252     /*
253      * If we are booting off of a BIOS disk and we didn't succeed in determining
254      * which one we booted off of, just use disk0: as a reasonable default.
255      */
256     if ((new_currdev.d_type == biosdisk.dv_type) &&
257         ((new_currdev.d_unit = bd_bios2unit(biosdev)) == -1)) {
258         printf("Can't work out which disk we are booting from.\n"
259                "Guessed BIOS device 0x%x not found by probes, defaulting to disk0:\n", biosdev);
260         new_currdev.d_unit = 0;
261     }
262     env_setenv("currdev", EV_VOLATILE, i386_fmtdev(&new_currdev),
263                i386_setcurrdev, env_nounset);
264     env_setenv("loaddev", EV_VOLATILE, i386_fmtdev(&new_currdev), env_noset,
265                env_nounset);
266
267 #ifdef LOADER_ZFS_SUPPORT
268     /*
269      * If we were started from a ZFS-aware boot2, we can work out
270      * which ZFS pool we are booting from.
271      */
272     if (kargs->bootflags & KARGS_FLAGS_ZFS) {
273         /*
274          * Dig out the pool guid and convert it to a 'unit number'
275          */
276         uint64_t guid;
277         int unit;
278         char devname[32];
279         extern int zfs_guid_to_unit(uint64_t);
280
281         guid = kargs->zfspool;
282         unit = zfs_guid_to_unit(guid);
283         if (unit >= 0) {
284             sprintf(devname, "zfs%d", unit);
285             setenv("currdev", devname, 1);
286         }
287     }
288 #endif
289 }
290
291 COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
292
293 static int
294 command_reboot(int argc, char *argv[])
295 {
296     int i;
297
298     for (i = 0; devsw[i] != NULL; ++i)
299         if (devsw[i]->dv_cleanup != NULL)
300             (devsw[i]->dv_cleanup)();
301
302     printf("Rebooting...\n");
303     delay(1000000);
304     __exit(0);
305 }
306
307 /* provide this for panic, as it's not in the startup code */
308 void
309 exit(int code)
310 {
311     __exit(code);
312 }
313
314 COMMAND_SET(heap, "heap", "show heap usage", command_heap);
315
316 static int
317 command_heap(int argc, char *argv[])
318 {
319     mallocstats();
320     printf("heap base at %p, top at %p, upper limit at %p\n", heap_bottom,
321       sbrk(0), heap_top);
322     return(CMD_OK);
323 }
324
325 /* ISA bus access functions for PnP, derived from <machine/cpufunc.h> */
326 static int              
327 isa_inb(int port)
328 {
329     u_char      data;
330     
331     if (__builtin_constant_p(port) && 
332         (((port) & 0xffff) < 0x100) && 
333         ((port) < 0x10000)) {
334         __asm __volatile("inb %1,%0" : "=a" (data) : "id" ((u_short)(port)));
335     } else {
336         __asm __volatile("inb %%dx,%0" : "=a" (data) : "d" (port));
337     }
338     return(data);
339 }
340
341 static void
342 isa_outb(int port, int value)
343 {
344     u_char      al = value;
345     
346     if (__builtin_constant_p(port) && 
347         (((port) & 0xffff) < 0x100) && 
348         ((port) < 0x10000)) {
349         __asm __volatile("outb %0,%1" : : "a" (al), "id" ((u_short)(port)));
350     } else {
351         __asm __volatile("outb %0,%%dx" : : "a" (al), "d" (port));
352     }
353 }
354