Home | History | Annotate | Line # | Download | only in scsipi
uk.c revision 1.27.10.3
      1  1.27.10.3    bouyer /*	$NetBSD: uk.c,v 1.27.10.3 2000/11/20 09:59:29 bouyer Exp $	*/
      2        1.7       cgd 
      3       1.23   mycroft /*-
      4       1.23   mycroft  * Copyright (c) 1998 The NetBSD Foundation, Inc.
      5       1.23   mycroft  * All rights reserved.
      6       1.23   mycroft  *
      7       1.23   mycroft  * This code is derived from software contributed to The NetBSD Foundation
      8       1.23   mycroft  * by Charles M. Hannum.
      9        1.5   mycroft  *
     10        1.5   mycroft  * Redistribution and use in source and binary forms, with or without
     11        1.5   mycroft  * modification, are permitted provided that the following conditions
     12        1.5   mycroft  * are met:
     13        1.5   mycroft  * 1. Redistributions of source code must retain the above copyright
     14        1.5   mycroft  *    notice, this list of conditions and the following disclaimer.
     15        1.5   mycroft  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.5   mycroft  *    notice, this list of conditions and the following disclaimer in the
     17        1.5   mycroft  *    documentation and/or other materials provided with the distribution.
     18        1.5   mycroft  * 3. All advertising materials mentioning features or use of this software
     19        1.5   mycroft  *    must display the following acknowledgement:
     20       1.23   mycroft  *        This product includes software developed by the NetBSD
     21       1.23   mycroft  *        Foundation, Inc. and its contributors.
     22       1.23   mycroft  * 4. Neither the name of The NetBSD Foundation nor the names of its
     23       1.23   mycroft  *    contributors may be used to endorse or promote products derived
     24       1.23   mycroft  *    from this software without specific prior written permission.
     25        1.5   mycroft  *
     26       1.23   mycroft  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     27       1.23   mycroft  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     28       1.23   mycroft  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     29       1.23   mycroft  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     30       1.23   mycroft  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     31       1.23   mycroft  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     32       1.23   mycroft  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     33       1.23   mycroft  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     34       1.23   mycroft  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     35       1.23   mycroft  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     36       1.23   mycroft  * POSSIBILITY OF SUCH DAMAGE.
     37        1.5   mycroft  */
     38        1.5   mycroft 
     39       1.20     enami /*
     40        1.1   mycroft  * Dummy driver for a device we can't identify.
     41        1.5   mycroft  * Originally by Julian Elischer (julian (at) tfs.com)
     42        1.1   mycroft  */
     43        1.1   mycroft 
     44        1.1   mycroft #include <sys/types.h>
     45        1.1   mycroft #include <sys/param.h>
     46       1.16  christos #include <sys/systm.h>
     47       1.16  christos 
     48        1.1   mycroft #include <sys/errno.h>
     49        1.1   mycroft #include <sys/ioctl.h>
     50        1.4   mycroft #include <sys/device.h>
     51       1.16  christos #include <sys/conf.h>
     52  1.27.10.3    bouyer #include <sys/vnode.h>
     53        1.2   mycroft 
     54       1.19    bouyer #include <dev/scsipi/scsi_all.h>
     55       1.19    bouyer #include <dev/scsipi/scsipi_all.h>
     56       1.19    bouyer #include <dev/scsipi/scsiconf.h>
     57        1.2   mycroft 
     58        1.4   mycroft #define	UKUNIT(z)	(minor(z))
     59        1.4   mycroft 
     60       1.12   mycroft struct uk_softc {
     61        1.4   mycroft 	struct device sc_dev;
     62        1.4   mycroft 
     63  1.27.10.1   thorpej 	struct scsipi_periph *sc_periph; /* all the inter level info */
     64        1.4   mycroft };
     65        1.4   mycroft 
     66       1.18       cgd int ukmatch __P((struct device *, struct cfdata *, void *));
     67        1.4   mycroft void ukattach __P((struct device *, struct device *, void *));
     68  1.27.10.3    bouyer int ukactivate __P((struct device *, enum devact));
     69  1.27.10.3    bouyer int ukdetach __P((struct device *, int));
     70  1.27.10.3    bouyer 
     71        1.4   mycroft 
     72       1.25    bouyer struct cfattach uk_scsibus_ca = {
     73  1.27.10.3    bouyer 	sizeof(struct uk_softc), ukmatch, ukattach, ukdetach, ukactivate,
     74       1.25    bouyer };
     75       1.25    bouyer struct cfattach uk_atapibus_ca = {
     76  1.27.10.3    bouyer 	sizeof(struct uk_softc), ukmatch, ukattach, ukdetach, ukactivate,
     77       1.15   thorpej };
     78       1.15   thorpej 
     79       1.21   thorpej extern struct cfdriver uk_cd;
     80        1.1   mycroft 
     81       1.16  christos cdev_decl(uk);
     82       1.16  christos 
     83       1.12   mycroft int
     84       1.12   mycroft ukmatch(parent, match, aux)
     85       1.12   mycroft 	struct device *parent;
     86       1.18       cgd 	struct cfdata *match;
     87       1.18       cgd 	void *aux;
     88       1.12   mycroft {
     89       1.12   mycroft 
     90       1.20     enami 	return (1);
     91       1.12   mycroft }
     92       1.12   mycroft 
     93        1.1   mycroft /*
     94        1.1   mycroft  * The routine called by the low level scsi routine when it discovers
     95        1.1   mycroft  * a device suitable for this driver.
     96        1.1   mycroft  */
     97        1.4   mycroft void
     98        1.4   mycroft ukattach(parent, self, aux)
     99        1.4   mycroft 	struct device *parent, *self;
    100        1.4   mycroft 	void *aux;
    101        1.1   mycroft {
    102       1.12   mycroft 	struct uk_softc *uk = (void *)self;
    103       1.19    bouyer 	struct scsipibus_attach_args *sa = aux;
    104  1.27.10.1   thorpej 	struct scsipi_periph *periph = sa->sa_periph;
    105        1.1   mycroft 
    106  1.27.10.2   thorpej 	SC_DEBUG(periph, SCSIPI_DB2, ("ukattach: "));
    107        1.4   mycroft 
    108        1.1   mycroft 	/*
    109        1.1   mycroft 	 * Store information needed to contact our base driver
    110        1.1   mycroft 	 */
    111  1.27.10.1   thorpej 	uk->sc_periph = periph;
    112  1.27.10.1   thorpej 	periph->periph_dev = &uk->sc_dev;
    113        1.1   mycroft 
    114       1.17  christos 	printf("\n");
    115       1.17  christos 	printf("%s: unknown device\n", uk->sc_dev.dv_xname);
    116        1.1   mycroft }
    117  1.27.10.3    bouyer 
    118  1.27.10.3    bouyer int
    119  1.27.10.3    bouyer ukactivate(self, act)
    120  1.27.10.3    bouyer 	struct device *self;
    121  1.27.10.3    bouyer 	enum devact act;
    122  1.27.10.3    bouyer {
    123  1.27.10.3    bouyer 	int rv = 0;
    124  1.27.10.3    bouyer 
    125  1.27.10.3    bouyer 	switch (act) {
    126  1.27.10.3    bouyer 	case DVACT_ACTIVATE:
    127  1.27.10.3    bouyer 		rv = EOPNOTSUPP;
    128  1.27.10.3    bouyer 		break;
    129  1.27.10.3    bouyer 
    130  1.27.10.3    bouyer 	case DVACT_DEACTIVATE:
    131  1.27.10.3    bouyer 		/*
    132  1.27.10.3    bouyer 		 * Nothing to do; we key off the device's DVF_ACTIVE.
    133  1.27.10.3    bouyer 		 */
    134  1.27.10.3    bouyer 		break;
    135  1.27.10.3    bouyer 	}
    136  1.27.10.3    bouyer 	return (rv);
    137  1.27.10.3    bouyer }
    138  1.27.10.3    bouyer 
    139  1.27.10.3    bouyer int
    140  1.27.10.3    bouyer ukdetach(self, flags)
    141  1.27.10.3    bouyer 	struct device *self;
    142  1.27.10.3    bouyer 	int flags;
    143  1.27.10.3    bouyer {
    144  1.27.10.3    bouyer 	/*struct uk_softc *uk = (struct uk_softc *) self;*/
    145  1.27.10.3    bouyer 	int cmaj, mn;
    146  1.27.10.3    bouyer 
    147  1.27.10.3    bouyer 	/* locate the major number */
    148  1.27.10.3    bouyer 	for (cmaj = 0; cmaj <= nchrdev; cmaj++)
    149  1.27.10.3    bouyer 		if (cdevsw[cmaj].d_open == ukopen)
    150  1.27.10.3    bouyer 			break;
    151  1.27.10.3    bouyer 
    152  1.27.10.3    bouyer 	/* Nuke the vnodes for any open instances */
    153  1.27.10.3    bouyer 	mn = self->dv_unit;
    154  1.27.10.3    bouyer 	vdevgone(cmaj, mn, mn, VCHR);
    155  1.27.10.3    bouyer 
    156  1.27.10.3    bouyer 	return (0);
    157  1.27.10.3    bouyer }
    158  1.27.10.3    bouyer 
    159  1.27.10.3    bouyer 
    160        1.1   mycroft 
    161        1.1   mycroft /*
    162        1.4   mycroft  * open the device.
    163        1.1   mycroft  */
    164        1.4   mycroft int
    165       1.16  christos ukopen(dev, flag, fmt, p)
    166        1.4   mycroft 	dev_t dev;
    167       1.16  christos 	int flag, fmt;
    168       1.16  christos 	struct proc *p;
    169        1.1   mycroft {
    170       1.26   thorpej 	int unit, error;
    171       1.12   mycroft 	struct uk_softc *uk;
    172  1.27.10.1   thorpej 	struct scsipi_periph *periph;
    173  1.27.10.1   thorpej 	struct scsipi_adapter *adapt;
    174        1.1   mycroft 
    175        1.4   mycroft 	unit = UKUNIT(dev);
    176       1.15   thorpej 	if (unit >= uk_cd.cd_ndevs)
    177       1.20     enami 		return (ENXIO);
    178       1.15   thorpej 	uk = uk_cd.cd_devs[unit];
    179       1.20     enami 	if (uk == NULL)
    180       1.20     enami 		return (ENXIO);
    181       1.20     enami 
    182  1.27.10.1   thorpej 	periph = uk->sc_periph;
    183  1.27.10.1   thorpej 	adapt = periph->periph_channel->chan_adapter;
    184        1.4   mycroft 
    185  1.27.10.2   thorpej 	SC_DEBUG(periph, SCSIPI_DB1,
    186       1.20     enami 	    ("ukopen: dev=0x%x (unit %d (of %d))\n", dev, unit,
    187       1.20     enami 		uk_cd.cd_ndevs));
    188       1.11   mycroft 
    189        1.1   mycroft 	/*
    190        1.1   mycroft 	 * Only allow one at a time
    191        1.1   mycroft 	 */
    192  1.27.10.1   thorpej 	if (periph->periph_flags & PERIPH_OPEN) {
    193       1.17  christos 		printf("%s: already open\n", uk->sc_dev.dv_xname);
    194       1.20     enami 		return (EBUSY);
    195        1.1   mycroft 	}
    196        1.4   mycroft 
    197  1.27.10.1   thorpej 	if ((error = scsipi_adapter_addref(adapt)) != 0)
    198       1.26   thorpej 		return (error);
    199  1.27.10.1   thorpej 	periph->periph_flags |= PERIPH_OPEN;
    200        1.4   mycroft 
    201  1.27.10.2   thorpej 	SC_DEBUG(periph, SCSIPI_DB3, ("open complete\n"));
    202       1.20     enami 	return (0);
    203        1.1   mycroft }
    204        1.1   mycroft 
    205        1.1   mycroft /*
    206        1.1   mycroft  * close the device.. only called if we are the LAST
    207        1.1   mycroft  * occurence of an open device
    208        1.1   mycroft  */
    209        1.4   mycroft int
    210       1.16  christos ukclose(dev, flag, fmt, p)
    211        1.4   mycroft 	dev_t dev;
    212       1.16  christos 	int flag, fmt;
    213       1.16  christos 	struct proc *p;
    214        1.1   mycroft {
    215       1.15   thorpej 	struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
    216  1.27.10.1   thorpej 	struct scsipi_periph *periph = uk->sc_periph;
    217  1.27.10.1   thorpej 	struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
    218        1.1   mycroft 
    219  1.27.10.2   thorpej 	SC_DEBUG(uk->sc_periph, SCSIPI_DB1, ("closing\n"));
    220       1.27   thorpej 
    221  1.27.10.1   thorpej 	scsipi_wait_drain(periph);
    222       1.27   thorpej 
    223  1.27.10.1   thorpej 	scsipi_adapter_delref(adapt);
    224  1.27.10.1   thorpej 	periph->periph_flags &= ~PERIPH_OPEN;
    225       1.11   mycroft 
    226       1.20     enami 	return (0);
    227        1.1   mycroft }
    228        1.1   mycroft 
    229        1.1   mycroft /*
    230        1.1   mycroft  * Perform special action on behalf of the user
    231        1.1   mycroft  * Only does generic scsi ioctls.
    232        1.1   mycroft  */
    233        1.4   mycroft int
    234       1.12   mycroft ukioctl(dev, cmd, addr, flag, p)
    235        1.4   mycroft 	dev_t dev;
    236        1.9       cgd 	u_long cmd;
    237        1.4   mycroft 	caddr_t addr;
    238        1.4   mycroft 	int flag;
    239       1.12   mycroft 	struct proc *p;
    240        1.1   mycroft {
    241       1.15   thorpej 	register struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
    242        1.1   mycroft 
    243  1.27.10.1   thorpej 	return (scsipi_do_ioctl(uk->sc_periph, dev, cmd, addr, flag, p));
    244        1.1   mycroft }
    245