NetBSD/sys/dev/scsipi/uk.c

219 lines
5.4 KiB
C
Raw Normal View History

/* $NetBSD: uk.c,v 1.54 2008/04/28 20:23:58 martin Exp $ */
1998-08-17 04:49:01 +04:00
/*-
* Copyright (c) 1998 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Charles M. Hannum.
*
* 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.
*
1998-08-17 04:49:01 +04:00
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
*/
/*
1993-11-24 07:52:44 +03:00
* Dummy driver for a device we can't identify.
* Originally by Julian Elischer (julian@tfs.com)
1993-11-24 07:52:44 +03:00
*/
2001-11-13 09:54:32 +03:00
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: uk.c,v 1.54 2008/04/28 20:23:58 martin Exp $");
2001-11-13 09:54:32 +03:00
1993-11-24 07:52:44 +03:00
#include <sys/param.h>
#include <sys/systm.h>
1993-11-24 07:52:44 +03:00
#include <sys/errno.h>
#include <sys/ioctl.h>
1994-02-16 05:41:10 +03:00
#include <sys/device.h>
#include <sys/conf.h>
#include <sys/vnode.h>
1993-12-17 10:56:32 +03:00
#include <dev/scsipi/scsi_all.h>
#include <dev/scsipi/scsipi_all.h>
#include <dev/scsipi/scsiconf.h>
1993-12-17 10:56:32 +03:00
1994-02-16 05:41:10 +03:00
#define UKUNIT(z) (minor(z))
struct uk_softc {
1994-02-16 05:41:10 +03:00
struct device sc_dev;
struct scsipi_periph *sc_periph; /* all the inter level info */
1994-02-16 05:41:10 +03:00
};
static int ukmatch(struct device *, struct cfdata *, void *);
static void ukattach(struct device *, struct device *, void *);
static int ukactivate(struct device *, enum devact);
static int ukdetach(struct device *, int);
1994-02-16 05:41:10 +03:00
CFATTACH_DECL(uk, sizeof(struct uk_softc), ukmatch, ukattach, ukdetach,
ukactivate);
1998-01-12 12:49:10 +03:00
extern struct cfdriver uk_cd;
1993-11-24 07:52:44 +03:00
static dev_type_open(ukopen);
static dev_type_close(ukclose);
static dev_type_ioctl(ukioctl);
const struct cdevsw uk_cdevsw = {
ukopen, ukclose, noread, nowrite, ukioctl,
2006-09-04 01:16:09 +04:00
nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
};
static int
ukmatch(struct device *parent, struct cfdata *match,
void *aux)
{
return (1);
}
1993-11-24 07:52:44 +03:00
/*
* The routine called by the low level scsi routine when it discovers
* a device suitable for this driver.
*/
static void
ukattach(struct device *parent, struct device *self, void *aux)
1993-11-24 07:52:44 +03:00
{
2006-03-30 20:09:28 +04:00
struct uk_softc *uk = device_private(self);
struct scsipibus_attach_args *sa = aux;
struct scsipi_periph *periph = sa->sa_periph;
1993-11-24 07:52:44 +03:00
SC_DEBUG(periph, SCSIPI_DB2, ("ukattach: "));
1994-02-16 05:41:10 +03:00
1993-11-24 07:52:44 +03:00
/*
* Store information needed to contact our base driver
*/
uk->sc_periph = periph;
periph->periph_dev = &uk->sc_dev;
1993-11-24 07:52:44 +03:00
1996-10-13 03:23:13 +04:00
printf("\n");
1993-11-24 07:52:44 +03:00
}
static int
ukactivate(struct device *self, enum devact act)
{
int rv = 0;
2005-02-27 03:26:58 +03:00
switch (act) {
case DVACT_ACTIVATE:
rv = EOPNOTSUPP;
break;
2005-02-27 03:26:58 +03:00
case DVACT_DEACTIVATE:
/*
* Nothing to do; we key off the device's DVF_ACTIVE.
*/
break;
}
return (rv);
}
2005-02-27 03:26:58 +03:00
static int
ukdetach(struct device *self, int flags)
{
2006-03-30 20:09:28 +04:00
/*struct uk_softc *uk = device_private(self);*/
int cmaj, mn;
2005-02-27 03:26:58 +03:00
/* locate the major number */
cmaj = cdevsw_lookup_major(&uk_cdevsw);
2005-02-27 03:26:58 +03:00
/* Nuke the vnodes for any open instances */
2006-03-28 21:38:24 +04:00
mn = device_unit(self);
vdevgone(cmaj, mn, mn, VCHR);
2005-02-27 03:26:58 +03:00
return (0);
}
1993-11-24 07:52:44 +03:00
/*
1994-02-16 05:41:10 +03:00
* open the device.
1993-11-24 07:52:44 +03:00
*/
static int
ukopen(dev_t dev, int flag, int fmt, struct lwp *l)
1993-11-24 07:52:44 +03:00
{
int unit, error;
struct uk_softc *uk;
struct scsipi_periph *periph;
struct scsipi_adapter *adapt;
1993-11-24 07:52:44 +03:00
1994-02-16 05:41:10 +03:00
unit = UKUNIT(dev);
if (unit >= uk_cd.cd_ndevs)
return (ENXIO);
uk = uk_cd.cd_devs[unit];
if (uk == NULL)
return (ENXIO);
periph = uk->sc_periph;
adapt = periph->periph_channel->chan_adapter;
1994-02-16 05:41:10 +03:00
SC_DEBUG(periph, SCSIPI_DB1,
("ukopen: dev=0x%x (unit %d (of %d))\n", dev, unit,
uk_cd.cd_ndevs));
1993-11-24 07:52:44 +03:00
/*
* Only allow one at a time
*/
if (periph->periph_flags & PERIPH_OPEN) {
2008-04-05 19:47:00 +04:00
aprint_error_dev(&uk->sc_dev, "already open\n");
return (EBUSY);
1993-11-24 07:52:44 +03:00
}
1994-02-16 05:41:10 +03:00
if ((error = scsipi_adapter_addref(adapt)) != 0)
return (error);
periph->periph_flags |= PERIPH_OPEN;
1994-02-16 05:41:10 +03:00
SC_DEBUG(periph, SCSIPI_DB3, ("open complete\n"));
return (0);
1993-11-24 07:52:44 +03:00
}
/*
* close the device.. only called if we are the LAST
* occurence of an open device
*/
static int
ukclose(dev_t dev, int flag, int fmt, struct lwp *l)
1993-11-24 07:52:44 +03:00
{
struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
struct scsipi_periph *periph = uk->sc_periph;
struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
1993-11-24 07:52:44 +03:00
SC_DEBUG(uk->sc_periph, SCSIPI_DB1, ("closing\n"));
scsipi_wait_drain(periph);
scsipi_adapter_delref(adapt);
periph->periph_flags &= ~PERIPH_OPEN;
return (0);
1993-11-24 07:52:44 +03:00
}
/*
* Perform special action on behalf of the user
* Only does generic scsi ioctls.
*/
static int
ukioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
1993-11-24 07:52:44 +03:00
{
register struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
1993-11-24 07:52:44 +03:00
2005-12-11 15:16:03 +03:00
return (scsipi_do_ioctl(uk->sc_periph, dev, cmd, addr, flag, l));
1993-11-24 07:52:44 +03:00
}