autoconf.c revision 1.11 1 /* $NetBSD: autoconf.c,v 1.11 2009/11/06 23:09:10 dyoung Exp $ */
2 /* NetBSD: autoconf.c,v 1.75 2003/12/30 12:33:22 pk Exp */
3
4 /*-
5 * Copyright (c) 1990 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * This code is derived from software contributed to Berkeley by
9 * William Jolitz.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
16 * 2. Redistributions in binary form must reproduce the above copyright
17 * notice, this list of conditions and the following disclaimer in the
18 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * SUCH DAMAGE.
34 *
35 * @(#)autoconf.c 7.1 (Berkeley) 5/9/91
36 */
37
38 /*
39 * Setup the system to run on the current machine.
40 *
41 * Configure() is called at boot time and initializes the vba
42 * device tables and the memory controller monitoring. Available
43 * devices are determined (from possibilities mentioned in ioconf.c),
44 * and the drivers are initialized.
45 */
46
47 #include <sys/cdefs.h>
48 __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.11 2009/11/06 23:09:10 dyoung Exp $");
49
50 #include "opt_xen.h"
51 #include "opt_compat_oldboot.h"
52 #include "opt_multiprocessor.h"
53 #include "opt_nfs_boot.h"
54
55 #include <sys/param.h>
56 #include <sys/systm.h>
57 #include <sys/buf.h>
58 #include <sys/disklabel.h>
59 #include <sys/disk.h>
60 #include <sys/conf.h>
61 #ifdef COMPAT_OLDBOOT
62 #include <sys/reboot.h>
63 #endif
64 #include <sys/device.h>
65 #include <sys/vnode.h>
66 #include <sys/fcntl.h>
67 #include <sys/dkio.h>
68 #include <sys/proc.h>
69 #include <sys/user.h>
70 #include <sys/kauth.h>
71
72 #ifdef NFS_BOOT_BOOTSTATIC
73 #include <net/if.h>
74 #include <net/if_ether.h>
75 #include <netinet/in.h>
76 #include <nfs/rpcv2.h>
77 #include <nfs/nfsproto.h>
78 #include <nfs/nfs.h>
79 #include <nfs/nfsmount.h>
80 #include <nfs/nfsdiskless.h>
81 #include <xen/if_xennetvar.h>
82 #endif
83
84 #include <machine/pte.h>
85 #include <machine/cpu.h>
86 #include <machine/gdt.h>
87 #include <machine/pcb.h>
88 #include <machine/bootinfo.h>
89
90 static void findroot(void);
91 static int is_valid_disk(device_t);
92 static void handle_wedges(device_t, int);
93
94 struct disklist *x86_alldisks;
95 int x86_ndisks;
96
97 #include "bios32.h"
98 #if NBIOS32 > 0
99 #include <machine/bios32.h>
100 #endif
101
102 #include "opt_pcibios.h"
103 #ifdef PCIBIOS
104 #include <dev/pci/pcireg.h>
105 #include <dev/pci/pcivar.h>
106 #include <i386/pci/pcibios.h>
107 #endif
108
109 #include "opt_kvm86.h"
110 #ifdef KVM86
111 #include <machine/kvm86.h>
112 #endif
113
114 /*
115 * Determine i/o configuration for a machine.
116 */
117 void
118 cpu_configure(void)
119 {
120
121 startrtclock();
122
123 #if NBIOS32 > 0 && defined(DOM0OPS)
124 if (xendomain_is_dom0())
125 bios32_init();
126 #endif /* NBIOS32 > 0 && DOM0OPS */
127 #ifdef PCIBIOS
128 pcibios_init();
129 #endif
130
131 #ifdef KVM86
132 kvm86_init();
133 #endif
134
135 if (config_rootfound("mainbus", NULL) == NULL)
136 panic("configure: mainbus not configured");
137
138 #ifdef INTRDEBUG
139 intr_printconfig();
140 #endif
141
142 /* resync cr0 after FPU configuration */
143 lwp0.l_addr->u_pcb.pcb_cr0 = rcr0();
144 #ifdef MULTIPROCESSOR
145 /* propagate this to the idle pcb's. */
146 cpu_init_idle_lwps();
147 #endif
148
149 spl0();
150 }
151
152 void
153 cpu_rootconf(void)
154 {
155 findroot();
156
157 if (booted_wedge) {
158 KASSERT(booted_device != NULL);
159 printf("boot device: %s (%s)\n",
160 device_xname(booted_wedge), device_xname(booted_device));
161 setroot(booted_wedge, 0);
162 } else {
163 printf("boot device: %s\n",
164 booted_device ? device_xname(booted_device) : "<unknown>");
165 setroot(booted_device, booted_partition);
166 }
167 }
168
169
170 /*
171 * Attempt to find the device from which we were booted.
172 * If we can do so, and not instructed not to do so,
173 * change rootdev to correspond to the load device.
174 */
175 void
176 findroot(void)
177 {
178 device_t dv;
179 deviter_t di;
180 union xen_cmdline_parseinfo xcp;
181
182 if (booted_device)
183 return;
184
185 xen_parse_cmdline(XEN_PARSE_BOOTDEV, &xcp);
186
187 for (dv = deviter_first(&di, DEVITER_F_ROOT_FIRST);
188 dv != NULL;
189 dv = deviter_next(&di)) {
190 bool is_ifnet, is_disk;
191 const char *devname;
192
193 is_ifnet = (device_class(dv) == DV_IFNET);
194 is_disk = is_valid_disk(dv);
195 devname = device_xname(dv);
196
197 if (!is_ifnet && !is_disk)
198 continue;
199
200 if (is_disk && xcp.xcp_bootdev[0] == 0) {
201 handle_wedges(dv, 0);
202 break;
203 }
204
205 if (strncmp(xcp.xcp_bootdev, devname, strlen(devname)))
206 continue;
207
208 if (is_disk && strlen(xcp.xcp_bootdev) > strlen(devname)) {
209 booted_partition = toupper(
210 xcp.xcp_bootdev[strlen(devname)]) - 'A';
211 }
212
213 booted_device = dv;
214 break;
215 }
216 deviter_release(&di);
217 }
218
219 #include "pci.h"
220
221 #include <dev/isa/isavar.h>
222 #if NPCI > 0
223 #include <dev/pci/pcivar.h>
224 #endif
225
226
227 #if defined(NFS_BOOT_BOOTSTATIC) && defined(DOM0OPS)
228 static int
229 dom0_bootstatic_callback(struct nfs_diskless *nd)
230 {
231 #if 0
232 struct ifnet *ifp = nd->nd_ifp;
233 #endif
234 int flags = 0;
235 union xen_cmdline_parseinfo xcp;
236 struct sockaddr_in *sin;
237
238 memset(&xcp, 0, sizeof(xcp.xcp_netinfo));
239 xcp.xcp_netinfo.xi_ifno = 0; /* XXX first interface hardcoded */
240 xcp.xcp_netinfo.xi_root = nd->nd_root.ndm_host;
241 xen_parse_cmdline(XEN_PARSE_NETINFO, &xcp);
242
243 if (xcp.xcp_netinfo.xi_root[0] != '\0') {
244 flags |= NFS_BOOT_HAS_SERVER;
245 if (strchr(xcp.xcp_netinfo.xi_root, ':') != NULL)
246 flags |= NFS_BOOT_HAS_ROOTPATH;
247 }
248
249 nd->nd_myip.s_addr = ntohl(xcp.xcp_netinfo.xi_ip[0]);
250 nd->nd_gwip.s_addr = ntohl(xcp.xcp_netinfo.xi_ip[2]);
251 nd->nd_mask.s_addr = ntohl(xcp.xcp_netinfo.xi_ip[3]);
252
253 sin = (struct sockaddr_in *) &nd->nd_root.ndm_saddr;
254 memset((void *)sin, 0, sizeof(*sin));
255 sin->sin_len = sizeof(*sin);
256 sin->sin_family = AF_INET;
257 sin->sin_addr.s_addr = ntohl(xcp.xcp_netinfo.xi_ip[1]);
258
259 if (nd->nd_myip.s_addr)
260 flags |= NFS_BOOT_HAS_MYIP;
261 if (nd->nd_gwip.s_addr)
262 flags |= NFS_BOOT_HAS_GWIP;
263 if (nd->nd_mask.s_addr)
264 flags |= NFS_BOOT_HAS_MASK;
265 if (sin->sin_addr.s_addr)
266 flags |= NFS_BOOT_HAS_SERVADDR;
267
268 return flags;
269 }
270 #endif
271
272 void
273 device_register(device_t dev, void *aux)
274 {
275 /*
276 * Handle network interfaces here, the attachment information is
277 * not available driver independently later.
278 * For disks, there is nothing useful available at attach time.
279 */
280 #if NXENNET_HYPERVISOR > 0 || NXENNET_XENBUS > 0 || defined(DOM0OPS)
281 if (device_class(dev) == DV_IFNET) {
282 union xen_cmdline_parseinfo xcp;
283
284 #ifdef NFS_BOOT_BOOTSTATIC
285 #ifdef DOM0OPS
286 if (xendomain_is_privileged()) {
287 nfs_bootstatic_callback = dom0_bootstatic_callback;
288 } else
289 #endif
290 #if NXENNET_HYPERVISOR > 0 || NXENNET_XENBUS > 0
291 nfs_bootstatic_callback = xennet_bootstatic_callback;
292 #endif
293 #endif
294 xen_parse_cmdline(XEN_PARSE_BOOTDEV, &xcp);
295 if (strncmp(xcp.xcp_bootdev, device_xname(dev),
296 sizeof(xcp.xcp_bootdev)) == 0)
297 {
298 goto found;
299 }
300 }
301 #endif
302 if (device_class(dev) == DV_IFNET) {
303 struct btinfo_netif *bin = lookup_bootinfo(BTINFO_NETIF);
304 if (bin == NULL)
305 return;
306
307 /*
308 * We don't check the driver name against the device name
309 * passed by the boot ROM. The ROM should stay usable
310 * if the driver gets obsoleted.
311 * The physical attachment information (checked below)
312 * must be sufficient to identify the device.
313 */
314
315 if (bin->bus == BI_BUS_ISA &&
316 device_is_a(device_parent(dev), "isa")) {
317 struct isa_attach_args *iaa = aux;
318
319 /* compare IO base address */
320 /* XXXJRT what about multiple I/O addrs? */
321 if (iaa->ia_nio > 0 &&
322 bin->addr.iobase == iaa->ia_io[0].ir_addr)
323 goto found;
324 }
325 #if NPCI > 0
326 if (bin->bus == BI_BUS_PCI &&
327 device_is_a(device_parent(dev), "pci")) {
328 struct pci_attach_args *paa = aux;
329 int b, d, f;
330
331 /*
332 * Calculate BIOS representation of:
333 *
334 * <bus,device,function>
335 *
336 * and compare.
337 */
338 pci_decompose_tag(paa->pa_pc, paa->pa_tag, &b, &d, &f);
339 if (bin->addr.tag == ((b << 8) | (d << 3) | f))
340 goto found;
341 }
342 #endif
343 }
344 return;
345
346 found:
347 if (booted_device) {
348 /* XXX should be a "panic()" */
349 printf("warning: double match for boot device (%s, %s)\n",
350 device_xname(booted_device), device_xname(dev));
351 return;
352 }
353 booted_device = dev;
354 }
355
356 static void
357 handle_wedges(device_t dv, int par)
358 {
359 if (config_handle_wedges(dv, par) == 0)
360 return;
361 booted_device = dv;
362 booted_partition = par;
363 }
364
365 static int
366 is_valid_disk(device_t dv)
367 {
368
369 if (device_class(dv) != DV_DISK)
370 return (0);
371
372 return (device_is_a(dv, "dk") ||
373 device_is_a(dv, "sd") ||
374 device_is_a(dv, "wd") ||
375 device_is_a(dv, "ld") ||
376 device_is_a(dv, "ed") ||
377 device_is_a(dv, "xbd"));
378 }
379