uk.c revision 1.23 1 1.23 mycroft /* $NetBSD: uk.c,v 1.23 1998/08/17 00:49:04 mycroft 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.2 mycroft
53 1.19 bouyer #include <dev/scsipi/scsi_all.h>
54 1.19 bouyer #include <dev/scsipi/scsipi_all.h>
55 1.19 bouyer #include <dev/scsipi/scsiconf.h>
56 1.2 mycroft
57 1.4 mycroft #define UKUNIT(z) (minor(z))
58 1.4 mycroft
59 1.12 mycroft struct uk_softc {
60 1.4 mycroft struct device sc_dev;
61 1.4 mycroft
62 1.19 bouyer struct scsipi_link *sc_link; /* all the inter level info */
63 1.4 mycroft };
64 1.4 mycroft
65 1.18 cgd #ifdef __BROKEN_INDIRECT_CONFIG
66 1.12 mycroft int ukmatch __P((struct device *, void *, void *));
67 1.18 cgd #else
68 1.18 cgd int ukmatch __P((struct device *, struct cfdata *, void *));
69 1.18 cgd #endif
70 1.4 mycroft void ukattach __P((struct device *, struct device *, void *));
71 1.4 mycroft
72 1.15 thorpej struct cfattach uk_ca = {
73 1.15 thorpej sizeof(struct uk_softc), ukmatch, ukattach
74 1.15 thorpej };
75 1.15 thorpej
76 1.21 thorpej extern struct cfdriver uk_cd;
77 1.1 mycroft
78 1.1 mycroft /*
79 1.1 mycroft * This driver is so simple it uses all the default services
80 1.1 mycroft */
81 1.19 bouyer struct scsipi_device uk_switch = {
82 1.3 mycroft NULL,
83 1.3 mycroft NULL,
84 1.3 mycroft NULL,
85 1.3 mycroft NULL,
86 1.1 mycroft };
87 1.1 mycroft
88 1.16 christos cdev_decl(uk);
89 1.16 christos
90 1.12 mycroft int
91 1.12 mycroft ukmatch(parent, match, aux)
92 1.12 mycroft struct device *parent;
93 1.18 cgd #ifdef __BROKEN_INDIRECT_CONFIG
94 1.18 cgd void *match;
95 1.18 cgd #else
96 1.18 cgd struct cfdata *match;
97 1.18 cgd #endif
98 1.18 cgd void *aux;
99 1.12 mycroft {
100 1.12 mycroft
101 1.20 enami return (1);
102 1.12 mycroft }
103 1.12 mycroft
104 1.1 mycroft /*
105 1.1 mycroft * The routine called by the low level scsi routine when it discovers
106 1.1 mycroft * a device suitable for this driver.
107 1.1 mycroft */
108 1.4 mycroft void
109 1.4 mycroft ukattach(parent, self, aux)
110 1.4 mycroft struct device *parent, *self;
111 1.4 mycroft void *aux;
112 1.1 mycroft {
113 1.12 mycroft struct uk_softc *uk = (void *)self;
114 1.19 bouyer struct scsipibus_attach_args *sa = aux;
115 1.19 bouyer struct scsipi_link *sc_link = sa->sa_sc_link;
116 1.1 mycroft
117 1.1 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("ukattach: "));
118 1.4 mycroft
119 1.1 mycroft /*
120 1.1 mycroft * Store information needed to contact our base driver
121 1.1 mycroft */
122 1.4 mycroft uk->sc_link = sc_link;
123 1.1 mycroft sc_link->device = &uk_switch;
124 1.10 mycroft sc_link->device_softc = uk;
125 1.12 mycroft sc_link->openings = 1;
126 1.1 mycroft
127 1.17 christos printf("\n");
128 1.17 christos printf("%s: unknown device\n", uk->sc_dev.dv_xname);
129 1.1 mycroft }
130 1.1 mycroft
131 1.1 mycroft /*
132 1.4 mycroft * open the device.
133 1.1 mycroft */
134 1.4 mycroft int
135 1.16 christos ukopen(dev, flag, fmt, p)
136 1.4 mycroft dev_t dev;
137 1.16 christos int flag, fmt;
138 1.16 christos struct proc *p;
139 1.1 mycroft {
140 1.4 mycroft int unit;
141 1.12 mycroft struct uk_softc *uk;
142 1.19 bouyer struct scsipi_link *sc_link;
143 1.1 mycroft
144 1.4 mycroft unit = UKUNIT(dev);
145 1.15 thorpej if (unit >= uk_cd.cd_ndevs)
146 1.20 enami return (ENXIO);
147 1.15 thorpej uk = uk_cd.cd_devs[unit];
148 1.20 enami if (uk == NULL)
149 1.20 enami return (ENXIO);
150 1.20 enami
151 1.4 mycroft sc_link = uk->sc_link;
152 1.4 mycroft
153 1.11 mycroft SC_DEBUG(sc_link, SDEV_DB1,
154 1.20 enami ("ukopen: dev=0x%x (unit %d (of %d))\n", dev, unit,
155 1.20 enami uk_cd.cd_ndevs));
156 1.11 mycroft
157 1.1 mycroft /*
158 1.1 mycroft * Only allow one at a time
159 1.1 mycroft */
160 1.1 mycroft if (sc_link->flags & SDEV_OPEN) {
161 1.17 christos printf("%s: already open\n", uk->sc_dev.dv_xname);
162 1.20 enami return (EBUSY);
163 1.1 mycroft }
164 1.4 mycroft
165 1.1 mycroft sc_link->flags |= SDEV_OPEN;
166 1.4 mycroft
167 1.11 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("open complete\n"));
168 1.20 enami return (0);
169 1.1 mycroft }
170 1.1 mycroft
171 1.1 mycroft /*
172 1.1 mycroft * close the device.. only called if we are the LAST
173 1.1 mycroft * occurence of an open device
174 1.1 mycroft */
175 1.4 mycroft int
176 1.16 christos ukclose(dev, flag, fmt, p)
177 1.4 mycroft dev_t dev;
178 1.16 christos int flag, fmt;
179 1.16 christos struct proc *p;
180 1.1 mycroft {
181 1.15 thorpej struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
182 1.1 mycroft
183 1.11 mycroft SC_DEBUG(uk->sc_link, SDEV_DB1, ("closing\n"));
184 1.4 mycroft uk->sc_link->flags &= ~SDEV_OPEN;
185 1.11 mycroft
186 1.20 enami return (0);
187 1.1 mycroft }
188 1.1 mycroft
189 1.1 mycroft /*
190 1.1 mycroft * Perform special action on behalf of the user
191 1.1 mycroft * Only does generic scsi ioctls.
192 1.1 mycroft */
193 1.4 mycroft int
194 1.12 mycroft ukioctl(dev, cmd, addr, flag, p)
195 1.4 mycroft dev_t dev;
196 1.9 cgd u_long cmd;
197 1.4 mycroft caddr_t addr;
198 1.4 mycroft int flag;
199 1.12 mycroft struct proc *p;
200 1.1 mycroft {
201 1.15 thorpej register struct uk_softc *uk = uk_cd.cd_devs[UKUNIT(dev)];
202 1.1 mycroft
203 1.20 enami return (scsipi_do_ioctl(uk->sc_link, dev, cmd, addr, flag, p));
204 1.1 mycroft }
205