ICU/APIC cleanup part 5/many.
[dragonfly.git] / sys / platform / pc32 / i386 / autoconf.c
1 /*-
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * William Jolitz.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      from: @(#)autoconf.c    7.1 (Berkeley) 5/9/91
37  * $FreeBSD: src/sys/i386/i386/autoconf.c,v 1.146.2.2 2001/06/07 06:05:58 dd Exp $
38  * $DragonFly: src/sys/platform/pc32/i386/autoconf.c,v 1.22 2005/11/02 18:42:01 dillon Exp $
39  */
40
41 /*
42  * Setup the system to run on the current machine.
43  *
44  * Configure() is called at boot time and initializes the vba
45  * device tables and the memory controller monitoring.  Available
46  * devices are determined (from possibilities mentioned in ioconf.c),
47  * and the drivers are initialized.
48  */
49 #include "opt_bootp.h"
50 #include "opt_ffs.h"
51 #include "opt_cd9660.h"
52 #include "opt_nfs.h"
53 #include "opt_nfsroot.h"
54 #include "opt_bus.h"
55 #include "opt_rootdevname.h"
56
57 #include "use_isa.h"
58
59 #include <sys/param.h>
60 #include <sys/systm.h>
61 #include <sys/bootmaj.h>
62 #include <sys/bus.h>
63 #include <sys/conf.h>
64 #include <sys/disklabel.h>
65 #include <sys/diskslice.h>
66 #include <sys/reboot.h>
67 #include <sys/kernel.h>
68 #include <sys/malloc.h>
69 #include <sys/mount.h>
70 #include <sys/cons.h>
71 #include <sys/thread.h>
72 #include <sys/device.h>
73 #include <sys/machintr.h>
74
75 #include <machine/bootinfo.h>
76 #include <machine/ipl.h>
77 #include <machine/md_var.h>
78 #ifdef APIC_IO
79 #include <machine/smp.h>
80 #else
81 #include <i386/icu/icu.h>
82 #endif /* APIC_IO */
83
84 #include <machine/pcb.h>
85 #include <machine/pcb_ext.h>
86 #include <machine/vm86.h>
87 #include <machine/globaldata.h>
88
89 #if NISA > 0
90 #include <bus/isa/isavar.h>
91
92 device_t isa_bus_device = 0;
93 #endif
94
95 static void     configure_first (void *);
96 static void     configure (void *);
97 static void     configure_final (void *);
98
99 #if defined(FFS) && defined(FFS_ROOT)
100 static void     setroot (void);
101 #endif
102
103 #if defined(NFS) && defined(NFS_ROOT)
104 #if !defined(BOOTP_NFSROOT)
105 static void     pxe_setup_nfsdiskless(void);
106 #endif
107 #endif
108
109 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
110 /* SI_ORDER_SECOND is hookable */
111 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
112 /* SI_ORDER_MIDDLE is hookable */
113 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
114
115 dev_t   rootdev = NODEV;
116 dev_t   dumpdev = NODEV;
117
118 /*
119  * Determine i/o configuration for a machine.
120  */
121 static void
122 configure_first(dummy)
123         void *dummy;
124 {
125 }
126
127 static void
128 configure(dummy)
129         void *dummy;
130 {
131         /*
132          * Final interrupt support acviation, then enable hardware interrupts.
133          */
134         MachIntrABI.finalize();
135         cpu_enable_intr();
136
137         /*
138          * This will configure all devices, generally starting with the
139          * nexus (i386/i386/nexus.c).  The nexus ISA code explicitly
140          * dummies up the attach in order to delay legacy initialization
141          * until after all other busses/subsystems have had a chance
142          * at those resources.
143          */
144         root_bus_configure();
145
146 #if NISA > 0
147         /*
148          * Explicitly probe and attach ISA last.  The isa bus saves
149          * it's device node at attach time for us here.
150          */
151         if (isa_bus_device)
152                 isa_probe_children(isa_bus_device);
153 #endif
154
155         /*
156          * Allow lowering of the ipl to the lowest kernel level if we
157          * panic (or call tsleep() before clearing `cold').  No level is
158          * completely safe (since a panic may occur in a critical region
159          * at splhigh()), but we want at least bio interrupts to work.
160          */
161         safepri = TDPRI_KERN_USER;
162 }
163
164 static void
165 configure_final(dummy)
166         void *dummy;
167 {
168         int i;
169
170         cninit_finish();
171
172         if (bootverbose) {
173
174 #ifdef APIC_IO
175                 imen_dump();
176 #endif /* APIC_IO */
177
178                 /*
179                  * Print out the BIOS's idea of the disk geometries.
180                  */
181                 printf("BIOS Geometries:\n");
182                 for (i = 0; i < N_BIOS_GEOM; i++) {
183                         unsigned long bios_geom;
184                         int max_cylinder, max_head, max_sector;
185
186                         bios_geom = bootinfo.bi_bios_geom[i];
187
188                         /*
189                          * XXX the bootstrap punts a 1200K floppy geometry
190                          * when the get-disk-geometry interrupt fails.  Skip
191                          * drives that have this geometry.
192                          */
193                         if (bios_geom == 0x4f010f)
194                                 continue;
195
196                         printf(" %x:%08lx ", i, bios_geom);
197                         max_cylinder = bios_geom >> 16;
198                         max_head = (bios_geom >> 8) & 0xff;
199                         max_sector = bios_geom & 0xff;
200                         printf(
201                 "0..%d=%d cylinders, 0..%d=%d heads, 1..%d=%d sectors\n",
202                                max_cylinder, max_cylinder + 1,
203                                max_head, max_head + 1,
204                                max_sector, max_sector);
205                 }
206                 printf(" %d accounted for\n", bootinfo.bi_n_bios_used);
207
208                 printf("Device configuration finished.\n");
209         }
210         cold = 0;
211 }
212
213 #ifdef BOOTP
214 void bootpc_init(void);
215 #endif
216 /*
217  * Do legacy root filesystem discovery.
218  */
219 void
220 cpu_rootconf()
221 {
222 #ifdef BOOTP
223         bootpc_init();
224 #endif
225 #if defined(NFS) && defined(NFS_ROOT)
226 #if !defined(BOOTP_NFSROOT)
227         pxe_setup_nfsdiskless();
228         if (nfs_diskless_valid)
229 #endif
230                 rootdevnames[0] = "nfs:";
231 #endif
232 #if defined(FFS) && defined(FFS_ROOT)
233         if (!rootdevnames[0])
234                 setroot();
235 #endif
236 }
237 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL)
238
239 u_long  bootdev = 0;            /* not a dev_t - encoding is different */
240
241 #if defined(FFS) && defined(FFS_ROOT)
242 #define FDMAJOR         2
243 #define FDUNITSHIFT     6
244
245 /*
246  * The boot code uses old block device major numbers to pass bootdev to
247  * us.  We have to translate these to character device majors because
248  * we don't have block devices any more.
249  */
250 static int
251 boot_translate_majdev(int bmajor)
252 {
253         static int conv[] = { BOOTMAJOR_CONVARY };
254
255         if (bmajor >= 0 && bmajor < sizeof(conv)/sizeof(conv[0]))
256                 return(conv[bmajor]);
257         return(-1);
258 }
259
260 /*
261  * Attempt to find the device from which we were booted.
262  * If we can do so, and not instructed not to do so,
263  * set rootdevs[] and rootdevnames[] to correspond to the
264  * boot device(s).
265  *
266  * This code survives in order to allow the system to be 
267  * booted from legacy environments that do not correctly
268  * populate the kernel environment. There are significant
269  * restrictions on the bootability of the system in this
270  * situation; it can only be mounting root from a 'da'
271  * 'wd' or 'fd' device, and the root filesystem must be ufs.
272  */
273 static void
274 setroot()
275 {
276         int majdev, mindev, unit, slice, part;
277         dev_t newrootdev, dev;
278         char partname[2];
279         char *sname;
280
281         if ((bootdev & B_MAGICMASK) != B_DEVMAGIC) {
282                 printf("no B_DEVMAGIC (bootdev=%#lx)\n", bootdev);
283                 return;
284         }
285         majdev = boot_translate_majdev(B_TYPE(bootdev));
286         if (bootverbose) {
287                 printf("bootdev: %08lx type=%ld unit=%ld "
288                         "slice=%ld part=%ld major=%d\n",
289                         bootdev, B_TYPE(bootdev), B_UNIT(bootdev),
290                         B_SLICE(bootdev), B_PARTITION(bootdev), majdev);
291         }
292         dev = udev2dev(makeudev(majdev, 0), 0);
293         if (!dev_is_good(dev))
294                 return;
295         unit = B_UNIT(bootdev);
296         slice = B_SLICE(bootdev);
297         if (slice == WHOLE_DISK_SLICE)
298                 slice = COMPATIBILITY_SLICE;
299         if (slice < 0 || slice >= MAX_SLICES) {
300                 printf("bad slice\n");
301                 return;
302         }
303
304         /*
305          * XXX kludge for inconsistent unit numbering and lack of slice
306          * support for floppies.
307          */
308         if (majdev == FD_CDEV_MAJOR) {
309                 slice = COMPATIBILITY_SLICE;
310                 part = RAW_PART;
311                 mindev = unit << FDUNITSHIFT;
312         } else {
313                 part = B_PARTITION(bootdev);
314                 mindev = dkmakeminor(unit, slice, part);
315         }
316         newrootdev = udev2dev(makeudev(majdev, mindev), 0);
317         if (!dev_is_good(newrootdev))
318                 return;
319         sname = dsname(newrootdev, unit, slice, part, partname);
320         rootdevnames[0] = malloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
321         sprintf(rootdevnames[0], "ufs:%s%s", sname, partname);
322
323         /*
324          * For properly dangerously dedicated disks (ones with a historical
325          * bogus partition table), the boot blocks will give slice = 4, but
326          * the kernel will only provide the compatibility slice since it
327          * knows that slice 4 is not a real slice.  Arrange to try mounting
328          * the compatibility slice as root if mounting the slice passed by
329          * the boot blocks fails.  This handles the dangerously dedicated
330          * case and perhaps others.
331          */
332         if (slice == COMPATIBILITY_SLICE)
333                 return;
334         slice = COMPATIBILITY_SLICE;
335         sname = dsname(newrootdev, unit, slice, part, partname);
336         rootdevnames[1] = malloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
337         sprintf(rootdevnames[1], "ufs:%s%s", sname, partname);
338 }
339 #endif
340
341 #if defined(NFS) && defined(NFS_ROOT)
342 #if !defined(BOOTP_NFSROOT)
343
344 #include <sys/socket.h>
345 #include <net/if.h>
346 #include <net/if_dl.h>
347 #include <net/if_types.h>
348 #include <net/if_var.h>
349 #include <net/ethernet.h>
350 #include <netinet/in.h>
351 #include <vfs/nfs/rpcv2.h>
352 #include <vfs/nfs/nfsproto.h>
353 #include <vfs/nfs/nfs.h>
354 #include <vfs/nfs/nfsdiskless.h>
355
356 extern struct nfs_diskless      nfs_diskless;
357
358 /*
359  * Convert a kenv variable to a sockaddr.  If the kenv variable does not
360  * exist the sockaddr will remain zerod out (callers typically just check
361  * sin_len).  A network address of 0.0.0.0 is equivalent to failure.
362  */
363 static int
364 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
365 {
366         u_int32_t       a[4];
367         char            *cp;
368
369         bzero(sa, sizeof(*sa));
370
371         if ((cp = getenv(ev)) == NULL)
372                 return(1);
373         if (sscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
374                 return(1);
375         if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0)
376                 return(1);
377         /* XXX is this ordering correct? */
378         sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
379         sa->sin_len = sizeof(*sa);
380         sa->sin_family = AF_INET;
381         return(0);
382 }
383
384 static int
385 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
386 {
387         char            *cp;
388         u_int32_t       a[6];
389
390         bzero(sa, sizeof(*sa));
391         sa->sdl_len = sizeof(*sa);
392         sa->sdl_family = AF_LINK;
393         sa->sdl_type = IFT_ETHER;
394         sa->sdl_alen = ETHER_ADDR_LEN;
395         if ((cp = getenv(ev)) == NULL)
396                 return(1);
397         if (sscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
398                 return(1);
399         sa->sdl_data[0] = a[0];
400         sa->sdl_data[1] = a[1];
401         sa->sdl_data[2] = a[2];
402         sa->sdl_data[3] = a[3];
403         sa->sdl_data[4] = a[4];
404         sa->sdl_data[5] = a[5];
405         return(0);
406 }
407
408 static int
409 decode_nfshandle(char *ev, u_char *fh) 
410 {
411         u_char  *cp;
412         int     len, val;
413
414         if (((cp = getenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
415                 return(0);
416         len = 0;
417         cp++;
418         for (;;) {
419                 if (*cp == 'X')
420                         return(len);
421                 if ((sscanf(cp, "%2x", &val) != 1) || (val > 0xff))
422                         return(0);
423                 *(fh++) = val;
424                 len++;
425                 cp += 2;
426                 if (len > NFSX_V2FH)
427                     return(0);
428         }
429 }
430
431 /*
432  * Populate the essential fields in the nfsv3_diskless structure.
433  *
434  * The loader is expected to export the following environment variables:
435  *
436  * boot.netif.ip                IP address on boot interface
437  * boot.netif.netmask           netmask on boot interface
438  * boot.netif.gateway           default gateway (optional)
439  * boot.netif.hwaddr            hardware address of boot interface
440  * boot.nfsroot.server          IP address of root filesystem server
441  * boot.nfsroot.path            path of the root filesystem on server
442  * boot.nfsroot.nfshandle       NFS handle for root filesystem on server
443  */
444 static void
445 pxe_setup_nfsdiskless()
446 {
447         struct nfs_diskless     *nd = &nfs_diskless;
448         struct ifnet            *ifp;
449         struct ifaddr           *ifa;
450         struct sockaddr_dl      *sdl, ourdl;
451         struct sockaddr_in      myaddr, netmask;
452         char                    *cp;
453
454         /* set up interface */
455         if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
456                 return;
457         if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
458                 printf("PXE: no netmask\n");
459                 return;
460         }
461         bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
462         bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
463         ((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
464                 myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
465         bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
466
467         if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
468                 printf("PXE: no hardware address\n");
469                 return;
470         }
471         ifa = NULL;
472         ifp = TAILQ_FIRST(&ifnet);
473         TAILQ_FOREACH(ifp, &ifnet, if_link) {
474                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
475                         if ((ifa->ifa_addr->sa_family == AF_LINK) &&
476                             (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
477                                 if ((sdl->sdl_type == ourdl.sdl_type) &&
478                                     (sdl->sdl_alen == ourdl.sdl_alen) &&
479                                     !bcmp(sdl->sdl_data + sdl->sdl_nlen,
480                                           ourdl.sdl_data + ourdl.sdl_nlen, 
481                                           sdl->sdl_alen))
482                                     goto match_done;
483                         }
484                 }
485         }
486         printf("PXE: no interface\n");
487         return; /* no matching interface */
488 match_done:
489         strlcpy(nd->myif.ifra_name, ifp->if_xname, sizeof(nd->myif.ifra_name));
490         
491         /* set up gateway */
492         inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
493
494         /* XXX set up swap? */
495
496         /* set up root mount */
497         nd->root_args.rsize = 8192;             /* XXX tunable? */
498         nd->root_args.wsize = 8192;
499         nd->root_args.sotype = SOCK_DGRAM;
500         nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT);
501         if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
502                 printf("PXE: no server\n");
503                 return;
504         }
505         nd->root_saddr.sin_port = htons(NFS_PORT);
506
507         /*
508          * A tftp-only loader may pass NFS path information without a 
509          * root handle.  Generate a warning but continue configuring.
510          */
511         if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
512                 printf("PXE: Warning, no NFS handle passed from loader\n");
513         }
514         if ((cp = getenv("boot.nfsroot.path")) != NULL)
515                 strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
516
517         nfs_diskless_valid = 1;
518 }
519
520 #endif
521 #endif