bootxx.c revision 1.6 1 /* $NetBSD: bootxx.c,v 1.6 2000/12/04 18:44:51 scw Exp $ */
2
3 /*-
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Paul Kranenburg.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by the NetBSD
21 * Foundation, Inc. and its contributors.
22 * 4. Neither the name of The NetBSD Foundation nor the names of its
23 * contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 * POSSIBILITY OF SUCH DAMAGE.
37 */
38
39 /*
40 * This is a generic "first-stage" boot program.
41 *
42 * Note that this program has absolutely no filesystem knowledge!
43 *
44 * Instead, this uses a table of disk block numbers that are
45 * filled in by the installboot program such that this program
46 * can load the "second-stage" boot program.
47 */
48
49 #include <sys/param.h>
50 #include <sys/time.h>
51 #include <sys/exec.h>
52 #include <sys/exec_elf.h>
53 #include <machine/prom.h>
54
55 #include "stand.h"
56 #include "libsa.h"
57 #include "bootxx.h"
58
59 int copyboot __P((struct open_file *, u_long *));
60 void main __P((void));
61
62 /*
63 * Boot device is derived from ROM provided information.
64 */
65 #define LOADADDR 0x11000 /* where to load level 2 bootstrap */
66 /* (l2 must relocate itself) */
67
68 extern int block_size;
69 extern int block_count; /* length of table */
70 extern daddr_t block_table[];
71
72 extern char bootprog_name[], bootprog_rev[];
73
74 void
75 main()
76 {
77 struct open_file f;
78 u_long addr;
79 char *foo;
80 int error;
81
82 printf("Boot: bug device: ctrl=%d, dev=%d\n",
83 bugargs.ctrl_lun, bugargs.dev_lun);
84 printf("\nbootxx: %s first level bootstrap program [%s]\n\n",
85 bootprog_name, bootprog_rev);
86
87 f.f_flags = F_RAW;
88 if (devopen(&f, 0, &foo)) {
89 printf("bootxx: open failed\n");
90 _rtt();
91 }
92
93 addr = LOADADDR;
94 error = copyboot(&f, &addr);
95 f.f_dev->dv_close(&f);
96 if (!error)
97 bugexec((void *)addr);
98
99 /* copyboot had a problem... */
100 _rtt();
101 }
102
103 int
104 copyboot(fp, addr)
105 struct open_file *fp;
106 u_long *addr;
107 {
108 int n, i, blknum;
109 char *laddr = (char *) *addr;
110 union boothead {
111 struct exec ah;
112 Elf32_Ehdr eh;
113 } *x;
114
115 x = (union boothead *)laddr;
116
117 if (!block_count) {
118 printf("bootxx: no data!?!\n");
119 return -1;
120 }
121
122 for (i = 0; i < block_count; i++) {
123
124 if ((blknum = block_table[i]) == 0)
125 break;
126
127 #ifdef DEBUG
128 printf("bootxx: read block # %d = %d\n", i, blknum);
129 #endif
130 if ((fp->f_dev->dv_strategy)(fp->f_devdata, F_READ,
131 blknum, block_size, laddr, &n))
132 {
133 printf("bootxx: read failed\n");
134 return -1;
135 }
136 if (n != block_size) {
137 printf("bootxx: short read\n");
138 return -1;
139 }
140 laddr += block_size;
141 }
142
143 if (N_GETMAGIC(x->ah) == OMAGIC)
144 *addr += sizeof(x->ah);
145 else
146 if (memcmp(x->eh.e_ident, ELFMAG, SELFMAG) == 0) {
147 Elf32_Phdr *ep = (Elf32_Phdr *)(*addr + x->eh.e_phoff);
148 *addr += ep->p_offset;
149 } else {
150 printf("bootxx: secondary bootstrap isn't an executable\n");
151 return(-1);
152 }
153
154 return (0);
155 }
156