/* $NetBSD: autoconf.c,v 1.23 2014/03/24 19:54:28 christos Exp $ */ /* * Copyright (c) 1988 University of Utah. * Copyright (c) 1992, 1993 * The Regents of the University of California. All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department and Ralph Campbell. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. Neither the name of the University nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: Utah Hdr: autoconf.c 1.31 91/01/21 * * @(#)autoconf.c 8.1 (Berkeley) 6/10/93 */ /* * Setup the system to run on the current machine. * * Configure() is called at boot time. Available * devices are determined (from possibilities mentioned in ioconf.c), * and the drivers are initialized. */ /* * autoconf.c for news68k - from newsmips */ #include __KERNEL_RCSID(0, "$NetBSD: autoconf.c,v 1.23 2014/03/24 19:54:28 christos Exp $"); #include "scsibus.h" #include #include #include #include #include #include #include #include #include #include #include /* * The following several variables are related to * the configuration process, and are used in initializing * the machine. */ static void findroot(void); /* * Determine mass storage and memory configuration for a machine. * Print CPU type, and then iterate over an array of devices * found on the baseboard or in turbochannel option slots. * Once devices are configured, enable interrupts, and probe * for attached scsi devices. */ void cpu_configure(void) { /* * Kick off autoconfiguration */ (void) splhigh(); /* Initialize the interrupt handlers. */ isrinit(); if (config_rootfound("mainbus", NULL) == NULL) panic("autoconfig failed, no root"); /* Turn on interrupts */ (void) spl0(); } void cpu_rootconf(void) { findroot(); printf("boot device: %s\n", booted_device ? device_xname(booted_device) : ""); rootconf(); } u_long bootdev = 0; /* should be dev_t, but not until 32 bits */ /* * Attempt to find the device from which we were booted. */ void findroot(void) { #if NSCSIBUS > 0 int ctlr, part, type; device_t dv; if (BOOTDEV_MAG(bootdev) != 5) /* NEWS-OS's B_DEVMAGIC */ return; ctlr = BOOTDEV_CTLR(bootdev); /* SCSI ID */ part = BOOTDEV_PART(bootdev); /* LUN */ type = BOOTDEV_TYPE(bootdev); if (type != BOOTDEV_SD) return; /* * XXX assumes only one controller exists. */ if ((dv = device_find_by_xname("scsibus0")) != NULL) { struct scsibus_softc *sdv = device_private(dv); struct scsipi_periph *periph; periph = scsipi_lookup_periph(sdv->sc_channel, ctlr, 0); if (periph != NULL) { booted_device = periph->periph_dev; booted_partition = part; } } #endif }