boot.c revision 1.4 1 1.4 agc /* $NetBSD: boot.c,v 1.4 2003/08/07 16:29:27 agc Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.1 thorpej * Copyright (c) 1999 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jonathan Stone, Michael Hitch and Simon Burge.
9 1.1 thorpej *
10 1.1 thorpej * Redistribution and use in source and binary forms, with or without
11 1.1 thorpej * modification, are permitted provided that the following conditions
12 1.1 thorpej * are met:
13 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.1 thorpej * notice, this list of conditions and the following disclaimer.
15 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.1 thorpej * documentation and/or other materials provided with the distribution.
18 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.1 thorpej * must display the following acknowledgement:
20 1.1 thorpej * This product includes software developed by the NetBSD
21 1.1 thorpej * Foundation, Inc. and its contributors.
22 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 thorpej * contributors may be used to endorse or promote products derived
24 1.1 thorpej * from this software without specific prior written permission.
25 1.1 thorpej *
26 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.1 thorpej */
38 1.1 thorpej
39 1.1 thorpej /*
40 1.1 thorpej * Copyright (c) 1992, 1993
41 1.1 thorpej * The Regents of the University of California. All rights reserved.
42 1.1 thorpej *
43 1.1 thorpej * This code is derived from software contributed to Berkeley by
44 1.1 thorpej * Ralph Campbell.
45 1.1 thorpej *
46 1.1 thorpej * Redistribution and use in source and binary forms, with or without
47 1.1 thorpej * modification, are permitted provided that the following conditions
48 1.1 thorpej * are met:
49 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
50 1.1 thorpej * notice, this list of conditions and the following disclaimer.
51 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
52 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
53 1.1 thorpej * documentation and/or other materials provided with the distribution.
54 1.4 agc * 3. Neither the name of the University nor the names of its contributors
55 1.1 thorpej * may be used to endorse or promote products derived from this software
56 1.1 thorpej * without specific prior written permission.
57 1.1 thorpej *
58 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
59 1.1 thorpej * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
60 1.1 thorpej * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
61 1.1 thorpej * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
62 1.1 thorpej * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
63 1.1 thorpej * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
64 1.1 thorpej * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
65 1.1 thorpej * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
66 1.1 thorpej * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
67 1.1 thorpej * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
68 1.1 thorpej * SUCH DAMAGE.
69 1.1 thorpej *
70 1.1 thorpej * @(#)boot.c 8.1 (Berkeley) 6/10/93
71 1.1 thorpej */
72 1.1 thorpej
73 1.1 thorpej #include <lib/libsa/stand.h>
74 1.1 thorpej #include <lib/libsa/loadfile.h>
75 1.1 thorpej #include <lib/libkern/libkern.h>
76 1.1 thorpej
77 1.1 thorpej #include <sys/param.h>
78 1.1 thorpej #include <sys/exec.h>
79 1.1 thorpej #include <sys/exec_elf.h>
80 1.1 thorpej
81 1.1 thorpej #include <dev/arcbios/arcbios.h>
82 1.1 thorpej
83 1.1 thorpej #include "common.h"
84 1.1 thorpej #include "bootinfo.h"
85 1.1 thorpej
86 1.1 thorpej /*
87 1.1 thorpej * We won't go overboard with gzip'd kernel names. After all we can
88 1.2 soren * still boot a gzip'd kernel called "netbsd.sgimips" - it doesn't need
89 1.1 thorpej * the .gz suffix.
90 1.1 thorpej */
91 1.1 thorpej char *kernelnames[] = {
92 1.1 thorpej "netbsd.sgimips",
93 1.1 thorpej "netbsd", "netbsd.gz",
94 1.1 thorpej "netbsd.bak",
95 1.1 thorpej "netbsd.old",
96 1.1 thorpej "onetbsd",
97 1.1 thorpej "gennetbsd",
98 1.1 thorpej #ifdef notyet
99 1.1 thorpej "netbsd.el",
100 1.1 thorpej #endif /*notyet*/
101 1.1 thorpej NULL
102 1.1 thorpej };
103 1.1 thorpej
104 1.1 thorpej extern const struct arcbios_fv *ARCBIOS;
105 1.1 thorpej
106 1.3 thorpej int main __P((int, char *[]));
107 1.1 thorpej
108 1.1 thorpej #ifdef HEAP_VARIABLE
109 1.1 thorpej void setheap(void *, void*);
110 1.1 thorpej #endif
111 1.1 thorpej
112 1.3 thorpej /* Storage must be static. */
113 1.3 thorpej struct btinfo_symtab bi_syms;
114 1.3 thorpej struct btinfo_bootpath bi_bpath;
115 1.3 thorpej
116 1.1 thorpej /*
117 1.1 thorpej * This gets arguments from the first stage boot lader, calls PROM routines
118 1.1 thorpej * to open and load the program to boot, and then transfers execution to
119 1.1 thorpej * that new program.
120 1.1 thorpej *
121 1.1 thorpej * Argv[0] should be something like "rz(0,0,0)netbsd" on a DECstation 3100.
122 1.1 thorpej * Argv[0,1] should be something like "boot 5/rz0/netbsd" on a DECstation 5000.
123 1.1 thorpej * The argument "-a" means netbsd should do an automatic reboot.
124 1.1 thorpej */
125 1.1 thorpej int
126 1.3 thorpej main(argc, argv)
127 1.1 thorpej int argc;
128 1.1 thorpej char **argv;
129 1.1 thorpej {
130 1.1 thorpej char *name/*, **namep, *dev, *kernel*/;
131 1.1 thorpej char /*bootname[PATH_MAX],*/ bootpath[PATH_MAX];
132 1.3 thorpej void (*entry)(int, char *[], int, void *);
133 1.1 thorpej u_long marks[MARK_MAX];
134 1.1 thorpej struct arcbios_mem *mem;
135 1.3 thorpej int win;
136 1.1 thorpej
137 1.1 thorpej /* print a banner */
138 1.1 thorpej printf("\n");
139 1.3 thorpej printf("NetBSD/sgimips " NETBSD_VERS " Bootstrap, Revision %s\n",
140 1.1 thorpej bootprog_rev);
141 1.1 thorpej printf("(%s, %s)\n", bootprog_maker, bootprog_date);
142 1.1 thorpej printf("\n");
143 1.1 thorpej
144 1.1 thorpej /* Initialize heap from free memory descriptors */
145 1.1 thorpej mem = 0;
146 1.1 thorpej do {
147 1.1 thorpej mem = ARCBIOS->GetMemoryDescriptor(mem);
148 1.1 thorpej if (mem != 0)
149 1.1 thorpej printf("Mem block: type %d base 0x%x size 0x%x\n",
150 1.1 thorpej mem->Type, mem->BasePage * 4096, mem->PageCount * 4096);
151 1.1 thorpej } while (mem != 0);
152 1.1 thorpej #ifdef HEAP_VARIABLE
153 1.1 thorpej setheap((void *)0x88200000, (void *)0x88300000); /* XXXX */
154 1.1 thorpej #endif
155 1.1 thorpej printf("Local storage %x\n", (int)&mem);
156 1.1 thorpej for (win = 0; win < argc; ++win)
157 1.1 thorpej printf("argv[%d]: %s\n", win, argv[win]);
158 1.1 thorpej
159 1.1 thorpej /* initialise bootinfo structure early */
160 1.3 thorpej bi_init();
161 1.1 thorpej
162 1.1 thorpej /*
163 1.1 thorpej * How to find partition and file to load?
164 1.1 thorpej * OSLoaderPartition=scsi(n)disk(n)rdisk(n)partition(n)
165 1.1 thorpej * OSLoadFilename=netbsd
166 1.1 thorpej * path=???
167 1.1 thorpej * argument passed to boot program
168 1.1 thorpej */
169 1.1 thorpej bootpath[0] = 0;
170 1.1 thorpej name = ARCBIOS->GetEnvironmentVariable("OSLoadPartition");
171 1.1 thorpej if (name) {
172 1.1 thorpej strcpy(bootpath, name);
173 1.1 thorpej name = ARCBIOS->GetEnvironmentVariable("OSLoadFilename");
174 1.1 thorpej if (name)
175 1.1 thorpej strcat(bootpath, name);
176 1.1 thorpej else
177 1.1 thorpej strcat(bootpath, "netbsd");
178 1.1 thorpej }
179 1.1 thorpej if (strchr(argv[1], '=') == NULL) {
180 1.1 thorpej strcpy(bootpath, argv[1]);
181 1.1 thorpej if (strchr(argv[1], '(') == NULL) {
182 1.3 thorpej strcpy(bootpath,
183 1.3 thorpej ARCBIOS->GetEnvironmentVariable("OSLoadPartition"));
184 1.1 thorpej strcat(bootpath, argv[1]);
185 1.1 thorpej }
186 1.1 thorpej }
187 1.1 thorpej printf("Boot: %s\n", bootpath);
188 1.1 thorpej
189 1.1 thorpej memset(marks, 0, sizeof marks);
190 1.1 thorpej #if 0
191 1.1 thorpej if (name != NULL)
192 1.1 thorpej win = (loadfile(name, marks, LOAD_KERNEL) == 0);
193 1.1 thorpej else {
194 1.1 thorpej win = 0;
195 1.1 thorpej for (namep = kernelnames, win = 0; *namep != NULL && !win;
196 1.1 thorpej namep++) {
197 1.1 thorpej kernel = *namep;
198 1.1 thorpej strcpy(bootpath, dev);
199 1.1 thorpej strcat(bootpath, kernel);
200 1.1 thorpej printf("Loading: %s\n", bootpath);
201 1.1 thorpej win = (loadfile(bootpath, marks, LOAD_ALL) != -1);
202 1.1 thorpej if (win) {
203 1.1 thorpej name = bootpath;
204 1.1 thorpej }
205 1.1 thorpej }
206 1.1 thorpej }
207 1.1 thorpej #else
208 1.1 thorpej win = loadfile(bootpath, marks, LOAD_KERNEL) == 0;
209 1.1 thorpej #endif
210 1.1 thorpej if (!win)
211 1.1 thorpej goto fail;
212 1.1 thorpej
213 1.1 thorpej #if 0
214 1.1 thorpej strncpy(bi_bpath.bootpath, kernel, BTINFO_BOOTPATH_LEN);
215 1.1 thorpej bi_add(&bi_bpath, BTINFO_BOOTPATH, sizeof(bi_bpath));
216 1.1 thorpej #endif
217 1.1 thorpej
218 1.3 thorpej entry = (void *) marks[MARK_ENTRY];
219 1.1 thorpej bi_syms.nsym = marks[MARK_NSYM];
220 1.1 thorpej bi_syms.ssym = marks[MARK_SYM];
221 1.1 thorpej bi_syms.esym = marks[MARK_END];
222 1.3 thorpej bi_add(&bi_syms, BTINFO_SYMTAB);
223 1.1 thorpej
224 1.3 thorpej printf("Starting at %p\n\n", entry);
225 1.3 thorpej printf("nsym 0x%lx ssym 0x%lx esym 0x%lx\n", marks[MARK_NSYM],
226 1.3 thorpej marks[MARK_SYM], marks[MARK_END]);
227 1.1 thorpej ARCBIOS->FlushAllCaches();
228 1.3 thorpej (*entry)(argc, argv, BOOTINFO_MAGIC, bootinfo);
229 1.3 thorpej
230 1.3 thorpej printf("Kernel returned! Halting...\n");
231 1.3 thorpej return (0);
232 1.1 thorpej
233 1.3 thorpej fail:
234 1.1 thorpej (void)printf("Boot failed! Halting...\n");
235 1.1 thorpej return (0);
236 1.1 thorpej }
237