1 /* $OpenBSD: autoconf.c,v 1.90 2012/07/13 14:50:10 mlarkin Exp $ */ 2 /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos 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 * cpu_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 #include <sys/param.h> 47 #include <sys/systm.h> 48 #include <sys/proc.h> 49 #include <sys/user.h> 50 #include <sys/buf.h> 51 #include <sys/disklabel.h> 52 #include <sys/conf.h> 53 #include <sys/reboot.h> 54 #include <sys/device.h> 55 #include <sys/socket.h> 56 #include <sys/socketvar.h> 57 #include <sys/hibernate.h> 58 59 #include <net/if.h> 60 #include <net/if_types.h> 61 #include <netinet/in.h> 62 #include <netinet/if_ether.h> 63 64 #include <uvm/uvm_extern.h> 65 66 #include <machine/pte.h> 67 #include <machine/cpu.h> 68 #include <machine/gdt.h> 69 #include <machine/biosvar.h> 70 #include <machine/kvm86.h> 71 72 #include <dev/cons.h> 73 74 #include "ioapic.h" 75 76 #if NIOAPIC > 0 77 #include <machine/i82093var.h> 78 #endif 79 80 /* 81 * The following several variables are related to 82 * the configuration process, and are used in initializing 83 * the machine. 84 */ 85 extern dev_t bootdev; 86 87 /* Support for VIA C3 RNG */ 88 extern struct timeout viac3_rnd_tmo; 89 extern int viac3_rnd_present; 90 void viac3_rnd(void *); 91 92 #ifdef CRYPTO 93 void viac3_crypto_setup(void); 94 extern int i386_has_xcrypt; 95 #endif 96 97 /* 98 * Determine i/o configuration for a machine. 99 */ 100 void 101 cpu_configure(void) 102 { 103 /* 104 * Note, on i386, configure is not running under splhigh unlike other 105 * architectures. This fact is used by the pcmcia irq line probing. 106 */ 107 108 gdt_init(); /* XXX - pcibios uses gdt stuff */ 109 110 /* Set up proc0's TSS and LDT */ 111 i386_proc0_tss_ldt_init(); 112 113 #ifdef KVM86 114 kvm86_init(); 115 #endif 116 117 if (config_rootfound("mainbus", NULL) == NULL) 118 panic("cpu_configure: mainbus not configured"); 119 120 #if NIOAPIC > 0 121 ioapic_enable(); 122 #endif 123 124 proc0.p_addr->u_pcb.pcb_cr0 = rcr0(); 125 126 #ifdef MULTIPROCESSOR 127 /* propagate TSS and LDT configuration to the idle pcb's. */ 128 cpu_init_idle_pcbs(); 129 #endif 130 spl0(); 131 132 /* 133 * We can not know which is our root disk, defer 134 * until we can checksum blocks to figure it out. 135 */ 136 cold = 0; 137 138 /* 139 * At this point the RNG is running, and if FSXR is set we can 140 * use it. Here we setup a periodic timeout to collect the data. 141 */ 142 if (viac3_rnd_present) { 143 timeout_set(&viac3_rnd_tmo, viac3_rnd, &viac3_rnd_tmo); 144 viac3_rnd(&viac3_rnd_tmo); 145 } 146 #ifdef CRYPTO 147 /* 148 * Also, if the chip has crypto available, enable it. 149 */ 150 if (i386_has_xcrypt) 151 viac3_crypto_setup(); 152 #endif 153 } 154 155 void 156 device_register(struct device *dev, void *aux) 157 { 158 } 159 160 /* 161 * Now that we are fully operational, we can checksum the 162 * disks, and using some heuristics, hopefully are able to 163 * always determine the correct root disk. 164 */ 165 void 166 diskconf(void) 167 { 168 int majdev, unit, part = 0; 169 struct device *bootdv = NULL; 170 dev_t tmpdev; 171 char buf[128]; 172 extern bios_bootmac_t *bios_bootmac; 173 174 dkcsumattach(); 175 176 if ((bootdev & B_MAGICMASK) == (u_int)B_DEVMAGIC) { 177 majdev = B_TYPE(bootdev); 178 unit = B_UNIT(bootdev); 179 part = B_PARTITION(bootdev); 180 snprintf(buf, sizeof buf, "%s%d%c", findblkname(majdev), 181 unit, part + 'a'); 182 bootdv = parsedisk(buf, strlen(buf), part, &tmpdev); 183 } 184 185 if (bios_bootmac) { 186 struct ifnet *ifp; 187 188 for (ifp = TAILQ_FIRST(&ifnet); ifp != NULL; 189 ifp = TAILQ_NEXT(ifp, if_list)) { 190 if ((ifp->if_type == IFT_ETHER || 191 ifp->if_type == IFT_FDDI) && 192 bcmp(bios_bootmac->mac, 193 ((struct arpcom *)ifp)->ac_enaddr, 194 ETHER_ADDR_LEN) == 0) 195 break; 196 } 197 if (ifp) { 198 #if defined(NFSCLIENT) 199 printf("PXE boot MAC address %s, interface %s\n", 200 ether_sprintf(bios_bootmac->mac), ifp->if_xname); 201 bootdv = parsedisk(ifp->if_xname, strlen(ifp->if_xname), 202 0, &tmpdev); 203 part = 0; 204 #endif 205 } else 206 printf("PXE boot MAC address %s, interface %s\n", 207 ether_sprintf(bios_bootmac->mac), "unknown"); 208 } 209 210 setroot(bootdv, part, RB_USERREQ); 211 dumpconf(); 212 213 #ifdef HIBERNATE 214 hibernate_resume(); 215 #endif /* HIBERNATE */ 216 } 217 218 struct nam2blk nam2blk[] = { 219 { "wd", 0 }, 220 { "fd", 2 }, 221 { "sd", 4 }, 222 { "cd", 6 }, 223 { "rd", 17 }, 224 { "raid", 19 }, 225 { "vnd", 14 }, 226 { NULL, -1 } 227 }; 228