Reorder cpu interrupt enablement, do it in the code that drops
[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.35 2007/04/30 16:45:56 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/md_var.h>
77 #include <machine/smp.h>
78 #include <machine_base/icu/icu.h>
79
80 #include <machine/pcb.h>
81 #include <machine/pcb_ext.h>
82 #include <machine/vm86.h>
83 #include <machine/globaldata.h>
84
85 #if NISA > 0
86 #include <bus/isa/isavar.h>
87
88 device_t isa_bus_device = 0;
89 #endif
90
91 static void     configure_first (void *);
92 static void     configure (void *);
93 static void     configure_final (void *);
94
95 #if defined(FFS) && defined(FFS_ROOT)
96 static void     setroot (void);
97 #endif
98
99 #if defined(NFS) && defined(NFS_ROOT)
100 #if !defined(BOOTP_NFSROOT)
101 static void     pxe_setup_nfsdiskless(void);
102 #endif
103 #endif
104
105 SYSINIT(configure1, SI_SUB_CONFIGURE, SI_ORDER_FIRST, configure_first, NULL);
106 /* SI_ORDER_SECOND is hookable */
107 SYSINIT(configure2, SI_SUB_CONFIGURE, SI_ORDER_THIRD, configure, NULL);
108 /* SI_ORDER_MIDDLE is hookable */
109 SYSINIT(configure3, SI_SUB_CONFIGURE, SI_ORDER_ANY, configure_final, NULL);
110
111 cdev_t  rootdev = NOCDEV;
112 cdev_t  dumpdev = NOCDEV;
113
114 /*
115  * Determine i/o configuration for a machine.
116  */
117 static void
118 configure_first(void *dummy)
119 {
120 }
121
122 static void
123 configure(void *dummy)
124 {
125         /*
126          * This will configure all devices, generally starting with the
127          * nexus (i386/i386/nexus.c).  The nexus ISA code explicitly
128          * dummies up the attach in order to delay legacy initialization
129          * until after all other busses/subsystems have had a chance
130          * at those resources.
131          */
132         root_bus_configure();
133
134 #if NISA > 0
135         /*
136          * Explicitly probe and attach ISA last.  The isa bus saves
137          * it's device node at attach time for us here.
138          */
139         if (isa_bus_device)
140                 isa_probe_children(isa_bus_device);
141 #endif
142
143         /*
144          * Allow lowering of the ipl to the lowest kernel level if we
145          * panic (or call tsleep() before clearing `cold').  No level is
146          * completely safe (since a panic may occur in a critical region
147          * at splhigh()), but we want at least bio interrupts to work.
148          */
149         safepri = TDPRI_KERN_USER;
150 }
151
152 static void
153 configure_final(void *dummy)
154 {
155         int i;
156
157         cninit_finish();
158
159         if (bootverbose) {
160 #ifdef APIC_IO
161                 imen_dump();
162 #endif /* APIC_IO */
163
164                 /*
165                  * Print out the BIOS's idea of the disk geometries.
166                  */
167                 kprintf("BIOS Geometries:\n");
168                 for (i = 0; i < N_BIOS_GEOM; i++) {
169                         unsigned long bios_geom;
170                         int max_cylinder, max_head, max_sector;
171
172                         bios_geom = bootinfo.bi_bios_geom[i];
173
174                         /*
175                          * XXX the bootstrap punts a 1200K floppy geometry
176                          * when the get-disk-geometry interrupt fails.  Skip
177                          * drives that have this geometry.
178                          */
179                         if (bios_geom == 0x4f010f)
180                                 continue;
181
182                         kprintf(" %x:%08lx ", i, bios_geom);
183                         max_cylinder = bios_geom >> 16;
184                         max_head = (bios_geom >> 8) & 0xff;
185                         max_sector = bios_geom & 0xff;
186                         kprintf(
187                 "0..%d=%d cylinders, 0..%d=%d heads, 1..%d=%d sectors\n",
188                                max_cylinder, max_cylinder + 1,
189                                max_head, max_head + 1,
190                                max_sector, max_sector);
191                 }
192                 kprintf(" %d accounted for\n", bootinfo.bi_n_bios_used);
193
194                 kprintf("Device configuration finished.\n");
195         }
196         cold = 0;
197 }
198
199 #ifdef BOOTP
200 void bootpc_init(void);
201 #endif
202 /*
203  * Do legacy root filesystem discovery.
204  */
205 void
206 cpu_rootconf(void)
207 {
208 #ifdef BOOTP
209         bootpc_init();
210 #endif
211 #if defined(NFS) && defined(NFS_ROOT)
212 #if !defined(BOOTP_NFSROOT)
213         pxe_setup_nfsdiskless();
214         if (nfs_diskless_valid)
215 #endif
216                 rootdevnames[0] = "nfs:";
217 #endif
218 #if defined(FFS) && defined(FFS_ROOT)
219         if (!rootdevnames[0])
220                 setroot();
221 #endif
222 }
223 SYSINIT(cpu_rootconf, SI_SUB_ROOT_CONF, SI_ORDER_FIRST, cpu_rootconf, NULL)
224
225 u_long  bootdev = 0;            /* not a cdev_t - encoding is different */
226
227 #if defined(FFS) && defined(FFS_ROOT)
228 #define FDMAJOR         2
229 #define FDUNITSHIFT     6
230
231 /*
232  * The boot code uses old block device major numbers to pass bootdev to
233  * us.  We have to translate these to character device majors because
234  * we don't have block devices any more.
235  */
236 static int
237 boot_translate_majdev(int bmajor)
238 {
239         static int conv[] = { BOOTMAJOR_CONVARY };
240
241         if (bmajor >= 0 && bmajor < sizeof(conv)/sizeof(conv[0]))
242                 return(conv[bmajor]);
243         return(-1);
244 }
245
246 /*
247  * Attempt to find the device from which we were booted.
248  * If we can do so, and not instructed not to do so,
249  * set rootdevs[] and rootdevnames[] to correspond to the
250  * boot device(s).
251  *
252  * This code survives in order to allow the system to be 
253  * booted from legacy environments that do not correctly
254  * populate the kernel environment. There are significant
255  * restrictions on the bootability of the system in this
256  * situation; it can only be mounting root from a 'da'
257  * 'wd' or 'fd' device, and the root filesystem must be ufs.
258  */
259 static void
260 setroot(void)
261 {
262         int majdev, mindev, unit, slice, part;
263         cdev_t newrootdev, dev;
264         char partname[2];
265         char *sname;
266
267         if ((bootdev & B_MAGICMASK) != B_DEVMAGIC) {
268                 kprintf("no B_DEVMAGIC (bootdev=%#lx)\n", bootdev);
269                 return;
270         }
271         majdev = boot_translate_majdev(B_TYPE(bootdev));
272         if (bootverbose) {
273                 kprintf("bootdev: %08lx type=%ld unit=%ld "
274                         "slice=%ld part=%ld major=%d\n",
275                         bootdev, B_TYPE(bootdev), B_UNIT(bootdev),
276                         B_SLICE(bootdev), B_PARTITION(bootdev), majdev);
277         }
278         dev = udev2dev(makeudev(majdev, 0), 0);
279         if (!dev_is_good(dev))
280                 return;
281         unit = B_UNIT(bootdev);
282         slice = B_SLICE(bootdev);
283         if (slice == WHOLE_DISK_SLICE)
284                 slice = COMPATIBILITY_SLICE;
285         if (slice < 0 || slice >= MAX_SLICES) {
286                 kprintf("bad slice\n");
287                 return;
288         }
289
290         /*
291          * XXX kludge for inconsistent unit numbering and lack of slice
292          * support for floppies.
293          */
294         if (majdev == FD_CDEV_MAJOR) {
295                 slice = COMPATIBILITY_SLICE;
296                 part = RAW_PART;
297                 mindev = unit << FDUNITSHIFT;
298         } else {
299                 part = B_PARTITION(bootdev);
300                 mindev = dkmakeminor(unit, slice, part);
301         }
302         newrootdev = udev2dev(makeudev(majdev, mindev), 0);
303         if (!dev_is_good(newrootdev))
304                 return;
305         sname = dsname(newrootdev, unit, slice, part, partname);
306         rootdevnames[0] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
307         ksprintf(rootdevnames[0], "ufs:%s%s", sname, partname);
308
309         /*
310          * For properly dangerously dedicated disks (ones with a historical
311          * bogus partition table), the boot blocks will give slice = 4, but
312          * the kernel will only provide the compatibility slice since it
313          * knows that slice 4 is not a real slice.  Arrange to try mounting
314          * the compatibility slice as root if mounting the slice passed by
315          * the boot blocks fails.  This handles the dangerously dedicated
316          * case and perhaps others.
317          */
318         if (slice == COMPATIBILITY_SLICE)
319                 return;
320         slice = COMPATIBILITY_SLICE;
321         sname = dsname(newrootdev, unit, slice, part, partname);
322         rootdevnames[1] = kmalloc(strlen(sname) + 6, M_DEVBUF, M_WAITOK);
323         ksprintf(rootdevnames[1], "ufs:%s%s", sname, partname);
324 }
325 #endif
326
327 #if defined(NFS) && defined(NFS_ROOT)
328 #if !defined(BOOTP_NFSROOT)
329
330 #include <sys/socket.h>
331 #include <net/if.h>
332 #include <net/if_dl.h>
333 #include <net/if_types.h>
334 #include <net/if_var.h>
335 #include <net/ethernet.h>
336 #include <netinet/in.h>
337 #include <vfs/nfs/rpcv2.h>
338 #include <vfs/nfs/nfsproto.h>
339 #include <vfs/nfs/nfs.h>
340 #include <vfs/nfs/nfsdiskless.h>
341
342 extern struct nfs_diskless      nfs_diskless;
343
344 /*
345  * Convert a kenv variable to a sockaddr.  If the kenv variable does not
346  * exist the sockaddr will remain zerod out (callers typically just check
347  * sin_len).  A network address of 0.0.0.0 is equivalent to failure.
348  */
349 static int
350 inaddr_to_sockaddr(char *ev, struct sockaddr_in *sa)
351 {
352         u_int32_t       a[4];
353         char            *cp;
354
355         bzero(sa, sizeof(*sa));
356
357         if ((cp = kgetenv(ev)) == NULL)
358                 return(1);
359         if (ksscanf(cp, "%d.%d.%d.%d", &a[0], &a[1], &a[2], &a[3]) != 4)
360                 return(1);
361         if (a[0] == 0 && a[1] == 0 && a[2] == 0 && a[3] == 0)
362                 return(1);
363         /* XXX is this ordering correct? */
364         sa->sin_addr.s_addr = (a[3] << 24) + (a[2] << 16) + (a[1] << 8) + a[0];
365         sa->sin_len = sizeof(*sa);
366         sa->sin_family = AF_INET;
367         return(0);
368 }
369
370 static int
371 hwaddr_to_sockaddr(char *ev, struct sockaddr_dl *sa)
372 {
373         char            *cp;
374         u_int32_t       a[6];
375
376         bzero(sa, sizeof(*sa));
377         sa->sdl_len = sizeof(*sa);
378         sa->sdl_family = AF_LINK;
379         sa->sdl_type = IFT_ETHER;
380         sa->sdl_alen = ETHER_ADDR_LEN;
381         if ((cp = kgetenv(ev)) == NULL)
382                 return(1);
383         if (ksscanf(cp, "%x:%x:%x:%x:%x:%x", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]) != 6)
384                 return(1);
385         sa->sdl_data[0] = a[0];
386         sa->sdl_data[1] = a[1];
387         sa->sdl_data[2] = a[2];
388         sa->sdl_data[3] = a[3];
389         sa->sdl_data[4] = a[4];
390         sa->sdl_data[5] = a[5];
391         return(0);
392 }
393
394 static int
395 decode_nfshandle(char *ev, u_char *fh) 
396 {
397         u_char  *cp;
398         int     len, val;
399
400         if (((cp = kgetenv(ev)) == NULL) || (strlen(cp) < 2) || (*cp != 'X'))
401                 return(0);
402         len = 0;
403         cp++;
404         for (;;) {
405                 if (*cp == 'X')
406                         return(len);
407                 if ((ksscanf(cp, "%2x", &val) != 1) || (val > 0xff))
408                         return(0);
409                 *(fh++) = val;
410                 len++;
411                 cp += 2;
412                 if (len > NFSX_V2FH)
413                     return(0);
414         }
415 }
416
417 /*
418  * Populate the essential fields in the nfsv3_diskless structure.
419  *
420  * The loader is expected to export the following environment variables:
421  *
422  * boot.netif.ip                IP address on boot interface
423  * boot.netif.netmask           netmask on boot interface
424  * boot.netif.gateway           default gateway (optional)
425  * boot.netif.hwaddr            hardware address of boot interface
426  * boot.nfsroot.server          IP address of root filesystem server
427  * boot.nfsroot.path            path of the root filesystem on server
428  * boot.nfsroot.nfshandle       NFS handle for root filesystem on server
429  */
430 static void
431 pxe_setup_nfsdiskless(void)
432 {
433         struct nfs_diskless     *nd = &nfs_diskless;
434         struct ifnet            *ifp;
435         struct ifaddr           *ifa;
436         struct sockaddr_dl      *sdl, ourdl;
437         struct sockaddr_in      myaddr, netmask;
438         char                    *cp;
439
440         /* set up interface */
441         if (inaddr_to_sockaddr("boot.netif.ip", &myaddr))
442                 return;
443         if (inaddr_to_sockaddr("boot.netif.netmask", &netmask)) {
444                 kprintf("PXE: no netmask\n");
445                 return;
446         }
447         bcopy(&myaddr, &nd->myif.ifra_addr, sizeof(myaddr));
448         bcopy(&myaddr, &nd->myif.ifra_broadaddr, sizeof(myaddr));
449         ((struct sockaddr_in *) &nd->myif.ifra_broadaddr)->sin_addr.s_addr =
450                 myaddr.sin_addr.s_addr | ~ netmask.sin_addr.s_addr;
451         bcopy(&netmask, &nd->myif.ifra_mask, sizeof(netmask));
452
453         if (hwaddr_to_sockaddr("boot.netif.hwaddr", &ourdl)) {
454                 kprintf("PXE: no hardware address\n");
455                 return;
456         }
457         ifa = NULL;
458         ifp = TAILQ_FIRST(&ifnet);
459         TAILQ_FOREACH(ifp, &ifnet, if_link) {
460                 TAILQ_FOREACH(ifa, &ifp->if_addrhead, ifa_link) {
461                         if ((ifa->ifa_addr->sa_family == AF_LINK) &&
462                             (sdl = ((struct sockaddr_dl *)ifa->ifa_addr))) {
463                                 if ((sdl->sdl_type == ourdl.sdl_type) &&
464                                     (sdl->sdl_alen == ourdl.sdl_alen) &&
465                                     !bcmp(sdl->sdl_data + sdl->sdl_nlen,
466                                           ourdl.sdl_data + ourdl.sdl_nlen, 
467                                           sdl->sdl_alen))
468                                     goto match_done;
469                         }
470                 }
471         }
472         kprintf("PXE: no interface\n");
473         return; /* no matching interface */
474 match_done:
475         strlcpy(nd->myif.ifra_name, ifp->if_xname, sizeof(nd->myif.ifra_name));
476         
477         /* set up gateway */
478         inaddr_to_sockaddr("boot.netif.gateway", &nd->mygateway);
479
480         /* XXX set up swap? */
481
482         /* set up root mount */
483         nd->root_args.rsize = 8192;             /* XXX tunable? */
484         nd->root_args.wsize = 8192;
485         nd->root_args.sotype = SOCK_DGRAM;
486         nd->root_args.flags = (NFSMNT_WSIZE | NFSMNT_RSIZE | NFSMNT_RESVPORT);
487         if (inaddr_to_sockaddr("boot.nfsroot.server", &nd->root_saddr)) {
488                 kprintf("PXE: no server\n");
489                 return;
490         }
491         nd->root_saddr.sin_port = htons(NFS_PORT);
492
493         /*
494          * A tftp-only loader may pass NFS path information without a 
495          * root handle.  Generate a warning but continue configuring.
496          */
497         if (decode_nfshandle("boot.nfsroot.nfshandle", &nd->root_fh[0]) == 0) {
498                 kprintf("PXE: Warning, no NFS handle passed from loader\n");
499         }
500         if ((cp = kgetenv("boot.nfsroot.path")) != NULL)
501                 strncpy(nd->root_hostnam, cp, MNAMELEN - 1);
502
503         nfs_diskless_valid = 1;
504 }
505
506 #endif
507 #endif