2 * Copyright (c) 1990 The Regents of the University of California.
3 * Copyright (c) 2008 The DragonFly Project.
6 * This code is derived from software contributed to Berkeley by
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * from: @(#)autoconf.c 7.1 (Berkeley) 5/9/91
34 * $FreeBSD: src/sys/i386/i386/autoconf.c,v 1.146.2.2 2001/06/07 06:05:58 dd Exp $
38 * Setup the system to run on the current machine.
40 * Configure() is called at boot time and initializes the vba
41 * device tables and the memory controller monitoring. Available
42 * devices are determined (from possibilities mentioned in ioconf.c),
43 * and the drivers are initialized.
45 #include "opt_bootp.h"
46 #include "opt_cd9660.h"
48 #include "opt_nfsroot.h"
49 #include "opt_rootdevname.h"
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/bootmaj.h>
58 #include <sys/diskslice.h>
59 #include <sys/reboot.h>
60 #include <sys/kernel.h>
61 #include <sys/malloc.h>
62 #include <sys/mount.h>
64 #include <sys/thread.h>
65 #include <sys/device.h>
66 #include <sys/machintr.h>
68 #include <machine/bootinfo.h>
69 #include <machine/md_var.h>
70 #include <machine/smp.h>
71 #include <machine_base/icu/icu.h>
73 #include <machine/pcb.h>
74 #include <machine/pcb_ext.h>
75 #include <machine/globaldata.h>
78 #include <bus/isa/isavar.h>
80 device_t isa_bus_device
= NULL
;
83 static void configure_first (void *);
84 static void configure (void *);
85 static void configure_final (void *);
87 #if defined(NFS) && defined(NFS_ROOT)
88 #if !defined(BOOTP_NFSROOT)
89 static void pxe_setup_nfsdiskless(void);
93 SYSINIT(configure1
, SI_SUB_CONFIGURE
, SI_ORDER_FIRST
, configure_first
, NULL
);
94 /* SI_ORDER_SECOND is hookable */
95 SYSINIT(configure2
, SI_SUB_CONFIGURE
, SI_ORDER_THIRD
, configure
, NULL
);
96 /* SI_ORDER_MIDDLE is hookable */
97 SYSINIT(configure3
, SI_SUB_CONFIGURE
, SI_ORDER_ANY
, configure_final
, NULL
);
99 cdev_t rootdev
= NULL
;
100 cdev_t dumpdev
= NULL
;
103 * nfsroot.iosize may be set in loader.conf, 32768 is recommended to
104 * be able to max-out a GigE link if the server supports it. Many servers
105 * do not so the default is 8192.
107 * nfsroot.rahead defaults to something reasonable, can be overridden.
109 static int nfsroot_iosize
= 8192;
110 TUNABLE_INT("nfsroot.iosize", &nfsroot_iosize
);
111 static int nfsroot_rahead
= 4;
112 TUNABLE_INT("nfsroot.rahead", &nfsroot_rahead
);
115 * Determine i/o configuration for a machine.
118 configure_first(void *dummy
)
123 configure(void *dummy
)
126 void *low_dma_reserve
;
129 * Try to reserve 512k of low dma memory for later isa attach.
130 * Document as a REALLY bad hack.
132 low_dma_reserve
= contigmalloc(0x80000, M_TEMP
, M_NOWAIT
, 0ul,
133 0xfffffful
, 1ul, 0x20000ul
);
135 kprintf("low dma reserve placed @ %p\n", low_dma_reserve
);
139 * This will configure all devices, generally starting with the
140 * nexus (pc64/x86_64/nexus.c). The nexus ISA code explicitly
141 * dummies up the attach in order to delay legacy initialization
142 * until after all other busses/subsystems have had a chance
143 * at those resources.
145 root_bus_configure();
149 * Free up reserve if we got it.
151 if (low_dma_reserve
!= NULL
) {
152 contigfree(low_dma_reserve
, 0x80000, M_TEMP
);
153 } else if (bootverbose
) {
154 kprintf("low dma reserve was not allocated\n");
158 * Explicitly probe and attach ISA last. The isa bus saves
159 * it's device node at attach time for us here.
162 isa_probe_children(isa_bus_device
);
166 * Allow lowering of the ipl to the lowest kernel level if we
167 * panic (or call tsleep() before clearing `cold'). No level is
168 * completely safe (since a panic may occur in a critical region
169 * at splhigh()), but we want at least bio interrupts to work.
171 safepri
= TDPRI_KERN_USER
;
175 * Finalize configure. Reprobe for the console, in case it was one
176 * of the devices which attached, then finish console initialization.
179 configure_final(void *dummy
)
186 void bootpc_init(void);
189 * Do legacy root filesystem discovery.
197 #if defined(NFS) && defined(NFS_ROOT)
198 #if !defined(BOOTP_NFSROOT)
199 pxe_setup_nfsdiskless();
200 if (nfs_diskless_valid
)
202 rootdevnames
[0] = "nfs:";
205 SYSINIT(cpu_rootconf
, SI_SUB_ROOT_CONF
, SI_ORDER_FIRST
, cpu_rootconf
, NULL
);
207 #if defined(NFS) && defined(NFS_ROOT)
208 #if !defined(BOOTP_NFSROOT)
210 #include <sys/socket.h>
212 #include <net/if_dl.h>
213 #include <net/if_types.h>
214 #include <net/if_var.h>
215 #include <net/ethernet.h>
216 #include <netinet/in.h>
217 #include <vfs/nfs/rpcv2.h>
218 #include <vfs/nfs/nfsproto.h>
219 #include <vfs/nfs/nfs.h>
220 #include <vfs/nfs/nfsdiskless.h>
222 extern struct nfs_diskless nfs_diskless
;
225 * Convert a kenv variable to a sockaddr. If the kenv variable does not
226 * exist the sockaddr will remain zerod out (callers typically just check
227 * sin_len). A network address of 0.0.0.0 is equivalent to failure.
230 inaddr_to_sockaddr(char *ev
, struct sockaddr_in
*sa
)
235 bzero(sa
, sizeof(*sa
));
237 if ((cp
= kgetenv(ev
)) == NULL
)
239 if (ksscanf(cp
, "%d.%d.%d.%d", &a
[0], &a
[1], &a
[2], &a
[3]) != 4)
241 if (a
[0] == 0 && a
[1] == 0 && a
[2] == 0 && a
[3] == 0)
243 /* XXX is this ordering correct? */
244 sa
->sin_addr
.s_addr
= (a
[3] << 24) + (a
[2] << 16) + (a
[1] << 8) + a
[0];
245 sa
->sin_len
= sizeof(*sa
);
246 sa
->sin_family
= AF_INET
;
251 hwaddr_to_sockaddr(char *ev
, struct sockaddr_dl
*sa
)
256 bzero(sa
, sizeof(*sa
));
257 sa
->sdl_len
= sizeof(*sa
);
258 sa
->sdl_family
= AF_LINK
;
259 sa
->sdl_type
= IFT_ETHER
;
260 sa
->sdl_alen
= ETHER_ADDR_LEN
;
261 if ((cp
= kgetenv(ev
)) == NULL
)
263 if (ksscanf(cp
, "%x:%x:%x:%x:%x:%x", &a
[0], &a
[1], &a
[2], &a
[3], &a
[4], &a
[5]) != 6)
265 sa
->sdl_data
[0] = a
[0];
266 sa
->sdl_data
[1] = a
[1];
267 sa
->sdl_data
[2] = a
[2];
268 sa
->sdl_data
[3] = a
[3];
269 sa
->sdl_data
[4] = a
[4];
270 sa
->sdl_data
[5] = a
[5];
275 decode_nfshandle(char *ev
, u_char
*fh
)
280 if (((cp
= kgetenv(ev
)) == NULL
) || (strlen(cp
) < 2) || (*cp
!= 'X'))
287 if ((ksscanf(cp
, "%2x", &val
) != 1) || (val
> 0xff))
298 * Populate the essential fields in the nfsv3_diskless structure.
300 * The loader is expected to export the following environment variables:
302 * boot.netif.ip IP address on boot interface
303 * boot.netif.netmask netmask on boot interface
304 * boot.netif.gateway default gateway (optional)
305 * boot.netif.hwaddr hardware address of boot interface
306 * boot.nfsroot.server IP address of root filesystem server
307 * boot.nfsroot.path path of the root filesystem on server
308 * boot.nfsroot.nfshandle NFS handle for root filesystem on server
311 pxe_setup_nfsdiskless(void)
313 struct nfs_diskless
*nd
= &nfs_diskless
;
315 struct sockaddr_dl
*sdl
, ourdl
;
316 struct sockaddr_in myaddr
, netmask
;
319 /* set up interface */
320 if (inaddr_to_sockaddr("boot.netif.ip", &myaddr
))
322 if (inaddr_to_sockaddr("boot.netif.netmask", &netmask
)) {
323 kprintf("PXE: no netmask\n");
326 bcopy(&myaddr
, &nd
->myif
.ifra_addr
, sizeof(myaddr
));
327 bcopy(&myaddr
, &nd
->myif
.ifra_broadaddr
, sizeof(myaddr
));
328 ((struct sockaddr_in
*) &nd
->myif
.ifra_broadaddr
)->sin_addr
.s_addr
=
329 myaddr
.sin_addr
.s_addr
| ~ netmask
.sin_addr
.s_addr
;
330 bcopy(&netmask
, &nd
->myif
.ifra_mask
, sizeof(netmask
));
332 if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl
)) {
333 kprintf("PXE: no hardware address\n");
337 TAILQ_FOREACH(ifp
, &ifnetlist
, if_link
) {
338 struct ifaddr_container
*ifac
;
340 TAILQ_FOREACH(ifac
, &ifp
->if_addrheads
[mycpuid
], ifa_link
) {
341 struct ifaddr
*ifa
= ifac
->ifa
;
343 if ((ifa
->ifa_addr
->sa_family
== AF_LINK
) &&
344 (sdl
= ((struct sockaddr_dl
*)ifa
->ifa_addr
))) {
345 if ((sdl
->sdl_type
== ourdl
.sdl_type
) &&
346 (sdl
->sdl_alen
== ourdl
.sdl_alen
) &&
347 !bcmp(sdl
->sdl_data
+ sdl
->sdl_nlen
,
348 ourdl
.sdl_data
+ ourdl
.sdl_nlen
,
350 strlcpy(nd
->myif
.ifra_name
,
352 sizeof(nd
->myif
.ifra_name
));
360 kprintf("PXE: no interface\n");
361 return; /* no matching interface */
364 inaddr_to_sockaddr("boot.netif.gateway", &nd
->mygateway
);
366 /* XXX set up swap? */
368 /* set up root mount */
369 nd
->root_args
.rsize
= nfsroot_iosize
;
370 nd
->root_args
.wsize
= nfsroot_iosize
;
371 nd
->root_args
.sotype
= SOCK_STREAM
;
372 nd
->root_args
.readahead
= nfsroot_rahead
;
373 nd
->root_args
.flags
= NFSMNT_WSIZE
| NFSMNT_RSIZE
| NFSMNT_RESVPORT
|
375 if (inaddr_to_sockaddr("boot.nfsroot.server", &nd
->root_saddr
)) {
376 kprintf("PXE: no server\n");
379 nd
->root_saddr
.sin_port
= htons(NFS_PORT
);
382 * A tftp-only loader may pass NFS path information without a
383 * root handle. Generate a warning but continue configuring.
385 if (decode_nfshandle("boot.nfsroot.nfshandle", &nd
->root_fh
[0]) == 0) {
386 kprintf("PXE: Warning, no NFS handle passed from loader\n");
388 if ((cp
= kgetenv("boot.nfsroot.path")) != NULL
)
389 strncpy(nd
->root_hostnam
, cp
, MNAMELEN
- 1);
391 nfs_diskless_valid
= 1;