uk.c revision 1.60 1 /* $NetBSD: uk.c,v 1.60 2012/02/08 12:22:00 mbalmer Exp $ */
2
3 /*-
4 * Copyright (c) 1998 The NetBSD Foundation, Inc.
5 * All rights reserved.
6 *
7 * This code is derived from software contributed to The NetBSD Foundation
8 * by Charles M. Hannum.
9 *
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 * POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 /*
33 * Dummy driver for a device we can't identify.
34 * Originally by Julian Elischer (julian (at) tfs.com)
35 */
36
37 #include <sys/cdefs.h>
38 __KERNEL_RCSID(0, "$NetBSD: uk.c,v 1.60 2012/02/08 12:22:00 mbalmer Exp $");
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42
43 #include <sys/errno.h>
44 #include <sys/ioctl.h>
45 #include <sys/device.h>
46 #include <sys/conf.h>
47 #include <sys/vnode.h>
48
49 #include <dev/scsipi/scsi_all.h>
50 #include <dev/scsipi/scsipi_all.h>
51 #include <dev/scsipi/scsiconf.h>
52
53 struct uk_softc {
54 device_t sc_dev;
55
56 struct scsipi_periph *sc_periph; /* all the inter level info */
57 };
58
59 static int ukmatch(device_t, cfdata_t, void *);
60 static void ukattach(device_t, device_t, void *);
61 static int ukdetach(device_t, int);
62
63 CFATTACH_DECL_NEW(
64 uk,
65 sizeof(struct uk_softc),
66 ukmatch,
67 ukattach,
68 ukdetach,
69 NULL
70 );
71
72 extern struct cfdriver uk_cd;
73
74 static dev_type_open(ukopen);
75 static dev_type_close(ukclose);
76 static dev_type_ioctl(ukioctl);
77
78 const struct cdevsw uk_cdevsw = {
79 ukopen, ukclose, noread, nowrite, ukioctl,
80 nostop, notty, nopoll, nommap, nokqfilter, D_OTHER,
81 };
82
83 static int
84 ukmatch(device_t parent, cfdata_t match, void *aux)
85 {
86 return 1;
87 }
88
89 /*
90 * The routine called by the low level scsi routine when it discovers
91 * a device suitable for this driver.
92 */
93 static void
94 ukattach(device_t parent, device_t self, void *aux)
95 {
96 struct uk_softc *uk = device_private(self);
97 struct scsipibus_attach_args *sa = aux;
98 struct scsipi_periph *periph = sa->sa_periph;
99
100 SC_DEBUG(periph, SCSIPI_DB2, ("ukattach: "));
101 uk->sc_dev = self;
102
103 /* Store information needed to contact our base driver */
104 uk->sc_periph = periph;
105 periph->periph_dev = uk->sc_dev;
106
107 printf("\n");
108 }
109
110 static int
111 ukdetach(device_t self, int flags)
112 {
113 int cmaj, mn;
114
115 /* locate the major number */
116 cmaj = cdevsw_lookup_major(&uk_cdevsw);
117
118 /* Nuke the vnodes for any open instances */
119 mn = device_unit(self);
120 vdevgone(cmaj, mn, mn, VCHR);
121
122 return 0;
123 }
124
125 static int
126 ukopen(dev_t dev, int flag, int fmt, struct lwp *l)
127 {
128 int unit, error;
129 struct uk_softc *uk;
130 struct scsipi_periph *periph;
131 struct scsipi_adapter *adapt;
132
133 unit = minor(dev);
134 uk = device_lookup_private(&uk_cd, unit);
135 if (uk == NULL)
136 return ENXIO;
137
138 periph = uk->sc_periph;
139 adapt = periph->periph_channel->chan_adapter;
140
141 SC_DEBUG(periph, SCSIPI_DB1,
142 ("ukopen: dev=0x%"PRIx64" (unit %d (of %d))\n", dev, unit,
143 uk_cd.cd_ndevs));
144
145 /* Only allow one at a time */
146 if (periph->periph_flags & PERIPH_OPEN) {
147 aprint_error_dev(uk->sc_dev, "already open\n");
148 return EBUSY;
149 }
150
151 if ((error = scsipi_adapter_addref(adapt)) != 0)
152 return error;
153 periph->periph_flags |= PERIPH_OPEN;
154
155 SC_DEBUG(periph, SCSIPI_DB3, ("open complete\n"));
156 return 0;
157 }
158
159 static int
160 ukclose(dev_t dev, int flag, int fmt, struct lwp *l)
161 {
162 struct uk_softc *uk = device_lookup_private(&uk_cd, minor(dev));
163 struct scsipi_periph *periph = uk->sc_periph;
164 struct scsipi_adapter *adapt = periph->periph_channel->chan_adapter;
165
166 SC_DEBUG(uk->sc_periph, SCSIPI_DB1, ("closing\n"));
167
168 scsipi_wait_drain(periph);
169
170 scsipi_adapter_delref(adapt);
171 periph->periph_flags &= ~PERIPH_OPEN;
172
173 return 0;
174 }
175
176 /*
177 * Perform special action on behalf of the user.
178 * Only does generic scsi ioctls.
179 */
180 static int
181 ukioctl(dev_t dev, u_long cmd, void *addr, int flag, struct lwp *l)
182 {
183 struct uk_softc *uk = device_lookup_private(&uk_cd, minor(dev));
184
185 return scsipi_do_ioctl(uk->sc_periph, dev, cmd, addr, flag, l);
186 }
187