main.c revision 240852
191094Sdes/*-
291094Sdes * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
391094Sdes * All rights reserved.
491094Sdes *
591094Sdes * Redistribution and use in source and binary forms, with or without
691094Sdes * modification, are permitted provided that the following conditions
791094Sdes * are met:
891094Sdes * 1. Redistributions of source code must retain the above copyright
991094Sdes *    notice, this list of conditions and the following disclaimer.
1091094Sdes * 2. Redistributions in binary form must reproduce the above copyright
1191094Sdes *    notice, this list of conditions and the following disclaimer in the
1291094Sdes *    documentation and/or other materials provided with the distribution.
1391094Sdes *
1491094Sdes * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1591094Sdes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1691094Sdes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1791094Sdes * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1891094Sdes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1991094Sdes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2091094Sdes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2191094Sdes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2291094Sdes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2391094Sdes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2491094Sdes * SUCH DAMAGE.
2591094Sdes */
2691094Sdes
2791094Sdes#include <sys/cdefs.h>
2891094Sdes__FBSDID("$FreeBSD: head/sys/boot/pc98/loader/main.c 240852 2012-09-23 08:46:44Z nyan $");
2991094Sdes
3091094Sdes/*
3191094Sdes * MD bootstrap main() and assorted miscellaneous
3291094Sdes * commands.
3391094Sdes */
3491094Sdes
3591094Sdes#include <stand.h>
3691094Sdes#include <stddef.h>
3791094Sdes#include <string.h>
3891094Sdes#include <machine/bootinfo.h>
3991094Sdes#include <sys/param.h>
4091094Sdes#include <sys/reboot.h>
4191094Sdes
4291094Sdes#include "bootstrap.h"
4391094Sdes#include "common/bootargs.h"
4491094Sdes#include "libi386/libi386.h"
4591094Sdes#include "libpc98/libpc98.h"
4691094Sdes#include "btxv86.h"
4791094Sdes
4891094SdesCTASSERT(sizeof(struct bootargs) == BOOTARGS_SIZE);
4991094SdesCTASSERT(offsetof(struct bootargs, bootinfo) == BA_BOOTINFO);
5091094SdesCTASSERT(offsetof(struct bootargs, bootflags) == BA_BOOTFLAGS);
5191094SdesCTASSERT(offsetof(struct bootinfo, bi_size) == BI_SIZE);
5291094Sdes
5391094Sdes/* Arguments passed in from the boot1/boot2 loader */
5491094Sdesstatic struct bootargs *kargs;
5591094Sdes
5691094Sdesstatic u_int32_t	initial_howto;
5791094Sdesstatic u_int32_t	initial_bootdev;
5891094Sdesstatic struct bootinfo	*initial_bootinfo;
5991094Sdes
6091094Sdesstruct arch_switch	archsw;		/* MI/MD interface boundary */
6191094Sdes
6291094Sdesstatic void		extract_currdev(void);
6391094Sdesstatic int		isa_inb(int port);
6491094Sdesstatic void		isa_outb(int port, int value);
6591094Sdesvoid			exit(int code);
6691094Sdes
6791094Sdes/* from vers.c */
6891094Sdesextern	char bootprog_name[], bootprog_rev[], bootprog_date[], bootprog_maker[];
6991094Sdes
7091094Sdes/* XXX debugging */
71extern char end[];
72
73static void *heap_top;
74static void *heap_bottom;
75
76static uint64_t
77pc98_loadaddr(u_int type, void *data, uint64_t addr)
78{
79	struct stat st;
80
81	if (type == LOAD_ELF)
82		return (roundup(addr, PAGE_SIZE));
83
84	/* We cannot use 15M-16M area on pc98. */
85	if (type == LOAD_RAW && addr < 0x1000000 && stat(data, &st) == 0 &&
86	    (st.st_size == -1 || addr + st.st_size > 0xf00000))
87		addr = 0x1000000;
88	return (addr);
89}
90
91int
92main(void)
93{
94    int			i;
95
96    /* Set machine type to PC98_SYSTEM_PARAMETER. */
97    set_machine_type();
98
99    /* Pick up arguments */
100    kargs = (void *)__args;
101    initial_howto = kargs->howto;
102    initial_bootdev = kargs->bootdev;
103    initial_bootinfo = kargs->bootinfo ? (struct bootinfo *)PTOV(kargs->bootinfo) : NULL;
104
105    /* Initialize the v86 register set to a known-good state. */
106    bzero(&v86, sizeof(v86));
107    v86.efl = PSL_RESERVED_DEFAULT | PSL_I;
108
109    /*
110     * Initialise the heap as early as possible.  Once this is done, malloc() is usable.
111     */
112    bios_getmem();
113
114#if defined(LOADER_BZIP2_SUPPORT)
115    if (high_heap_size > 0) {
116	heap_top = PTOV(high_heap_base + high_heap_size);
117	heap_bottom = PTOV(high_heap_base);
118	if (high_heap_base < memtop_copyin)
119	    memtop_copyin = high_heap_base;
120    } else
121#endif
122    {
123	heap_top = (void *)PTOV(bios_basemem);
124	heap_bottom = (void *)end;
125    }
126    setheap(heap_bottom, heap_top);
127
128    /*
129     * XXX Chicken-and-egg problem; we want to have console output early, but some
130     * console attributes may depend on reading from eg. the boot device, which we
131     * can't do yet.
132     *
133     * We can use printf() etc. once this is done.
134     * If the previous boot stage has requested a serial console, prefer that.
135     */
136    bi_setboothowto(initial_howto);
137    if (initial_howto & RB_MULTIPLE) {
138	if (initial_howto & RB_SERIAL)
139	    setenv("console", "comconsole vidconsole", 1);
140	else
141	    setenv("console", "vidconsole comconsole", 1);
142    } else if (initial_howto & RB_SERIAL)
143	setenv("console", "comconsole", 1);
144    else if (initial_howto & RB_MUTE)
145	setenv("console", "nullconsole", 1);
146    cons_probe();
147
148    /*
149     * Initialise the block cache
150     */
151    bcache_init(32, 512);	/* 16k cache XXX tune this */
152
153    /*
154     * Special handling for PXE and CD booting.
155     */
156    if (kargs->bootinfo == 0) {
157	/*
158	 * We only want the PXE disk to try to init itself in the below
159	 * walk through devsw if we actually booted off of PXE.
160	 */
161	if (kargs->bootflags & KARGS_FLAGS_PXE)
162	    pxe_enable(kargs->pxeinfo ? PTOV(kargs->pxeinfo) : NULL);
163	else if (kargs->bootflags & KARGS_FLAGS_CD)
164	    bc_add(initial_bootdev);
165    }
166
167    archsw.arch_autoload = i386_autoload;
168    archsw.arch_getdev = i386_getdev;
169    archsw.arch_copyin = i386_copyin;
170    archsw.arch_copyout = i386_copyout;
171    archsw.arch_readin = i386_readin;
172    archsw.arch_isainb = isa_inb;
173    archsw.arch_isaoutb = isa_outb;
174    archsw.arch_loadaddr = pc98_loadaddr;
175
176    /*
177     * March through the device switch probing for things.
178     */
179    for (i = 0; devsw[i] != NULL; i++)
180	if (devsw[i]->dv_init != NULL)
181	    (devsw[i]->dv_init)();
182    printf("BIOS %dkB/%dkB available memory\n", bios_basemem / 1024, bios_extmem / 1024);
183    if (initial_bootinfo != NULL) {
184	initial_bootinfo->bi_basemem = bios_basemem / 1024;
185	initial_bootinfo->bi_extmem = bios_extmem / 1024;
186    }
187
188    printf("\n");
189    printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
190    printf("(%s, %s)\n", bootprog_maker, bootprog_date);
191
192    extract_currdev();				/* set $currdev and $loaddev */
193    setenv("LINES", "24", 1);			/* optional */
194
195    interact();			/* doesn't return */
196
197    /* if we ever get here, it is an error */
198    return (1);
199}
200
201/*
202 * Set the 'current device' by (if possible) recovering the boot device as
203 * supplied by the initial bootstrap.
204 *
205 * XXX should be extended for netbooting.
206 */
207static void
208extract_currdev(void)
209{
210    struct i386_devdesc		new_currdev;
211    int				major;
212    int				biosdev = -1;
213
214    /* Assume we are booting from a BIOS disk by default */
215    new_currdev.d_dev = &biosdisk;
216
217    /* new-style boot loaders such as pxeldr and cdldr */
218    if (kargs->bootinfo == 0) {
219        if ((kargs->bootflags & KARGS_FLAGS_CD) != 0) {
220	    /* we are booting from a CD with cdboot */
221	    new_currdev.d_dev = &bioscd;
222	    new_currdev.d_unit = bc_bios2unit(initial_bootdev);
223	} else if ((kargs->bootflags & KARGS_FLAGS_PXE) != 0) {
224	    /* we are booting from pxeldr */
225	    new_currdev.d_dev = &pxedisk;
226	    new_currdev.d_unit = 0;
227	} else {
228	    /* we don't know what our boot device is */
229	    new_currdev.d_kind.biosdisk.slice = -1;
230	    new_currdev.d_kind.biosdisk.partition = 0;
231	    biosdev = -1;
232	}
233    } else if ((initial_bootdev & B_MAGICMASK) != B_DEVMAGIC) {
234	/* The passed-in boot device is bad */
235	new_currdev.d_kind.biosdisk.slice = -1;
236	new_currdev.d_kind.biosdisk.partition = 0;
237	biosdev = -1;
238    } else {
239	new_currdev.d_kind.biosdisk.slice = B_SLICE(initial_bootdev) - 1;
240	new_currdev.d_kind.biosdisk.partition = B_PARTITION(initial_bootdev);
241	biosdev = initial_bootinfo->bi_bios_dev;
242	major = B_TYPE(initial_bootdev);
243
244	/*
245	 * If we are booted by an old bootstrap, we have to guess at the BIOS
246	 * unit number.  We will lose if there is more than one disk type
247	 * and we are not booting from the lowest-numbered disk type
248	 * (ie. SCSI when IDE also exists).
249	 */
250	if ((biosdev == 0) && (B_TYPE(initial_bootdev) != 2)) {	/* biosdev doesn't match major */
251	    if (B_TYPE(initial_bootdev) == 6)
252		biosdev = 0x30 + B_UNIT(initial_bootdev);
253	    else
254		biosdev = (major << 3) + 0x80 + B_UNIT(initial_bootdev);
255	}
256    }
257    new_currdev.d_type = new_currdev.d_dev->dv_type;
258
259    /*
260     * If we are booting off of a BIOS disk and we didn't succeed in determining
261     * which one we booted off of, just use disk0: as a reasonable default.
262     */
263    if ((new_currdev.d_type == biosdisk.dv_type) &&
264	((new_currdev.d_unit = bd_bios2unit(biosdev)) == -1)) {
265	printf("Can't work out which disk we are booting from.\n"
266	       "Guessed BIOS device 0x%x not found by probes, defaulting to disk0:\n", biosdev);
267	new_currdev.d_unit = 0;
268    }
269
270    env_setenv("currdev", EV_VOLATILE, i386_fmtdev(&new_currdev),
271	       i386_setcurrdev, env_nounset);
272    env_setenv("loaddev", EV_VOLATILE, i386_fmtdev(&new_currdev), env_noset,
273	       env_nounset);
274}
275
276COMMAND_SET(reboot, "reboot", "reboot the system", command_reboot);
277
278static int
279command_reboot(int argc, char *argv[])
280{
281    int i;
282
283    for (i = 0; devsw[i] != NULL; ++i)
284	if (devsw[i]->dv_cleanup != NULL)
285	    (devsw[i]->dv_cleanup)();
286
287    printf("Rebooting...\n");
288    delay(1000000);
289    __exit(0);
290}
291
292/* provide this for panic, as it's not in the startup code */
293void
294exit(int code)
295{
296    __exit(code);
297}
298
299COMMAND_SET(heap, "heap", "show heap usage", command_heap);
300
301static int
302command_heap(int argc, char *argv[])
303{
304    mallocstats();
305    printf("heap base at %p, top at %p, upper limit at %p\n", heap_bottom,
306      sbrk(0), heap_top);
307    return(CMD_OK);
308}
309
310/* ISA bus access functions for PnP, derived from <machine/cpufunc.h> */
311static int
312isa_inb(int port)
313{
314    u_char	data;
315
316    if (__builtin_constant_p(port) &&
317	(((port) & 0xffff) < 0x100) &&
318	((port) < 0x10000)) {
319	__asm __volatile("inb %1,%0" : "=a" (data) : "id" ((u_short)(port)));
320    } else {
321	__asm __volatile("inb %%dx,%0" : "=a" (data) : "d" (port));
322    }
323    return(data);
324}
325
326static void
327isa_outb(int port, int value)
328{
329    u_char	al = value;
330
331    if (__builtin_constant_p(port) &&
332	(((port) & 0xffff) < 0x100) &&
333	((port) < 0x10000)) {
334	__asm __volatile("outb %0,%1" : : "a" (al), "id" ((u_short)(port)));
335    } else {
336        __asm __volatile("outb %0,%%dx" : : "a" (al), "d" (port));
337    }
338}
339