dpti.c revision 1.3.4.4 1 1.3.4.4 jdolecek /* $NetBSD: dpti.c,v 1.3.4.4 2002/10/10 18:38:42 jdolecek Exp $ */
2 1.3.4.2 thorpej
3 1.3.4.2 thorpej /*-
4 1.3.4.2 thorpej * Copyright (c) 2001 The NetBSD Foundation, Inc.
5 1.3.4.2 thorpej * All rights reserved.
6 1.3.4.2 thorpej *
7 1.3.4.2 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.3.4.2 thorpej * by Andrew Doran.
9 1.3.4.2 thorpej *
10 1.3.4.2 thorpej * Redistribution and use in source and binary forms, with or without
11 1.3.4.2 thorpej * modification, are permitted provided that the following conditions
12 1.3.4.2 thorpej * are met:
13 1.3.4.2 thorpej * 1. Redistributions of source code must retain the above copyright
14 1.3.4.2 thorpej * notice, this list of conditions and the following disclaimer.
15 1.3.4.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
16 1.3.4.2 thorpej * notice, this list of conditions and the following disclaimer in the
17 1.3.4.2 thorpej * documentation and/or other materials provided with the distribution.
18 1.3.4.2 thorpej * 3. All advertising materials mentioning features or use of this software
19 1.3.4.2 thorpej * must display the following acknowledgement:
20 1.3.4.2 thorpej * This product includes software developed by the NetBSD
21 1.3.4.2 thorpej * Foundation, Inc. and its contributors.
22 1.3.4.2 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.3.4.2 thorpej * contributors may be used to endorse or promote products derived
24 1.3.4.2 thorpej * from this software without specific prior written permission.
25 1.3.4.2 thorpej *
26 1.3.4.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.3.4.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.3.4.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.3.4.2 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.3.4.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.3.4.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.3.4.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.3.4.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.3.4.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.3.4.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.3.4.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
37 1.3.4.2 thorpej */
38 1.3.4.2 thorpej
39 1.3.4.2 thorpej /*
40 1.3.4.2 thorpej * Copyright (c) 1996-2000 Distributed Processing Technology Corporation
41 1.3.4.2 thorpej * Copyright (c) 2000 Adaptec Corporation
42 1.3.4.2 thorpej * All rights reserved.
43 1.3.4.2 thorpej *
44 1.3.4.2 thorpej * TERMS AND CONDITIONS OF USE
45 1.3.4.2 thorpej *
46 1.3.4.2 thorpej * Redistribution and use in source form, with or without modification, are
47 1.3.4.2 thorpej * permitted provided that redistributions of source code must retain the
48 1.3.4.2 thorpej * above copyright notice, this list of conditions and the following disclaimer.
49 1.3.4.2 thorpej *
50 1.3.4.2 thorpej * This software is provided `as is' by Adaptec and any express or implied
51 1.3.4.2 thorpej * warranties, including, but not limited to, the implied warranties of
52 1.3.4.2 thorpej * merchantability and fitness for a particular purpose, are disclaimed. In no
53 1.3.4.2 thorpej * event shall Adaptec be liable for any direct, indirect, incidental, special,
54 1.3.4.2 thorpej * exemplary or consequential damages (including, but not limited to,
55 1.3.4.2 thorpej * procurement of substitute goods or services; loss of use, data, or profits;
56 1.3.4.2 thorpej * or business interruptions) however caused and on any theory of liability,
57 1.3.4.2 thorpej * whether in contract, strict liability, or tort (including negligence or
58 1.3.4.2 thorpej * otherwise) arising in any way out of the use of this driver software, even
59 1.3.4.2 thorpej * if advised of the possibility of such damage.
60 1.3.4.2 thorpej */
61 1.3.4.2 thorpej
62 1.3.4.2 thorpej /*
63 1.3.4.2 thorpej * Adaptec/DPT I2O control interface.
64 1.3.4.2 thorpej */
65 1.3.4.2 thorpej
66 1.3.4.2 thorpej #include <sys/cdefs.h>
67 1.3.4.4 jdolecek __KERNEL_RCSID(0, "$NetBSD: dpti.c,v 1.3.4.4 2002/10/10 18:38:42 jdolecek Exp $");
68 1.3.4.2 thorpej
69 1.3.4.2 thorpej #include "opt_i2o.h"
70 1.3.4.2 thorpej
71 1.3.4.2 thorpej #include <sys/param.h>
72 1.3.4.2 thorpej #include <sys/systm.h>
73 1.3.4.2 thorpej #include <sys/kernel.h>
74 1.3.4.2 thorpej #include <sys/device.h>
75 1.3.4.2 thorpej #include <sys/queue.h>
76 1.3.4.2 thorpej #include <sys/proc.h>
77 1.3.4.2 thorpej #include <sys/endian.h>
78 1.3.4.2 thorpej #include <sys/malloc.h>
79 1.3.4.2 thorpej #include <sys/conf.h>
80 1.3.4.2 thorpej #include <sys/ioctl.h>
81 1.3.4.2 thorpej
82 1.3.4.2 thorpej #include <uvm/uvm_extern.h>
83 1.3.4.2 thorpej
84 1.3.4.2 thorpej #include <machine/bus.h>
85 1.3.4.2 thorpej #ifdef i386
86 1.3.4.2 thorpej #include <machine/pio.h>
87 1.3.4.2 thorpej #endif
88 1.3.4.2 thorpej
89 1.3.4.2 thorpej #include <dev/i2o/i2o.h>
90 1.3.4.2 thorpej #include <dev/i2o/i2odpt.h>
91 1.3.4.2 thorpej #include <dev/i2o/iopio.h>
92 1.3.4.2 thorpej #include <dev/i2o/iopvar.h>
93 1.3.4.2 thorpej #include <dev/i2o/dptivar.h>
94 1.3.4.2 thorpej
95 1.3.4.2 thorpej #ifdef I2ODEBUG
96 1.3.4.2 thorpej #define DPRINTF(x) printf x
97 1.3.4.2 thorpej #else
98 1.3.4.2 thorpej #define DPRINTF(x)
99 1.3.4.2 thorpej #endif
100 1.3.4.2 thorpej
101 1.3.4.2 thorpej static struct dpt_sig dpti_sig = {
102 1.3.4.2 thorpej { 'd', 'P', 't', 'S', 'i', 'G'},
103 1.3.4.2 thorpej SIG_VERSION,
104 1.3.4.2 thorpej #if defined(i386)
105 1.3.4.2 thorpej PROC_INTEL,
106 1.3.4.2 thorpej #elif defined(powerpc)
107 1.3.4.2 thorpej PROC_POWERPC,
108 1.3.4.2 thorpej #elif defined(alpha)
109 1.3.4.2 thorpej PROC_ALPHA,
110 1.3.4.3 jdolecek #elif defined(__mips__)
111 1.3.4.2 thorpej PROC_MIPS,
112 1.3.4.2 thorpej #elif defined(sparc64)
113 1.3.4.2 thorpej PROC_ULTRASPARC,
114 1.3.4.2 thorpej #endif
115 1.3.4.2 thorpej #if defined(i386)
116 1.3.4.2 thorpej PROC_386 | PROC_486 | PROC_PENTIUM | PROC_SEXIUM,
117 1.3.4.2 thorpej #else
118 1.3.4.2 thorpej 0,
119 1.3.4.2 thorpej #endif
120 1.3.4.2 thorpej FT_HBADRVR,
121 1.3.4.2 thorpej 0,
122 1.3.4.2 thorpej OEM_DPT,
123 1.3.4.2 thorpej OS_FREE_BSD, /* XXX */
124 1.3.4.2 thorpej CAP_ABOVE16MB,
125 1.3.4.2 thorpej DEV_ALL,
126 1.3.4.2 thorpej ADF_ALL_SC5,
127 1.3.4.2 thorpej 0,
128 1.3.4.2 thorpej 0,
129 1.3.4.2 thorpej DPTI_VERSION,
130 1.3.4.2 thorpej DPTI_REVISION,
131 1.3.4.2 thorpej DPTI_SUBREVISION,
132 1.3.4.2 thorpej DPTI_MONTH,
133 1.3.4.2 thorpej DPTI_DAY,
134 1.3.4.2 thorpej DPTI_YEAR,
135 1.3.4.2 thorpej "" /* Will be filled later */
136 1.3.4.2 thorpej };
137 1.3.4.2 thorpej
138 1.3.4.2 thorpej void dpti_attach(struct device *, struct device *, void *);
139 1.3.4.2 thorpej int dpti_blinkled(struct dpti_softc *);
140 1.3.4.2 thorpej int dpti_ctlrinfo(struct dpti_softc *, u_long, caddr_t);
141 1.3.4.2 thorpej int dpti_match(struct device *, struct cfdata *, void *);
142 1.3.4.2 thorpej int dpti_passthrough(struct dpti_softc *, caddr_t, struct proc *);
143 1.3.4.2 thorpej int dpti_sysinfo(struct dpti_softc *, u_long, caddr_t);
144 1.3.4.2 thorpej
145 1.3.4.4 jdolecek dev_type_open(dptiopen);
146 1.3.4.4 jdolecek dev_type_ioctl(dptiioctl);
147 1.3.4.4 jdolecek
148 1.3.4.4 jdolecek const struct cdevsw dpti_cdevsw = {
149 1.3.4.4 jdolecek dptiopen, nullclose, noread, nowrite, dptiioctl,
150 1.3.4.4 jdolecek nostop, notty, nopoll, nommap, nokqfilter,
151 1.3.4.4 jdolecek };
152 1.3.4.2 thorpej
153 1.3.4.2 thorpej extern struct cfdriver dpti_cd;
154 1.3.4.2 thorpej
155 1.3.4.4 jdolecek CFATTACH_DECL(dpti, sizeof(struct dpti_softc),
156 1.3.4.4 jdolecek dpti_match, dpti_attach, NULL, NULL);
157 1.3.4.2 thorpej
158 1.3.4.2 thorpej int
159 1.3.4.2 thorpej dpti_match(struct device *parent, struct cfdata *match, void *aux)
160 1.3.4.2 thorpej {
161 1.3.4.2 thorpej struct iop_attach_args *ia;
162 1.3.4.2 thorpej struct iop_softc *iop;
163 1.3.4.2 thorpej
164 1.3.4.2 thorpej ia = aux;
165 1.3.4.2 thorpej iop = (struct iop_softc *)parent;
166 1.3.4.2 thorpej
167 1.3.4.2 thorpej if (ia->ia_class != I2O_CLASS_ANY || ia->ia_tid != I2O_TID_IOP)
168 1.3.4.2 thorpej return (0);
169 1.3.4.2 thorpej
170 1.3.4.2 thorpej if (le16toh(iop->sc_status.orgid) != I2O_ORG_DPT)
171 1.3.4.2 thorpej return (0);
172 1.3.4.2 thorpej
173 1.3.4.2 thorpej return (1);
174 1.3.4.2 thorpej }
175 1.3.4.2 thorpej
176 1.3.4.2 thorpej void
177 1.3.4.2 thorpej dpti_attach(struct device *parent, struct device *self, void *aux)
178 1.3.4.2 thorpej {
179 1.3.4.2 thorpej struct iop_softc *iop;
180 1.3.4.2 thorpej struct dpti_softc *sc;
181 1.3.4.2 thorpej struct {
182 1.3.4.2 thorpej struct i2o_param_op_results pr;
183 1.3.4.2 thorpej struct i2o_param_read_results prr;
184 1.3.4.2 thorpej struct i2o_dpt_param_exec_iop_buffers dib;
185 1.3.4.2 thorpej } __attribute__ ((__packed__)) param;
186 1.3.4.2 thorpej int rv;
187 1.3.4.2 thorpej
188 1.3.4.2 thorpej sc = (struct dpti_softc *)self;
189 1.3.4.2 thorpej iop = (struct iop_softc *)parent;
190 1.3.4.2 thorpej
191 1.3.4.2 thorpej /*
192 1.3.4.2 thorpej * Tell the world what we are. The description in the signature
193 1.3.4.2 thorpej * must be no more than 46 bytes long (see dptivar.h).
194 1.3.4.2 thorpej */
195 1.3.4.2 thorpej printf(": DPT/Adaptec RAID management interface\n");
196 1.3.4.2 thorpej sprintf(dpti_sig.dsDescription, "NetBSD %s I2O OSM", osrelease);
197 1.3.4.2 thorpej
198 1.3.4.2 thorpej rv = iop_field_get_all(iop, I2O_TID_IOP,
199 1.3.4.2 thorpej I2O_DPT_PARAM_EXEC_IOP_BUFFERS, ¶m,
200 1.3.4.2 thorpej sizeof(param), NULL);
201 1.3.4.2 thorpej if (rv != 0)
202 1.3.4.2 thorpej return;
203 1.3.4.2 thorpej
204 1.3.4.2 thorpej sc->sc_blinkled = le32toh(param.dib.serialoutputoff) + 8;
205 1.3.4.2 thorpej }
206 1.3.4.2 thorpej
207 1.3.4.2 thorpej int
208 1.3.4.2 thorpej dptiopen(dev_t dev, int flag, int mode, struct proc *p)
209 1.3.4.2 thorpej {
210 1.3.4.2 thorpej
211 1.3.4.2 thorpej if (securelevel > 1)
212 1.3.4.2 thorpej return (EPERM);
213 1.3.4.2 thorpej if (device_lookup(&dpti_cd, minor(dev)) == NULL)
214 1.3.4.2 thorpej return (ENXIO);
215 1.3.4.2 thorpej
216 1.3.4.2 thorpej return (0);
217 1.3.4.2 thorpej }
218 1.3.4.2 thorpej
219 1.3.4.2 thorpej int
220 1.3.4.2 thorpej dptiioctl(dev_t dev, u_long cmd, caddr_t data, int flag, struct proc *p)
221 1.3.4.2 thorpej {
222 1.3.4.2 thorpej struct iop_softc *iop;
223 1.3.4.2 thorpej struct dpti_softc *sc;
224 1.3.4.2 thorpej struct ioctl_pt *pt;
225 1.3.4.2 thorpej int i, size, rv;
226 1.3.4.2 thorpej
227 1.3.4.2 thorpej sc = device_lookup(&dpti_cd, minor(dev));
228 1.3.4.2 thorpej iop = (struct iop_softc *)sc->sc_dv.dv_parent;
229 1.3.4.2 thorpej
230 1.3.4.2 thorpej /*
231 1.3.4.2 thorpej * Currently, we only take ioctls passed down from the Linux
232 1.3.4.2 thorpej * emulation layer.
233 1.3.4.2 thorpej */
234 1.3.4.2 thorpej if (cmd == PTIOCLINUX) {
235 1.3.4.2 thorpej pt = (struct ioctl_pt *)data;
236 1.3.4.2 thorpej cmd = pt->com;
237 1.3.4.2 thorpej data = pt->data;
238 1.3.4.2 thorpej } else
239 1.3.4.2 thorpej return (ENOTTY);
240 1.3.4.2 thorpej
241 1.3.4.2 thorpej size = IOCPARM_LEN(cmd);
242 1.3.4.2 thorpej
243 1.3.4.2 thorpej switch (cmd & 0xffff) {
244 1.3.4.2 thorpej case DPT_SIGNATURE:
245 1.3.4.2 thorpej if (size > sizeof(dpti_sig))
246 1.3.4.2 thorpej size = sizeof(dpti_sig);
247 1.3.4.2 thorpej memcpy(data, &dpti_sig, size);
248 1.3.4.2 thorpej return (0);
249 1.3.4.2 thorpej
250 1.3.4.2 thorpej case DPT_CTRLINFO:
251 1.3.4.2 thorpej return (dpti_ctlrinfo(sc, cmd, data));
252 1.3.4.2 thorpej
253 1.3.4.2 thorpej case DPT_SYSINFO:
254 1.3.4.2 thorpej return (dpti_sysinfo(sc, cmd, data));
255 1.3.4.2 thorpej
256 1.3.4.2 thorpej case DPT_BLINKLED:
257 1.3.4.2 thorpej if ((i = dpti_blinkled(sc)) == -1)
258 1.3.4.2 thorpej i = 0;
259 1.3.4.2 thorpej
260 1.3.4.2 thorpej if (size == 0)
261 1.3.4.2 thorpej return (copyout(&i, *(caddr_t *)data, sizeof(i)));
262 1.3.4.2 thorpej
263 1.3.4.2 thorpej *(int *)data = i;
264 1.3.4.2 thorpej return (0);
265 1.3.4.2 thorpej
266 1.3.4.2 thorpej case DPT_TARGET_BUSY:
267 1.3.4.2 thorpej /*
268 1.3.4.2 thorpej * XXX This is here to stop linux_machdepioctl() from
269 1.3.4.2 thorpej * whining about an unknown ioctl. Really, it should be
270 1.3.4.2 thorpej * implemented.
271 1.3.4.2 thorpej */
272 1.3.4.2 thorpej return (EIO);
273 1.3.4.2 thorpej
274 1.3.4.2 thorpej case DPT_I2OUSRCMD:
275 1.3.4.2 thorpej if (sc->sc_nactive++ >= 2)
276 1.3.4.2 thorpej tsleep(&sc->sc_nactive, PRIBIO, "dptislp", 0);
277 1.3.4.2 thorpej
278 1.3.4.2 thorpej rv = dpti_passthrough(sc, data, p);
279 1.3.4.2 thorpej
280 1.3.4.2 thorpej sc->sc_nactive--;
281 1.3.4.2 thorpej wakeup_one(&sc->sc_nactive);
282 1.3.4.2 thorpej return (rv);
283 1.3.4.2 thorpej
284 1.3.4.2 thorpej case DPT_I2ORESETCMD:
285 1.3.4.2 thorpej printf("%s: I2ORESETCMD not implemented\n",
286 1.3.4.2 thorpej sc->sc_dv.dv_xname);
287 1.3.4.2 thorpej return (EOPNOTSUPP);
288 1.3.4.2 thorpej
289 1.3.4.2 thorpej case DPT_I2ORESCANCMD:
290 1.3.4.2 thorpej return (iop_reconfigure(iop, 0));
291 1.3.4.2 thorpej
292 1.3.4.2 thorpej default:
293 1.3.4.2 thorpej return (ENOTTY);
294 1.3.4.2 thorpej }
295 1.3.4.2 thorpej }
296 1.3.4.2 thorpej
297 1.3.4.2 thorpej int
298 1.3.4.2 thorpej dpti_blinkled(struct dpti_softc *sc)
299 1.3.4.2 thorpej {
300 1.3.4.2 thorpej struct iop_softc *iop;
301 1.3.4.2 thorpej u_int v;
302 1.3.4.2 thorpej
303 1.3.4.2 thorpej iop = (struct iop_softc *)sc->sc_dv.dv_parent;
304 1.3.4.2 thorpej
305 1.3.4.2 thorpej v = bus_space_read_1(iop->sc_iot, iop->sc_ioh, sc->sc_blinkled + 0);
306 1.3.4.2 thorpej if (v == 0xbc) {
307 1.3.4.2 thorpej v = bus_space_read_1(iop->sc_iot, iop->sc_ioh,
308 1.3.4.2 thorpej sc->sc_blinkled + 1);
309 1.3.4.2 thorpej return (v);
310 1.3.4.2 thorpej }
311 1.3.4.2 thorpej
312 1.3.4.2 thorpej return (-1);
313 1.3.4.2 thorpej }
314 1.3.4.2 thorpej
315 1.3.4.2 thorpej int
316 1.3.4.2 thorpej dpti_ctlrinfo(struct dpti_softc *sc, u_long cmd, caddr_t data)
317 1.3.4.2 thorpej {
318 1.3.4.2 thorpej struct dpt_ctlrinfo info;
319 1.3.4.2 thorpej struct iop_softc *iop;
320 1.3.4.2 thorpej int rv, i;
321 1.3.4.2 thorpej
322 1.3.4.2 thorpej iop = (struct iop_softc *)sc->sc_dv.dv_parent;
323 1.3.4.2 thorpej
324 1.3.4.2 thorpej memset(&info, 0, sizeof(info));
325 1.3.4.2 thorpej
326 1.3.4.2 thorpej info.length = sizeof(info) - sizeof(u_int16_t);
327 1.3.4.2 thorpej info.drvrHBAnum = sc->sc_dv.dv_unit;
328 1.3.4.2 thorpej info.baseAddr = iop->sc_memaddr;
329 1.3.4.2 thorpej if ((i = dpti_blinkled(sc)) == -1)
330 1.3.4.2 thorpej i = 0;
331 1.3.4.2 thorpej info.blinkState = i;
332 1.3.4.2 thorpej info.pciBusNum = iop->sc_pcibus;
333 1.3.4.2 thorpej info.pciDeviceNum = iop->sc_pcidev;
334 1.3.4.2 thorpej info.hbaFlags = FLG_OSD_PCI_VALID | FLG_OSD_DMA | FLG_OSD_I2O;
335 1.3.4.2 thorpej info.Interrupt = 10; /* XXX */
336 1.3.4.2 thorpej
337 1.3.4.2 thorpej if (IOCPARM_LEN(cmd) > sizeof(*data)) {
338 1.3.4.2 thorpej memcpy(data, &info, min(sizeof(info), IOCPARM_LEN(cmd)));
339 1.3.4.2 thorpej rv = 0;
340 1.3.4.2 thorpej } else
341 1.3.4.2 thorpej rv = copyout(&info, *(caddr_t *)data, sizeof(info));
342 1.3.4.2 thorpej
343 1.3.4.2 thorpej return (rv);
344 1.3.4.2 thorpej }
345 1.3.4.2 thorpej
346 1.3.4.2 thorpej int
347 1.3.4.2 thorpej dpti_sysinfo(struct dpti_softc *sc, u_long cmd, caddr_t data)
348 1.3.4.2 thorpej {
349 1.3.4.2 thorpej struct dpt_sysinfo info;
350 1.3.4.2 thorpej int rv;
351 1.3.4.2 thorpej #ifdef i386
352 1.3.4.2 thorpej int i, j;
353 1.3.4.2 thorpej #endif
354 1.3.4.2 thorpej
355 1.3.4.2 thorpej memset(&info, 0, sizeof(info));
356 1.3.4.2 thorpej
357 1.3.4.2 thorpej #ifdef i386
358 1.3.4.2 thorpej outb (0x70, 0x12);
359 1.3.4.2 thorpej i = inb(0x71);
360 1.3.4.2 thorpej j = i >> 4;
361 1.3.4.2 thorpej if (i == 0x0f) {
362 1.3.4.2 thorpej outb (0x70, 0x19);
363 1.3.4.2 thorpej j = inb (0x71);
364 1.3.4.2 thorpej }
365 1.3.4.2 thorpej info.drive0CMOS = j;
366 1.3.4.2 thorpej
367 1.3.4.2 thorpej j = i & 0x0f;
368 1.3.4.2 thorpej if (i == 0x0f) {
369 1.3.4.2 thorpej outb (0x70, 0x1a);
370 1.3.4.2 thorpej j = inb (0x71);
371 1.3.4.2 thorpej }
372 1.3.4.2 thorpej info.drive1CMOS = j;
373 1.3.4.2 thorpej info.processorFamily = dpti_sig.dsProcessorFamily;
374 1.3.4.2 thorpej
375 1.3.4.2 thorpej /*
376 1.3.4.2 thorpej * Get the conventional memory size from CMOS.
377 1.3.4.2 thorpej */
378 1.3.4.2 thorpej outb(0x70, 0x16);
379 1.3.4.2 thorpej j = inb(0x71);
380 1.3.4.2 thorpej j <<= 8;
381 1.3.4.2 thorpej outb(0x70, 0x15);
382 1.3.4.2 thorpej j |= inb(0x71);
383 1.3.4.2 thorpej info.conventionalMemSize = j;
384 1.3.4.2 thorpej
385 1.3.4.2 thorpej /*
386 1.3.4.2 thorpej * Get the extended memory size from CMOS.
387 1.3.4.2 thorpej */
388 1.3.4.2 thorpej outb(0x70, 0x31);
389 1.3.4.2 thorpej j = inb(0x71);
390 1.3.4.2 thorpej j <<= 8;
391 1.3.4.2 thorpej outb(0x70, 0x30);
392 1.3.4.2 thorpej j |= inb(0x71);
393 1.3.4.2 thorpej info.extendedMemSize = j;
394 1.3.4.2 thorpej
395 1.3.4.2 thorpej switch (cpu_class) {
396 1.3.4.2 thorpej case CPUCLASS_386:
397 1.3.4.2 thorpej info.processorType = PROC_386;
398 1.3.4.2 thorpej break;
399 1.3.4.2 thorpej case CPUCLASS_486:
400 1.3.4.2 thorpej info.processorType = PROC_486;
401 1.3.4.2 thorpej break;
402 1.3.4.2 thorpej case CPUCLASS_586:
403 1.3.4.2 thorpej info.processorType = PROC_PENTIUM;
404 1.3.4.2 thorpej break;
405 1.3.4.2 thorpej case CPUCLASS_686:
406 1.3.4.2 thorpej default:
407 1.3.4.2 thorpej info.processorType = PROC_SEXIUM;
408 1.3.4.2 thorpej break;
409 1.3.4.2 thorpej }
410 1.3.4.2 thorpej
411 1.3.4.2 thorpej info.flags = SI_CMOS_Valid | SI_BusTypeValid |
412 1.3.4.2 thorpej SI_MemorySizeValid | SI_NO_SmartROM;
413 1.3.4.2 thorpej #else
414 1.3.4.2 thorpej info.flags = SI_BusTypeValid | SI_NO_SmartROM;
415 1.3.4.2 thorpej #endif
416 1.3.4.2 thorpej
417 1.3.4.2 thorpej info.busType = SI_PCI_BUS;
418 1.3.4.2 thorpej
419 1.3.4.2 thorpej /*
420 1.3.4.2 thorpej * Copy out the info structure to the user.
421 1.3.4.2 thorpej */
422 1.3.4.2 thorpej if (IOCPARM_LEN(cmd) > sizeof(*data)) {
423 1.3.4.2 thorpej memcpy(data, &info, min(sizeof(info), IOCPARM_LEN(cmd)));
424 1.3.4.2 thorpej rv = 0;
425 1.3.4.2 thorpej } else
426 1.3.4.2 thorpej rv = copyout(&info, *(caddr_t *)data, sizeof(info));
427 1.3.4.2 thorpej
428 1.3.4.2 thorpej return (rv);
429 1.3.4.2 thorpej }
430 1.3.4.2 thorpej
431 1.3.4.2 thorpej int
432 1.3.4.2 thorpej dpti_passthrough(struct dpti_softc *sc, caddr_t data, struct proc *proc)
433 1.3.4.2 thorpej {
434 1.3.4.2 thorpej struct iop_softc *iop;
435 1.3.4.2 thorpej struct i2o_msg mh, *mf;
436 1.3.4.2 thorpej struct i2o_reply rh;
437 1.3.4.2 thorpej struct iop_msg *im;
438 1.3.4.2 thorpej struct dpti_ptbuf bufs[IOP_MAX_MSG_XFERS];
439 1.3.4.2 thorpej u_int32_t mbtmp[IOP_MAX_MSG_SIZE / sizeof(u_int32_t)];
440 1.3.4.2 thorpej u_int32_t rbtmp[IOP_MAX_MSG_SIZE / sizeof(u_int32_t)];
441 1.3.4.2 thorpej int rv, msgsize, repsize, sgoff, i, mapped, nbuf, nfrag, j, sz;
442 1.3.4.2 thorpej u_int32_t *p, *pmax, *pstart;
443 1.3.4.2 thorpej
444 1.3.4.2 thorpej iop = (struct iop_softc *)sc->sc_dv.dv_parent;
445 1.3.4.2 thorpej im = NULL;
446 1.3.4.2 thorpej
447 1.3.4.2 thorpej if ((rv = dpti_blinkled(sc)) != -1) {
448 1.3.4.2 thorpej if (rv != 0) {
449 1.3.4.2 thorpej printf("%s: adapter blinkled = 0x%02x\n",
450 1.3.4.2 thorpej sc->sc_dv.dv_xname, rv);
451 1.3.4.2 thorpej return (EIO);
452 1.3.4.2 thorpej }
453 1.3.4.2 thorpej }
454 1.3.4.2 thorpej
455 1.3.4.2 thorpej /*
456 1.3.4.2 thorpej * Copy in the message frame header and determine the size of the
457 1.3.4.2 thorpej * full message frame.
458 1.3.4.2 thorpej */
459 1.3.4.2 thorpej if ((rv = copyin(data, &mh, sizeof(mh))) != 0) {
460 1.3.4.2 thorpej DPRINTF(("%s: message copyin failed\n",
461 1.3.4.2 thorpej sc->sc_dv.dv_xname));
462 1.3.4.2 thorpej return (rv);
463 1.3.4.2 thorpej }
464 1.3.4.2 thorpej
465 1.3.4.2 thorpej msgsize = (mh.msgflags >> 14) & ~3;
466 1.3.4.2 thorpej if (msgsize < sizeof(mh) || msgsize >= IOP_MAX_MSG_SIZE) {
467 1.3.4.2 thorpej DPRINTF(("%s: bad message frame size\n",
468 1.3.4.2 thorpej sc->sc_dv.dv_xname));
469 1.3.4.2 thorpej return (EINVAL);
470 1.3.4.2 thorpej }
471 1.3.4.2 thorpej
472 1.3.4.2 thorpej /*
473 1.3.4.2 thorpej * Handle special commands.
474 1.3.4.2 thorpej */
475 1.3.4.2 thorpej switch (mh.msgfunc >> 24) {
476 1.3.4.2 thorpej case I2O_EXEC_IOP_RESET:
477 1.3.4.2 thorpej printf("%s: I2O_EXEC_IOP_RESET not implemented\n",
478 1.3.4.2 thorpej sc->sc_dv.dv_xname);
479 1.3.4.2 thorpej return (EOPNOTSUPP);
480 1.3.4.2 thorpej
481 1.3.4.2 thorpej case I2O_EXEC_OUTBOUND_INIT:
482 1.3.4.2 thorpej printf("%s: I2O_EXEC_OUTBOUND_INIT not implemented\n",
483 1.3.4.2 thorpej sc->sc_dv.dv_xname);
484 1.3.4.2 thorpej return (EOPNOTSUPP);
485 1.3.4.2 thorpej
486 1.3.4.2 thorpej case I2O_EXEC_SYS_TAB_SET:
487 1.3.4.2 thorpej printf("%s: I2O_EXEC_SYS_TAB_SET not implemented\n",
488 1.3.4.2 thorpej sc->sc_dv.dv_xname);
489 1.3.4.2 thorpej return (EOPNOTSUPP);
490 1.3.4.2 thorpej
491 1.3.4.2 thorpej case I2O_EXEC_STATUS_GET:
492 1.3.4.2 thorpej if ((rv = iop_status_get(iop, 0)) == 0)
493 1.3.4.2 thorpej rv = copyout(&iop->sc_status, data + msgsize,
494 1.3.4.2 thorpej sizeof(iop->sc_status));
495 1.3.4.2 thorpej return (rv);
496 1.3.4.2 thorpej }
497 1.3.4.2 thorpej
498 1.3.4.2 thorpej /*
499 1.3.4.2 thorpej * Copy in the full message frame.
500 1.3.4.2 thorpej */
501 1.3.4.2 thorpej if ((rv = copyin(data, mbtmp, msgsize)) != 0) {
502 1.3.4.2 thorpej DPRINTF(("%s: full message copyin failed\n",
503 1.3.4.2 thorpej sc->sc_dv.dv_xname));
504 1.3.4.2 thorpej return (rv);
505 1.3.4.2 thorpej }
506 1.3.4.2 thorpej
507 1.3.4.2 thorpej /*
508 1.3.4.2 thorpej * Determine the size of the reply frame, and copy it in.
509 1.3.4.2 thorpej */
510 1.3.4.2 thorpej if ((rv = copyin(data + msgsize, &rh, sizeof(rh))) != 0) {
511 1.3.4.2 thorpej DPRINTF(("%s: reply copyin failed\n",
512 1.3.4.2 thorpej sc->sc_dv.dv_xname));
513 1.3.4.2 thorpej return (rv);
514 1.3.4.2 thorpej }
515 1.3.4.2 thorpej
516 1.3.4.2 thorpej repsize = (rh.msgflags >> 14) & ~3;
517 1.3.4.2 thorpej if (repsize < sizeof(rh) || repsize >= IOP_MAX_MSG_SIZE) {
518 1.3.4.2 thorpej DPRINTF(("%s: bad reply header size\n",
519 1.3.4.2 thorpej sc->sc_dv.dv_xname));
520 1.3.4.2 thorpej return (EINVAL);
521 1.3.4.2 thorpej }
522 1.3.4.2 thorpej
523 1.3.4.2 thorpej if ((rv = copyin(data + msgsize, rbtmp, repsize)) != 0) {
524 1.3.4.2 thorpej DPRINTF(("%s: reply too large\n", sc->sc_dv.dv_xname));
525 1.3.4.2 thorpej return (rv);
526 1.3.4.2 thorpej }
527 1.3.4.2 thorpej
528 1.3.4.2 thorpej /*
529 1.3.4.2 thorpej * If the message has a scatter gather list, it must be comprised of
530 1.3.4.2 thorpej * simple elements. If any one transfer contains multiple segments,
531 1.3.4.2 thorpej * we allocate a temporary buffer for it; otherwise, the buffer will
532 1.3.4.2 thorpej * be mapped directly.
533 1.3.4.2 thorpej */
534 1.3.4.2 thorpej if ((sgoff = ((mh.msgflags >> 4) & 15)) != 0) {
535 1.3.4.2 thorpej if ((sgoff + 2) > (msgsize >> 2)) {
536 1.3.4.2 thorpej DPRINTF(("%s: invalid message size fields\n",
537 1.3.4.2 thorpej sc->sc_dv.dv_xname));
538 1.3.4.2 thorpej return (EINVAL);
539 1.3.4.2 thorpej }
540 1.3.4.2 thorpej
541 1.3.4.2 thorpej memset(bufs, 0, sizeof(bufs));
542 1.3.4.2 thorpej } else
543 1.3.4.2 thorpej nbuf = -1;
544 1.3.4.2 thorpej
545 1.3.4.2 thorpej rv = EINVAL;
546 1.3.4.2 thorpej
547 1.3.4.2 thorpej if (sgoff != 0) {
548 1.3.4.2 thorpej p = mbtmp + sgoff;
549 1.3.4.2 thorpej pmax = mbtmp + (msgsize >> 2) - 2;
550 1.3.4.2 thorpej
551 1.3.4.2 thorpej for (nbuf = 0; nbuf < IOP_MAX_MSG_XFERS; nbuf++, p += 2) {
552 1.3.4.2 thorpej if (p > pmax) {
553 1.3.4.2 thorpej DPRINTF(("%s: invalid SGL (1)\n",
554 1.3.4.2 thorpej sc->sc_dv.dv_xname));
555 1.3.4.2 thorpej goto bad;
556 1.3.4.2 thorpej }
557 1.3.4.2 thorpej
558 1.3.4.2 thorpej if ((p[0] & 0x30000000) != I2O_SGL_SIMPLE) {
559 1.3.4.2 thorpej DPRINTF(("%s: invalid SGL (2)\n",
560 1.3.4.2 thorpej sc->sc_dv.dv_xname));
561 1.3.4.2 thorpej goto bad;
562 1.3.4.2 thorpej }
563 1.3.4.2 thorpej
564 1.3.4.2 thorpej bufs[nbuf].db_out = (p[0] & I2O_SGL_DATA_OUT) != 0;
565 1.3.4.2 thorpej bufs[nbuf].db_ptr = NULL;
566 1.3.4.2 thorpej
567 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END_BUFFER) != 0) {
568 1.3.4.2 thorpej if ((p[0] & 0x00ffffff) > IOP_MAX_XFER) {
569 1.3.4.2 thorpej DPRINTF(("%s: buffer too large\n",
570 1.3.4.2 thorpej sc->sc_dv.dv_xname));
571 1.3.4.2 thorpej goto bad;
572 1.3.4.2 thorpej }
573 1.3.4.2 thorpej
574 1.3.4.2 thorpej bufs[nbuf].db_ptr = (caddr_t)p[1];
575 1.3.4.2 thorpej bufs[nbuf].db_proc = proc;
576 1.3.4.2 thorpej bufs[nbuf].db_size = p[0] & 0x00ffffff;
577 1.3.4.2 thorpej
578 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END) != 0)
579 1.3.4.2 thorpej break;
580 1.3.4.2 thorpej
581 1.3.4.2 thorpej continue;
582 1.3.4.2 thorpej }
583 1.3.4.2 thorpej
584 1.3.4.2 thorpej /*
585 1.3.4.2 thorpej * The buffer has multiple segments. Determine the
586 1.3.4.2 thorpej * total size.
587 1.3.4.2 thorpej */
588 1.3.4.2 thorpej nfrag = 0;
589 1.3.4.2 thorpej sz = 0;
590 1.3.4.2 thorpej for (pstart = p; p <= pmax; p += 2) {
591 1.3.4.2 thorpej if (nfrag == DPTI_MAX_SEGS) {
592 1.3.4.2 thorpej DPRINTF(("%s: too many segments\n",
593 1.3.4.2 thorpej sc->sc_dv.dv_xname));
594 1.3.4.2 thorpej goto bad;
595 1.3.4.2 thorpej }
596 1.3.4.2 thorpej
597 1.3.4.2 thorpej bufs[nbuf].db_frags[nfrag].iov_len =
598 1.3.4.2 thorpej p[0] & 0x00ffffff;
599 1.3.4.2 thorpej bufs[nbuf].db_frags[nfrag].iov_base =
600 1.3.4.2 thorpej (void *)p[1];
601 1.3.4.2 thorpej
602 1.3.4.2 thorpej sz += p[0] & 0x00ffffff;
603 1.3.4.2 thorpej nfrag++;
604 1.3.4.2 thorpej
605 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END) != 0) {
606 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END_BUFFER) == 0) {
607 1.3.4.2 thorpej DPRINTF((
608 1.3.4.2 thorpej "%s: invalid SGL (3)\n",
609 1.3.4.2 thorpej sc->sc_dv.dv_xname));
610 1.3.4.2 thorpej goto bad;
611 1.3.4.2 thorpej }
612 1.3.4.2 thorpej break;
613 1.3.4.2 thorpej }
614 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END_BUFFER) != 0)
615 1.3.4.2 thorpej break;
616 1.3.4.2 thorpej }
617 1.3.4.2 thorpej bufs[nbuf].db_nfrag = nfrag;
618 1.3.4.2 thorpej
619 1.3.4.2 thorpej if (p > pmax) {
620 1.3.4.2 thorpej DPRINTF(("%s: invalid SGL (4)\n",
621 1.3.4.2 thorpej sc->sc_dv.dv_xname));
622 1.3.4.2 thorpej goto bad;
623 1.3.4.2 thorpej }
624 1.3.4.2 thorpej
625 1.3.4.2 thorpej if (sz > IOP_MAX_XFER) {
626 1.3.4.2 thorpej DPRINTF(("%s: buffer too large\n",
627 1.3.4.2 thorpej sc->sc_dv.dv_xname));
628 1.3.4.2 thorpej goto bad;
629 1.3.4.2 thorpej }
630 1.3.4.2 thorpej
631 1.3.4.2 thorpej bufs[nbuf].db_size = sz;
632 1.3.4.2 thorpej bufs[nbuf].db_ptr = malloc(sz, M_DEVBUF, M_WAITOK);
633 1.3.4.2 thorpej if (bufs[nbuf].db_ptr == NULL) {
634 1.3.4.2 thorpej DPRINTF(("%s: allocation failure\n",
635 1.3.4.2 thorpej sc->sc_dv.dv_xname));
636 1.3.4.2 thorpej rv = ENOMEM;
637 1.3.4.2 thorpej goto bad;
638 1.3.4.2 thorpej }
639 1.3.4.2 thorpej
640 1.3.4.2 thorpej for (i = 0, sz = 0; i < bufs[nbuf].db_nfrag; i++) {
641 1.3.4.2 thorpej rv = copyin(bufs[nbuf].db_frags[i].iov_base,
642 1.3.4.2 thorpej bufs[nbuf].db_ptr + sz,
643 1.3.4.2 thorpej bufs[nbuf].db_frags[i].iov_len);
644 1.3.4.2 thorpej if (rv != 0) {
645 1.3.4.2 thorpej DPRINTF(("%s: frag copyin\n",
646 1.3.4.2 thorpej sc->sc_dv.dv_xname));
647 1.3.4.2 thorpej goto bad;
648 1.3.4.2 thorpej }
649 1.3.4.2 thorpej sz += bufs[nbuf].db_frags[i].iov_len;
650 1.3.4.2 thorpej }
651 1.3.4.2 thorpej
652 1.3.4.2 thorpej if ((p[0] & I2O_SGL_END) != 0)
653 1.3.4.2 thorpej break;
654 1.3.4.2 thorpej }
655 1.3.4.2 thorpej
656 1.3.4.2 thorpej if (nbuf == IOP_MAX_MSG_XFERS) {
657 1.3.4.2 thorpej DPRINTF(("%s: too many transfers\n",
658 1.3.4.2 thorpej sc->sc_dv.dv_xname));
659 1.3.4.2 thorpej goto bad;
660 1.3.4.2 thorpej }
661 1.3.4.2 thorpej }
662 1.3.4.2 thorpej
663 1.3.4.2 thorpej /*
664 1.3.4.2 thorpej * Allocate a wrapper, and adjust the message header fields to
665 1.3.4.2 thorpej * indicate that no scatter-gather list is currently present.
666 1.3.4.2 thorpej */
667 1.3.4.2 thorpej mapped = 0;
668 1.3.4.2 thorpej
669 1.3.4.2 thorpej im = iop_msg_alloc(iop, IM_WAIT | IM_NOSTATUS);
670 1.3.4.2 thorpej im->im_rb = (struct i2o_reply *)rbtmp;
671 1.3.4.2 thorpej mf = (struct i2o_msg *)mbtmp;
672 1.3.4.2 thorpej mf->msgictx = IOP_ICTX;
673 1.3.4.2 thorpej mf->msgtctx = im->im_tctx;
674 1.3.4.2 thorpej
675 1.3.4.2 thorpej if (sgoff != 0)
676 1.3.4.2 thorpej mf->msgflags = (mf->msgflags & 0xff0f) | (sgoff << 16);
677 1.3.4.2 thorpej
678 1.3.4.2 thorpej /*
679 1.3.4.2 thorpej * Map the data transfer(s).
680 1.3.4.2 thorpej */
681 1.3.4.2 thorpej for (i = 0; i <= nbuf; i++) {
682 1.3.4.2 thorpej rv = iop_msg_map(iop, im, mbtmp, bufs[i].db_ptr,
683 1.3.4.2 thorpej bufs[i].db_size, bufs[i].db_out, bufs[i].db_proc);
684 1.3.4.2 thorpej if (rv != 0) {
685 1.3.4.2 thorpej DPRINTF(("%s: msg_map failed, rv = %d\n",
686 1.3.4.2 thorpej sc->sc_dv.dv_xname, rv));
687 1.3.4.2 thorpej goto bad;
688 1.3.4.2 thorpej }
689 1.3.4.2 thorpej mapped = 1;
690 1.3.4.2 thorpej }
691 1.3.4.2 thorpej
692 1.3.4.2 thorpej /*
693 1.3.4.2 thorpej * Start the command and sleep until it completes.
694 1.3.4.2 thorpej */
695 1.3.4.2 thorpej if ((rv = iop_msg_post(iop, im, mbtmp, 5*60*1000)) != 0)
696 1.3.4.2 thorpej goto bad;
697 1.3.4.2 thorpej
698 1.3.4.2 thorpej /*
699 1.3.4.2 thorpej * Copy out the reply frame.
700 1.3.4.2 thorpej */
701 1.3.4.2 thorpej if ((rv = copyout(rbtmp, data + msgsize, repsize)) != 0)
702 1.3.4.2 thorpej DPRINTF(("%s: reply copyout() failed\n",
703 1.3.4.2 thorpej sc->sc_dv.dv_xname));
704 1.3.4.2 thorpej
705 1.3.4.2 thorpej bad:
706 1.3.4.2 thorpej /*
707 1.3.4.2 thorpej * Free resources and return to the caller.
708 1.3.4.2 thorpej */
709 1.3.4.2 thorpej if (im != NULL) {
710 1.3.4.2 thorpej if (mapped)
711 1.3.4.2 thorpej iop_msg_unmap(iop, im);
712 1.3.4.2 thorpej iop_msg_free(iop, im);
713 1.3.4.2 thorpej }
714 1.3.4.2 thorpej
715 1.3.4.2 thorpej for (i = 0; i <= nbuf; i++) {
716 1.3.4.2 thorpej if (bufs[i].db_proc != NULL)
717 1.3.4.2 thorpej continue;
718 1.3.4.2 thorpej
719 1.3.4.2 thorpej if (!bufs[i].db_out && rv == 0) {
720 1.3.4.2 thorpej for (j = 0, sz = 0; j < bufs[i].db_nfrag; j++) {
721 1.3.4.2 thorpej rv = copyout(bufs[i].db_ptr + sz,
722 1.3.4.2 thorpej bufs[i].db_frags[j].iov_base,
723 1.3.4.2 thorpej bufs[i].db_frags[j].iov_len);
724 1.3.4.2 thorpej if (rv != 0)
725 1.3.4.2 thorpej break;
726 1.3.4.2 thorpej sz += bufs[i].db_frags[j].iov_len;
727 1.3.4.2 thorpej }
728 1.3.4.2 thorpej }
729 1.3.4.2 thorpej
730 1.3.4.2 thorpej if (bufs[i].db_ptr != NULL)
731 1.3.4.2 thorpej free(bufs[i].db_ptr, M_DEVBUF);
732 1.3.4.2 thorpej }
733 1.3.4.2 thorpej
734 1.3.4.2 thorpej return (rv);
735 1.3.4.2 thorpej }
736