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