main.c revision 163897
1/*-
2 * Copyright (c) 1998 Michael Smith <msmith@freebsd.org>
3 * Copyright (c) 1998,2000 Doug Rabson <dfr@freebsd.org>
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 *    notice, this list of conditions and the following disclaimer in the
13 *    documentation and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25 * SUCH DAMAGE.
26 */
27
28#include <sys/cdefs.h>
29__FBSDID("$FreeBSD: head/sys/boot/ia64/ski/main.c 163897 2006-11-02 01:23:18Z marcel $");
30
31#include <stand.h>
32#include <string.h>
33#include <setjmp.h>
34#include <machine/fpu.h>
35
36#include "bootstrap.h"
37#include "libski.h"
38
39extern char bootprog_name[];
40extern char bootprog_rev[];
41extern char bootprog_date[];
42extern char bootprog_maker[];
43
44struct ski_devdesc	currdev;	/* our current device */
45struct arch_switch	archsw;		/* MI/MD interface boundary */
46
47static int
48ski_autoload(void)
49{
50
51	return (0);
52}
53
54void
55ski_main(void)
56{
57	static char malloc[512*1024];
58	int i;
59
60	/*
61	 * initialise the heap as early as possible.  Once this is done,
62	 * alloc() is usable. The stack is buried inside us, so this is
63	 * safe.
64	 */
65	setheap((void *)malloc, (void *)(malloc + 512*1024));
66
67	/*
68	 * XXX Chicken-and-egg problem; we want to have console output
69	 * early, but some console attributes may depend on reading from
70	 * eg. the boot device, which we can't do yet.  We can use
71	 * printf() etc. once this is done.
72	 */
73	cons_probe();
74
75	/*
76	 * March through the device switch probing for things.
77	 */
78	for (i = 0; devsw[i] != NULL; i++)
79		if (devsw[i]->dv_init != NULL)
80			(devsw[i]->dv_init)();
81
82	printf("\n");
83	printf("%s, Revision %s\n", bootprog_name, bootprog_rev);
84	printf("(%s, %s)\n", bootprog_maker, bootprog_date);
85#if 0
86	printf("Memory: %ld k\n", memsize() / 1024);
87#endif
88
89	/* XXX presumes that biosdisk is first in devsw */
90	currdev.d_dev = devsw[0];
91	currdev.d_type = currdev.d_dev->dv_type;
92	currdev.d_unit = 0;
93	/* XXX should be able to detect this, default to autoprobe */
94	currdev.d_kind.skidisk.slice = -1;
95	/* default to 'a' */
96	currdev.d_kind.skidisk.partition = 0;
97
98#if 0
99	/* Create arc-specific variables */
100	bootfile = GetEnvironmentVariable(ARCENV_BOOTFILE);
101	if (bootfile)
102		setenv("bootfile", bootfile, 1);
103#endif
104
105	env_setenv("currdev", EV_VOLATILE, ski_fmtdev(&currdev),
106	    ski_setcurrdev, env_nounset);
107	env_setenv("loaddev", EV_VOLATILE, ski_fmtdev(&currdev), env_noset,
108	    env_nounset);
109
110	setenv("LINES", "24", 1);	/* optional */
111
112	archsw.arch_autoload = ski_autoload;
113	archsw.arch_getdev = ski_getdev;
114	archsw.arch_copyin = ski_copyin;
115	archsw.arch_copyout = ski_copyout;
116	archsw.arch_readin = ski_readin;
117
118	interact();			/* doesn't return */
119
120	exit(0);
121}
122
123COMMAND_SET(quit, "quit", "exit the loader", command_quit);
124
125static int
126command_quit(int argc, char *argv[])
127{
128	exit(0);
129	return (CMD_OK);
130}
131