]> CyberLeo.Net >> Repos - FreeBSD/stable/8.git/blob - sys/boot/pc98/loader/main.c
MFC r362623:
[FreeBSD/stable/8.git] / sys / boot / pc98 / 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 <stddef.h>
37 #include <string.h>
38 #include <machine/bootinfo.h>
39 #include <machine/cpufunc.h>
40 #include <sys/param.h>
41 #include <sys/reboot.h>
42
43 #include "bootstrap.h"
44 #include "common/bootargs.h"
45 #include "libi386/libi386.h"
46 #include "libpc98/libpc98.h"
47 #include "btxv86.h"
48
49 CTASSERT(sizeof(struct bootargs) == BOOTARGS_SIZE);
50 CTASSERT(offsetof(struct bootargs, bootinfo) == BA_BOOTINFO);
51 CTASSERT(offsetof(struct bootargs, bootflags) == BA_BOOTFLAGS);
52 CTASSERT(offsetof(struct bootinfo, bi_size) == BI_SIZE);
53
54 /* Arguments passed in from the boot1/boot2 loader */
55 static struct bootargs *kargs;
56
57 static u_int32_t        initial_howto;
58 static u_int32_t        initial_bootdev;
59 static struct bootinfo  *initial_bootinfo;
60
61 struct arch_switch      archsw;         /* MI/MD interface boundary */
62
63 static void             extract_currdev(void);
64 static int              isa_inb(int port);
65 static void             isa_outb(int port, int value);
66 void                    exit(int code);
67
68 /* from vers.c */
69 extern  char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[];
70
71 /* XXX debugging */
72 extern char end[];
73
74 static void *heap_top;
75 static void *heap_bottom;
76
77 int
78 main(void)
79 {
80     int                 i;
81
82     /* Set machine type to PC98_SYSTEM_PARAMETER. */
83     set_machine_type();
84
85     /* Pick up arguments */
86     kargs = (void *)__args;
87     initial_howto = kargs->howto;
88     initial_bootdev = kargs->bootdev;
89     initial_bootinfo = kargs->bootinfo ? (struct bootinfo *)PTOV(kargs->bootinfo) : NULL;
90
91     /* Initialize the v86 register set to a known-good state. */
92     bzero(&v86, sizeof(v86));
93     v86.efl = PSL_RESERVED_DEFAULT | PSL_I;
94
95     /* 
96      * Initialise the heap as early as possible.  Once this is done, malloc() is usable.
97      */
98     bios_getmem();
99
100 #if defined(LOADER_BZIP2_SUPPORT)
101     if (high_heap_size > 0) {
102         heap_top = PTOV(high_heap_base + high_heap_size);
103         heap_bottom = PTOV(high_heap_base);
104         if (high_heap_base < memtop_copyin)
105             memtop_copyin = high_heap_base;
106     } else
107 #endif
108     {
109         heap_top = (void *)PTOV(bios_basemem);
110         heap_bottom = (void *)end;
111     }
112     setheap(heap_bottom, heap_top);
113
114     /* 
115      * XXX Chicken-and-egg problem; we want to have console output early, but some
116      * console attributes may depend on reading from eg. the boot device, which we
117      * can't do yet.
118      *
119      * We can use printf() etc. once this is done.
120      * If the previous boot stage has requested a serial console, prefer that.
121      */
122     bi_setboothowto(initial_howto);
123     if (initial_howto & RB_MULTIPLE) {
124         if (initial_howto & RB_SERIAL)
125             setenv("console", "comconsole vidconsole", 1);
126         else
127             setenv("console", "vidconsole comconsole", 1);
128     } else if (initial_howto & RB_SERIAL)
129         setenv("console", "comconsole", 1);
130     else if (initial_howto & RB_MUTE)
131         setenv("console", "nullconsole", 1);
132     cons_probe();
133
134     /*
135      * Initialise the block cache
136      */
137     bcache_init(32, 512);       /* 16k cache XXX tune this */
138
139     /*
140      * Special handling for PXE and CD booting.
141      */
142     if (kargs->bootinfo == 0) {
143         /*
144          * We only want the PXE disk to try to init itself in the below
145          * walk through devsw if we actually booted off of PXE.
146          */
147         if (kargs->bootflags & KARGS_FLAGS_PXE)
148             pxe_enable(kargs->pxeinfo ? PTOV(kargs->pxeinfo) : NULL);
149         else if (kargs->bootflags & KARGS_FLAGS_CD)
150             bc_add(initial_bootdev);
151     }
152
153     archsw.arch_autoload = i386_autoload;
154     archsw.arch_getdev = i386_getdev;
155     archsw.arch_copyin = i386_copyin;
156     archsw.arch_copyout = i386_copyout;
157     archsw.arch_readin = i386_readin;
158     archsw.arch_isainb = isa_inb;
159     archsw.arch_isaoutb = isa_outb;
160
161     /*
162      * March through the device switch probing for things.
163      */
164     for (i = 0; devsw[i] != NULL; i++)
165         if (devsw[i]->dv_init != NULL)
166             (devsw[i]->dv_init)();
167     printf("BIOS %dkB/%dkB available memory\n", bios_basemem / 1024, bios_extmem / 1024);
168     if (initial_bootinfo != NULL) {
169         initial_bootinfo->bi_basemem = bios_basemem / 1024;
170         initial_bootinfo->bi_extmem = bios_extmem / 1024;
171     }
172
173     printf("\n");
174     printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
175     printf("(%s, %s)\n", bootprog_maker, bootprog_date);
176
177     extract_currdev();                          /* set $currdev and $loaddev */
178     setenv("LINES", "24", 1);                   /* optional */
179
180     interact();                 /* doesn't return */
181
182     /* if we ever get here, it is an error */
183     return (1);
184 }
185
186 /*
187  * Set the 'current device' by (if possible) recovering the boot device as 
188  * supplied by the initial bootstrap.
189  *
190  * XXX should be extended for netbooting.
191  */
192 static void
193 extract_currdev(void)
194 {
195     struct i386_devdesc         new_currdev;
196     int                         major;
197     int                         biosdev = -1;
198
199     /* Assume we are booting from a BIOS disk by default */
200     new_currdev.d_dev = &biosdisk;
201
202     /* new-style boot loaders such as pxeldr and cdldr */
203     if (kargs->bootinfo == 0) {
204         if ((kargs->bootflags & KARGS_FLAGS_CD) != 0) {
205             /* we are booting from a CD with cdboot */
206             new_currdev.d_dev = &bioscd;
207             new_currdev.d_unit = bc_bios2unit(initial_bootdev);
208         } else if ((kargs->bootflags & KARGS_FLAGS_PXE) != 0) {
209             /* we are booting from pxeldr */
210             new_currdev.d_dev = &pxedisk;
211             new_currdev.d_unit = 0;
212         } else {
213             /* we don't know what our boot device is */
214             new_currdev.d_kind.biosdisk.slice = -1;
215             new_currdev.d_kind.biosdisk.partition = 0;
216             biosdev = -1;
217         }
218     } else if ((initial_bootdev & B_MAGICMASK) != B_DEVMAGIC) {
219         /* The passed-in boot device is bad */
220         new_currdev.d_kind.biosdisk.slice = -1;
221         new_currdev.d_kind.biosdisk.partition = 0;
222         biosdev = -1;
223     } else {
224         new_currdev.d_kind.biosdisk.slice = B_SLICE(initial_bootdev) - 1;
225         new_currdev.d_kind.biosdisk.partition = B_PARTITION(initial_bootdev);
226         biosdev = initial_bootinfo->bi_bios_dev;
227         major = B_TYPE(initial_bootdev);
228
229         /*
230          * If we are booted by an old bootstrap, we have to guess at the BIOS
231          * unit number.  We will lose if there is more than one disk type
232          * and we are not booting from the lowest-numbered disk type 
233          * (ie. SCSI when IDE also exists).
234          */
235         if ((biosdev == 0) && (B_TYPE(initial_bootdev) != 2)) { /* biosdev doesn't match major */
236             if (B_TYPE(initial_bootdev) == 6)
237                 biosdev = 0x30 + B_UNIT(initial_bootdev);
238             else
239                 biosdev = (major << 3) + 0x80 + B_UNIT(initial_bootdev);
240         }
241     }
242     new_currdev.d_type = new_currdev.d_dev->dv_type;
243
244     /*
245      * If we are booting off of a BIOS disk and we didn't succeed in determining
246      * which one we booted off of, just use disk0: as a reasonable default.
247      */
248     if ((new_currdev.d_type == biosdisk.dv_type) &&
249         ((new_currdev.d_unit = bd_bios2unit(biosdev)) == -1)) {
250         printf("Can't work out which disk we are booting from.\n"
251                "Guessed BIOS device 0x%x not found by probes, defaulting to disk0:\n", biosdev);
252         new_currdev.d_unit = 0;
253     }
254
255     env_setenv("currdev", EV_VOLATILE, i386_fmtdev(&new_currdev),
256                i386_setcurrdev, env_nounset);
257     env_setenv("loaddev", EV_VOLATILE, i386_fmtdev(&new_currdev), env_noset,
258                env_nounset);
259 }
260
261 COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
262
263 static int
264 command_reboot(int argc, char *argv[])
265 {
266     int i;
267
268     for (i = 0; devsw[i] != NULL; ++i)
269         if (devsw[i]->dv_cleanup != NULL)
270             (devsw[i]->dv_cleanup)();
271
272     printf("Rebooting...\n");
273     delay(1000000);
274     __exit(0);
275 }
276
277 /* provide this for panic, as it's not in the startup code */
278 void
279 exit(int code)
280 {
281     __exit(code);
282 }
283
284 COMMAND_SET(heap, "heap", "show heap usage", command_heap);
285
286 static int
287 command_heap(int argc, char *argv[])
288 {
289     mallocstats();
290     printf("heap base at %p, top at %p, upper limit at %p\n", heap_bottom,
291       sbrk(0), heap_top);
292     return(CMD_OK);
293 }
294
295 /* ISA bus access functions for PnP. */
296 static int
297 isa_inb(int port)
298 {
299
300     return (inb(port));
301 }
302
303 static void
304 isa_outb(int port, int value)
305 {
306
307     outb(port, value);
308 }