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