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