aha.c revision 1.10 1 1.10 thorpej /* $NetBSD: aha.c,v 1.10 1997/11/04 05:58:22 thorpej Exp $ */
2 1.1 mycroft
3 1.1 mycroft #undef AHADIAG
4 1.1 mycroft #ifdef DDB
5 1.1 mycroft #define integrate
6 1.1 mycroft #else
7 1.1 mycroft #define integrate static inline
8 1.1 mycroft #endif
9 1.1 mycroft
10 1.5 thorpej /*-
11 1.5 thorpej * Copyright (c) 1997 The NetBSD Foundation, Inc.
12 1.5 thorpej * All rights reserved.
13 1.5 thorpej *
14 1.5 thorpej * This code is derived from software contributed to The NetBSD Foundation
15 1.5 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
16 1.5 thorpej * NASA Ames Research Center.
17 1.5 thorpej *
18 1.5 thorpej * Redistribution and use in source and binary forms, with or without
19 1.5 thorpej * modification, are permitted provided that the following conditions
20 1.5 thorpej * are met:
21 1.5 thorpej * 1. Redistributions of source code must retain the above copyright
22 1.5 thorpej * notice, this list of conditions and the following disclaimer.
23 1.5 thorpej * 2. Redistributions in binary form must reproduce the above copyright
24 1.5 thorpej * notice, this list of conditions and the following disclaimer in the
25 1.5 thorpej * documentation and/or other materials provided with the distribution.
26 1.5 thorpej * 3. All advertising materials mentioning features or use of this software
27 1.5 thorpej * must display the following acknowledgement:
28 1.5 thorpej * This product includes software developed by the NetBSD
29 1.5 thorpej * Foundation, Inc. and its contributors.
30 1.5 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
31 1.5 thorpej * contributors may be used to endorse or promote products derived
32 1.5 thorpej * from this software without specific prior written permission.
33 1.5 thorpej *
34 1.5 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
35 1.5 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
36 1.5 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
37 1.5 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
38 1.5 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39 1.5 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40 1.5 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
41 1.5 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
42 1.5 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
43 1.5 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
44 1.5 thorpej * POSSIBILITY OF SUCH DAMAGE.
45 1.5 thorpej */
46 1.5 thorpej
47 1.1 mycroft /*
48 1.4 mycroft * Copyright (c) 1994, 1996, 1997 Charles M. Hannum. All rights reserved.
49 1.1 mycroft *
50 1.1 mycroft * Redistribution and use in source and binary forms, with or without
51 1.1 mycroft * modification, are permitted provided that the following conditions
52 1.1 mycroft * are met:
53 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
54 1.1 mycroft * notice, this list of conditions and the following disclaimer.
55 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
56 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
57 1.1 mycroft * documentation and/or other materials provided with the distribution.
58 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
59 1.1 mycroft * must display the following acknowledgement:
60 1.1 mycroft * This product includes software developed by Charles M. Hannum.
61 1.1 mycroft * 4. The name of the author may not be used to endorse or promote products
62 1.1 mycroft * derived from this software without specific prior written permission.
63 1.1 mycroft *
64 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
65 1.1 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
66 1.1 mycroft * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
67 1.1 mycroft * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
68 1.1 mycroft * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
69 1.1 mycroft * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
70 1.1 mycroft * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
71 1.1 mycroft * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
72 1.1 mycroft * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
73 1.1 mycroft * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
74 1.1 mycroft */
75 1.1 mycroft
76 1.1 mycroft /*
77 1.1 mycroft * Originally written by Julian Elischer (julian (at) tfs.com)
78 1.1 mycroft * for TRW Financial Systems for use under the MACH(2.5) operating system.
79 1.1 mycroft *
80 1.1 mycroft * TRW Financial Systems, in accordance with their agreement with Carnegie
81 1.1 mycroft * Mellon University, makes this software available to CMU to distribute
82 1.1 mycroft * or use in any manner that they see fit as long as this message is kept with
83 1.1 mycroft * the software. For this reason TFS also grants any other persons or
84 1.1 mycroft * organisations permission to use or modify this software.
85 1.1 mycroft *
86 1.1 mycroft * TFS supplies this software to be publicly redistributed
87 1.1 mycroft * on the understanding that TFS is not responsible for the correct
88 1.1 mycroft * functioning of this software in any circumstances.
89 1.1 mycroft */
90 1.1 mycroft
91 1.1 mycroft #include <sys/types.h>
92 1.1 mycroft #include <sys/param.h>
93 1.1 mycroft #include <sys/systm.h>
94 1.1 mycroft #include <sys/kernel.h>
95 1.1 mycroft #include <sys/errno.h>
96 1.1 mycroft #include <sys/ioctl.h>
97 1.1 mycroft #include <sys/device.h>
98 1.1 mycroft #include <sys/malloc.h>
99 1.1 mycroft #include <sys/buf.h>
100 1.1 mycroft #include <sys/proc.h>
101 1.1 mycroft #include <sys/user.h>
102 1.1 mycroft
103 1.1 mycroft #include <machine/bus.h>
104 1.1 mycroft #include <machine/intr.h>
105 1.1 mycroft
106 1.7 bouyer #include <dev/scsipi/scsi_all.h>
107 1.7 bouyer #include <dev/scsipi/scsipi_all.h>
108 1.7 bouyer #include <dev/scsipi/scsiconf.h>
109 1.1 mycroft
110 1.1 mycroft #include <dev/ic/ahareg.h>
111 1.1 mycroft #include <dev/ic/ahavar.h>
112 1.1 mycroft
113 1.1 mycroft #ifndef DDB
114 1.1 mycroft #define Debugger() panic("should call debugger here (aha1542.c)")
115 1.1 mycroft #endif /* ! DDB */
116 1.1 mycroft
117 1.5 thorpej #define AHA_MAXXFER ((AHA_NSEG - 1) << PGSHIFT)
118 1.1 mycroft
119 1.1 mycroft #ifdef AHADEBUG
120 1.1 mycroft int aha_debug = 1;
121 1.1 mycroft #endif /* AHADEBUG */
122 1.1 mycroft
123 1.1 mycroft int aha_cmd __P((bus_space_tag_t, bus_space_handle_t, struct aha_softc *, int,
124 1.1 mycroft u_char *, int, u_char *));
125 1.1 mycroft integrate void aha_finish_ccbs __P((struct aha_softc *));
126 1.1 mycroft integrate void aha_reset_ccb __P((struct aha_softc *, struct aha_ccb *));
127 1.1 mycroft void aha_free_ccb __P((struct aha_softc *, struct aha_ccb *));
128 1.9 thorpej integrate int aha_init_ccb __P((struct aha_softc *, struct aha_ccb *));
129 1.1 mycroft struct aha_ccb *aha_get_ccb __P((struct aha_softc *, int));
130 1.1 mycroft struct aha_ccb *aha_ccb_phys_kv __P((struct aha_softc *, u_long));
131 1.1 mycroft void aha_queue_ccb __P((struct aha_softc *, struct aha_ccb *));
132 1.1 mycroft void aha_collect_mbo __P((struct aha_softc *));
133 1.1 mycroft void aha_start_ccbs __P((struct aha_softc *));
134 1.1 mycroft void aha_done __P((struct aha_softc *, struct aha_ccb *));
135 1.1 mycroft void aha_init __P((struct aha_softc *));
136 1.1 mycroft void aha_inquire_setup_information __P((struct aha_softc *));
137 1.1 mycroft void ahaminphys __P((struct buf *));
138 1.7 bouyer int aha_scsi_cmd __P((struct scsipi_xfer *));
139 1.7 bouyer int aha_poll __P((struct aha_softc *, struct scsipi_xfer *, int));
140 1.1 mycroft void aha_timeout __P((void *arg));
141 1.6 hannken int aha_create_ccbs __P((struct aha_softc *, void *, size_t, int));
142 1.10 thorpej void aha_enqueue __P((struct aha_softc *, struct scsipi_xfer *, int));
143 1.10 thorpej struct scsipi_xfer *aha_dequeue __P((struct aha_softc *));
144 1.1 mycroft
145 1.7 bouyer struct scsipi_adapter aha_switch = {
146 1.1 mycroft aha_scsi_cmd,
147 1.1 mycroft ahaminphys,
148 1.1 mycroft 0,
149 1.1 mycroft 0,
150 1.1 mycroft };
151 1.1 mycroft
152 1.1 mycroft /* the below structure is so we have a default dev struct for out link struct */
153 1.7 bouyer struct scsipi_device aha_dev = {
154 1.1 mycroft NULL, /* Use default error handler */
155 1.1 mycroft NULL, /* have a queue, served by this */
156 1.1 mycroft NULL, /* have no async handler */
157 1.1 mycroft NULL, /* Use default 'done' routine */
158 1.1 mycroft };
159 1.1 mycroft
160 1.1 mycroft struct cfdriver aha_cd = {
161 1.1 mycroft NULL, "aha", DV_DULL
162 1.1 mycroft };
163 1.1 mycroft
164 1.1 mycroft #define AHA_RESET_TIMEOUT 2000 /* time to wait for reset (mSec) */
165 1.1 mycroft #define AHA_ABORT_TIMEOUT 2000 /* time to wait for abort (mSec) */
166 1.1 mycroft
167 1.5 thorpej /* XXX Should put this in a better place. */
168 1.5 thorpej #define offsetof(type, member) ((size_t)(&((type *)0)->member))
169 1.5 thorpej
170 1.1 mycroft /*
171 1.10 thorpej * Insert a scsipi_xfer into the software queue. We overload xs->free_list
172 1.10 thorpej * to avoid having to allocate additional resources (since we're used
173 1.10 thorpej * only during resource shortages anyhow.
174 1.10 thorpej */
175 1.10 thorpej void
176 1.10 thorpej aha_enqueue(sc, xs, infront)
177 1.10 thorpej struct aha_softc *sc;
178 1.10 thorpej struct scsipi_xfer *xs;
179 1.10 thorpej int infront;
180 1.10 thorpej {
181 1.10 thorpej
182 1.10 thorpej if (infront || sc->sc_queue.lh_first == NULL) {
183 1.10 thorpej if (sc->sc_queue.lh_first == NULL)
184 1.10 thorpej sc->sc_queuelast = xs;
185 1.10 thorpej LIST_INSERT_HEAD(&sc->sc_queue, xs, free_list);
186 1.10 thorpej return;
187 1.10 thorpej }
188 1.10 thorpej
189 1.10 thorpej LIST_INSERT_AFTER(sc->sc_queuelast, xs, free_list);
190 1.10 thorpej sc->sc_queuelast = xs;
191 1.10 thorpej }
192 1.10 thorpej
193 1.10 thorpej /*
194 1.10 thorpej * Pull a scsipi_xfer off the front of the software queue.
195 1.10 thorpej */
196 1.10 thorpej struct scsipi_xfer *
197 1.10 thorpej aha_dequeue(sc)
198 1.10 thorpej struct aha_softc *sc;
199 1.10 thorpej {
200 1.10 thorpej struct scsipi_xfer *xs;
201 1.10 thorpej
202 1.10 thorpej xs = sc->sc_queue.lh_first;
203 1.10 thorpej LIST_REMOVE(xs, free_list);
204 1.10 thorpej
205 1.10 thorpej if (sc->sc_queue.lh_first == NULL)
206 1.10 thorpej sc->sc_queuelast = NULL;
207 1.10 thorpej
208 1.10 thorpej return (xs);
209 1.10 thorpej }
210 1.10 thorpej
211 1.10 thorpej /*
212 1.1 mycroft * aha_cmd(iot, ioh, sc, icnt, ibuf, ocnt, obuf)
213 1.1 mycroft *
214 1.1 mycroft * Activate Adapter command
215 1.1 mycroft * icnt: number of args (outbound bytes including opcode)
216 1.1 mycroft * ibuf: argument buffer
217 1.1 mycroft * ocnt: number of expected returned bytes
218 1.1 mycroft * obuf: result buffer
219 1.1 mycroft * wait: number of seconds to wait for response
220 1.1 mycroft *
221 1.1 mycroft * Performs an adapter command through the ports. Not to be confused with a
222 1.1 mycroft * scsi command, which is read in via the dma; one of the adapter commands
223 1.1 mycroft * tells it to read in a scsi command.
224 1.1 mycroft */
225 1.1 mycroft int
226 1.1 mycroft aha_cmd(iot, ioh, sc, icnt, ibuf, ocnt, obuf)
227 1.1 mycroft bus_space_tag_t iot;
228 1.1 mycroft bus_space_handle_t ioh;
229 1.1 mycroft struct aha_softc *sc;
230 1.1 mycroft int icnt, ocnt;
231 1.1 mycroft u_char *ibuf, *obuf;
232 1.1 mycroft {
233 1.1 mycroft const char *name;
234 1.1 mycroft register int i;
235 1.1 mycroft int wait;
236 1.1 mycroft u_char sts;
237 1.1 mycroft u_char opcode = ibuf[0];
238 1.1 mycroft
239 1.1 mycroft if (sc != NULL)
240 1.1 mycroft name = sc->sc_dev.dv_xname;
241 1.1 mycroft else
242 1.1 mycroft name = "(aha probe)";
243 1.1 mycroft
244 1.1 mycroft /*
245 1.1 mycroft * Calculate a reasonable timeout for the command.
246 1.1 mycroft */
247 1.1 mycroft switch (opcode) {
248 1.1 mycroft case AHA_INQUIRE_DEVICES:
249 1.1 mycroft wait = 90 * 20000;
250 1.1 mycroft break;
251 1.1 mycroft default:
252 1.1 mycroft wait = 1 * 20000;
253 1.1 mycroft break;
254 1.1 mycroft }
255 1.1 mycroft
256 1.1 mycroft /*
257 1.1 mycroft * Wait for the adapter to go idle, unless it's one of
258 1.1 mycroft * the commands which don't need this
259 1.1 mycroft */
260 1.1 mycroft if (opcode != AHA_MBO_INTR_EN) {
261 1.1 mycroft for (i = 20000; i; i--) { /* 1 sec? */
262 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_STAT_PORT);
263 1.1 mycroft if (sts & AHA_STAT_IDLE)
264 1.1 mycroft break;
265 1.1 mycroft delay(50);
266 1.1 mycroft }
267 1.1 mycroft if (!i) {
268 1.1 mycroft printf("%s: aha_cmd, host not idle(0x%x)\n",
269 1.1 mycroft name, sts);
270 1.1 mycroft return (1);
271 1.1 mycroft }
272 1.1 mycroft }
273 1.1 mycroft /*
274 1.1 mycroft * Now that it is idle, if we expect output, preflush the
275 1.1 mycroft * queue feeding to us.
276 1.1 mycroft */
277 1.1 mycroft if (ocnt) {
278 1.1 mycroft while ((bus_space_read_1(iot, ioh, AHA_STAT_PORT)) & AHA_STAT_DF)
279 1.1 mycroft bus_space_read_1(iot, ioh, AHA_DATA_PORT);
280 1.1 mycroft }
281 1.1 mycroft /*
282 1.1 mycroft * Output the command and the number of arguments given
283 1.1 mycroft * for each byte, first check the port is empty.
284 1.1 mycroft */
285 1.1 mycroft while (icnt--) {
286 1.1 mycroft for (i = wait; i; i--) {
287 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_STAT_PORT);
288 1.1 mycroft if (!(sts & AHA_STAT_CDF))
289 1.1 mycroft break;
290 1.1 mycroft delay(50);
291 1.1 mycroft }
292 1.1 mycroft if (!i) {
293 1.1 mycroft if (opcode != AHA_INQUIRE_REVISION)
294 1.1 mycroft printf("%s: aha_cmd, cmd/data port full\n", name);
295 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CTRL_PORT, AHA_CTRL_SRST);
296 1.1 mycroft return (1);
297 1.1 mycroft }
298 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CMD_PORT, *ibuf++);
299 1.1 mycroft }
300 1.1 mycroft /*
301 1.1 mycroft * If we expect input, loop that many times, each time,
302 1.1 mycroft * looking for the data register to have valid data
303 1.1 mycroft */
304 1.1 mycroft while (ocnt--) {
305 1.1 mycroft for (i = wait; i; i--) {
306 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_STAT_PORT);
307 1.1 mycroft if (sts & AHA_STAT_DF)
308 1.1 mycroft break;
309 1.1 mycroft delay(50);
310 1.1 mycroft }
311 1.1 mycroft if (!i) {
312 1.1 mycroft if (opcode != AHA_INQUIRE_REVISION)
313 1.1 mycroft printf("%s: aha_cmd, cmd/data port empty %d\n",
314 1.1 mycroft name, ocnt);
315 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CTRL_PORT, AHA_CTRL_SRST);
316 1.1 mycroft return (1);
317 1.1 mycroft }
318 1.1 mycroft *obuf++ = bus_space_read_1(iot, ioh, AHA_DATA_PORT);
319 1.1 mycroft }
320 1.1 mycroft /*
321 1.1 mycroft * Wait for the board to report a finished instruction.
322 1.1 mycroft * We may get an extra interrupt for the HACC signal, but this is
323 1.1 mycroft * unimportant.
324 1.1 mycroft */
325 1.1 mycroft if (opcode != AHA_MBO_INTR_EN) {
326 1.1 mycroft for (i = 20000; i; i--) { /* 1 sec? */
327 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_INTR_PORT);
328 1.1 mycroft /* XXX Need to save this in the interrupt handler? */
329 1.1 mycroft if (sts & AHA_INTR_HACC)
330 1.1 mycroft break;
331 1.1 mycroft delay(50);
332 1.1 mycroft }
333 1.1 mycroft if (!i) {
334 1.1 mycroft printf("%s: aha_cmd, host not finished(0x%x)\n",
335 1.1 mycroft name, sts);
336 1.1 mycroft return (1);
337 1.1 mycroft }
338 1.1 mycroft }
339 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CTRL_PORT, AHA_CTRL_IRST);
340 1.1 mycroft return (0);
341 1.1 mycroft }
342 1.1 mycroft
343 1.1 mycroft void
344 1.4 mycroft aha_attach(sc, apd)
345 1.1 mycroft struct aha_softc *sc;
346 1.4 mycroft struct aha_probe_data *apd;
347 1.1 mycroft {
348 1.1 mycroft
349 1.5 thorpej TAILQ_INIT(&sc->sc_free_ccb);
350 1.5 thorpej TAILQ_INIT(&sc->sc_waiting_ccb);
351 1.10 thorpej LIST_INIT(&sc->sc_queue);
352 1.5 thorpej
353 1.1 mycroft /*
354 1.7 bouyer * fill in the prototype scsipi_link.
355 1.1 mycroft */
356 1.7 bouyer sc->sc_link.scsipi_scsi.channel = SCSI_CHANNEL_ONLY_ONE;
357 1.1 mycroft sc->sc_link.adapter_softc = sc;
358 1.7 bouyer sc->sc_link.scsipi_scsi.adapter_target = apd->sc_scsi_dev;
359 1.1 mycroft sc->sc_link.adapter = &aha_switch;
360 1.1 mycroft sc->sc_link.device = &aha_dev;
361 1.1 mycroft sc->sc_link.openings = 2;
362 1.7 bouyer sc->sc_link.scsipi_scsi.max_target = 7;
363 1.7 bouyer sc->sc_link.type = BUS_SCSI;
364 1.1 mycroft
365 1.6 hannken aha_inquire_setup_information(sc);
366 1.6 hannken aha_init(sc);
367 1.6 hannken
368 1.1 mycroft /*
369 1.1 mycroft * ask the adapter what subunits are present
370 1.1 mycroft */
371 1.1 mycroft config_found(&sc->sc_dev, &sc->sc_link, scsiprint);
372 1.1 mycroft }
373 1.1 mycroft
374 1.1 mycroft integrate void
375 1.1 mycroft aha_finish_ccbs(sc)
376 1.1 mycroft struct aha_softc *sc;
377 1.1 mycroft {
378 1.1 mycroft struct aha_mbx_in *wmbi;
379 1.1 mycroft struct aha_ccb *ccb;
380 1.1 mycroft int i;
381 1.1 mycroft
382 1.1 mycroft wmbi = wmbx->tmbi;
383 1.1 mycroft
384 1.1 mycroft if (wmbi->stat == AHA_MBI_FREE) {
385 1.1 mycroft for (i = 0; i < AHA_MBX_SIZE; i++) {
386 1.1 mycroft if (wmbi->stat != AHA_MBI_FREE) {
387 1.1 mycroft printf("%s: mbi not in round-robin order\n",
388 1.1 mycroft sc->sc_dev.dv_xname);
389 1.1 mycroft goto AGAIN;
390 1.1 mycroft }
391 1.1 mycroft aha_nextmbx(wmbi, wmbx, mbi);
392 1.1 mycroft }
393 1.1 mycroft #ifdef AHADIAGnot
394 1.1 mycroft printf("%s: mbi interrupt with no full mailboxes\n",
395 1.1 mycroft sc->sc_dev.dv_xname);
396 1.1 mycroft #endif
397 1.1 mycroft return;
398 1.1 mycroft }
399 1.1 mycroft
400 1.1 mycroft AGAIN:
401 1.1 mycroft do {
402 1.1 mycroft ccb = aha_ccb_phys_kv(sc, phystol(wmbi->ccb_addr));
403 1.1 mycroft if (!ccb) {
404 1.1 mycroft printf("%s: bad mbi ccb pointer; skipping\n",
405 1.1 mycroft sc->sc_dev.dv_xname);
406 1.1 mycroft goto next;
407 1.1 mycroft }
408 1.1 mycroft
409 1.1 mycroft #ifdef AHADEBUG
410 1.1 mycroft if (aha_debug) {
411 1.1 mycroft u_char *cp = &ccb->scsi_cmd;
412 1.1 mycroft printf("op=%x %x %x %x %x %x\n",
413 1.1 mycroft cp[0], cp[1], cp[2], cp[3], cp[4], cp[5]);
414 1.1 mycroft printf("stat %x for mbi addr = 0x%08x, ",
415 1.1 mycroft wmbi->stat, wmbi);
416 1.1 mycroft printf("ccb addr = 0x%x\n", ccb);
417 1.1 mycroft }
418 1.1 mycroft #endif /* AHADEBUG */
419 1.1 mycroft
420 1.1 mycroft switch (wmbi->stat) {
421 1.1 mycroft case AHA_MBI_OK:
422 1.1 mycroft case AHA_MBI_ERROR:
423 1.1 mycroft if ((ccb->flags & CCB_ABORT) != 0) {
424 1.1 mycroft /*
425 1.1 mycroft * If we already started an abort, wait for it
426 1.1 mycroft * to complete before clearing the CCB. We
427 1.1 mycroft * could instead just clear CCB_SENDING, but
428 1.1 mycroft * what if the mailbox was already received?
429 1.1 mycroft * The worst that happens here is that we clear
430 1.1 mycroft * the CCB a bit later than we need to. BFD.
431 1.1 mycroft */
432 1.1 mycroft goto next;
433 1.1 mycroft }
434 1.1 mycroft break;
435 1.1 mycroft
436 1.1 mycroft case AHA_MBI_ABORT:
437 1.1 mycroft case AHA_MBI_UNKNOWN:
438 1.1 mycroft /*
439 1.1 mycroft * Even if the CCB wasn't found, we clear it anyway.
440 1.1 mycroft * See preceeding comment.
441 1.1 mycroft */
442 1.1 mycroft break;
443 1.1 mycroft
444 1.1 mycroft default:
445 1.1 mycroft printf("%s: bad mbi status %02x; skipping\n",
446 1.1 mycroft sc->sc_dev.dv_xname, wmbi->stat);
447 1.1 mycroft goto next;
448 1.1 mycroft }
449 1.1 mycroft
450 1.1 mycroft untimeout(aha_timeout, ccb);
451 1.1 mycroft aha_done(sc, ccb);
452 1.1 mycroft
453 1.1 mycroft next:
454 1.1 mycroft wmbi->stat = AHA_MBI_FREE;
455 1.1 mycroft aha_nextmbx(wmbi, wmbx, mbi);
456 1.1 mycroft } while (wmbi->stat != AHA_MBI_FREE);
457 1.1 mycroft
458 1.1 mycroft wmbx->tmbi = wmbi;
459 1.1 mycroft }
460 1.1 mycroft
461 1.1 mycroft /*
462 1.1 mycroft * Catch an interrupt from the adaptor
463 1.1 mycroft */
464 1.1 mycroft int
465 1.1 mycroft aha_intr(arg)
466 1.1 mycroft void *arg;
467 1.1 mycroft {
468 1.1 mycroft struct aha_softc *sc = arg;
469 1.1 mycroft bus_space_tag_t iot = sc->sc_iot;
470 1.1 mycroft bus_space_handle_t ioh = sc->sc_ioh;
471 1.1 mycroft u_char sts;
472 1.1 mycroft
473 1.1 mycroft #ifdef AHADEBUG
474 1.1 mycroft printf("%s: aha_intr ", sc->sc_dev.dv_xname);
475 1.1 mycroft #endif /*AHADEBUG */
476 1.1 mycroft
477 1.1 mycroft /*
478 1.1 mycroft * First acknowlege the interrupt, Then if it's not telling about
479 1.1 mycroft * a completed operation just return.
480 1.1 mycroft */
481 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_INTR_PORT);
482 1.1 mycroft if ((sts & AHA_INTR_ANYINTR) == 0)
483 1.1 mycroft return (0);
484 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CTRL_PORT, AHA_CTRL_IRST);
485 1.1 mycroft
486 1.1 mycroft #ifdef AHADIAG
487 1.1 mycroft /* Make sure we clear CCB_SENDING before finishing a CCB. */
488 1.1 mycroft aha_collect_mbo(sc);
489 1.1 mycroft #endif
490 1.1 mycroft
491 1.1 mycroft /* Mail box out empty? */
492 1.1 mycroft if (sts & AHA_INTR_MBOA) {
493 1.1 mycroft struct aha_toggle toggle;
494 1.1 mycroft
495 1.1 mycroft toggle.cmd.opcode = AHA_MBO_INTR_EN;
496 1.1 mycroft toggle.cmd.enable = 0;
497 1.1 mycroft aha_cmd(iot, ioh, sc,
498 1.1 mycroft sizeof(toggle.cmd), (u_char *)&toggle.cmd,
499 1.1 mycroft 0, (u_char *)0);
500 1.1 mycroft aha_start_ccbs(sc);
501 1.1 mycroft }
502 1.1 mycroft
503 1.1 mycroft /* Mail box in full? */
504 1.1 mycroft if (sts & AHA_INTR_MBIF)
505 1.1 mycroft aha_finish_ccbs(sc);
506 1.1 mycroft
507 1.1 mycroft return (1);
508 1.1 mycroft }
509 1.1 mycroft
510 1.1 mycroft integrate void
511 1.1 mycroft aha_reset_ccb(sc, ccb)
512 1.1 mycroft struct aha_softc *sc;
513 1.1 mycroft struct aha_ccb *ccb;
514 1.1 mycroft {
515 1.1 mycroft
516 1.1 mycroft ccb->flags = 0;
517 1.1 mycroft }
518 1.1 mycroft
519 1.1 mycroft /*
520 1.1 mycroft * A ccb is put onto the free list.
521 1.1 mycroft */
522 1.1 mycroft void
523 1.1 mycroft aha_free_ccb(sc, ccb)
524 1.1 mycroft struct aha_softc *sc;
525 1.1 mycroft struct aha_ccb *ccb;
526 1.1 mycroft {
527 1.1 mycroft int s;
528 1.1 mycroft
529 1.1 mycroft s = splbio();
530 1.1 mycroft
531 1.1 mycroft aha_reset_ccb(sc, ccb);
532 1.1 mycroft TAILQ_INSERT_HEAD(&sc->sc_free_ccb, ccb, chain);
533 1.1 mycroft
534 1.1 mycroft /*
535 1.1 mycroft * If there were none, wake anybody waiting for one to come free,
536 1.1 mycroft * starting with queued entries.
537 1.1 mycroft */
538 1.1 mycroft if (ccb->chain.tqe_next == 0)
539 1.1 mycroft wakeup(&sc->sc_free_ccb);
540 1.1 mycroft
541 1.1 mycroft splx(s);
542 1.1 mycroft }
543 1.1 mycroft
544 1.9 thorpej integrate int
545 1.1 mycroft aha_init_ccb(sc, ccb)
546 1.1 mycroft struct aha_softc *sc;
547 1.1 mycroft struct aha_ccb *ccb;
548 1.1 mycroft {
549 1.5 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
550 1.9 thorpej int hashnum, error;
551 1.1 mycroft
552 1.5 thorpej /*
553 1.5 thorpej * XXX Should we put a DIAGNOSTIC check for multiple
554 1.5 thorpej * XXX CCB inits here?
555 1.5 thorpej */
556 1.5 thorpej
557 1.1 mycroft bzero(ccb, sizeof(struct aha_ccb));
558 1.5 thorpej
559 1.5 thorpej /*
560 1.5 thorpej * Create DMA maps for this CCB.
561 1.5 thorpej */
562 1.9 thorpej error = bus_dmamap_create(dmat, sizeof(struct aha_ccb), 1,
563 1.9 thorpej sizeof(struct aha_ccb), 0, BUS_DMA_NOWAIT, &ccb->dmamap_self);
564 1.9 thorpej if (error) {
565 1.9 thorpej printf("%s: can't create ccb dmamap_self\n",
566 1.9 thorpej sc->sc_dev.dv_xname);
567 1.9 thorpej return (error);
568 1.9 thorpej }
569 1.5 thorpej
570 1.9 thorpej error = bus_dmamap_create(dmat, AHA_MAXXFER, AHA_NSEG, AHA_MAXXFER,
571 1.9 thorpej 0, BUS_DMA_NOWAIT|BUS_DMA_ALLOCNOW, &ccb->dmamap_xfer);
572 1.9 thorpej if (error) {
573 1.9 thorpej printf("%s: can't create ccb dmamap_xfer\n",
574 1.9 thorpej sc->sc_dev.dv_xname);
575 1.9 thorpej bus_dmamap_destroy(dmat, ccb->dmamap_self);
576 1.9 thorpej return (error);
577 1.9 thorpej }
578 1.5 thorpej
579 1.5 thorpej /*
580 1.5 thorpej * Load the permanent DMA maps.
581 1.5 thorpej */
582 1.9 thorpej error = bus_dmamap_load(dmat, ccb->dmamap_self, ccb,
583 1.9 thorpej sizeof(struct aha_ccb), NULL, BUS_DMA_NOWAIT);
584 1.9 thorpej if (error) {
585 1.9 thorpej printf("%s: can't load ccb dmamap_self\n",
586 1.9 thorpej sc->sc_dev.dv_xname);
587 1.9 thorpej bus_dmamap_destroy(dmat, ccb->dmamap_self);
588 1.9 thorpej bus_dmamap_destroy(dmat, ccb->dmamap_xfer);
589 1.9 thorpej return (error);
590 1.9 thorpej }
591 1.5 thorpej
592 1.1 mycroft /*
593 1.1 mycroft * put in the phystokv hash table
594 1.1 mycroft * Never gets taken out.
595 1.1 mycroft */
596 1.5 thorpej ccb->hashkey = ccb->dmamap_self->dm_segs[0].ds_addr;
597 1.1 mycroft hashnum = CCB_HASH(ccb->hashkey);
598 1.1 mycroft ccb->nexthash = sc->sc_ccbhash[hashnum];
599 1.1 mycroft sc->sc_ccbhash[hashnum] = ccb;
600 1.1 mycroft aha_reset_ccb(sc, ccb);
601 1.9 thorpej return (0);
602 1.1 mycroft }
603 1.1 mycroft
604 1.1 mycroft /*
605 1.5 thorpej * Create a set of ccbs and add them to the free list.
606 1.5 thorpej */
607 1.5 thorpej int
608 1.6 hannken aha_create_ccbs(sc, mem, size, max_ccbs)
609 1.5 thorpej struct aha_softc *sc;
610 1.5 thorpej void *mem;
611 1.5 thorpej size_t size;
612 1.6 hannken int max_ccbs;
613 1.5 thorpej {
614 1.5 thorpej bus_dma_segment_t seg;
615 1.5 thorpej struct aha_ccb *ccb;
616 1.5 thorpej int rseg, error;
617 1.5 thorpej
618 1.5 thorpej if (sc->sc_numccbs >= AHA_CCB_MAX)
619 1.5 thorpej return (0);
620 1.5 thorpej
621 1.8 thorpej if (max_ccbs > AHA_CCB_MAX)
622 1.8 thorpej max_ccbs = AHA_CCB_MAX;
623 1.8 thorpej
624 1.5 thorpej if ((ccb = mem) != NULL)
625 1.5 thorpej goto have_mem;
626 1.5 thorpej
627 1.5 thorpej size = NBPG;
628 1.5 thorpej error = bus_dmamem_alloc(sc->sc_dmat, size, NBPG, 0, &seg, 1, &rseg,
629 1.5 thorpej BUS_DMA_NOWAIT);
630 1.9 thorpej if (error) {
631 1.9 thorpej printf("%s: can't allocate memory for ccbs\n",
632 1.9 thorpej sc->sc_dev.dv_xname);
633 1.5 thorpej return (error);
634 1.9 thorpej }
635 1.5 thorpej
636 1.5 thorpej error = bus_dmamem_map(sc->sc_dmat, &seg, rseg, size,
637 1.5 thorpej (caddr_t *)&ccb, BUS_DMA_NOWAIT|BUS_DMAMEM_NOSYNC);
638 1.5 thorpej if (error) {
639 1.9 thorpej printf("%s: can't map memory for ccbs\n",
640 1.9 thorpej sc->sc_dev.dv_xname);
641 1.5 thorpej bus_dmamem_free(sc->sc_dmat, &seg, rseg);
642 1.5 thorpej return (error);
643 1.5 thorpej }
644 1.5 thorpej
645 1.5 thorpej have_mem:
646 1.5 thorpej bzero(ccb, size);
647 1.8 thorpej while (size > sizeof(struct aha_ccb) && sc->sc_numccbs < max_ccbs) {
648 1.9 thorpej error = aha_init_ccb(sc, ccb);
649 1.9 thorpej if (error) {
650 1.9 thorpej printf("%s: can't initialize ccb\n",
651 1.9 thorpej sc->sc_dev.dv_xname);
652 1.9 thorpej return (error);
653 1.9 thorpej }
654 1.5 thorpej TAILQ_INSERT_TAIL(&sc->sc_free_ccb, ccb, chain);
655 1.5 thorpej (caddr_t)ccb += ALIGN(sizeof(struct aha_ccb));
656 1.5 thorpej size -= ALIGN(sizeof(struct aha_ccb));
657 1.8 thorpej sc->sc_numccbs++;
658 1.5 thorpej }
659 1.5 thorpej
660 1.5 thorpej return (0);
661 1.5 thorpej }
662 1.5 thorpej
663 1.5 thorpej /*
664 1.1 mycroft * Get a free ccb
665 1.1 mycroft *
666 1.1 mycroft * If there are none, see if we can allocate a new one. If so, put it in
667 1.1 mycroft * the hash table too otherwise either return an error or sleep.
668 1.1 mycroft */
669 1.1 mycroft struct aha_ccb *
670 1.1 mycroft aha_get_ccb(sc, flags)
671 1.1 mycroft struct aha_softc *sc;
672 1.1 mycroft int flags;
673 1.1 mycroft {
674 1.1 mycroft struct aha_ccb *ccb;
675 1.1 mycroft int s;
676 1.1 mycroft
677 1.1 mycroft s = splbio();
678 1.1 mycroft
679 1.1 mycroft /*
680 1.1 mycroft * If we can and have to, sleep waiting for one to come free
681 1.1 mycroft * but only if we can't allocate a new one.
682 1.1 mycroft */
683 1.1 mycroft for (;;) {
684 1.1 mycroft ccb = sc->sc_free_ccb.tqh_first;
685 1.1 mycroft if (ccb) {
686 1.1 mycroft TAILQ_REMOVE(&sc->sc_free_ccb, ccb, chain);
687 1.1 mycroft break;
688 1.1 mycroft }
689 1.1 mycroft if (sc->sc_numccbs < AHA_CCB_MAX) {
690 1.9 thorpej /*
691 1.9 thorpej * aha_create_ccbs() might have managed to create
692 1.9 thorpej * one before it failed. If so, don't abort,
693 1.9 thorpej * just grab it and continue to hobble along.
694 1.9 thorpej */
695 1.9 thorpej if (aha_create_ccbs(sc, NULL, 0, AHA_CCB_MAX) != 0 &&
696 1.9 thorpej sc->sc_free_ccb.tqh_first == NULL) {
697 1.5 thorpej printf("%s: can't allocate ccbs\n",
698 1.1 mycroft sc->sc_dev.dv_xname);
699 1.1 mycroft goto out;
700 1.1 mycroft }
701 1.5 thorpej continue;
702 1.1 mycroft }
703 1.1 mycroft if ((flags & SCSI_NOSLEEP) != 0)
704 1.1 mycroft goto out;
705 1.1 mycroft tsleep(&sc->sc_free_ccb, PRIBIO, "ahaccb", 0);
706 1.1 mycroft }
707 1.1 mycroft
708 1.1 mycroft ccb->flags |= CCB_ALLOC;
709 1.1 mycroft
710 1.1 mycroft out:
711 1.1 mycroft splx(s);
712 1.1 mycroft return (ccb);
713 1.1 mycroft }
714 1.1 mycroft
715 1.1 mycroft /*
716 1.1 mycroft * Given a physical address, find the ccb that it corresponds to.
717 1.1 mycroft */
718 1.1 mycroft struct aha_ccb *
719 1.1 mycroft aha_ccb_phys_kv(sc, ccb_phys)
720 1.1 mycroft struct aha_softc *sc;
721 1.1 mycroft u_long ccb_phys;
722 1.1 mycroft {
723 1.1 mycroft int hashnum = CCB_HASH(ccb_phys);
724 1.1 mycroft struct aha_ccb *ccb = sc->sc_ccbhash[hashnum];
725 1.1 mycroft
726 1.1 mycroft while (ccb) {
727 1.1 mycroft if (ccb->hashkey == ccb_phys)
728 1.1 mycroft break;
729 1.1 mycroft ccb = ccb->nexthash;
730 1.1 mycroft }
731 1.1 mycroft return (ccb);
732 1.1 mycroft }
733 1.1 mycroft
734 1.1 mycroft /*
735 1.1 mycroft * Queue a CCB to be sent to the controller, and send it if possible.
736 1.1 mycroft */
737 1.1 mycroft void
738 1.1 mycroft aha_queue_ccb(sc, ccb)
739 1.1 mycroft struct aha_softc *sc;
740 1.1 mycroft struct aha_ccb *ccb;
741 1.1 mycroft {
742 1.1 mycroft
743 1.1 mycroft TAILQ_INSERT_TAIL(&sc->sc_waiting_ccb, ccb, chain);
744 1.1 mycroft aha_start_ccbs(sc);
745 1.1 mycroft }
746 1.1 mycroft
747 1.1 mycroft /*
748 1.1 mycroft * Garbage collect mailboxes that are no longer in use.
749 1.1 mycroft */
750 1.1 mycroft void
751 1.1 mycroft aha_collect_mbo(sc)
752 1.1 mycroft struct aha_softc *sc;
753 1.1 mycroft {
754 1.1 mycroft struct aha_mbx_out *wmbo; /* Mail Box Out pointer */
755 1.1 mycroft #ifdef AHADIAG
756 1.1 mycroft struct aha_ccb *ccb;
757 1.1 mycroft #endif
758 1.1 mycroft
759 1.1 mycroft wmbo = wmbx->cmbo;
760 1.1 mycroft
761 1.1 mycroft while (sc->sc_mbofull > 0) {
762 1.1 mycroft if (wmbo->cmd != AHA_MBO_FREE)
763 1.1 mycroft break;
764 1.1 mycroft
765 1.1 mycroft #ifdef AHADIAG
766 1.1 mycroft ccb = aha_ccb_phys_kv(sc, phystol(wmbo->ccb_addr));
767 1.1 mycroft ccb->flags &= ~CCB_SENDING;
768 1.1 mycroft #endif
769 1.1 mycroft
770 1.1 mycroft --sc->sc_mbofull;
771 1.1 mycroft aha_nextmbx(wmbo, wmbx, mbo);
772 1.1 mycroft }
773 1.1 mycroft
774 1.1 mycroft wmbx->cmbo = wmbo;
775 1.1 mycroft }
776 1.1 mycroft
777 1.1 mycroft /*
778 1.1 mycroft * Send as many CCBs as we have empty mailboxes for.
779 1.1 mycroft */
780 1.1 mycroft void
781 1.1 mycroft aha_start_ccbs(sc)
782 1.1 mycroft struct aha_softc *sc;
783 1.1 mycroft {
784 1.1 mycroft bus_space_tag_t iot = sc->sc_iot;
785 1.1 mycroft bus_space_handle_t ioh = sc->sc_ioh;
786 1.1 mycroft struct aha_mbx_out *wmbo; /* Mail Box Out pointer */
787 1.1 mycroft struct aha_ccb *ccb;
788 1.1 mycroft
789 1.1 mycroft wmbo = wmbx->tmbo;
790 1.1 mycroft
791 1.1 mycroft while ((ccb = sc->sc_waiting_ccb.tqh_first) != NULL) {
792 1.1 mycroft if (sc->sc_mbofull >= AHA_MBX_SIZE) {
793 1.1 mycroft aha_collect_mbo(sc);
794 1.1 mycroft if (sc->sc_mbofull >= AHA_MBX_SIZE) {
795 1.1 mycroft struct aha_toggle toggle;
796 1.1 mycroft
797 1.1 mycroft toggle.cmd.opcode = AHA_MBO_INTR_EN;
798 1.1 mycroft toggle.cmd.enable = 1;
799 1.1 mycroft aha_cmd(iot, ioh, sc,
800 1.1 mycroft sizeof(toggle.cmd), (u_char *)&toggle.cmd,
801 1.1 mycroft 0, (u_char *)0);
802 1.1 mycroft break;
803 1.1 mycroft }
804 1.1 mycroft }
805 1.1 mycroft
806 1.1 mycroft TAILQ_REMOVE(&sc->sc_waiting_ccb, ccb, chain);
807 1.1 mycroft #ifdef AHADIAG
808 1.1 mycroft ccb->flags |= CCB_SENDING;
809 1.1 mycroft #endif
810 1.1 mycroft
811 1.1 mycroft /* Link ccb to mbo. */
812 1.5 thorpej ltophys(ccb->dmamap_self->dm_segs[0].ds_addr, wmbo->ccb_addr);
813 1.1 mycroft if (ccb->flags & CCB_ABORT)
814 1.1 mycroft wmbo->cmd = AHA_MBO_ABORT;
815 1.1 mycroft else
816 1.1 mycroft wmbo->cmd = AHA_MBO_START;
817 1.1 mycroft
818 1.1 mycroft /* Tell the card to poll immediately. */
819 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CMD_PORT, AHA_START_SCSI);
820 1.1 mycroft
821 1.1 mycroft if ((ccb->xs->flags & SCSI_POLL) == 0)
822 1.1 mycroft timeout(aha_timeout, ccb, (ccb->timeout * hz) / 1000);
823 1.1 mycroft
824 1.1 mycroft ++sc->sc_mbofull;
825 1.1 mycroft aha_nextmbx(wmbo, wmbx, mbo);
826 1.1 mycroft }
827 1.1 mycroft
828 1.1 mycroft wmbx->tmbo = wmbo;
829 1.1 mycroft }
830 1.1 mycroft
831 1.1 mycroft /*
832 1.1 mycroft * We have a ccb which has been processed by the
833 1.1 mycroft * adaptor, now we look to see how the operation
834 1.1 mycroft * went. Wake up the owner if waiting
835 1.1 mycroft */
836 1.1 mycroft void
837 1.1 mycroft aha_done(sc, ccb)
838 1.1 mycroft struct aha_softc *sc;
839 1.1 mycroft struct aha_ccb *ccb;
840 1.1 mycroft {
841 1.5 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
842 1.7 bouyer struct scsipi_sense_data *s1, *s2;
843 1.7 bouyer struct scsipi_xfer *xs = ccb->xs;
844 1.1 mycroft
845 1.1 mycroft SC_DEBUG(xs->sc_link, SDEV_DB2, ("aha_done\n"));
846 1.5 thorpej
847 1.5 thorpej /*
848 1.5 thorpej * If we were a data transfer, unload the map that described
849 1.5 thorpej * the data buffer.
850 1.5 thorpej */
851 1.5 thorpej if (xs->datalen) {
852 1.5 thorpej bus_dmamap_sync(dmat, ccb->dmamap_xfer,
853 1.5 thorpej (xs->flags & SCSI_DATA_IN) ? BUS_DMASYNC_POSTREAD :
854 1.5 thorpej BUS_DMASYNC_POSTWRITE);
855 1.5 thorpej bus_dmamap_unload(dmat, ccb->dmamap_xfer);
856 1.5 thorpej }
857 1.5 thorpej
858 1.1 mycroft /*
859 1.1 mycroft * Otherwise, put the results of the operation
860 1.1 mycroft * into the xfer and call whoever started it
861 1.1 mycroft */
862 1.1 mycroft #ifdef AHADIAG
863 1.1 mycroft if (ccb->flags & CCB_SENDING) {
864 1.1 mycroft printf("%s: exiting ccb still in transit!\n", sc->sc_dev.dv_xname);
865 1.1 mycroft Debugger();
866 1.1 mycroft return;
867 1.1 mycroft }
868 1.1 mycroft #endif
869 1.1 mycroft if ((ccb->flags & CCB_ALLOC) == 0) {
870 1.1 mycroft printf("%s: exiting ccb not allocated!\n", sc->sc_dev.dv_xname);
871 1.1 mycroft Debugger();
872 1.1 mycroft return;
873 1.1 mycroft }
874 1.1 mycroft if (xs->error == XS_NOERROR) {
875 1.1 mycroft if (ccb->host_stat != AHA_OK) {
876 1.1 mycroft switch (ccb->host_stat) {
877 1.1 mycroft case AHA_SEL_TIMEOUT: /* No response */
878 1.1 mycroft xs->error = XS_SELTIMEOUT;
879 1.1 mycroft break;
880 1.1 mycroft default: /* Other scsi protocol messes */
881 1.1 mycroft printf("%s: host_stat %x\n",
882 1.1 mycroft sc->sc_dev.dv_xname, ccb->host_stat);
883 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
884 1.1 mycroft break;
885 1.1 mycroft }
886 1.1 mycroft } else if (ccb->target_stat != SCSI_OK) {
887 1.1 mycroft switch (ccb->target_stat) {
888 1.1 mycroft case SCSI_CHECK:
889 1.7 bouyer s1 = (struct scsipi_sense_data *) (((char *) (&ccb->scsi_cmd)) +
890 1.1 mycroft ccb->scsi_cmd_length);
891 1.7 bouyer s2 = &xs->sense.scsi_sense;
892 1.1 mycroft *s2 = *s1;
893 1.1 mycroft xs->error = XS_SENSE;
894 1.1 mycroft break;
895 1.1 mycroft case SCSI_BUSY:
896 1.1 mycroft xs->error = XS_BUSY;
897 1.1 mycroft break;
898 1.1 mycroft default:
899 1.1 mycroft printf("%s: target_stat %x\n",
900 1.1 mycroft sc->sc_dev.dv_xname, ccb->target_stat);
901 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
902 1.1 mycroft break;
903 1.1 mycroft }
904 1.1 mycroft } else
905 1.1 mycroft xs->resid = 0;
906 1.1 mycroft }
907 1.1 mycroft aha_free_ccb(sc, ccb);
908 1.1 mycroft xs->flags |= ITSDONE;
909 1.7 bouyer scsipi_done(xs);
910 1.10 thorpej
911 1.10 thorpej /*
912 1.10 thorpej * If there are queue entries in the software queue, try to
913 1.10 thorpej * run the first one. We should be more or less guaranteed
914 1.10 thorpej * to succeed, since we just freed a CCB.
915 1.10 thorpej *
916 1.10 thorpej * NOTE: aha_scsi_cmd() relies on our calling it with
917 1.10 thorpej * the first entry in the queue.
918 1.10 thorpej */
919 1.10 thorpej if ((xs = sc->sc_queue.lh_first) != NULL)
920 1.10 thorpej (void) aha_scsi_cmd(xs);
921 1.1 mycroft }
922 1.1 mycroft
923 1.1 mycroft /*
924 1.1 mycroft * Find the board and find its irq/drq
925 1.1 mycroft */
926 1.1 mycroft int
927 1.1 mycroft aha_find(iot, ioh, sc)
928 1.1 mycroft bus_space_tag_t iot;
929 1.1 mycroft bus_space_handle_t ioh;
930 1.4 mycroft struct aha_probe_data *sc;
931 1.1 mycroft {
932 1.1 mycroft int i;
933 1.1 mycroft u_char sts;
934 1.1 mycroft struct aha_config config;
935 1.1 mycroft int irq, drq;
936 1.1 mycroft
937 1.1 mycroft /*
938 1.1 mycroft * reset board, If it doesn't respond, assume
939 1.1 mycroft * that it's not there.. good for the probe
940 1.1 mycroft */
941 1.1 mycroft
942 1.1 mycroft bus_space_write_1(iot, ioh, AHA_CTRL_PORT, AHA_CTRL_HRST | AHA_CTRL_SRST);
943 1.1 mycroft
944 1.1 mycroft delay(100);
945 1.1 mycroft for (i = AHA_RESET_TIMEOUT; i; i--) {
946 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_STAT_PORT);
947 1.1 mycroft if (sts == (AHA_STAT_IDLE | AHA_STAT_INIT))
948 1.1 mycroft break;
949 1.1 mycroft delay(1000); /* calibrated in msec */
950 1.1 mycroft }
951 1.1 mycroft if (!i) {
952 1.1 mycroft #ifdef AHADEBUG
953 1.1 mycroft if (aha_debug)
954 1.1 mycroft printf("aha_find: No answer from adaptec board\n");
955 1.1 mycroft #endif /* AHADEBUG */
956 1.1 mycroft return (0);
957 1.1 mycroft }
958 1.1 mycroft
959 1.1 mycroft /*
960 1.1 mycroft * setup dma channel from jumpers and save int
961 1.1 mycroft * level
962 1.1 mycroft */
963 1.1 mycroft delay(1000); /* for Bustek 545 */
964 1.1 mycroft config.cmd.opcode = AHA_INQUIRE_CONFIG;
965 1.4 mycroft aha_cmd(iot, ioh, (struct aha_softc *)0,
966 1.1 mycroft sizeof(config.cmd), (u_char *)&config.cmd,
967 1.1 mycroft sizeof(config.reply), (u_char *)&config.reply);
968 1.1 mycroft switch (config.reply.chan) {
969 1.1 mycroft case EISADMA:
970 1.1 mycroft drq = -1;
971 1.1 mycroft break;
972 1.1 mycroft case CHAN0:
973 1.1 mycroft drq = 0;
974 1.1 mycroft break;
975 1.1 mycroft case CHAN5:
976 1.1 mycroft drq = 5;
977 1.1 mycroft break;
978 1.1 mycroft case CHAN6:
979 1.1 mycroft drq = 6;
980 1.1 mycroft break;
981 1.1 mycroft case CHAN7:
982 1.1 mycroft drq = 7;
983 1.1 mycroft break;
984 1.1 mycroft default:
985 1.1 mycroft printf("aha_find: illegal drq setting %x\n", config.reply.chan);
986 1.1 mycroft return (0);
987 1.1 mycroft }
988 1.1 mycroft
989 1.1 mycroft switch (config.reply.intr) {
990 1.1 mycroft case INT9:
991 1.1 mycroft irq = 9;
992 1.1 mycroft break;
993 1.1 mycroft case INT10:
994 1.1 mycroft irq = 10;
995 1.1 mycroft break;
996 1.1 mycroft case INT11:
997 1.1 mycroft irq = 11;
998 1.1 mycroft break;
999 1.1 mycroft case INT12:
1000 1.1 mycroft irq = 12;
1001 1.1 mycroft break;
1002 1.1 mycroft case INT14:
1003 1.1 mycroft irq = 14;
1004 1.1 mycroft break;
1005 1.1 mycroft case INT15:
1006 1.1 mycroft irq = 15;
1007 1.1 mycroft break;
1008 1.1 mycroft default:
1009 1.1 mycroft printf("aha_find: illegal irq setting %x\n", config.reply.intr);
1010 1.1 mycroft return (0);
1011 1.1 mycroft }
1012 1.1 mycroft
1013 1.4 mycroft if (sc) {
1014 1.1 mycroft sc->sc_irq = irq;
1015 1.1 mycroft sc->sc_drq = drq;
1016 1.1 mycroft sc->sc_scsi_dev = config.reply.scsi_dev;
1017 1.1 mycroft }
1018 1.1 mycroft
1019 1.1 mycroft return (1);
1020 1.1 mycroft }
1021 1.1 mycroft
1022 1.1 mycroft /*
1023 1.1 mycroft * Start the board, ready for normal operation
1024 1.1 mycroft */
1025 1.1 mycroft void
1026 1.1 mycroft aha_init(sc)
1027 1.1 mycroft struct aha_softc *sc;
1028 1.1 mycroft {
1029 1.1 mycroft bus_space_tag_t iot = sc->sc_iot;
1030 1.1 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1031 1.5 thorpej bus_dma_segment_t seg;
1032 1.1 mycroft struct aha_devices devices;
1033 1.1 mycroft struct aha_setup setup;
1034 1.1 mycroft struct aha_mailbox mailbox;
1035 1.6 hannken int i, j, initial_ccbs, rseg;
1036 1.1 mycroft
1037 1.1 mycroft /*
1038 1.1 mycroft * XXX
1039 1.1 mycroft * If we are a 1542C or later, disable the extended BIOS so that the
1040 1.1 mycroft * mailbox interface is unlocked.
1041 1.1 mycroft * No need to check the extended BIOS flags as some of the
1042 1.1 mycroft * extensions that cause us problems are not flagged in that byte.
1043 1.1 mycroft */
1044 1.1 mycroft if (!strncmp(sc->sc_model, "1542C", 5)) {
1045 1.1 mycroft struct aha_extbios extbios;
1046 1.1 mycroft struct aha_unlock unlock;
1047 1.1 mycroft
1048 1.1 mycroft printf("%s: unlocking mailbox interface\n", sc->sc_dev.dv_xname);
1049 1.1 mycroft extbios.cmd.opcode = AHA_EXT_BIOS;
1050 1.1 mycroft aha_cmd(iot, ioh, sc,
1051 1.1 mycroft sizeof(extbios.cmd), (u_char *)&extbios.cmd,
1052 1.1 mycroft sizeof(extbios.reply), (u_char *)&extbios.reply);
1053 1.1 mycroft
1054 1.1 mycroft #ifdef AHADEBUG
1055 1.1 mycroft printf("%s: flags=%02x, mailboxlock=%02x\n",
1056 1.1 mycroft sc->sc_dev.dv_xname,
1057 1.1 mycroft extbios.reply.flags, extbios.reply.mailboxlock);
1058 1.1 mycroft #endif /* AHADEBUG */
1059 1.1 mycroft
1060 1.1 mycroft unlock.cmd.opcode = AHA_MBX_ENABLE;
1061 1.1 mycroft unlock.cmd.junk = 0;
1062 1.1 mycroft unlock.cmd.magic = extbios.reply.mailboxlock;
1063 1.1 mycroft aha_cmd(iot, ioh, sc,
1064 1.1 mycroft sizeof(unlock.cmd), (u_char *)&unlock.cmd,
1065 1.1 mycroft 0, (u_char *)0);
1066 1.1 mycroft }
1067 1.1 mycroft
1068 1.1 mycroft #if 0
1069 1.1 mycroft /*
1070 1.1 mycroft * Change the bus on/off times to not clash with other dma users.
1071 1.1 mycroft */
1072 1.1 mycroft aha_cmd(iot, ioh, 1, 0, 0, 0, AHA_BUS_ON_TIME_SET, 7);
1073 1.1 mycroft aha_cmd(iot, ioh, 1, 0, 0, 0, AHA_BUS_OFF_TIME_SET, 4);
1074 1.1 mycroft #endif
1075 1.1 mycroft
1076 1.1 mycroft /* Inquire Installed Devices (to force synchronous negotiation). */
1077 1.1 mycroft devices.cmd.opcode = AHA_INQUIRE_DEVICES;
1078 1.1 mycroft aha_cmd(iot, ioh, sc,
1079 1.1 mycroft sizeof(devices.cmd), (u_char *)&devices.cmd,
1080 1.1 mycroft sizeof(devices.reply), (u_char *)&devices.reply);
1081 1.1 mycroft
1082 1.6 hannken /* Count installed units */
1083 1.6 hannken initial_ccbs = 0;
1084 1.6 hannken for (i = 0; i < 8; i++) {
1085 1.6 hannken for (j = 0; j < 8; j++) {
1086 1.6 hannken if (((devices.reply.lun_map[i] >> j) & 1) == 1)
1087 1.6 hannken initial_ccbs += 1;
1088 1.6 hannken }
1089 1.6 hannken }
1090 1.6 hannken initial_ccbs *= sc->sc_link.openings;
1091 1.6 hannken
1092 1.1 mycroft /* Obtain setup information from. */
1093 1.1 mycroft setup.cmd.opcode = AHA_INQUIRE_SETUP;
1094 1.1 mycroft setup.cmd.len = sizeof(setup.reply);
1095 1.1 mycroft aha_cmd(iot, ioh, sc,
1096 1.1 mycroft sizeof(setup.cmd), (u_char *)&setup.cmd,
1097 1.1 mycroft sizeof(setup.reply), (u_char *)&setup.reply);
1098 1.1 mycroft
1099 1.1 mycroft printf("%s: %s, %s\n",
1100 1.1 mycroft sc->sc_dev.dv_xname,
1101 1.1 mycroft setup.reply.sync_neg ? "sync" : "async",
1102 1.1 mycroft setup.reply.parity ? "parity" : "no parity");
1103 1.1 mycroft
1104 1.1 mycroft for (i = 0; i < 8; i++) {
1105 1.1 mycroft if (!setup.reply.sync[i].valid ||
1106 1.1 mycroft (!setup.reply.sync[i].offset && !setup.reply.sync[i].period))
1107 1.1 mycroft continue;
1108 1.1 mycroft printf("%s targ %d: sync, offset %d, period %dnsec\n",
1109 1.1 mycroft sc->sc_dev.dv_xname, i,
1110 1.1 mycroft setup.reply.sync[i].offset, setup.reply.sync[i].period * 50 + 200);
1111 1.1 mycroft }
1112 1.1 mycroft
1113 1.1 mycroft /*
1114 1.5 thorpej * Allocate the mailbox.
1115 1.5 thorpej */
1116 1.5 thorpej if (bus_dmamem_alloc(sc->sc_dmat, NBPG, NBPG, 0, &seg, 1,
1117 1.5 thorpej &rseg, BUS_DMA_NOWAIT) ||
1118 1.5 thorpej bus_dmamem_map(sc->sc_dmat, &seg, rseg, NBPG,
1119 1.5 thorpej (caddr_t *)&wmbx, BUS_DMA_NOWAIT|BUS_DMAMEM_NOSYNC))
1120 1.5 thorpej panic("aha_init: can't create or map mailbox");
1121 1.5 thorpej
1122 1.5 thorpej /*
1123 1.5 thorpej * Since DMA memory allocation is always rounded up to a
1124 1.5 thorpej * page size, create some ccbs from the leftovers.
1125 1.5 thorpej */
1126 1.5 thorpej if (aha_create_ccbs(sc, ((caddr_t)wmbx) +
1127 1.5 thorpej ALIGN(sizeof(struct aha_mbx)),
1128 1.6 hannken NBPG - ALIGN(sizeof(struct aha_mbx)), initial_ccbs))
1129 1.5 thorpej panic("aha_init: can't create ccbs");
1130 1.5 thorpej
1131 1.5 thorpej /*
1132 1.5 thorpej * Create and load the mailbox DMA map.
1133 1.5 thorpej */
1134 1.5 thorpej if (bus_dmamap_create(sc->sc_dmat, sizeof(struct aha_mbx), 1,
1135 1.5 thorpej sizeof(struct aha_mbx), 0, BUS_DMA_NOWAIT, &sc->sc_dmamap_mbox) ||
1136 1.5 thorpej bus_dmamap_load(sc->sc_dmat, sc->sc_dmamap_mbox, wmbx,
1137 1.5 thorpej sizeof(struct aha_mbx), NULL, BUS_DMA_NOWAIT))
1138 1.5 thorpej panic("aha_init: can't create or load mailbox dma map");
1139 1.5 thorpej
1140 1.5 thorpej /*
1141 1.1 mycroft * Set up initial mail box for round-robin operation.
1142 1.1 mycroft */
1143 1.1 mycroft for (i = 0; i < AHA_MBX_SIZE; i++) {
1144 1.1 mycroft wmbx->mbo[i].cmd = AHA_MBO_FREE;
1145 1.1 mycroft wmbx->mbi[i].stat = AHA_MBI_FREE;
1146 1.1 mycroft }
1147 1.1 mycroft wmbx->cmbo = wmbx->tmbo = &wmbx->mbo[0];
1148 1.1 mycroft wmbx->tmbi = &wmbx->mbi[0];
1149 1.1 mycroft sc->sc_mbofull = 0;
1150 1.1 mycroft
1151 1.1 mycroft /* Initialize mail box. */
1152 1.1 mycroft mailbox.cmd.opcode = AHA_MBX_INIT;
1153 1.1 mycroft mailbox.cmd.nmbx = AHA_MBX_SIZE;
1154 1.5 thorpej ltophys(sc->sc_dmamap_mbox->dm_segs[0].ds_addr, mailbox.cmd.addr);
1155 1.1 mycroft aha_cmd(iot, ioh, sc,
1156 1.1 mycroft sizeof(mailbox.cmd), (u_char *)&mailbox.cmd,
1157 1.1 mycroft 0, (u_char *)0);
1158 1.1 mycroft }
1159 1.1 mycroft
1160 1.1 mycroft void
1161 1.1 mycroft aha_inquire_setup_information(sc)
1162 1.1 mycroft struct aha_softc *sc;
1163 1.1 mycroft {
1164 1.1 mycroft bus_space_tag_t iot = sc->sc_iot;
1165 1.1 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1166 1.1 mycroft struct aha_revision revision;
1167 1.1 mycroft u_char sts;
1168 1.1 mycroft int i;
1169 1.1 mycroft char *p;
1170 1.1 mycroft
1171 1.1 mycroft strcpy(sc->sc_model, "unknown");
1172 1.1 mycroft
1173 1.1 mycroft /*
1174 1.1 mycroft * Assume we have a board at this stage, do an adapter inquire
1175 1.1 mycroft * to find out what type of controller it is. If the command
1176 1.1 mycroft * fails, we assume it's either a crusty board or an old 1542
1177 1.1 mycroft * clone, and skip the board-specific stuff.
1178 1.1 mycroft */
1179 1.1 mycroft revision.cmd.opcode = AHA_INQUIRE_REVISION;
1180 1.1 mycroft if (aha_cmd(iot, ioh, sc,
1181 1.1 mycroft sizeof(revision.cmd), (u_char *)&revision.cmd,
1182 1.1 mycroft sizeof(revision.reply), (u_char *)&revision.reply)) {
1183 1.1 mycroft /*
1184 1.1 mycroft * aha_cmd() already started the reset. It's not clear we
1185 1.1 mycroft * even need to bother here.
1186 1.1 mycroft */
1187 1.1 mycroft for (i = AHA_RESET_TIMEOUT; i; i--) {
1188 1.1 mycroft sts = bus_space_read_1(iot, ioh, AHA_STAT_PORT);
1189 1.1 mycroft if (sts == (AHA_STAT_IDLE | AHA_STAT_INIT))
1190 1.1 mycroft break;
1191 1.1 mycroft delay(1000);
1192 1.1 mycroft }
1193 1.1 mycroft if (!i) {
1194 1.1 mycroft #ifdef AHADEBUG
1195 1.1 mycroft printf("aha_init: soft reset failed\n");
1196 1.1 mycroft #endif /* AHADEBUG */
1197 1.1 mycroft return;
1198 1.1 mycroft }
1199 1.1 mycroft #ifdef AHADEBUG
1200 1.1 mycroft printf("aha_init: inquire command failed\n");
1201 1.1 mycroft #endif /* AHADEBUG */
1202 1.1 mycroft goto noinquire;
1203 1.1 mycroft }
1204 1.1 mycroft
1205 1.1 mycroft #ifdef AHADEBUG
1206 1.1 mycroft printf("%s: inquire %x, %x, %x, %x\n",
1207 1.1 mycroft sc->sc_dev.dv_xname,
1208 1.1 mycroft revision.reply.boardid, revision.reply.spec_opts,
1209 1.1 mycroft revision.reply.revision_1, revision.reply.revision_2);
1210 1.1 mycroft #endif /* AHADEBUG */
1211 1.1 mycroft
1212 1.1 mycroft switch (revision.reply.boardid) {
1213 1.1 mycroft case 0x31:
1214 1.1 mycroft strcpy(sc->sc_model, "1540");
1215 1.1 mycroft break;
1216 1.1 mycroft case 0x41:
1217 1.1 mycroft strcpy(sc->sc_model, "1540A/1542A/1542B");
1218 1.1 mycroft break;
1219 1.1 mycroft case 0x42:
1220 1.1 mycroft strcpy(sc->sc_model, "1640");
1221 1.1 mycroft break;
1222 1.1 mycroft case 0x43:
1223 1.1 mycroft strcpy(sc->sc_model, "1542C");
1224 1.1 mycroft break;
1225 1.1 mycroft case 0x44:
1226 1.1 mycroft case 0x45:
1227 1.1 mycroft strcpy(sc->sc_model, "1542CF");
1228 1.1 mycroft break;
1229 1.1 mycroft case 0x46:
1230 1.1 mycroft strcpy(sc->sc_model, "1542CP");
1231 1.1 mycroft break;
1232 1.1 mycroft }
1233 1.1 mycroft
1234 1.1 mycroft p = sc->sc_firmware;
1235 1.1 mycroft *p++ = revision.reply.revision_1;
1236 1.1 mycroft *p++ = '.';
1237 1.1 mycroft *p++ = revision.reply.revision_2;
1238 1.1 mycroft *p = '\0';
1239 1.1 mycroft
1240 1.1 mycroft noinquire:
1241 1.2 sommerfe printf("%s: model AHA-%s, firmware %s\n",
1242 1.2 sommerfe sc->sc_dev.dv_xname,
1243 1.2 sommerfe sc->sc_model, sc->sc_firmware);
1244 1.1 mycroft }
1245 1.1 mycroft
1246 1.1 mycroft void
1247 1.1 mycroft ahaminphys(bp)
1248 1.1 mycroft struct buf *bp;
1249 1.1 mycroft {
1250 1.1 mycroft
1251 1.5 thorpej if (bp->b_bcount > AHA_MAXXFER)
1252 1.5 thorpej bp->b_bcount = AHA_MAXXFER;
1253 1.1 mycroft minphys(bp);
1254 1.1 mycroft }
1255 1.1 mycroft
1256 1.1 mycroft /*
1257 1.1 mycroft * start a scsi operation given the command and the data address. Also needs
1258 1.1 mycroft * the unit, target and lu.
1259 1.1 mycroft */
1260 1.1 mycroft int
1261 1.1 mycroft aha_scsi_cmd(xs)
1262 1.7 bouyer struct scsipi_xfer *xs;
1263 1.1 mycroft {
1264 1.7 bouyer struct scsipi_link *sc_link = xs->sc_link;
1265 1.1 mycroft struct aha_softc *sc = sc_link->adapter_softc;
1266 1.5 thorpej bus_dma_tag_t dmat = sc->sc_dmat;
1267 1.1 mycroft struct aha_ccb *ccb;
1268 1.5 thorpej int error, seg, flags, s;
1269 1.10 thorpej int fromqueue = 0, dontqueue = 0;
1270 1.1 mycroft
1271 1.1 mycroft SC_DEBUG(sc_link, SDEV_DB2, ("aha_scsi_cmd\n"));
1272 1.10 thorpej
1273 1.10 thorpej s = splbio(); /* protect the queue */
1274 1.10 thorpej
1275 1.10 thorpej /*
1276 1.10 thorpej * If we're running the queue from aha_done(), we've been
1277 1.10 thorpej * called with the first queue entry as our argument.
1278 1.10 thorpej */
1279 1.10 thorpej if (xs == sc->sc_queue.lh_first) {
1280 1.10 thorpej xs = aha_dequeue(sc);
1281 1.10 thorpej fromqueue = 1;
1282 1.10 thorpej goto get_ccb;
1283 1.10 thorpej }
1284 1.10 thorpej
1285 1.10 thorpej /* Polled requests can't be queued for later. */
1286 1.10 thorpej dontqueue = xs->flags & SCSI_POLL;
1287 1.10 thorpej
1288 1.10 thorpej /*
1289 1.10 thorpej * If there are jobs in the queue, run them first.
1290 1.10 thorpej */
1291 1.10 thorpej if (sc->sc_queue.lh_first != NULL) {
1292 1.10 thorpej /*
1293 1.10 thorpej * If we can't queue, we have to abort, since
1294 1.10 thorpej * we have to preserve order.
1295 1.10 thorpej */
1296 1.10 thorpej if (dontqueue) {
1297 1.10 thorpej splx(s);
1298 1.10 thorpej xs->error = XS_DRIVER_STUFFUP;
1299 1.10 thorpej return (TRY_AGAIN_LATER);
1300 1.10 thorpej }
1301 1.10 thorpej
1302 1.10 thorpej /*
1303 1.10 thorpej * Swap with the first queue entry.
1304 1.10 thorpej */
1305 1.10 thorpej aha_enqueue(sc, xs, 0);
1306 1.10 thorpej xs = aha_dequeue(sc);
1307 1.10 thorpej fromqueue = 1;
1308 1.10 thorpej }
1309 1.10 thorpej
1310 1.10 thorpej get_ccb:
1311 1.1 mycroft /*
1312 1.1 mycroft * get a ccb to use. If the transfer
1313 1.1 mycroft * is from a buf (possibly from interrupt time)
1314 1.1 mycroft * then we can't allow it to sleep
1315 1.1 mycroft */
1316 1.1 mycroft flags = xs->flags;
1317 1.1 mycroft if ((ccb = aha_get_ccb(sc, flags)) == NULL) {
1318 1.10 thorpej /*
1319 1.10 thorpej * If we can't queue, we lose.
1320 1.10 thorpej */
1321 1.10 thorpej if (dontqueue) {
1322 1.10 thorpej splx(s);
1323 1.10 thorpej xs->error = XS_DRIVER_STUFFUP;
1324 1.10 thorpej return (TRY_AGAIN_LATER);
1325 1.10 thorpej }
1326 1.10 thorpej
1327 1.10 thorpej /*
1328 1.10 thorpej * Stuff ourselves into the queue, in front
1329 1.10 thorpej * if we came off in the first place.
1330 1.10 thorpej */
1331 1.10 thorpej aha_enqueue(sc, xs, fromqueue);
1332 1.10 thorpej splx(s);
1333 1.10 thorpej return (SUCCESSFULLY_QUEUED);
1334 1.1 mycroft }
1335 1.10 thorpej
1336 1.10 thorpej splx(s); /* done playing with the queue */
1337 1.10 thorpej
1338 1.1 mycroft ccb->xs = xs;
1339 1.1 mycroft ccb->timeout = xs->timeout;
1340 1.1 mycroft
1341 1.1 mycroft /*
1342 1.1 mycroft * Put all the arguments for the xfer in the ccb
1343 1.1 mycroft */
1344 1.1 mycroft if (flags & SCSI_RESET) {
1345 1.1 mycroft ccb->opcode = AHA_RESET_CCB;
1346 1.1 mycroft ccb->scsi_cmd_length = 0;
1347 1.1 mycroft } else {
1348 1.1 mycroft /* can't use S/G if zero length */
1349 1.1 mycroft ccb->opcode = (xs->datalen ? AHA_INIT_SCAT_GATH_CCB
1350 1.1 mycroft : AHA_INITIATOR_CCB);
1351 1.1 mycroft bcopy(xs->cmd, &ccb->scsi_cmd,
1352 1.1 mycroft ccb->scsi_cmd_length = xs->cmdlen);
1353 1.1 mycroft }
1354 1.1 mycroft
1355 1.1 mycroft if (xs->datalen) {
1356 1.5 thorpej /*
1357 1.5 thorpej * Map the DMA transfer.
1358 1.5 thorpej */
1359 1.5 thorpej #ifdef TFS
1360 1.1 mycroft if (flags & SCSI_DATA_UIO) {
1361 1.5 thorpej error = bus_dmamap_load_uio(dmat,
1362 1.5 thorpej ccb->dmamap_xfer, (struct uio *)xs->data,
1363 1.5 thorpej (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
1364 1.5 thorpej BUS_DMA_WAITOK);
1365 1.1 mycroft } else
1366 1.5 thorpej #endif
1367 1.1 mycroft {
1368 1.5 thorpej error = bus_dmamap_load(dmat,
1369 1.5 thorpej ccb->dmamap_xfer, xs->data, xs->datalen, NULL,
1370 1.5 thorpej (flags & SCSI_NOSLEEP) ? BUS_DMA_NOWAIT :
1371 1.5 thorpej BUS_DMA_WAITOK);
1372 1.5 thorpej }
1373 1.5 thorpej
1374 1.5 thorpej if (error) {
1375 1.5 thorpej if (error == EFBIG) {
1376 1.5 thorpej printf("%s: aha_scsi_cmd, more than %d"
1377 1.5 thorpej " dma segments\n",
1378 1.5 thorpej sc->sc_dev.dv_xname, AHA_NSEG);
1379 1.5 thorpej } else {
1380 1.5 thorpej printf("%s: aha_scsi_cmd, error %d loading"
1381 1.5 thorpej " dma map\n",
1382 1.5 thorpej sc->sc_dev.dv_xname, error);
1383 1.1 mycroft }
1384 1.5 thorpej goto bad;
1385 1.1 mycroft }
1386 1.5 thorpej
1387 1.5 thorpej bus_dmamap_sync(dmat, ccb->dmamap_xfer,
1388 1.5 thorpej (flags & SCSI_DATA_IN) ? BUS_DMASYNC_PREREAD :
1389 1.5 thorpej BUS_DMASYNC_PREWRITE);
1390 1.5 thorpej
1391 1.5 thorpej /*
1392 1.5 thorpej * Load the hardware scatter/gather map with the
1393 1.5 thorpej * contents of the DMA map.
1394 1.5 thorpej */
1395 1.5 thorpej for (seg = 0; seg < ccb->dmamap_xfer->dm_nsegs; seg++) {
1396 1.5 thorpej ltophys(ccb->dmamap_xfer->dm_segs[seg].ds_addr,
1397 1.5 thorpej ccb->scat_gath[seg].seg_addr);
1398 1.5 thorpej ltophys(ccb->dmamap_xfer->dm_segs[seg].ds_len,
1399 1.5 thorpej ccb->scat_gath[seg].seg_len);
1400 1.1 mycroft }
1401 1.5 thorpej
1402 1.5 thorpej ltophys(ccb->dmamap_self->dm_segs[0].ds_addr +
1403 1.5 thorpej offsetof(struct aha_ccb, scat_gath), ccb->data_addr);
1404 1.5 thorpej ltophys(ccb->dmamap_xfer->dm_nsegs *
1405 1.5 thorpej sizeof(struct aha_scat_gath), ccb->data_length);
1406 1.5 thorpej } else {
1407 1.5 thorpej /*
1408 1.5 thorpej * No data xfer, use non S/G values.
1409 1.5 thorpej */
1410 1.1 mycroft ltophys(0, ccb->data_addr);
1411 1.1 mycroft ltophys(0, ccb->data_length);
1412 1.1 mycroft }
1413 1.1 mycroft
1414 1.1 mycroft ccb->data_out = 0;
1415 1.1 mycroft ccb->data_in = 0;
1416 1.7 bouyer ccb->target = sc_link->scsipi_scsi.target;
1417 1.7 bouyer ccb->lun = sc_link->scsipi_scsi.lun;
1418 1.1 mycroft ccb->req_sense_length = sizeof(ccb->scsi_sense);
1419 1.1 mycroft ccb->host_stat = 0x00;
1420 1.1 mycroft ccb->target_stat = 0x00;
1421 1.1 mycroft ccb->link_id = 0;
1422 1.1 mycroft ltophys(0, ccb->link_addr);
1423 1.1 mycroft
1424 1.1 mycroft s = splbio();
1425 1.1 mycroft aha_queue_ccb(sc, ccb);
1426 1.1 mycroft splx(s);
1427 1.1 mycroft
1428 1.1 mycroft /*
1429 1.1 mycroft * Usually return SUCCESSFULLY QUEUED
1430 1.1 mycroft */
1431 1.1 mycroft SC_DEBUG(sc_link, SDEV_DB3, ("cmd_sent\n"));
1432 1.1 mycroft if ((flags & SCSI_POLL) == 0)
1433 1.1 mycroft return (SUCCESSFULLY_QUEUED);
1434 1.1 mycroft
1435 1.1 mycroft /*
1436 1.1 mycroft * If we can't use interrupts, poll on completion
1437 1.1 mycroft */
1438 1.1 mycroft if (aha_poll(sc, xs, ccb->timeout)) {
1439 1.1 mycroft aha_timeout(ccb);
1440 1.1 mycroft if (aha_poll(sc, xs, ccb->timeout))
1441 1.1 mycroft aha_timeout(ccb);
1442 1.1 mycroft }
1443 1.1 mycroft return (COMPLETE);
1444 1.1 mycroft
1445 1.1 mycroft bad:
1446 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
1447 1.1 mycroft aha_free_ccb(sc, ccb);
1448 1.1 mycroft return (COMPLETE);
1449 1.1 mycroft }
1450 1.1 mycroft
1451 1.1 mycroft /*
1452 1.1 mycroft * Poll a particular unit, looking for a particular xs
1453 1.1 mycroft */
1454 1.1 mycroft int
1455 1.1 mycroft aha_poll(sc, xs, count)
1456 1.1 mycroft struct aha_softc *sc;
1457 1.7 bouyer struct scsipi_xfer *xs;
1458 1.1 mycroft int count;
1459 1.1 mycroft {
1460 1.1 mycroft bus_space_tag_t iot = sc->sc_iot;
1461 1.1 mycroft bus_space_handle_t ioh = sc->sc_ioh;
1462 1.1 mycroft
1463 1.1 mycroft /* timeouts are in msec, so we loop in 1000 usec cycles */
1464 1.1 mycroft while (count) {
1465 1.1 mycroft /*
1466 1.1 mycroft * If we had interrupts enabled, would we
1467 1.1 mycroft * have got an interrupt?
1468 1.1 mycroft */
1469 1.1 mycroft if (bus_space_read_1(iot, ioh, AHA_INTR_PORT) & AHA_INTR_ANYINTR)
1470 1.1 mycroft aha_intr(sc);
1471 1.1 mycroft if (xs->flags & ITSDONE)
1472 1.1 mycroft return (0);
1473 1.1 mycroft delay(1000); /* only happens in boot so ok */
1474 1.1 mycroft count--;
1475 1.1 mycroft }
1476 1.1 mycroft return (1);
1477 1.1 mycroft }
1478 1.1 mycroft
1479 1.1 mycroft void
1480 1.1 mycroft aha_timeout(arg)
1481 1.1 mycroft void *arg;
1482 1.1 mycroft {
1483 1.1 mycroft struct aha_ccb *ccb = arg;
1484 1.7 bouyer struct scsipi_xfer *xs = ccb->xs;
1485 1.7 bouyer struct scsipi_link *sc_link = xs->sc_link;
1486 1.1 mycroft struct aha_softc *sc = sc_link->adapter_softc;
1487 1.1 mycroft int s;
1488 1.1 mycroft
1489 1.7 bouyer scsi_print_addr(sc_link);
1490 1.1 mycroft printf("timed out");
1491 1.1 mycroft
1492 1.1 mycroft s = splbio();
1493 1.1 mycroft
1494 1.1 mycroft #ifdef AHADIAG
1495 1.1 mycroft /*
1496 1.1 mycroft * If The ccb's mbx is not free, then the board has gone south?
1497 1.1 mycroft */
1498 1.1 mycroft aha_collect_mbo(sc);
1499 1.1 mycroft if (ccb->flags & CCB_SENDING) {
1500 1.1 mycroft printf("%s: not taking commands!\n", sc->sc_dev.dv_xname);
1501 1.1 mycroft Debugger();
1502 1.1 mycroft }
1503 1.1 mycroft #endif
1504 1.1 mycroft
1505 1.1 mycroft /*
1506 1.1 mycroft * If it has been through before, then
1507 1.1 mycroft * a previous abort has failed, don't
1508 1.1 mycroft * try abort again
1509 1.1 mycroft */
1510 1.1 mycroft if (ccb->flags & CCB_ABORT) {
1511 1.1 mycroft /* abort timed out */
1512 1.1 mycroft printf(" AGAIN\n");
1513 1.1 mycroft /* XXX Must reset! */
1514 1.1 mycroft } else {
1515 1.1 mycroft /* abort the operation that has timed out */
1516 1.1 mycroft printf("\n");
1517 1.1 mycroft ccb->xs->error = XS_TIMEOUT;
1518 1.1 mycroft ccb->timeout = AHA_ABORT_TIMEOUT;
1519 1.1 mycroft ccb->flags |= CCB_ABORT;
1520 1.1 mycroft aha_queue_ccb(sc, ccb);
1521 1.1 mycroft }
1522 1.1 mycroft
1523 1.1 mycroft splx(s);
1524 1.1 mycroft }
1525