wds.c revision 1.36 1 1.36 thorpej /* $NetBSD: wds.c,v 1.36 1998/11/19 21:53:32 thorpej Exp $ */
2 1.34 jonathan
3 1.34 jonathan #include "opt_ddb.h"
4 1.1 mycroft
5 1.8 mycroft #undef WDSDIAG
6 1.8 mycroft #ifdef DDB
7 1.1 mycroft #define integrate
8 1.8 mycroft #else
9 1.8 mycroft #define integrate static inline
10 1.8 mycroft #endif
11 1.1 mycroft
12 1.1 mycroft /*
13 1.1 mycroft * XXX
14 1.1 mycroft * sense data
15 1.1 mycroft * aborts
16 1.1 mycroft * resets
17 1.1 mycroft */
18 1.1 mycroft
19 1.19 thorpej /*-
20 1.30 thorpej * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
21 1.19 thorpej * All rights reserved.
22 1.19 thorpej *
23 1.19 thorpej * This code is derived from software contributed to The NetBSD Foundation
24 1.19 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
25 1.19 thorpej * NASA Ames Research Center.
26 1.19 thorpej *
27 1.19 thorpej * Redistribution and use in source and binary forms, with or without
28 1.19 thorpej * modification, are permitted provided that the following conditions
29 1.19 thorpej * are met:
30 1.19 thorpej * 1. Redistributions of source code must retain the above copyright
31 1.19 thorpej * notice, this list of conditions and the following disclaimer.
32 1.19 thorpej * 2. Redistributions in binary form must reproduce the above copyright
33 1.19 thorpej * notice, this list of conditions and the following disclaimer in the
34 1.19 thorpej * documentation and/or other materials provided with the distribution.
35 1.19 thorpej * 3. All advertising materials mentioning features or use of this software
36 1.19 thorpej * must display the following acknowledgement:
37 1.19 thorpej * This product includes software developed by the NetBSD
38 1.19 thorpej * Foundation, Inc. and its contributors.
39 1.19 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
40 1.19 thorpej * contributors may be used to endorse or promote products derived
41 1.19 thorpej * from this software without specific prior written permission.
42 1.19 thorpej *
43 1.19 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
44 1.19 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
45 1.19 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
46 1.19 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
47 1.19 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
48 1.19 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
49 1.19 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
50 1.19 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
51 1.19 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
52 1.19 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
53 1.19 thorpej * POSSIBILITY OF SUCH DAMAGE.
54 1.19 thorpej */
55 1.19 thorpej
56 1.1 mycroft /*
57 1.1 mycroft * Copyright (c) 1994, 1995 Julian Highfield. All rights reserved.
58 1.15 mycroft * Portions copyright (c) 1994, 1996, 1997
59 1.15 mycroft * Charles M. Hannum. All rights reserved.
60 1.1 mycroft *
61 1.1 mycroft * Redistribution and use in source and binary forms, with or without
62 1.1 mycroft * modification, are permitted provided that the following conditions
63 1.1 mycroft * are met:
64 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
65 1.1 mycroft * notice, this list of conditions and the following disclaimer.
66 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
67 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
68 1.1 mycroft * documentation and/or other materials provided with the distribution.
69 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
70 1.1 mycroft * must display the following acknowledgement:
71 1.1 mycroft * This product includes software developed by Julian Highfield.
72 1.1 mycroft * 4. The name of the author may not be used to endorse or promote products
73 1.1 mycroft * derived from this software without specific prior written permission.
74 1.1 mycroft *
75 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
76 1.1 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
77 1.1 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
78 1.1 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
79 1.1 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
80 1.1 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
81 1.1 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
82 1.1 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
83 1.1 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
84 1.1 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
85 1.1 mycroft */
86 1.1 mycroft
87 1.1 mycroft /*
88 1.1 mycroft * This driver is for the WD7000 family of SCSI controllers:
89 1.1 mycroft * the WD7000-ASC, a bus-mastering DMA controller,
90 1.1 mycroft * the WD7000-FASST2, an -ASC with new firmware and scatter-gather,
91 1.1 mycroft * and the WD7000-ASE, which was custom manufactured for Apollo
92 1.1 mycroft * workstations and seems to include an -ASC as well as floppy
93 1.1 mycroft * and ESDI interfaces.
94 1.1 mycroft *
95 1.1 mycroft * Loosely based on Theo Deraadt's unfinished attempt.
96 1.1 mycroft */
97 1.1 mycroft
98 1.1 mycroft #include <sys/types.h>
99 1.1 mycroft #include <sys/param.h>
100 1.1 mycroft #include <sys/systm.h>
101 1.1 mycroft #include <sys/kernel.h>
102 1.1 mycroft #include <sys/errno.h>
103 1.1 mycroft #include <sys/ioctl.h>
104 1.1 mycroft #include <sys/device.h>
105 1.1 mycroft #include <sys/malloc.h>
106 1.1 mycroft #include <sys/buf.h>
107 1.1 mycroft #include <sys/proc.h>
108 1.1 mycroft #include <sys/user.h>
109 1.1 mycroft
110 1.19 thorpej #include <machine/bus.h>
111 1.7 mycroft #include <machine/intr.h>
112 1.1 mycroft
113 1.18 bouyer #include <dev/scsipi/scsi_all.h>
114 1.18 bouyer #include <dev/scsipi/scsipi_all.h>
115 1.18 bouyer #include <dev/scsipi/scsiconf.h>
116 1.1 mycroft
117 1.1 mycroft #include <dev/isa/isavar.h>
118 1.1 mycroft #include <dev/isa/isadmavar.h>
119 1.15 mycroft
120 1.1 mycroft #include <dev/isa/wdsreg.h>
121 1.3 cgd
122 1.15 mycroft #define WDS_ISA_IOSIZE 8
123 1.15 mycroft
124 1.3 cgd #ifndef DDB
125 1.3 cgd #define Debugger() panic("should call debugger here (wds.c)")
126 1.3 cgd #endif /* ! DDB */
127 1.1 mycroft
128 1.19 thorpej #define WDS_MAXXFER ((WDS_NSEG - 1) << PGSHIFT)
129 1.19 thorpej
130 1.1 mycroft #define WDS_MBX_SIZE 16
131 1.1 mycroft
132 1.1 mycroft #define WDS_SCB_MAX 32
133 1.1 mycroft #define SCB_HASH_SIZE 32 /* hash table size for phystokv */
134 1.1 mycroft #define SCB_HASH_SHIFT 9
135 1.1 mycroft #define SCB_HASH(x) ((((long)(x))>>SCB_HASH_SHIFT) & (SCB_HASH_SIZE - 1))
136 1.1 mycroft
137 1.1 mycroft #define wds_nextmbx(wmb, mbx, mbio) \
138 1.1 mycroft if ((wmb) == &(mbx)->mbio[WDS_MBX_SIZE - 1]) \
139 1.1 mycroft (wmb) = &(mbx)->mbio[0]; \
140 1.1 mycroft else \
141 1.1 mycroft (wmb)++;
142 1.1 mycroft
143 1.1 mycroft struct wds_mbx {
144 1.1 mycroft struct wds_mbx_out mbo[WDS_MBX_SIZE];
145 1.1 mycroft struct wds_mbx_in mbi[WDS_MBX_SIZE];
146 1.1 mycroft struct wds_mbx_out *cmbo; /* Collection Mail Box out */
147 1.1 mycroft struct wds_mbx_out *tmbo; /* Target Mail Box out */
148 1.1 mycroft struct wds_mbx_in *tmbi; /* Target Mail Box in */
149 1.1 mycroft };
150 1.1 mycroft
151 1.1 mycroft struct wds_softc {
152 1.1 mycroft struct device sc_dev;
153 1.15 mycroft
154 1.15 mycroft bus_space_tag_t sc_iot;
155 1.15 mycroft bus_space_handle_t sc_ioh;
156 1.19 thorpej bus_dma_tag_t sc_dmat;
157 1.19 thorpej bus_dmamap_t sc_dmamap_mbox; /* maps the mailbox */
158 1.1 mycroft void *sc_ih;
159 1.1 mycroft
160 1.19 thorpej struct wds_mbx *sc_mbx;
161 1.19 thorpej #define wmbx (sc->sc_mbx)
162 1.1 mycroft struct wds_scb *sc_scbhash[SCB_HASH_SIZE];
163 1.1 mycroft TAILQ_HEAD(, wds_scb) sc_free_scb, sc_waiting_scb;
164 1.1 mycroft int sc_numscbs, sc_mbofull;
165 1.18 bouyer struct scsipi_link sc_link; /* prototype for subdevs */
166 1.36 thorpej struct scsipi_adapter sc_adapter;
167 1.15 mycroft
168 1.25 thorpej LIST_HEAD(, scsipi_xfer) sc_queue;
169 1.25 thorpej struct scsipi_xfer *sc_queuelast;
170 1.25 thorpej
171 1.15 mycroft int sc_revision;
172 1.19 thorpej int sc_maxsegs;
173 1.15 mycroft };
174 1.15 mycroft
175 1.15 mycroft struct wds_probe_data {
176 1.15 mycroft #ifdef notyet
177 1.15 mycroft int sc_irq, sc_drq;
178 1.15 mycroft #endif
179 1.1 mycroft int sc_scsi_dev;
180 1.1 mycroft };
181 1.1 mycroft
182 1.15 mycroft integrate void
183 1.15 mycroft wds_wait __P((bus_space_tag_t, bus_space_handle_t, int, int, int));
184 1.15 mycroft int wds_cmd __P((bus_space_tag_t, bus_space_handle_t, u_char *, int));
185 1.1 mycroft integrate void wds_finish_scbs __P((struct wds_softc *));
186 1.1 mycroft int wdsintr __P((void *));
187 1.1 mycroft integrate void wds_reset_scb __P((struct wds_softc *, struct wds_scb *));
188 1.1 mycroft void wds_free_scb __P((struct wds_softc *, struct wds_scb *));
189 1.24 thorpej integrate int wds_init_scb __P((struct wds_softc *, struct wds_scb *));
190 1.19 thorpej struct wds_scb *wds_get_scb __P((struct wds_softc *, int));
191 1.1 mycroft struct wds_scb *wds_scb_phys_kv __P((struct wds_softc *, u_long));
192 1.1 mycroft void wds_queue_scb __P((struct wds_softc *, struct wds_scb *));
193 1.1 mycroft void wds_collect_mbo __P((struct wds_softc *));
194 1.1 mycroft void wds_start_scbs __P((struct wds_softc *));
195 1.1 mycroft void wds_done __P((struct wds_softc *, struct wds_scb *, u_char));
196 1.15 mycroft int wds_find __P((bus_space_tag_t, bus_space_handle_t, struct wds_probe_data *));
197 1.15 mycroft void wds_attach __P((struct wds_softc *, struct wds_probe_data *));
198 1.19 thorpej void wds_init __P((struct wds_softc *, int));
199 1.1 mycroft void wds_inquire_setup_information __P((struct wds_softc *));
200 1.1 mycroft void wdsminphys __P((struct buf *));
201 1.18 bouyer int wds_scsi_cmd __P((struct scsipi_xfer *));
202 1.2 mycroft void wds_sense __P((struct wds_softc *, struct wds_scb *));
203 1.18 bouyer int wds_poll __P((struct wds_softc *, struct scsipi_xfer *, int));
204 1.1 mycroft int wds_ipoll __P((struct wds_softc *, struct wds_scb *, int));
205 1.1 mycroft void wds_timeout __P((void *));
206 1.19 thorpej int wds_create_scbs __P((struct wds_softc *, void *, size_t));
207 1.25 thorpej void wds_enqueue __P((struct wds_softc *, struct scsipi_xfer *, int));
208 1.25 thorpej struct scsipi_xfer *wds_dequeue __P((struct wds_softc *));
209 1.1 mycroft
210 1.1 mycroft /* the below structure is so we have a default dev struct for our link struct */
211 1.18 bouyer struct scsipi_device wds_dev = {
212 1.1 mycroft NULL, /* Use default error handler */
213 1.1 mycroft NULL, /* have a queue, served by this */
214 1.1 mycroft NULL, /* have no async handler */
215 1.1 mycroft NULL, /* Use default 'done' routine */
216 1.1 mycroft };
217 1.1 mycroft
218 1.26 drochner int wdsprobe __P((struct device *, struct cfdata *, void *));
219 1.1 mycroft void wdsattach __P((struct device *, struct device *, void *));
220 1.1 mycroft
221 1.1 mycroft struct cfattach wds_ca = {
222 1.1 mycroft sizeof(struct wds_softc), wdsprobe, wdsattach
223 1.1 mycroft };
224 1.1 mycroft
225 1.1 mycroft #define WDS_ABORT_TIMEOUT 2000 /* time to wait for abort (mSec) */
226 1.19 thorpej
227 1.25 thorpej /*
228 1.25 thorpej * Insert a scsipi_xfer into the software queue. We overload xs->free_list
229 1.25 thorpej * to avoid having to allocate additional resources (since we're used
230 1.25 thorpej * only during resource shortages anyhow.
231 1.25 thorpej */
232 1.25 thorpej void
233 1.25 thorpej wds_enqueue(sc, xs, infront)
234 1.25 thorpej struct wds_softc *sc;
235 1.25 thorpej struct scsipi_xfer *xs;
236 1.25 thorpej int infront;
237 1.25 thorpej {
238 1.25 thorpej
239 1.25 thorpej if (infront || sc->sc_queue.lh_first == NULL) {
240 1.25 thorpej if (sc->sc_queue.lh_first == NULL)
241 1.25 thorpej sc->sc_queuelast = xs;
242 1.25 thorpej LIST_INSERT_HEAD(&sc->sc_queue, xs, free_list);
243 1.25 thorpej return;
244 1.25 thorpej }
245 1.25 thorpej
246 1.25 thorpej LIST_INSERT_AFTER(sc->sc_queuelast, xs, free_list);
247 1.25 thorpej sc->sc_queuelast = xs;
248 1.25 thorpej }
249 1.25 thorpej
250 1.25 thorpej /*
251 1.25 thorpej * Pull a scsipi_xfer off the front of the software queue.
252 1.25 thorpej */
253 1.25 thorpej struct scsipi_xfer *
254 1.25 thorpej wds_dequeue(sc)
255 1.25 thorpej struct wds_softc *sc;
256 1.25 thorpej {
257 1.25 thorpej struct scsipi_xfer *xs;
258 1.25 thorpej
259 1.25 thorpej xs = sc->sc_queue.lh_first;
260 1.25 thorpej LIST_REMOVE(xs, free_list);
261 1.25 thorpej
262 1.25 thorpej if (sc->sc_queue.lh_first == NULL)
263 1.25 thorpej sc->sc_queuelast = NULL;
264 1.25 thorpej
265 1.25 thorpej return (xs);
266 1.25 thorpej }
267 1.25 thorpej
268 1.1 mycroft integrate void
269 1.15 mycroft wds_wait(iot, ioh, port, mask, val)
270 1.15 mycroft bus_space_tag_t iot;
271 1.15 mycroft bus_space_handle_t ioh;
272 1.1 mycroft int port;
273 1.15 mycroft int mask, val;
274 1.1 mycroft {
275 1.1 mycroft
276 1.15 mycroft while ((bus_space_read_1(iot, ioh, port) & mask) != val)
277 1.1 mycroft ;
278 1.1 mycroft }
279 1.1 mycroft
280 1.1 mycroft /*
281 1.1 mycroft * Write a command to the board's I/O ports.
282 1.1 mycroft */
283 1.1 mycroft int
284 1.15 mycroft wds_cmd(iot, ioh, ibuf, icnt)
285 1.15 mycroft bus_space_tag_t iot;
286 1.15 mycroft bus_space_handle_t ioh;
287 1.1 mycroft u_char *ibuf;
288 1.1 mycroft int icnt;
289 1.1 mycroft {
290 1.1 mycroft u_char c;
291 1.1 mycroft
292 1.15 mycroft wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
293 1.1 mycroft
294 1.1 mycroft while (icnt--) {
295 1.15 mycroft bus_space_write_1(iot, ioh, WDS_CMD, *ibuf++);
296 1.15 mycroft wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
297 1.15 mycroft c = bus_space_read_1(iot, ioh, WDS_STAT);
298 1.1 mycroft if (c & WDSS_REJ)
299 1.1 mycroft return 1;
300 1.1 mycroft }
301 1.1 mycroft
302 1.1 mycroft return 0;
303 1.1 mycroft }
304 1.1 mycroft
305 1.1 mycroft /*
306 1.1 mycroft * Check for the presence of a WD7000 SCSI controller.
307 1.1 mycroft */
308 1.1 mycroft int
309 1.1 mycroft wdsprobe(parent, match, aux)
310 1.1 mycroft struct device *parent;
311 1.26 drochner struct cfdata *match;
312 1.26 drochner void *aux;
313 1.1 mycroft {
314 1.15 mycroft struct isa_attach_args *ia = aux;
315 1.15 mycroft bus_space_tag_t iot = ia->ia_iot;
316 1.15 mycroft bus_space_handle_t ioh;
317 1.15 mycroft struct wds_probe_data wpd;
318 1.15 mycroft int rv;
319 1.22 thorpej
320 1.22 thorpej /* Disallow wildcarded i/o address. */
321 1.22 thorpej if (ia->ia_iobase == ISACF_PORT_DEFAULT)
322 1.22 thorpej return (0);
323 1.15 mycroft
324 1.15 mycroft if (bus_space_map(iot, ia->ia_iobase, WDS_ISA_IOSIZE, 0, &ioh))
325 1.15 mycroft return (0);
326 1.15 mycroft
327 1.15 mycroft rv = wds_find(iot, ioh, &wpd);
328 1.15 mycroft
329 1.15 mycroft bus_space_unmap(iot, ioh, WDS_ISA_IOSIZE);
330 1.15 mycroft
331 1.15 mycroft if (rv) {
332 1.15 mycroft #ifdef notyet
333 1.15 mycroft if (ia->ia_irq != -1 && ia->ia_irq != wpd.sc_irq)
334 1.15 mycroft return (0);
335 1.15 mycroft if (ia->ia_drq != -1 && ia->ia_drq != wpd.sc_drq)
336 1.15 mycroft return (0);
337 1.15 mycroft ia->ia_irq = wpd.sc_irq;
338 1.15 mycroft ia->ia_drq = wpd.sc_drq;
339 1.15 mycroft #else
340 1.15 mycroft if (ia->ia_irq == -1)
341 1.15 mycroft return (0);
342 1.15 mycroft if (ia->ia_drq == -1)
343 1.15 mycroft return (0);
344 1.1 mycroft #endif
345 1.15 mycroft ia->ia_msize = 0;
346 1.15 mycroft ia->ia_iosize = WDS_ISA_IOSIZE;
347 1.15 mycroft }
348 1.15 mycroft return (rv);
349 1.1 mycroft }
350 1.1 mycroft
351 1.1 mycroft /*
352 1.1 mycroft * Attach all available units.
353 1.1 mycroft */
354 1.1 mycroft void
355 1.1 mycroft wdsattach(parent, self, aux)
356 1.1 mycroft struct device *parent, *self;
357 1.1 mycroft void *aux;
358 1.1 mycroft {
359 1.1 mycroft struct isa_attach_args *ia = aux;
360 1.1 mycroft struct wds_softc *sc = (void *)self;
361 1.15 mycroft bus_space_tag_t iot = ia->ia_iot;
362 1.15 mycroft bus_space_handle_t ioh;
363 1.15 mycroft struct wds_probe_data wpd;
364 1.15 mycroft isa_chipset_tag_t ic = ia->ia_ic;
365 1.33 thorpej int error;
366 1.15 mycroft
367 1.15 mycroft printf("\n");
368 1.15 mycroft
369 1.23 thorpej if (bus_space_map(iot, ia->ia_iobase, WDS_ISA_IOSIZE, 0, &ioh)) {
370 1.23 thorpej printf("%s: can't map i/o space\n", sc->sc_dev.dv_xname);
371 1.23 thorpej return;
372 1.23 thorpej }
373 1.15 mycroft
374 1.15 mycroft sc->sc_iot = iot;
375 1.15 mycroft sc->sc_ioh = ioh;
376 1.20 mycroft sc->sc_dmat = ia->ia_dmat;
377 1.23 thorpej if (!wds_find(iot, ioh, &wpd)) {
378 1.23 thorpej printf("%s: wds_find failed\n", sc->sc_dev.dv_xname);
379 1.23 thorpej return;
380 1.23 thorpej }
381 1.15 mycroft
382 1.15 mycroft bus_space_write_1(iot, ioh, WDS_HCR, WDSH_DRQEN);
383 1.15 mycroft #ifdef notyet
384 1.33 thorpej if (wpd.sc_drq != -1) {
385 1.33 thorpej if ((error = isa_dmacascade(ic, wpd.sc_drq)) != 0) {
386 1.33 thorpej printf("%s: unable to cascade DRQ, error = %d\n",
387 1.33 thorpej sc->sc_dev.dv_xname, error);
388 1.33 thorpej return;
389 1.33 thorpej }
390 1.33 thorpej }
391 1.15 mycroft
392 1.15 mycroft sc->sc_ih = isa_intr_establish(ic, wpd.sc_irq, IST_EDGE, IPL_BIO,
393 1.15 mycroft wdsintr, sc);
394 1.15 mycroft #else
395 1.33 thorpej if (ia->ia_drq != -1) {
396 1.33 thorpej if ((error = isa_dmacascade(ic, ia->ia_drq)) != 0) {
397 1.33 thorpej printf("%s: unable to cascade DRQ, error = %d\n",
398 1.33 thorpej sc->sc_dev.dv_xname, error);
399 1.33 thorpej return;
400 1.33 thorpej }
401 1.33 thorpej }
402 1.1 mycroft
403 1.15 mycroft sc->sc_ih = isa_intr_establish(ic, ia->ia_irq, IST_EDGE, IPL_BIO,
404 1.15 mycroft wdsintr, sc);
405 1.15 mycroft #endif
406 1.15 mycroft if (sc->sc_ih == NULL) {
407 1.15 mycroft printf("%s: couldn't establish interrupt\n",
408 1.15 mycroft sc->sc_dev.dv_xname);
409 1.15 mycroft return;
410 1.15 mycroft }
411 1.1 mycroft
412 1.15 mycroft wds_attach(sc, &wpd);
413 1.15 mycroft }
414 1.13 mycroft
415 1.15 mycroft void
416 1.15 mycroft wds_attach(sc, wpd)
417 1.15 mycroft struct wds_softc *sc;
418 1.15 mycroft struct wds_probe_data *wpd;
419 1.15 mycroft {
420 1.1 mycroft
421 1.1 mycroft TAILQ_INIT(&sc->sc_free_scb);
422 1.1 mycroft TAILQ_INIT(&sc->sc_waiting_scb);
423 1.25 thorpej LIST_INIT(&sc->sc_queue);
424 1.19 thorpej
425 1.19 thorpej wds_init(sc, 0);
426 1.1 mycroft wds_inquire_setup_information(sc);
427 1.1 mycroft
428 1.1 mycroft /*
429 1.36 thorpej * Fill in the adapter.
430 1.36 thorpej */
431 1.36 thorpej sc->sc_adapter.scsipi_cmd = wds_scsi_cmd;
432 1.36 thorpej sc->sc_adapter.scsipi_minphys = minphys;
433 1.36 thorpej
434 1.36 thorpej /*
435 1.18 bouyer * fill in the prototype scsipi_link.
436 1.1 mycroft */
437 1.18 bouyer sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
438 1.1 mycroft sc->sc_link.adapter_softc = sc;
439 1.18 bouyer sc->sc_link.scsipi_scsi.adapter_target = wpd->sc_scsi_dev;
440 1.36 thorpej sc->sc_link.adapter = &sc->sc_adapter;
441 1.1 mycroft sc->sc_link.device = &wds_dev;
442 1.1 mycroft /* XXX */
443 1.1 mycroft /* I don't think the -ASE can handle openings > 1. */
444 1.1 mycroft /* It gives Vendor Error 26 whenever I try it. */
445 1.1 mycroft sc->sc_link.openings = 1;
446 1.18 bouyer sc->sc_link.scsipi_scsi.max_target = 7;
447 1.18 bouyer sc->sc_link.type = BUS_SCSI;
448 1.1 mycroft
449 1.1 mycroft /*
450 1.1 mycroft * ask the adapter what subunits are present
451 1.1 mycroft */
452 1.15 mycroft config_found(&sc->sc_dev, &sc->sc_link, scsiprint);
453 1.1 mycroft }
454 1.1 mycroft
455 1.1 mycroft integrate void
456 1.1 mycroft wds_finish_scbs(sc)
457 1.1 mycroft struct wds_softc *sc;
458 1.1 mycroft {
459 1.1 mycroft struct wds_mbx_in *wmbi;
460 1.1 mycroft struct wds_scb *scb;
461 1.1 mycroft int i;
462 1.1 mycroft
463 1.1 mycroft wmbi = wmbx->tmbi;
464 1.1 mycroft
465 1.1 mycroft if (wmbi->stat == WDS_MBI_FREE) {
466 1.1 mycroft for (i = 0; i < WDS_MBX_SIZE; i++) {
467 1.1 mycroft if (wmbi->stat != WDS_MBI_FREE) {
468 1.12 christos printf("%s: mbi not in round-robin order\n",
469 1.1 mycroft sc->sc_dev.dv_xname);
470 1.1 mycroft goto AGAIN;
471 1.1 mycroft }
472 1.1 mycroft wds_nextmbx(wmbi, wmbx, mbi);
473 1.1 mycroft }
474 1.1 mycroft #ifdef WDSDIAGnot
475 1.12 christos printf("%s: mbi interrupt with no full mailboxes\n",
476 1.1 mycroft sc->sc_dev.dv_xname);
477 1.1 mycroft #endif
478 1.1 mycroft return;
479 1.1 mycroft }
480 1.1 mycroft
481 1.1 mycroft AGAIN:
482 1.1 mycroft do {
483 1.1 mycroft scb = wds_scb_phys_kv(sc, phystol(wmbi->scb_addr));
484 1.1 mycroft if (!scb) {
485 1.12 christos printf("%s: bad mbi scb pointer; skipping\n",
486 1.1 mycroft sc->sc_dev.dv_xname);
487 1.1 mycroft goto next;
488 1.1 mycroft }
489 1.1 mycroft
490 1.1 mycroft #ifdef WDSDEBUG
491 1.1 mycroft if (wds_debug) {
492 1.18 bouyer u_char *cp = &scb->scsipi_cmd;
493 1.12 christos printf("op=%x %x %x %x %x %x\n",
494 1.1 mycroft cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
495 1.12 christos printf("stat %x for mbi addr = 0x%08x, ",
496 1.1 mycroft wmbi->stat, wmbi);
497 1.12 christos printf("scb addr = 0x%x\n", scb);
498 1.1 mycroft }
499 1.1 mycroft #endif /* WDSDEBUG */
500 1.1 mycroft
501 1.1 mycroft untimeout(wds_timeout, scb);
502 1.1 mycroft wds_done(sc, scb, wmbi->stat);
503 1.1 mycroft
504 1.1 mycroft next:
505 1.1 mycroft wmbi->stat = WDS_MBI_FREE;
506 1.1 mycroft wds_nextmbx(wmbi, wmbx, mbi);
507 1.1 mycroft } while (wmbi->stat != WDS_MBI_FREE);
508 1.1 mycroft
509 1.1 mycroft wmbx->tmbi = wmbi;
510 1.1 mycroft }
511 1.1 mycroft
512 1.1 mycroft /*
513 1.1 mycroft * Process an interrupt.
514 1.1 mycroft */
515 1.1 mycroft int
516 1.1 mycroft wdsintr(arg)
517 1.1 mycroft void *arg;
518 1.1 mycroft {
519 1.1 mycroft struct wds_softc *sc = arg;
520 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
521 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
522 1.5 christos u_char c;
523 1.1 mycroft
524 1.1 mycroft /* Was it really an interrupt from the board? */
525 1.15 mycroft if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ) == 0)
526 1.1 mycroft return 0;
527 1.1 mycroft
528 1.1 mycroft /* Get the interrupt status byte. */
529 1.15 mycroft c = bus_space_read_1(iot, ioh, WDS_IRQSTAT) & WDSI_MASK;
530 1.1 mycroft
531 1.1 mycroft /* Acknowledge (which resets) the interrupt. */
532 1.15 mycroft bus_space_write_1(iot, ioh, WDS_IRQACK, 0x00);
533 1.1 mycroft
534 1.1 mycroft switch (c) {
535 1.1 mycroft case WDSI_MSVC:
536 1.1 mycroft wds_finish_scbs(sc);
537 1.1 mycroft break;
538 1.1 mycroft
539 1.1 mycroft case WDSI_MFREE:
540 1.1 mycroft wds_start_scbs(sc);
541 1.1 mycroft break;
542 1.1 mycroft
543 1.1 mycroft default:
544 1.12 christos printf("%s: unrecognized interrupt type %02x",
545 1.5 christos sc->sc_dev.dv_xname, c);
546 1.1 mycroft break;
547 1.1 mycroft }
548 1.1 mycroft
549 1.1 mycroft return 1;
550 1.1 mycroft }
551 1.1 mycroft
552 1.1 mycroft integrate void
553 1.1 mycroft wds_reset_scb(sc, scb)
554 1.1 mycroft struct wds_softc *sc;
555 1.1 mycroft struct wds_scb *scb;
556 1.1 mycroft {
557 1.1 mycroft
558 1.1 mycroft scb->flags = 0;
559 1.1 mycroft }
560 1.1 mycroft
561 1.1 mycroft /*
562 1.1 mycroft * Free the command structure, the outgoing mailbox and the data buffer.
563 1.1 mycroft */
564 1.1 mycroft void
565 1.1 mycroft wds_free_scb(sc, scb)
566 1.1 mycroft struct wds_softc *sc;
567 1.1 mycroft struct wds_scb *scb;
568 1.1 mycroft {
569 1.1 mycroft int s;
570 1.1 mycroft
571 1.1 mycroft s = splbio();
572 1.1 mycroft
573 1.1 mycroft wds_reset_scb(sc, scb);
574 1.1 mycroft TAILQ_INSERT_HEAD(&sc->sc_free_scb, scb, chain);
575 1.1 mycroft
576 1.1 mycroft /*
577 1.1 mycroft * If there were none, wake anybody waiting for one to come free,
578 1.1 mycroft * starting with queued entries.
579 1.1 mycroft */
580 1.1 mycroft if (scb->chain.tqe_next == 0)
581 1.1 mycroft wakeup(&sc->sc_free_scb);
582 1.1 mycroft
583 1.1 mycroft splx(s);
584 1.1 mycroft }
585 1.1 mycroft
586 1.24 thorpej integrate int
587 1.19 thorpej wds_init_scb(sc, scb)
588 1.1 mycroft struct wds_softc *sc;
589 1.19 thorpej struct wds_scb *scb;
590 1.1 mycroft {
591 1.19 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
592 1.24 thorpej int hashnum, error;
593 1.1 mycroft
594 1.19 thorpej /*
595 1.19 thorpej * XXX Should we put a DIAGNOSTIC check for multiple
596 1.19 thorpej * XXX SCB inits here?
597 1.19 thorpej */
598 1.1 mycroft
599 1.19 thorpej bzero(scb, sizeof(struct wds_scb));
600 1.1 mycroft
601 1.1 mycroft /*
602 1.19 thorpej * Create DMA maps for this SCB.
603 1.1 mycroft */
604 1.24 thorpej error = bus_dmamap_create(dmat, sizeof(struct wds_scb), 1,
605 1.24 thorpej sizeof(struct wds_scb), 0, BUS_DMA_NOWAIT, &scb->dmamap_self);
606 1.24 thorpej if (error) {
607 1.24 thorpej printf("%s: can't create scb dmamap_self\n",
608 1.24 thorpej sc->sc_dev.dv_xname);
609 1.24 thorpej return (error);
610 1.24 thorpej }
611 1.1 mycroft
612 1.24 thorpej error = bus_dmamap_create(dmat, WDS_MAXXFER, WDS_NSEG, WDS_MAXXFER,
613 1.24 thorpej 0, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW, &scb->dmamap_xfer);
614 1.24 thorpej if (error) {
615 1.24 thorpej printf("%s: can't create scb dmamap_xfer\n",
616 1.24 thorpej sc->sc_dev.dv_xname);
617 1.24 thorpej bus_dmamap_destroy(dmat, scb->dmamap_self);
618 1.24 thorpej return (error);
619 1.24 thorpej }
620 1.1 mycroft
621 1.19 thorpej /*
622 1.19 thorpej * Load the permanent DMA maps.
623 1.19 thorpej */
624 1.24 thorpej error = bus_dmamap_load(dmat, scb->dmamap_self, scb,
625 1.24 thorpej sizeof(struct wds_scb), NULL, BUS_DMA_NOWAIT);
626 1.24 thorpej if (error) {
627 1.24 thorpej printf("%s: can't load scb dmamap_self\n",
628 1.24 thorpej sc->sc_dev.dv_xname);
629 1.24 thorpej bus_dmamap_destroy(dmat, scb->dmamap_self);
630 1.24 thorpej bus_dmamap_destroy(dmat, scb->dmamap_xfer);
631 1.24 thorpej return (error);
632 1.24 thorpej }
633 1.1 mycroft
634 1.1 mycroft /*
635 1.1 mycroft * put in the phystokv hash table
636 1.1 mycroft * Never gets taken out.
637 1.1 mycroft */
638 1.19 thorpej scb->hashkey = scb->dmamap_self->dm_segs[0].ds_addr;
639 1.1 mycroft hashnum = SCB_HASH(scb->hashkey);
640 1.1 mycroft scb->nexthash = sc->sc_scbhash[hashnum];
641 1.1 mycroft sc->sc_scbhash[hashnum] = scb;
642 1.1 mycroft wds_reset_scb(sc, scb);
643 1.24 thorpej return (0);
644 1.1 mycroft }
645 1.1 mycroft
646 1.1 mycroft /*
647 1.19 thorpej * Create a set of scbs and add them to the free list.
648 1.19 thorpej */
649 1.19 thorpej int
650 1.19 thorpej wds_create_scbs(sc, mem, size)
651 1.19 thorpej struct wds_softc *sc;
652 1.19 thorpej void *mem;
653 1.19 thorpej size_t size;
654 1.19 thorpej {
655 1.19 thorpej bus_dma_segment_t seg;
656 1.19 thorpej struct wds_scb *scb;
657 1.19 thorpej int rseg, error;
658 1.19 thorpej
659 1.19 thorpej if (sc->sc_numscbs >= WDS_SCB_MAX)
660 1.19 thorpej return (0);
661 1.19 thorpej
662 1.19 thorpej if ((scb = mem) != NULL)
663 1.19 thorpej goto have_mem;
664 1.19 thorpej
665 1.19 thorpej size = NBPG;
666 1.19 thorpej error = bus_dmamem_alloc(sc->sc_dmat, size, NBPG, 0, &seg, 1, &rseg,
667 1.19 thorpej BUS_DMA_NOWAIT);
668 1.24 thorpej if (error) {
669 1.24 thorpej printf("%s: can't allocate memory for scbs\n",
670 1.24 thorpej sc->sc_dev.dv_xname);
671 1.19 thorpej return (error);
672 1.24 thorpej }
673 1.19 thorpej
674 1.19 thorpej error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, size,
675 1.29 thorpej (caddr_t *)&scb, BUS_DMA_NOWAIT|BUS_DMA_COHERENT);
676 1.19 thorpej if (error) {
677 1.24 thorpej printf("%s: can't map memory for scbs\n",
678 1.24 thorpej sc->sc_dev.dv_xname);
679 1.19 thorpej bus_dmamem_free(sc->sc_dmat, &seg, rseg);
680 1.19 thorpej return (error);
681 1.19 thorpej }
682 1.19 thorpej
683 1.19 thorpej have_mem:
684 1.19 thorpej bzero(scb, size);
685 1.24 thorpej while (size > sizeof(struct wds_scb) && sc->sc_numscbs < WDS_SCB_MAX) {
686 1.24 thorpej error = wds_init_scb(sc, scb);
687 1.24 thorpej if (error) {
688 1.24 thorpej printf("%s: can't initialize scb\n",
689 1.24 thorpej sc->sc_dev.dv_xname);
690 1.24 thorpej return (error);
691 1.24 thorpej }
692 1.19 thorpej TAILQ_INSERT_TAIL(&sc->sc_free_scb, scb, chain);
693 1.19 thorpej (caddr_t)scb += ALIGN(sizeof(struct wds_scb));
694 1.19 thorpej size -= ALIGN(sizeof(struct wds_scb));
695 1.24 thorpej sc->sc_numscbs++;
696 1.19 thorpej }
697 1.19 thorpej
698 1.19 thorpej return (0);
699 1.19 thorpej }
700 1.19 thorpej
701 1.19 thorpej /*
702 1.1 mycroft * Get a free scb
703 1.1 mycroft *
704 1.1 mycroft * If there are none, see if we can allocate a new one. If so, put it in
705 1.1 mycroft * the hash table too otherwise either return an error or sleep.
706 1.1 mycroft */
707 1.1 mycroft struct wds_scb *
708 1.19 thorpej wds_get_scb(sc, flags)
709 1.1 mycroft struct wds_softc *sc;
710 1.1 mycroft int flags;
711 1.1 mycroft {
712 1.1 mycroft struct wds_scb *scb;
713 1.1 mycroft int s;
714 1.1 mycroft
715 1.1 mycroft s = splbio();
716 1.1 mycroft
717 1.1 mycroft /*
718 1.1 mycroft * If we can and have to, sleep waiting for one to come free
719 1.1 mycroft * but only if we can't allocate a new one.
720 1.1 mycroft */
721 1.1 mycroft for (;;) {
722 1.1 mycroft scb = sc->sc_free_scb.tqh_first;
723 1.1 mycroft if (scb) {
724 1.1 mycroft TAILQ_REMOVE(&sc->sc_free_scb, scb, chain);
725 1.1 mycroft break;
726 1.1 mycroft }
727 1.1 mycroft if (sc->sc_numscbs < WDS_SCB_MAX) {
728 1.24 thorpej /*
729 1.24 thorpej * wds_create_scbs() might have managed to create
730 1.24 thorpej * one before it failed. If so, don't abort,
731 1.24 thorpej * just grab it and continue to hobble along.
732 1.24 thorpej */
733 1.24 thorpej if (wds_create_scbs(sc, NULL, 0) != 0 &&
734 1.24 thorpej sc->sc_free_scb.tqh_first == NULL) {
735 1.19 thorpej printf("%s: can't allocate scbs\n",
736 1.1 mycroft sc->sc_dev.dv_xname);
737 1.1 mycroft goto out;
738 1.1 mycroft }
739 1.19 thorpej continue;
740 1.1 mycroft }
741 1.1 mycroft if ((flags & SCSI_NOSLEEP) != 0)
742 1.1 mycroft goto out;
743 1.1 mycroft tsleep(&sc->sc_free_scb, PRIBIO, "wdsscb", 0);
744 1.1 mycroft }
745 1.1 mycroft
746 1.1 mycroft scb->flags |= SCB_ALLOC;
747 1.1 mycroft
748 1.1 mycroft out:
749 1.1 mycroft splx(s);
750 1.1 mycroft return (scb);
751 1.1 mycroft }
752 1.1 mycroft
753 1.1 mycroft struct wds_scb *
754 1.1 mycroft wds_scb_phys_kv(sc, scb_phys)
755 1.1 mycroft struct wds_softc *sc;
756 1.1 mycroft u_long scb_phys;
757 1.1 mycroft {
758 1.1 mycroft int hashnum = SCB_HASH(scb_phys);
759 1.1 mycroft struct wds_scb *scb = sc->sc_scbhash[hashnum];
760 1.1 mycroft
761 1.1 mycroft while (scb) {
762 1.1 mycroft if (scb->hashkey == scb_phys)
763 1.1 mycroft break;
764 1.1 mycroft /* XXX Check to see if it matches the sense command block. */
765 1.1 mycroft if (scb->hashkey == (scb_phys - sizeof(struct wds_cmd)))
766 1.1 mycroft break;
767 1.1 mycroft scb = scb->nexthash;
768 1.1 mycroft }
769 1.21 mycroft return (scb);
770 1.1 mycroft }
771 1.1 mycroft
772 1.1 mycroft /*
773 1.1 mycroft * Queue a SCB to be sent to the controller, and send it if possible.
774 1.1 mycroft */
775 1.1 mycroft void
776 1.1 mycroft wds_queue_scb(sc, scb)
777 1.1 mycroft struct wds_softc *sc;
778 1.1 mycroft struct wds_scb *scb;
779 1.1 mycroft {
780 1.1 mycroft
781 1.1 mycroft TAILQ_INSERT_TAIL(&sc->sc_waiting_scb, scb, chain);
782 1.1 mycroft wds_start_scbs(sc);
783 1.1 mycroft }
784 1.1 mycroft
785 1.1 mycroft /*
786 1.1 mycroft * Garbage collect mailboxes that are no longer in use.
787 1.1 mycroft */
788 1.1 mycroft void
789 1.1 mycroft wds_collect_mbo(sc)
790 1.1 mycroft struct wds_softc *sc;
791 1.1 mycroft {
792 1.1 mycroft struct wds_mbx_out *wmbo; /* Mail Box Out pointer */
793 1.11 christos #ifdef WDSDIAG
794 1.1 mycroft struct wds_scb *scb;
795 1.11 christos #endif
796 1.1 mycroft
797 1.1 mycroft wmbo = wmbx->cmbo;
798 1.1 mycroft
799 1.1 mycroft while (sc->sc_mbofull > 0) {
800 1.1 mycroft if (wmbo->cmd != WDS_MBO_FREE)
801 1.1 mycroft break;
802 1.1 mycroft
803 1.1 mycroft #ifdef WDSDIAG
804 1.1 mycroft scb = wds_scb_phys_kv(sc, phystol(wmbo->scb_addr));
805 1.1 mycroft scb->flags &= ~SCB_SENDING;
806 1.1 mycroft #endif
807 1.1 mycroft
808 1.1 mycroft --sc->sc_mbofull;
809 1.1 mycroft wds_nextmbx(wmbo, wmbx, mbo);
810 1.1 mycroft }
811 1.1 mycroft
812 1.1 mycroft wmbx->cmbo = wmbo;
813 1.1 mycroft }
814 1.1 mycroft
815 1.1 mycroft /*
816 1.1 mycroft * Send as many SCBs as we have empty mailboxes for.
817 1.1 mycroft */
818 1.1 mycroft void
819 1.1 mycroft wds_start_scbs(sc)
820 1.1 mycroft struct wds_softc *sc;
821 1.1 mycroft {
822 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
823 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
824 1.1 mycroft struct wds_mbx_out *wmbo; /* Mail Box Out pointer */
825 1.1 mycroft struct wds_scb *scb;
826 1.1 mycroft u_char c;
827 1.1 mycroft
828 1.1 mycroft wmbo = wmbx->tmbo;
829 1.1 mycroft
830 1.5 christos while ((scb = sc->sc_waiting_scb.tqh_first) != NULL) {
831 1.1 mycroft if (sc->sc_mbofull >= WDS_MBX_SIZE) {
832 1.1 mycroft wds_collect_mbo(sc);
833 1.1 mycroft if (sc->sc_mbofull >= WDS_MBX_SIZE) {
834 1.1 mycroft c = WDSC_IRQMFREE;
835 1.15 mycroft wds_cmd(iot, ioh, &c, sizeof c);
836 1.1 mycroft break;
837 1.1 mycroft }
838 1.1 mycroft }
839 1.1 mycroft
840 1.1 mycroft TAILQ_REMOVE(&sc->sc_waiting_scb, scb, chain);
841 1.1 mycroft #ifdef WDSDIAG
842 1.1 mycroft scb->flags |= SCB_SENDING;
843 1.1 mycroft #endif
844 1.1 mycroft
845 1.1 mycroft /* Link scb to mbo. */
846 1.1 mycroft if (scb->flags & SCB_SENSE)
847 1.19 thorpej ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
848 1.19 thorpej offsetof(struct wds_scb, sense), wmbo->scb_addr);
849 1.1 mycroft else
850 1.19 thorpej ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
851 1.19 thorpej offsetof(struct wds_scb, cmd), wmbo->scb_addr);
852 1.1 mycroft /* XXX What about aborts? */
853 1.1 mycroft wmbo->cmd = WDS_MBO_START;
854 1.1 mycroft
855 1.1 mycroft /* Tell the card to poll immediately. */
856 1.1 mycroft c = WDSC_MSTART(wmbo - wmbx->mbo);
857 1.15 mycroft wds_cmd(sc->sc_iot, sc->sc_ioh, &c, sizeof c);
858 1.1 mycroft
859 1.1 mycroft if ((scb->flags & SCB_POLLED) == 0)
860 1.1 mycroft timeout(wds_timeout, scb, (scb->timeout * hz) / 1000);
861 1.1 mycroft
862 1.1 mycroft ++sc->sc_mbofull;
863 1.1 mycroft wds_nextmbx(wmbo, wmbx, mbo);
864 1.1 mycroft }
865 1.1 mycroft
866 1.1 mycroft wmbx->tmbo = wmbo;
867 1.1 mycroft }
868 1.1 mycroft
869 1.1 mycroft /*
870 1.1 mycroft * Process the result of a SCSI command.
871 1.1 mycroft */
872 1.1 mycroft void
873 1.1 mycroft wds_done(sc, scb, stat)
874 1.1 mycroft struct wds_softc *sc;
875 1.1 mycroft struct wds_scb *scb;
876 1.1 mycroft u_char stat;
877 1.1 mycroft {
878 1.19 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
879 1.18 bouyer struct scsipi_xfer *xs = scb->xs;
880 1.1 mycroft
881 1.1 mycroft /* XXXXX */
882 1.1 mycroft
883 1.1 mycroft /* Don't release the SCB if it was an internal command. */
884 1.1 mycroft if (xs == 0) {
885 1.1 mycroft scb->flags |= SCB_DONE;
886 1.1 mycroft return;
887 1.1 mycroft }
888 1.1 mycroft
889 1.1 mycroft /* Sense handling. */
890 1.1 mycroft if (xs->error == XS_SENSE) {
891 1.18 bouyer bcopy(&scb->sense_data, &xs->sense.scsi_sense,
892 1.18 bouyer sizeof (struct scsipi_sense_data));
893 1.1 mycroft } else {
894 1.19 thorpej /*
895 1.19 thorpej * If we were a data transfer, unload the map that described
896 1.19 thorpej * the data buffer.
897 1.19 thorpej */
898 1.19 thorpej if (xs->datalen) {
899 1.30 thorpej bus_dmamap_sync(dmat, scb->dmamap_xfer, 0,
900 1.30 thorpej scb->dmamap_xfer->dm_mapsize,
901 1.19 thorpej (xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_POSTREAD :
902 1.19 thorpej BUS_DMASYNC_POSTWRITE);
903 1.19 thorpej bus_dmamap_unload(dmat, scb->dmamap_xfer);
904 1.19 thorpej }
905 1.1 mycroft if (xs->error == XS_NOERROR) {
906 1.1 mycroft /* If all went well, or an error is acceptable. */
907 1.1 mycroft if (stat == WDS_MBI_OK) {
908 1.1 mycroft /* OK, set the result */
909 1.1 mycroft xs->resid = 0;
910 1.1 mycroft } else {
911 1.1 mycroft /* Check the mailbox status. */
912 1.1 mycroft switch (stat) {
913 1.1 mycroft case WDS_MBI_OKERR:
914 1.19 thorpej /*
915 1.19 thorpej * SCSI error recorded in scb,
916 1.19 thorpej * counts as WDS_MBI_OK
917 1.19 thorpej */
918 1.1 mycroft switch (scb->cmd.venderr) {
919 1.1 mycroft case 0x00:
920 1.19 thorpej printf("%s: Is this "
921 1.19 thorpej "an error?\n",
922 1.19 thorpej sc->sc_dev.dv_xname);
923 1.19 thorpej /* Experiment. */
924 1.19 thorpej xs->error = XS_DRIVER_STUFFUP;
925 1.1 mycroft break;
926 1.1 mycroft case 0x01:
927 1.19 thorpej #if 0
928 1.19 thorpej printf("%s: OK, see SCSI "
929 1.19 thorpej "error field.\n",
930 1.19 thorpej sc->sc_dev.dv_xname);
931 1.19 thorpej #endif
932 1.19 thorpej if (scb->cmd.stat ==
933 1.19 thorpej SCSI_CHECK) {
934 1.1 mycroft /* Do sense. */
935 1.19 thorpej wds_sense(sc, scb);
936 1.1 mycroft return;
937 1.19 thorpej } else if (scb->cmd.stat ==
938 1.19 thorpej SCSI_BUSY) {
939 1.1 mycroft xs->error = XS_BUSY;
940 1.1 mycroft }
941 1.1 mycroft break;
942 1.1 mycroft case 0x40:
943 1.19 thorpej #if 0
944 1.19 thorpej printf("%s: DMA underrun!\n",
945 1.19 thorpej sc->sc_dev.dv_xname);
946 1.19 thorpej #endif
947 1.19 thorpej /*
948 1.19 thorpej * Hits this if the target
949 1.19 thorpej * returns fewer that datalen
950 1.19 thorpej * bytes (eg my CD-ROM, which
951 1.19 thorpej * returns a short version
952 1.19 thorpej * string, or if DMA is
953 1.19 thorpej * turned off etc.
954 1.19 thorpej */
955 1.1 mycroft xs->resid = 0;
956 1.1 mycroft break;
957 1.1 mycroft default:
958 1.19 thorpej printf("%s: VENDOR ERROR "
959 1.19 thorpej "%02x, scsi %02x\n",
960 1.19 thorpej sc->sc_dev.dv_xname,
961 1.19 thorpej scb->cmd.venderr,
962 1.19 thorpej scb->cmd.stat);
963 1.19 thorpej /* Experiment. */
964 1.19 thorpej xs->error = XS_DRIVER_STUFFUP;
965 1.1 mycroft break;
966 1.1 mycroft }
967 1.1 mycroft break;
968 1.1 mycroft case WDS_MBI_ETIME:
969 1.1 mycroft /*
970 1.1 mycroft * The documentation isn't clear on
971 1.1 mycroft * what conditions might generate this,
972 1.1 mycroft * but selection timeouts are the only
973 1.1 mycroft * one I can think of.
974 1.1 mycroft */
975 1.1 mycroft xs->error = XS_SELTIMEOUT;
976 1.1 mycroft break;
977 1.1 mycroft case WDS_MBI_ERESET:
978 1.1 mycroft case WDS_MBI_ETARCMD:
979 1.1 mycroft case WDS_MBI_ERESEL:
980 1.1 mycroft case WDS_MBI_ESEL:
981 1.1 mycroft case WDS_MBI_EABORT:
982 1.1 mycroft case WDS_MBI_ESRESET:
983 1.1 mycroft case WDS_MBI_EHRESET:
984 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
985 1.1 mycroft break;
986 1.1 mycroft }
987 1.1 mycroft }
988 1.1 mycroft } /* else sense */
989 1.1 mycroft } /* XS_NOERROR */
990 1.1 mycroft
991 1.1 mycroft wds_free_scb(sc, scb);
992 1.1 mycroft xs->flags |= ITSDONE;
993 1.18 bouyer scsipi_done(xs);
994 1.25 thorpej
995 1.25 thorpej /*
996 1.25 thorpej * If there are queue entries in the software queue, try to
997 1.25 thorpej * run the first one. We should be more or less guaranteed
998 1.25 thorpej * to succeed, since we just freed a CCB.
999 1.25 thorpej *
1000 1.25 thorpej * NOTE: wds_scsi_cmd() relies on our calling it with
1001 1.25 thorpej * the first entry in the queue.
1002 1.25 thorpej */
1003 1.25 thorpej if ((xs = sc->sc_queue.lh_first) != NULL)
1004 1.25 thorpej (void) wds_scsi_cmd(xs);
1005 1.1 mycroft }
1006 1.1 mycroft
1007 1.1 mycroft int
1008 1.15 mycroft wds_find(iot, ioh, sc)
1009 1.15 mycroft bus_space_tag_t iot;
1010 1.15 mycroft bus_space_handle_t ioh;
1011 1.15 mycroft struct wds_probe_data *sc;
1012 1.1 mycroft {
1013 1.1 mycroft int i;
1014 1.1 mycroft
1015 1.1 mycroft /* XXXXX */
1016 1.1 mycroft
1017 1.1 mycroft /*
1018 1.1 mycroft * Sending a command causes the CMDRDY bit to clear.
1019 1.1 mycroft */
1020 1.15 mycroft for (i = 5; i; i--) {
1021 1.15 mycroft if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
1022 1.15 mycroft break;
1023 1.15 mycroft delay(100);
1024 1.1 mycroft }
1025 1.15 mycroft if (!i)
1026 1.16 marc return 0;
1027 1.1 mycroft
1028 1.15 mycroft bus_space_write_1(iot, ioh, WDS_CMD, WDSC_NOOP);
1029 1.15 mycroft if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
1030 1.16 marc return 0;
1031 1.1 mycroft
1032 1.15 mycroft bus_space_write_1(iot, ioh, WDS_HCR, WDSH_SCSIRESET|WDSH_ASCRESET);
1033 1.1 mycroft delay(10000);
1034 1.15 mycroft bus_space_write_1(iot, ioh, WDS_HCR, 0x00);
1035 1.1 mycroft delay(500000);
1036 1.15 mycroft wds_wait(iot, ioh, WDS_STAT, WDSS_RDY, WDSS_RDY);
1037 1.15 mycroft if (bus_space_read_1(iot, ioh, WDS_IRQSTAT) != 1)
1038 1.15 mycroft if (bus_space_read_1(iot, ioh, WDS_IRQSTAT) != 7)
1039 1.16 marc return 0;
1040 1.15 mycroft
1041 1.15 mycroft for (i = 2000; i; i--) {
1042 1.15 mycroft if ((bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_RDY) != 0)
1043 1.15 mycroft break;
1044 1.15 mycroft delay(100);
1045 1.1 mycroft }
1046 1.15 mycroft if (!i)
1047 1.16 marc return 0;
1048 1.1 mycroft
1049 1.15 mycroft if (sc) {
1050 1.15 mycroft #ifdef notyet
1051 1.15 mycroft sc->sc_irq = ...;
1052 1.15 mycroft sc->sc_drq = ...;
1053 1.15 mycroft #endif
1054 1.1 mycroft /* XXX Can we do this better? */
1055 1.1 mycroft sc->sc_scsi_dev = 7;
1056 1.1 mycroft }
1057 1.1 mycroft
1058 1.16 marc return 1;
1059 1.1 mycroft }
1060 1.1 mycroft
1061 1.1 mycroft /*
1062 1.1 mycroft * Initialise the board and driver.
1063 1.1 mycroft */
1064 1.1 mycroft void
1065 1.19 thorpej wds_init(sc, isreset)
1066 1.1 mycroft struct wds_softc *sc;
1067 1.19 thorpej int isreset;
1068 1.1 mycroft {
1069 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
1070 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1071 1.19 thorpej bus_dma_segment_t seg;
1072 1.1 mycroft struct wds_setup init;
1073 1.1 mycroft u_char c;
1074 1.19 thorpej int i, rseg;
1075 1.19 thorpej
1076 1.19 thorpej if (isreset)
1077 1.19 thorpej goto doinit;
1078 1.19 thorpej
1079 1.19 thorpej /*
1080 1.19 thorpej * Allocate the mailbox.
1081 1.19 thorpej */
1082 1.19 thorpej if (bus_dmamem_alloc(sc->sc_dmat, NBPG, NBPG, 0, &seg, 1,
1083 1.19 thorpej &rseg, BUS_DMA_NOWAIT) ||
1084 1.19 thorpej bus_dmamem_map(sc->sc_dmat, &seg, rseg, NBPG,
1085 1.29 thorpej (caddr_t *)&wmbx, BUS_DMA_NOWAIT|BUS_DMA_COHERENT))
1086 1.19 thorpej panic("wds_init: can't create or map mailbox");
1087 1.19 thorpej
1088 1.21 mycroft /*
1089 1.21 mycroft * Since DMA memory allocation is always rounded up to a
1090 1.21 mycroft * page size, create some scbs from the leftovers.
1091 1.21 mycroft */
1092 1.21 mycroft if (wds_create_scbs(sc, ((caddr_t)wmbx) +
1093 1.21 mycroft ALIGN(sizeof(struct wds_mbx)),
1094 1.21 mycroft NBPG - ALIGN(sizeof(struct wds_mbx))))
1095 1.21 mycroft panic("wds_init: can't create scbs");
1096 1.19 thorpej
1097 1.19 thorpej /*
1098 1.19 thorpej * Create and load the mailbox DMA map.
1099 1.19 thorpej */
1100 1.19 thorpej if (bus_dmamap_create(sc->sc_dmat, sizeof(struct wds_mbx), 1,
1101 1.19 thorpej sizeof(struct wds_mbx), 0, BUS_DMA_NOWAIT, &sc->sc_dmamap_mbox) ||
1102 1.19 thorpej bus_dmamap_load(sc->sc_dmat, sc->sc_dmamap_mbox, wmbx,
1103 1.19 thorpej sizeof(struct wds_mbx), NULL, BUS_DMA_NOWAIT))
1104 1.19 thorpej panic("wds_ionit: can't craete or load mailbox dma map");
1105 1.1 mycroft
1106 1.19 thorpej doinit:
1107 1.1 mycroft /*
1108 1.1 mycroft * Set up initial mail box for round-robin operation.
1109 1.1 mycroft */
1110 1.1 mycroft for (i = 0; i < WDS_MBX_SIZE; i++) {
1111 1.1 mycroft wmbx->mbo[i].cmd = WDS_MBO_FREE;
1112 1.6 mycroft wmbx->mbi[i].stat = WDS_MBI_FREE;
1113 1.1 mycroft }
1114 1.1 mycroft wmbx->cmbo = wmbx->tmbo = &wmbx->mbo[0];
1115 1.1 mycroft wmbx->tmbi = &wmbx->mbi[0];
1116 1.1 mycroft sc->sc_mbofull = 0;
1117 1.1 mycroft
1118 1.1 mycroft init.opcode = WDSC_INIT;
1119 1.18 bouyer init.scsi_id = sc->sc_link.scsipi_scsi.adapter_target;
1120 1.1 mycroft init.buson_t = 48;
1121 1.1 mycroft init.busoff_t = 24;
1122 1.1 mycroft init.xx = 0;
1123 1.19 thorpej ltophys(sc->sc_dmamap_mbox->dm_segs[0].ds_addr, init.mbaddr);
1124 1.1 mycroft init.nomb = init.nimb = WDS_MBX_SIZE;
1125 1.15 mycroft wds_cmd(iot, ioh, (u_char *)&init, sizeof init);
1126 1.1 mycroft
1127 1.15 mycroft wds_wait(iot, ioh, WDS_STAT, WDSS_INIT, WDSS_INIT);
1128 1.1 mycroft
1129 1.1 mycroft c = WDSC_DISUNSOL;
1130 1.15 mycroft wds_cmd(iot, ioh, &c, sizeof c);
1131 1.1 mycroft }
1132 1.1 mycroft
1133 1.1 mycroft /*
1134 1.1 mycroft * Read the board's firmware revision information.
1135 1.1 mycroft */
1136 1.1 mycroft void
1137 1.1 mycroft wds_inquire_setup_information(sc)
1138 1.1 mycroft struct wds_softc *sc;
1139 1.1 mycroft {
1140 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
1141 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1142 1.1 mycroft struct wds_scb *scb;
1143 1.1 mycroft u_char *j;
1144 1.1 mycroft int s;
1145 1.1 mycroft
1146 1.21 mycroft sc->sc_maxsegs = 1;
1147 1.19 thorpej
1148 1.21 mycroft scb = wds_get_scb(sc, SCSI_NOSLEEP);
1149 1.21 mycroft if (scb == 0)
1150 1.21 mycroft panic("wds_inquire_setup_information: no scb available");
1151 1.19 thorpej
1152 1.1 mycroft scb->xs = NULL;
1153 1.1 mycroft scb->timeout = 40;
1154 1.1 mycroft
1155 1.1 mycroft bzero(&scb->cmd, sizeof scb->cmd);
1156 1.1 mycroft scb->cmd.write = 0x80;
1157 1.1 mycroft scb->cmd.opcode = WDSX_GETFIRMREV;
1158 1.1 mycroft
1159 1.1 mycroft /* Will poll card, await result. */
1160 1.15 mycroft bus_space_write_1(iot, ioh, WDS_HCR, WDSH_DRQEN);
1161 1.1 mycroft scb->flags |= SCB_POLLED;
1162 1.1 mycroft
1163 1.1 mycroft s = splbio();
1164 1.1 mycroft wds_queue_scb(sc, scb);
1165 1.1 mycroft splx(s);
1166 1.1 mycroft
1167 1.1 mycroft if (wds_ipoll(sc, scb, scb->timeout))
1168 1.1 mycroft goto out;
1169 1.1 mycroft
1170 1.1 mycroft /* Print the version number. */
1171 1.21 mycroft printf("%s: version %x.%02x ", sc->sc_dev.dv_xname,
1172 1.21 mycroft scb->cmd.targ, scb->cmd.scb.opcode);
1173 1.1 mycroft sc->sc_revision = (scb->cmd.targ << 8) | scb->cmd.scb.opcode;
1174 1.1 mycroft /* Print out the version string. */
1175 1.1 mycroft j = 2 + &(scb->cmd.targ);
1176 1.1 mycroft while ((*j >= 32) && (*j < 128)) {
1177 1.12 christos printf("%c", *j);
1178 1.1 mycroft j++;
1179 1.1 mycroft }
1180 1.1 mycroft
1181 1.19 thorpej /*
1182 1.19 thorpej * Determine if we can use scatter/gather.
1183 1.19 thorpej */
1184 1.19 thorpej if (sc->sc_revision >= 0x800)
1185 1.19 thorpej sc->sc_maxsegs = WDS_NSEG;
1186 1.19 thorpej
1187 1.1 mycroft out:
1188 1.12 christos printf("\n");
1189 1.19 thorpej
1190 1.19 thorpej /*
1191 1.19 thorpej * Free up the resources used by this scb.
1192 1.19 thorpej */
1193 1.21 mycroft wds_free_scb(sc, scb);
1194 1.1 mycroft }
1195 1.1 mycroft
1196 1.1 mycroft void
1197 1.1 mycroft wdsminphys(bp)
1198 1.1 mycroft struct buf *bp;
1199 1.1 mycroft {
1200 1.1 mycroft
1201 1.19 thorpej if (bp->b_bcount > WDS_MAXXFER)
1202 1.19 thorpej bp->b_bcount = WDS_MAXXFER;
1203 1.1 mycroft minphys(bp);
1204 1.1 mycroft }
1205 1.1 mycroft
1206 1.1 mycroft /*
1207 1.1 mycroft * Send a SCSI command.
1208 1.1 mycroft */
1209 1.1 mycroft int
1210 1.1 mycroft wds_scsi_cmd(xs)
1211 1.18 bouyer struct scsipi_xfer *xs;
1212 1.1 mycroft {
1213 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
1214 1.1 mycroft struct wds_softc *sc = sc_link->adapter_softc;
1215 1.19 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
1216 1.1 mycroft struct wds_scb *scb;
1217 1.1 mycroft struct wds_scat_gath *sg;
1218 1.19 thorpej int error, seg, flags, s;
1219 1.25 thorpej int fromqueue = 0, dontqueue = 0;
1220 1.5 christos #ifdef TFS
1221 1.1 mycroft struct iovec *iovp;
1222 1.5 christos #endif
1223 1.1 mycroft
1224 1.1 mycroft if (xs->flags & SCSI_RESET) {
1225 1.1 mycroft /* XXX Fix me! */
1226 1.12 christos printf("%s: reset!\n", sc->sc_dev.dv_xname);
1227 1.19 thorpej wds_init(sc, 1);
1228 1.1 mycroft return COMPLETE;
1229 1.1 mycroft }
1230 1.1 mycroft
1231 1.25 thorpej s = splbio(); /* protect the queue */
1232 1.25 thorpej
1233 1.25 thorpej /*
1234 1.25 thorpej * If we're running the queue from wds_done(), we've been
1235 1.25 thorpej * called with the first queue entry as our argument.
1236 1.25 thorpej */
1237 1.25 thorpej if (xs == sc->sc_queue.lh_first) {
1238 1.25 thorpej xs = wds_dequeue(sc);
1239 1.25 thorpej fromqueue = 1;
1240 1.25 thorpej goto get_scb;
1241 1.25 thorpej }
1242 1.25 thorpej
1243 1.25 thorpej /* Polled requests can't be queued for later. */
1244 1.25 thorpej dontqueue = xs->flags & SCSI_POLL;
1245 1.25 thorpej
1246 1.25 thorpej /*
1247 1.25 thorpej * If there are jobs in the queue, run them first.
1248 1.25 thorpej */
1249 1.25 thorpej if (sc->sc_queue.lh_first != NULL) {
1250 1.25 thorpej /*
1251 1.25 thorpej * If we can't queue, we have to abort, since
1252 1.25 thorpej * we have to preserve order.
1253 1.25 thorpej */
1254 1.25 thorpej if (dontqueue) {
1255 1.25 thorpej splx(s);
1256 1.25 thorpej xs->error = XS_DRIVER_STUFFUP;
1257 1.25 thorpej return (TRY_AGAIN_LATER);
1258 1.25 thorpej }
1259 1.25 thorpej
1260 1.25 thorpej /*
1261 1.25 thorpej * Swap with the first queue entry.
1262 1.25 thorpej */
1263 1.25 thorpej wds_enqueue(sc, xs, 0);
1264 1.25 thorpej xs = wds_dequeue(sc);
1265 1.25 thorpej fromqueue = 1;
1266 1.25 thorpej }
1267 1.25 thorpej
1268 1.25 thorpej get_scb:
1269 1.1 mycroft flags = xs->flags;
1270 1.19 thorpej if ((scb = wds_get_scb(sc, flags)) == NULL) {
1271 1.25 thorpej /*
1272 1.25 thorpej * If we can't queue, we lose.
1273 1.25 thorpej */
1274 1.25 thorpej if (dontqueue) {
1275 1.25 thorpej splx(s);
1276 1.25 thorpej xs->error = XS_DRIVER_STUFFUP;
1277 1.25 thorpej return (TRY_AGAIN_LATER);
1278 1.25 thorpej }
1279 1.25 thorpej
1280 1.25 thorpej /*
1281 1.25 thorpej * Stuff ourselves into the queue, in front
1282 1.25 thorpej * if we came off in the first place.
1283 1.25 thorpej */
1284 1.25 thorpej wds_enqueue(sc, xs, fromqueue);
1285 1.25 thorpej splx(s);
1286 1.25 thorpej return (SUCCESSFULLY_QUEUED);
1287 1.1 mycroft }
1288 1.25 thorpej
1289 1.25 thorpej splx(s); /* done playing with the queue */
1290 1.25 thorpej
1291 1.1 mycroft scb->xs = xs;
1292 1.1 mycroft scb->timeout = xs->timeout;
1293 1.1 mycroft
1294 1.1 mycroft if (xs->flags & SCSI_DATA_UIO) {
1295 1.1 mycroft /* XXX Fix me! */
1296 1.1 mycroft /* Let's not worry about UIO. There isn't any code for the *
1297 1.1 mycroft * non-SG boards anyway! */
1298 1.19 thorpej printf("%s: UIO is untested and disabled!\n",
1299 1.19 thorpej sc->sc_dev.dv_xname);
1300 1.1 mycroft goto bad;
1301 1.1 mycroft }
1302 1.1 mycroft
1303 1.1 mycroft /* Zero out the command structure. */
1304 1.1 mycroft bzero(&scb->cmd, sizeof scb->cmd);
1305 1.1 mycroft bcopy(xs->cmd, &scb->cmd.scb, xs->cmdlen < 12 ? xs->cmdlen : 12);
1306 1.1 mycroft
1307 1.1 mycroft /* Set up some of the command fields. */
1308 1.18 bouyer scb->cmd.targ = (xs->sc_link->scsipi_scsi.target << 5) |
1309 1.18 bouyer xs->sc_link->scsipi_scsi.lun;
1310 1.1 mycroft
1311 1.1 mycroft /* NOTE: cmd.write may be OK as 0x40 (disable direction checking)
1312 1.1 mycroft * on boards other than the WD-7000V-ASE. Need this for the ASE:
1313 1.1 mycroft */
1314 1.1 mycroft scb->cmd.write = (xs->flags & SCSI_DATA_IN) ? 0x80 : 0x00;
1315 1.1 mycroft
1316 1.19 thorpej if (xs->datalen) {
1317 1.1 mycroft sg = scb->scat_gath;
1318 1.1 mycroft seg = 0;
1319 1.1 mycroft #ifdef TFS
1320 1.1 mycroft if (flags & SCSI_DATA_UIO) {
1321 1.19 thorpej error = bus_Dmamap_load_uio(dmat,
1322 1.19 thorpej scb->dmamap_xfer, (struct uio *)xs->data,
1323 1.19 thorpej (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
1324 1.19 thorpej BUS_DMA_WAITOK);
1325 1.1 mycroft } else
1326 1.1 mycroft #endif /* TFS */
1327 1.1 mycroft {
1328 1.19 thorpej error = bus_dmamap_load(dmat,
1329 1.19 thorpej scb->dmamap_xfer, xs->data, xs->datalen, NULL,
1330 1.19 thorpej (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
1331 1.19 thorpej BUS_DMA_WAITOK);
1332 1.19 thorpej }
1333 1.1 mycroft
1334 1.19 thorpej if (error) {
1335 1.19 thorpej if (error == EFBIG) {
1336 1.19 thorpej printf("%s: wds_scsi_cmd, more than %d"
1337 1.19 thorpej " dma segments\n",
1338 1.19 thorpej sc->sc_dev.dv_xname, sc->sc_maxsegs);
1339 1.19 thorpej } else {
1340 1.19 thorpej printf("%s: wds_scsi_cmd, error %d loading"
1341 1.19 thorpej " dma map\n",
1342 1.19 thorpej sc->sc_dev.dv_xname, error);
1343 1.19 thorpej }
1344 1.19 thorpej goto bad;
1345 1.19 thorpej }
1346 1.1 mycroft
1347 1.30 thorpej bus_dmamap_sync(dmat, scb->dmamap_xfer, 0,
1348 1.30 thorpej scb->dmamap_xfer->dm_mapsize,
1349 1.19 thorpej (flags & SCSI_DATA_IN) ? BUS_DMASYNC_PREREAD :
1350 1.19 thorpej BUS_DMASYNC_PREWRITE);
1351 1.1 mycroft
1352 1.19 thorpej if (sc->sc_maxsegs > 1) {
1353 1.19 thorpej /*
1354 1.19 thorpej * Load the hardware scatter/gather map with the
1355 1.19 thorpej * contents of the DMA map.
1356 1.19 thorpej */
1357 1.19 thorpej for (seg = 0; seg < scb->dmamap_xfer->dm_nsegs;
1358 1.19 thorpej seg++) {
1359 1.19 thorpej ltophys(scb->dmamap_xfer->dm_segs[seg].ds_addr,
1360 1.19 thorpej scb->scat_gath[seg].seg_addr);
1361 1.19 thorpej ltophys(scb->dmamap_xfer->dm_segs[seg].ds_len,
1362 1.19 thorpej scb->scat_gath[seg].seg_len);
1363 1.19 thorpej }
1364 1.1 mycroft
1365 1.1 mycroft /*
1366 1.19 thorpej * Set up for scatter/gather transfer.
1367 1.19 thorpej */
1368 1.19 thorpej scb->cmd.opcode = WDSX_SCSISG;
1369 1.19 thorpej ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
1370 1.19 thorpej offsetof(struct wds_scb, scat_gath),
1371 1.19 thorpej scb->cmd.data);
1372 1.19 thorpej ltophys(scb->dmamap_self->dm_nsegs *
1373 1.19 thorpej sizeof(struct wds_scat_gath), scb->cmd.len);
1374 1.19 thorpej } else {
1375 1.19 thorpej /*
1376 1.19 thorpej * This board is an ASC or an ASE, and the
1377 1.19 thorpej * transfer has been mapped contig for us.
1378 1.1 mycroft */
1379 1.19 thorpej scb->cmd.opcode = WDSX_SCSICMD;
1380 1.19 thorpej ltophys(scb->dmamap_xfer->dm_segs[0].ds_addr,
1381 1.19 thorpej scb->cmd.data);
1382 1.19 thorpej ltophys(scb->dmamap_xfer->dm_segs[0].ds_len,
1383 1.19 thorpej scb->cmd.len);
1384 1.1 mycroft }
1385 1.1 mycroft } else {
1386 1.1 mycroft scb->cmd.opcode = WDSX_SCSICMD;
1387 1.1 mycroft ltophys(0, scb->cmd.data);
1388 1.1 mycroft ltophys(0, scb->cmd.len);
1389 1.1 mycroft }
1390 1.1 mycroft
1391 1.1 mycroft scb->cmd.stat = 0x00;
1392 1.1 mycroft scb->cmd.venderr = 0x00;
1393 1.1 mycroft ltophys(0, scb->cmd.link);
1394 1.1 mycroft
1395 1.1 mycroft /* XXX Do we really want to do this? */
1396 1.1 mycroft if (flags & SCSI_POLL) {
1397 1.1 mycroft /* Will poll card, await result. */
1398 1.15 mycroft bus_space_write_1(sc->sc_iot, sc->sc_ioh, WDS_HCR, WDSH_DRQEN);
1399 1.1 mycroft scb->flags |= SCB_POLLED;
1400 1.1 mycroft } else {
1401 1.1 mycroft /* Will send command, let interrupt routine handle result. */
1402 1.15 mycroft bus_space_write_1(sc->sc_iot, sc->sc_ioh, WDS_HCR,
1403 1.15 mycroft WDSH_IRQEN | WDSH_DRQEN);
1404 1.1 mycroft }
1405 1.1 mycroft
1406 1.1 mycroft s = splbio();
1407 1.1 mycroft wds_queue_scb(sc, scb);
1408 1.1 mycroft splx(s);
1409 1.1 mycroft
1410 1.1 mycroft if ((flags & SCSI_POLL) == 0)
1411 1.1 mycroft return SUCCESSFULLY_QUEUED;
1412 1.1 mycroft
1413 1.1 mycroft if (wds_poll(sc, xs, scb->timeout)) {
1414 1.1 mycroft wds_timeout(scb);
1415 1.1 mycroft if (wds_poll(sc, xs, scb->timeout))
1416 1.1 mycroft wds_timeout(scb);
1417 1.1 mycroft }
1418 1.1 mycroft return COMPLETE;
1419 1.1 mycroft
1420 1.1 mycroft bad:
1421 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
1422 1.1 mycroft wds_free_scb(sc, scb);
1423 1.1 mycroft return COMPLETE;
1424 1.1 mycroft }
1425 1.1 mycroft
1426 1.1 mycroft /*
1427 1.1 mycroft * Send a sense request.
1428 1.1 mycroft */
1429 1.2 mycroft void
1430 1.1 mycroft wds_sense(sc, scb)
1431 1.1 mycroft struct wds_softc *sc;
1432 1.1 mycroft struct wds_scb *scb;
1433 1.1 mycroft {
1434 1.18 bouyer struct scsipi_xfer *xs = scb->xs;
1435 1.18 bouyer struct scsipi_sense *ss = (void *)&scb->sense.scb;
1436 1.1 mycroft int s;
1437 1.1 mycroft
1438 1.1 mycroft /* XXXXX */
1439 1.1 mycroft
1440 1.1 mycroft /* Send sense request SCSI command. */
1441 1.1 mycroft xs->error = XS_SENSE;
1442 1.1 mycroft scb->flags |= SCB_SENSE;
1443 1.1 mycroft
1444 1.1 mycroft /* Next, setup a request sense command block */
1445 1.1 mycroft bzero(ss, sizeof(*ss));
1446 1.1 mycroft ss->opcode = REQUEST_SENSE;
1447 1.18 bouyer ss->byte2 = xs->sc_link->scsipi_scsi.lun << 5;
1448 1.18 bouyer ss->length = sizeof(struct scsipi_sense_data);
1449 1.1 mycroft
1450 1.1 mycroft /* Set up some of the command fields. */
1451 1.1 mycroft scb->sense.targ = scb->cmd.targ;
1452 1.1 mycroft scb->sense.write = 0x80;
1453 1.1 mycroft scb->sense.opcode = WDSX_SCSICMD;
1454 1.19 thorpej ltophys(scb->dmamap_self->dm_segs[0].ds_addr +
1455 1.19 thorpej offsetof(struct wds_scb, sense_data), scb->sense.data);
1456 1.18 bouyer ltophys(sizeof(struct scsipi_sense_data), scb->sense.len);
1457 1.1 mycroft
1458 1.1 mycroft s = splbio();
1459 1.1 mycroft wds_queue_scb(sc, scb);
1460 1.1 mycroft splx(s);
1461 1.1 mycroft
1462 1.1 mycroft /*
1463 1.1 mycroft * There's no reason for us to poll here. There are two cases:
1464 1.1 mycroft * 1) If it's a polling operation, then we're called from the interrupt
1465 1.1 mycroft * handler, and we return and continue polling.
1466 1.1 mycroft * 2) If it's an interrupt-driven operation, then it gets completed
1467 1.1 mycroft * later on when the REQUEST SENSE finishes.
1468 1.1 mycroft */
1469 1.1 mycroft }
1470 1.1 mycroft
1471 1.1 mycroft /*
1472 1.1 mycroft * Poll a particular unit, looking for a particular scb
1473 1.1 mycroft */
1474 1.1 mycroft int
1475 1.1 mycroft wds_poll(sc, xs, count)
1476 1.1 mycroft struct wds_softc *sc;
1477 1.18 bouyer struct scsipi_xfer *xs;
1478 1.1 mycroft int count;
1479 1.1 mycroft {
1480 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
1481 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1482 1.1 mycroft
1483 1.1 mycroft /* timeouts are in msec, so we loop in 1000 usec cycles */
1484 1.1 mycroft while (count) {
1485 1.1 mycroft /*
1486 1.1 mycroft * If we had interrupts enabled, would we
1487 1.1 mycroft * have got an interrupt?
1488 1.1 mycroft */
1489 1.15 mycroft if (bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ)
1490 1.1 mycroft wdsintr(sc);
1491 1.1 mycroft if (xs->flags & ITSDONE)
1492 1.1 mycroft return 0;
1493 1.1 mycroft delay(1000); /* only happens in boot so ok */
1494 1.1 mycroft count--;
1495 1.1 mycroft }
1496 1.1 mycroft return 1;
1497 1.1 mycroft }
1498 1.1 mycroft
1499 1.1 mycroft /*
1500 1.1 mycroft * Poll a particular unit, looking for a particular scb
1501 1.1 mycroft */
1502 1.1 mycroft int
1503 1.1 mycroft wds_ipoll(sc, scb, count)
1504 1.1 mycroft struct wds_softc *sc;
1505 1.1 mycroft struct wds_scb *scb;
1506 1.1 mycroft int count;
1507 1.1 mycroft {
1508 1.15 mycroft bus_space_tag_t iot = sc->sc_iot;
1509 1.15 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1510 1.1 mycroft
1511 1.1 mycroft /* timeouts are in msec, so we loop in 1000 usec cycles */
1512 1.1 mycroft while (count) {
1513 1.1 mycroft /*
1514 1.1 mycroft * If we had interrupts enabled, would we
1515 1.1 mycroft * have got an interrupt?
1516 1.1 mycroft */
1517 1.15 mycroft if (bus_space_read_1(iot, ioh, WDS_STAT) & WDSS_IRQ)
1518 1.1 mycroft wdsintr(sc);
1519 1.1 mycroft if (scb->flags & SCB_DONE)
1520 1.1 mycroft return 0;
1521 1.1 mycroft delay(1000); /* only happens in boot so ok */
1522 1.1 mycroft count--;
1523 1.1 mycroft }
1524 1.1 mycroft return 1;
1525 1.1 mycroft }
1526 1.1 mycroft
1527 1.1 mycroft void
1528 1.1 mycroft wds_timeout(arg)
1529 1.1 mycroft void *arg;
1530 1.1 mycroft {
1531 1.1 mycroft struct wds_scb *scb = arg;
1532 1.18 bouyer struct scsipi_xfer *xs = scb->xs;
1533 1.18 bouyer struct scsipi_link *sc_link = xs->sc_link;
1534 1.1 mycroft struct wds_softc *sc = sc_link->adapter_softc;
1535 1.1 mycroft int s;
1536 1.1 mycroft
1537 1.18 bouyer scsi_print_addr(sc_link);
1538 1.12 christos printf("timed out");
1539 1.1 mycroft
1540 1.1 mycroft s = splbio();
1541 1.1 mycroft
1542 1.1 mycroft #ifdef WDSDIAG
1543 1.1 mycroft /*
1544 1.1 mycroft * If The scb's mbx is not free, then the board has gone south?
1545 1.1 mycroft */
1546 1.1 mycroft wds_collect_mbo(sc);
1547 1.1 mycroft if (scb->flags & SCB_SENDING) {
1548 1.12 christos printf("%s: not taking commands!\n", sc->sc_dev.dv_xname);
1549 1.1 mycroft Debugger();
1550 1.1 mycroft }
1551 1.1 mycroft #endif
1552 1.1 mycroft
1553 1.1 mycroft /*
1554 1.1 mycroft * If it has been through before, then
1555 1.1 mycroft * a previous abort has failed, don't
1556 1.1 mycroft * try abort again
1557 1.1 mycroft */
1558 1.1 mycroft if (scb->flags & SCB_ABORT) {
1559 1.1 mycroft /* abort timed out */
1560 1.12 christos printf(" AGAIN\n");
1561 1.1 mycroft /* XXX Must reset! */
1562 1.1 mycroft } else {
1563 1.1 mycroft /* abort the operation that has timed out */
1564 1.12 christos printf("\n");
1565 1.1 mycroft scb->xs->error = XS_TIMEOUT;
1566 1.1 mycroft scb->timeout = WDS_ABORT_TIMEOUT;
1567 1.1 mycroft scb->flags |= SCB_ABORT;
1568 1.1 mycroft wds_queue_scb(sc, scb);
1569 1.1 mycroft }
1570 1.1 mycroft
1571 1.1 mycroft splx(s);
1572 1.1 mycroft }
1573