aic6360.c revision 1.44 1 1.44 cgd /* $NetBSD: aic6360.c,v 1.44 1996/04/11 22:28:08 cgd Exp $ */
2 1.40 mycroft
3 1.40 mycroft #define integrate static inline
4 1.9 cgd
5 1.1 mycroft /*
6 1.40 mycroft * Copyright (c) 1994, 1995, 1996 Charles M. Hannum. All rights reserved.
7 1.14 mycroft *
8 1.14 mycroft * Redistribution and use in source and binary forms, with or without
9 1.14 mycroft * modification, are permitted provided that the following conditions
10 1.14 mycroft * are met:
11 1.14 mycroft * 1. Redistributions of source code must retain the above copyright
12 1.14 mycroft * notice, this list of conditions and the following disclaimer.
13 1.14 mycroft * 2. Redistributions in binary form must reproduce the above copyright
14 1.14 mycroft * notice, this list of conditions and the following disclaimer in the
15 1.14 mycroft * documentation and/or other materials provided with the distribution.
16 1.14 mycroft * 3. All advertising materials mentioning features or use of this software
17 1.14 mycroft * must display the following acknowledgement:
18 1.40 mycroft * This product includes software developed by Charles M. Hannum.
19 1.14 mycroft * 4. The name of the author may not be used to endorse or promote products
20 1.14 mycroft * derived from this software without specific prior written permission.
21 1.14 mycroft *
22 1.1 mycroft * Copyright (c) 1994 Jarle Greipsland
23 1.1 mycroft * All rights reserved.
24 1.1 mycroft *
25 1.1 mycroft * Redistribution and use in source and binary forms, with or without
26 1.1 mycroft * modification, are permitted provided that the following conditions
27 1.1 mycroft * are met:
28 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
29 1.1 mycroft * notice, this list of conditions and the following disclaimer.
30 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
31 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
32 1.1 mycroft * documentation and/or other materials provided with the distribution.
33 1.33 mycroft * 3. The name of the author may not be used to endorse or promote products
34 1.1 mycroft * derived from this software without specific prior written permission.
35 1.1 mycroft *
36 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
37 1.1 mycroft * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
38 1.1 mycroft * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
39 1.1 mycroft * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
40 1.1 mycroft * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
41 1.1 mycroft * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
42 1.1 mycroft * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
43 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
44 1.1 mycroft * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
45 1.1 mycroft * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
46 1.1 mycroft * POSSIBILITY OF SUCH DAMAGE.
47 1.1 mycroft */
48 1.1 mycroft
49 1.1 mycroft /*
50 1.1 mycroft * Acknowledgements: Many of the algorithms used in this driver are
51 1.1 mycroft * inspired by the work of Julian Elischer (julian (at) tfs.com) and
52 1.1 mycroft * Charles Hannum (mycroft (at) duality.gnu.ai.mit.edu). Thanks a million!
53 1.1 mycroft */
54 1.1 mycroft
55 1.1 mycroft /* TODO list:
56 1.1 mycroft * 1) Get the DMA stuff working.
57 1.1 mycroft * 2) Get the iov/uio stuff working. Is this a good thing ???
58 1.33 mycroft * 3) Get the synch stuff working.
59 1.1 mycroft * 4) Rewrite it to use malloc for the acb structs instead of static alloc.?
60 1.1 mycroft */
61 1.1 mycroft
62 1.1 mycroft /*
63 1.1 mycroft * A few customizable items:
64 1.1 mycroft */
65 1.1 mycroft
66 1.33 mycroft /* Use doubleword transfers to/from SCSI chip. Note: This requires
67 1.1 mycroft * motherboard support. Basicly, some motherboard chipsets are able to
68 1.1 mycroft * split a 32 bit I/O operation into two 16 bit I/O operations,
69 1.1 mycroft * transparently to the processor. This speeds up some things, notably long
70 1.1 mycroft * data transfers.
71 1.1 mycroft */
72 1.14 mycroft #define AIC_USE_DWORDS 0
73 1.1 mycroft
74 1.14 mycroft /* Synchronous data transfers? */
75 1.29 mycroft #define AIC_USE_SYNCHRONOUS 1
76 1.29 mycroft #define AIC_SYNC_REQ_ACK_OFS 8
77 1.1 mycroft
78 1.14 mycroft /* Wide data transfers? */
79 1.14 mycroft #define AIC_USE_WIDE 0
80 1.14 mycroft #define AIC_MAX_WIDTH 0
81 1.14 mycroft
82 1.1 mycroft /* Max attempts made to transmit a message */
83 1.1 mycroft #define AIC_MSG_MAX_ATTEMPT 3 /* Not used now XXX */
84 1.1 mycroft
85 1.1 mycroft /* Use DMA (else we do programmed I/O using string instructions) (not yet!)*/
86 1.1 mycroft #define AIC_USE_EISA_DMA 0
87 1.1 mycroft #define AIC_USE_ISA_DMA 0
88 1.1 mycroft
89 1.1 mycroft /* How to behave on the (E)ISA bus when/if DMAing (on<<4) + off in us */
90 1.1 mycroft #define EISA_BRST_TIM ((15<<4) + 1) /* 15us on, 1us off */
91 1.1 mycroft
92 1.1 mycroft /* Some spin loop parameters (essentially how long to wait some places)
93 1.1 mycroft * The problem(?) is that sometimes we expect either to be able to transmit a
94 1.1 mycroft * byte or to get a new one from the SCSI bus pretty soon. In order to avoid
95 1.1 mycroft * returning from the interrupt just to get yanked back for the next byte we
96 1.1 mycroft * may spin in the interrupt routine waiting for this byte to come. How long?
97 1.1 mycroft * This is really (SCSI) device and processor dependent. Tuneable, I guess.
98 1.1 mycroft */
99 1.21 mycroft #define AIC_MSGIN_SPIN 1 /* Will spinwait upto ?ms for a new msg byte */
100 1.21 mycroft #define AIC_MSGOUT_SPIN 1
101 1.1 mycroft
102 1.33 mycroft /* Include debug functions? At the end of this file there are a bunch of
103 1.33 mycroft * functions that will print out various information regarding queued SCSI
104 1.33 mycroft * commands, driver state and chip contents. You can call them from the
105 1.1 mycroft * kernel debugger. If you set AIC_DEBUG to 0 they are not included (the
106 1.1 mycroft * kernel uses less memory) but you lose the debugging facilities.
107 1.1 mycroft */
108 1.21 mycroft #define AIC_DEBUG 1
109 1.1 mycroft
110 1.42 mycroft #define AIC_ABORT_TIMEOUT 2000 /* time to wait for abort */
111 1.42 mycroft
112 1.1 mycroft /* End of customizable parameters */
113 1.1 mycroft
114 1.1 mycroft #if AIC_USE_EISA_DMA || AIC_USE_ISA_DMA
115 1.1 mycroft #error "I said not yet! Start paying attention... grumble"
116 1.1 mycroft #endif
117 1.1 mycroft
118 1.1 mycroft #include <sys/types.h>
119 1.1 mycroft #include <sys/param.h>
120 1.1 mycroft #include <sys/systm.h>
121 1.1 mycroft #include <sys/kernel.h>
122 1.1 mycroft #include <sys/errno.h>
123 1.1 mycroft #include <sys/ioctl.h>
124 1.1 mycroft #include <sys/device.h>
125 1.1 mycroft #include <sys/buf.h>
126 1.1 mycroft #include <sys/proc.h>
127 1.1 mycroft #include <sys/user.h>
128 1.1 mycroft #include <sys/queue.h>
129 1.1 mycroft
130 1.1 mycroft #include <machine/pio.h>
131 1.1 mycroft
132 1.1 mycroft #include <scsi/scsi_all.h>
133 1.21 mycroft #include <scsi/scsi_message.h>
134 1.1 mycroft #include <scsi/scsiconf.h>
135 1.1 mycroft
136 1.31 cgd #include <dev/isa/isavar.h>
137 1.1 mycroft
138 1.1 mycroft /* Definitions, most of them has turned out to be unneccesary, but here they
139 1.1 mycroft * are anyway.
140 1.1 mycroft */
141 1.1 mycroft
142 1.1 mycroft /* AIC6360 definitions */
143 1.40 mycroft #define SCSISEQ 0x00 /* SCSI sequence control */
144 1.40 mycroft #define SXFRCTL0 0x01 /* SCSI transfer control 0 */
145 1.40 mycroft #define SXFRCTL1 0x02 /* SCSI transfer control 1 */
146 1.40 mycroft #define SCSISIG 0x03 /* SCSI signal in/out */
147 1.40 mycroft #define SCSIRATE 0x04 /* SCSI rate control */
148 1.40 mycroft #define SCSIID 0x05 /* SCSI ID */
149 1.40 mycroft #define SELID 0x05 /* Selection/Reselection ID */
150 1.40 mycroft #define SCSIDAT 0x06 /* SCSI Latched Data */
151 1.40 mycroft #define SCSIBUS 0x07 /* SCSI Data Bus*/
152 1.40 mycroft #define STCNT0 0x08 /* SCSI transfer count */
153 1.40 mycroft #define STCNT1 0x09
154 1.40 mycroft #define STCNT2 0x0a
155 1.40 mycroft #define CLRSINT0 0x0b /* Clear SCSI interrupts 0 */
156 1.40 mycroft #define SSTAT0 0x0b /* SCSI interrupt status 0 */
157 1.40 mycroft #define CLRSINT1 0x0c /* Clear SCSI interrupts 1 */
158 1.40 mycroft #define SSTAT1 0x0c /* SCSI status 1 */
159 1.40 mycroft #define SSTAT2 0x0d /* SCSI status 2 */
160 1.40 mycroft #define SCSITEST 0x0e /* SCSI test control */
161 1.40 mycroft #define SSTAT3 0x0e /* SCSI status 3 */
162 1.40 mycroft #define CLRSERR 0x0f /* Clear SCSI errors */
163 1.40 mycroft #define SSTAT4 0x0f /* SCSI status 4 */
164 1.40 mycroft #define SIMODE0 0x10 /* SCSI interrupt mode 0 */
165 1.40 mycroft #define SIMODE1 0x11 /* SCSI interrupt mode 1 */
166 1.40 mycroft #define DMACNTRL0 0x12 /* DMA control 0 */
167 1.40 mycroft #define DMACNTRL1 0x13 /* DMA control 1 */
168 1.40 mycroft #define DMASTAT 0x14 /* DMA status */
169 1.40 mycroft #define FIFOSTAT 0x15 /* FIFO status */
170 1.40 mycroft #define DMADATA 0x16 /* DMA data */
171 1.40 mycroft #define DMADATAL 0x16 /* DMA data low byte */
172 1.40 mycroft #define DMADATAH 0x17 /* DMA data high byte */
173 1.40 mycroft #define BRSTCNTRL 0x18 /* Burst Control */
174 1.40 mycroft #define DMADATALONG 0x18
175 1.40 mycroft #define PORTA 0x1a /* Port A */
176 1.40 mycroft #define PORTB 0x1b /* Port B */
177 1.40 mycroft #define REV 0x1c /* Revision (001 for 6360) */
178 1.40 mycroft #define STACK 0x1d /* Stack */
179 1.40 mycroft #define TEST 0x1e /* Test register */
180 1.40 mycroft #define ID 0x1f /* ID register */
181 1.1 mycroft
182 1.1 mycroft #define IDSTRING "(C)1991ADAPTECAIC6360 "
183 1.1 mycroft
184 1.1 mycroft /* What all the bits do */
185 1.1 mycroft
186 1.1 mycroft /* SCSISEQ */
187 1.1 mycroft #define TEMODEO 0x80
188 1.1 mycroft #define ENSELO 0x40
189 1.1 mycroft #define ENSELI 0x20
190 1.1 mycroft #define ENRESELI 0x10
191 1.1 mycroft #define ENAUTOATNO 0x08
192 1.1 mycroft #define ENAUTOATNI 0x04
193 1.1 mycroft #define ENAUTOATNP 0x02
194 1.1 mycroft #define SCSIRSTO 0x01
195 1.1 mycroft
196 1.1 mycroft /* SXFRCTL0 */
197 1.1 mycroft #define SCSIEN 0x80
198 1.1 mycroft #define DMAEN 0x40
199 1.1 mycroft #define CHEN 0x20
200 1.1 mycroft #define CLRSTCNT 0x10
201 1.1 mycroft #define SPIOEN 0x08
202 1.1 mycroft #define CLRCH 0x02
203 1.1 mycroft
204 1.1 mycroft /* SXFRCTL1 */
205 1.1 mycroft #define BITBUCKET 0x80
206 1.1 mycroft #define SWRAPEN 0x40
207 1.1 mycroft #define ENSPCHK 0x20
208 1.1 mycroft #define STIMESEL1 0x10
209 1.1 mycroft #define STIMESEL0 0x08
210 1.1 mycroft #define STIMO_256ms 0x00
211 1.1 mycroft #define STIMO_128ms 0x08
212 1.1 mycroft #define STIMO_64ms 0x10
213 1.1 mycroft #define STIMO_32ms 0x18
214 1.1 mycroft #define ENSTIMER 0x04
215 1.1 mycroft #define BYTEALIGN 0x02
216 1.1 mycroft
217 1.21 mycroft /* SCSISIG (in) */
218 1.1 mycroft #define CDI 0x80
219 1.1 mycroft #define IOI 0x40
220 1.1 mycroft #define MSGI 0x20
221 1.1 mycroft #define ATNI 0x10
222 1.1 mycroft #define SELI 0x08
223 1.1 mycroft #define BSYI 0x04
224 1.1 mycroft #define REQI 0x02
225 1.1 mycroft #define ACKI 0x01
226 1.1 mycroft
227 1.1 mycroft /* Important! The 3 most significant bits of this register, in initiator mode,
228 1.1 mycroft * represents the "expected" SCSI bus phase and can be used to trigger phase
229 1.1 mycroft * mismatch and phase change interrupts. But more important: If there is a
230 1.1 mycroft * phase mismatch the chip will not transfer any data! This is actually a nice
231 1.1 mycroft * feature as it gives us a bit more control over what is happening when we are
232 1.33 mycroft * bursting data (in) through the FIFOs and the phase suddenly changes from
233 1.33 mycroft * DATA IN to STATUS or MESSAGE IN. The transfer will stop and wait for the
234 1.1 mycroft * proper phase to be set in this register instead of dumping the bits into the
235 1.1 mycroft * FIFOs.
236 1.1 mycroft */
237 1.21 mycroft /* SCSISIG (out) */
238 1.1 mycroft #define CDO 0x80
239 1.1 mycroft #define IOO 0x40
240 1.1 mycroft #define MSGO 0x20
241 1.1 mycroft #define ATNO 0x10
242 1.1 mycroft #define SELO 0x08
243 1.1 mycroft #define BSYO 0x04
244 1.1 mycroft #define REQO 0x02
245 1.1 mycroft #define ACKO 0x01
246 1.1 mycroft
247 1.1 mycroft /* Information transfer phases */
248 1.21 mycroft #define PH_DATAOUT (0)
249 1.21 mycroft #define PH_DATAIN (IOI)
250 1.1 mycroft #define PH_CMD (CDI)
251 1.21 mycroft #define PH_STAT (CDI | IOI)
252 1.21 mycroft #define PH_MSGOUT (MSGI | CDI)
253 1.21 mycroft #define PH_MSGIN (MSGI | CDI | IOI)
254 1.21 mycroft
255 1.21 mycroft #define PH_MASK (MSGI | CDI | IOI)
256 1.21 mycroft
257 1.21 mycroft #define PH_INVALID 0xff
258 1.1 mycroft
259 1.1 mycroft /* SCSIRATE */
260 1.1 mycroft #define SXFR2 0x40
261 1.1 mycroft #define SXFR1 0x20
262 1.1 mycroft #define SXFR0 0x10
263 1.1 mycroft #define SOFS3 0x08
264 1.1 mycroft #define SOFS2 0x04
265 1.1 mycroft #define SOFS1 0x02
266 1.1 mycroft #define SOFS0 0x01
267 1.1 mycroft
268 1.1 mycroft /* SCSI ID */
269 1.1 mycroft #define OID2 0x40
270 1.1 mycroft #define OID1 0x20
271 1.1 mycroft #define OID0 0x10
272 1.1 mycroft #define OID_S 4 /* shift value */
273 1.1 mycroft #define TID2 0x04
274 1.1 mycroft #define TID1 0x02
275 1.1 mycroft #define TID0 0x01
276 1.1 mycroft #define SCSI_ID_MASK 0x7
277 1.1 mycroft
278 1.1 mycroft /* SCSI selection/reselection ID (both target *and* initiator) */
279 1.1 mycroft #define SELID7 0x80
280 1.1 mycroft #define SELID6 0x40
281 1.1 mycroft #define SELID5 0x20
282 1.1 mycroft #define SELID4 0x10
283 1.1 mycroft #define SELID3 0x08
284 1.1 mycroft #define SELID2 0x04
285 1.1 mycroft #define SELID1 0x02
286 1.1 mycroft #define SELID0 0x01
287 1.1 mycroft
288 1.1 mycroft /* CLRSINT0 Clears what? (interrupt and/or status bit) */
289 1.1 mycroft #define SETSDONE 0x80
290 1.1 mycroft #define CLRSELDO 0x40 /* I */
291 1.1 mycroft #define CLRSELDI 0x20 /* I+ */
292 1.1 mycroft #define CLRSELINGO 0x10 /* I */
293 1.1 mycroft #define CLRSWRAP 0x08 /* I+S */
294 1.1 mycroft #define CLRSDONE 0x04 /* I+S */
295 1.1 mycroft #define CLRSPIORDY 0x02 /* I */
296 1.1 mycroft #define CLRDMADONE 0x01 /* I */
297 1.1 mycroft
298 1.1 mycroft /* SSTAT0 Howto clear */
299 1.1 mycroft #define TARGET 0x80
300 1.1 mycroft #define SELDO 0x40 /* Selfclearing */
301 1.1 mycroft #define SELDI 0x20 /* Selfclearing when CLRSELDI is set */
302 1.1 mycroft #define SELINGO 0x10 /* Selfclearing */
303 1.1 mycroft #define SWRAP 0x08 /* CLRSWAP */
304 1.1 mycroft #define SDONE 0x04 /* Not used in initiator mode */
305 1.1 mycroft #define SPIORDY 0x02 /* Selfclearing (op on SCSIDAT) */
306 1.1 mycroft #define DMADONE 0x01 /* Selfclearing (all FIFOs empty & T/C */
307 1.1 mycroft
308 1.1 mycroft /* CLRSINT1 Clears what? */
309 1.1 mycroft #define CLRSELTIMO 0x80 /* I+S */
310 1.1 mycroft #define CLRATNO 0x40
311 1.1 mycroft #define CLRSCSIRSTI 0x20 /* I+S */
312 1.1 mycroft #define CLRBUSFREE 0x08 /* I+S */
313 1.1 mycroft #define CLRSCSIPERR 0x04 /* I+S */
314 1.1 mycroft #define CLRPHASECHG 0x02 /* I+S */
315 1.1 mycroft #define CLRREQINIT 0x01 /* I+S */
316 1.1 mycroft
317 1.1 mycroft /* SSTAT1 How to clear? When set?*/
318 1.1 mycroft #define SELTO 0x80 /* C select out timeout */
319 1.1 mycroft #define ATNTARG 0x40 /* Not used in initiator mode */
320 1.1 mycroft #define SCSIRSTI 0x20 /* C RST asserted */
321 1.1 mycroft #define PHASEMIS 0x10 /* Selfclearing */
322 1.1 mycroft #define BUSFREE 0x08 /* C bus free condition */
323 1.1 mycroft #define SCSIPERR 0x04 /* C parity error on inbound data */
324 1.21 mycroft #define PHASECHG 0x02 /* C phase in SCSISIG doesn't match */
325 1.1 mycroft #define REQINIT 0x01 /* C or ACK asserting edge of REQ */
326 1.1 mycroft
327 1.1 mycroft /* SSTAT2 */
328 1.1 mycroft #define SOFFSET 0x20
329 1.1 mycroft #define SEMPTY 0x10
330 1.1 mycroft #define SFULL 0x08
331 1.1 mycroft #define SFCNT2 0x04
332 1.1 mycroft #define SFCNT1 0x02
333 1.1 mycroft #define SFCNT0 0x01
334 1.1 mycroft
335 1.1 mycroft /* SCSITEST */
336 1.1 mycroft #define SCTESTU 0x08
337 1.1 mycroft #define SCTESTD 0x04
338 1.1 mycroft #define STCTEST 0x01
339 1.1 mycroft
340 1.1 mycroft /* SSTAT3 */
341 1.1 mycroft #define SCSICNT3 0x80
342 1.1 mycroft #define SCSICNT2 0x40
343 1.1 mycroft #define SCSICNT1 0x20
344 1.1 mycroft #define SCSICNT0 0x10
345 1.1 mycroft #define OFFCNT3 0x08
346 1.1 mycroft #define OFFCNT2 0x04
347 1.1 mycroft #define OFFCNT1 0x02
348 1.1 mycroft #define OFFCNT0 0x01
349 1.1 mycroft
350 1.1 mycroft /* CLRSERR */
351 1.1 mycroft #define CLRSYNCERR 0x04
352 1.1 mycroft #define CLRFWERR 0x02
353 1.1 mycroft #define CLRFRERR 0x01
354 1.1 mycroft
355 1.1 mycroft /* SSTAT4 */
356 1.1 mycroft #define SYNCERR 0x04
357 1.1 mycroft #define FWERR 0x02
358 1.1 mycroft #define FRERR 0x01
359 1.1 mycroft
360 1.1 mycroft /* SIMODE0 */
361 1.1 mycroft #define ENSELDO 0x40
362 1.1 mycroft #define ENSELDI 0x20
363 1.1 mycroft #define ENSELINGO 0x10
364 1.1 mycroft #define ENSWRAP 0x08
365 1.1 mycroft #define ENSDONE 0x04
366 1.1 mycroft #define ENSPIORDY 0x02
367 1.1 mycroft #define ENDMADONE 0x01
368 1.1 mycroft
369 1.1 mycroft /* SIMODE1 */
370 1.1 mycroft #define ENSELTIMO 0x80
371 1.1 mycroft #define ENATNTARG 0x40
372 1.1 mycroft #define ENSCSIRST 0x20
373 1.1 mycroft #define ENPHASEMIS 0x10
374 1.1 mycroft #define ENBUSFREE 0x08
375 1.1 mycroft #define ENSCSIPERR 0x04
376 1.1 mycroft #define ENPHASECHG 0x02
377 1.1 mycroft #define ENREQINIT 0x01
378 1.1 mycroft
379 1.1 mycroft /* DMACNTRL0 */
380 1.1 mycroft #define ENDMA 0x80
381 1.1 mycroft #define B8MODE 0x40
382 1.1 mycroft #define DMA 0x20
383 1.1 mycroft #define DWORDPIO 0x10
384 1.1 mycroft #define WRITE 0x08
385 1.1 mycroft #define INTEN 0x04
386 1.1 mycroft #define RSTFIFO 0x02
387 1.1 mycroft #define SWINT 0x01
388 1.1 mycroft
389 1.1 mycroft /* DMACNTRL1 */
390 1.1 mycroft #define PWRDWN 0x80
391 1.1 mycroft #define ENSTK32 0x40
392 1.1 mycroft #define STK4 0x10
393 1.1 mycroft #define STK3 0x08
394 1.1 mycroft #define STK2 0x04
395 1.1 mycroft #define STK1 0x02
396 1.1 mycroft #define STK0 0x01
397 1.1 mycroft
398 1.1 mycroft /* DMASTAT */
399 1.1 mycroft #define ATDONE 0x80
400 1.1 mycroft #define WORDRDY 0x40
401 1.1 mycroft #define INTSTAT 0x20
402 1.1 mycroft #define DFIFOFULL 0x10
403 1.1 mycroft #define DFIFOEMP 0x08
404 1.1 mycroft #define DFIFOHF 0x04
405 1.1 mycroft #define DWORDRDY 0x02
406 1.1 mycroft
407 1.1 mycroft /* BRSTCNTRL */
408 1.1 mycroft #define BON3 0x80
409 1.1 mycroft #define BON2 0x40
410 1.1 mycroft #define BON1 0x20
411 1.1 mycroft #define BON0 0x10
412 1.1 mycroft #define BOFF3 0x08
413 1.1 mycroft #define BOFF2 0x04
414 1.1 mycroft #define BOFF1 0x02
415 1.1 mycroft #define BOFF0 0x01
416 1.1 mycroft
417 1.1 mycroft /* TEST */
418 1.1 mycroft #define BOFFTMR 0x40
419 1.1 mycroft #define BONTMR 0x20
420 1.1 mycroft #define STCNTH 0x10
421 1.1 mycroft #define STCNTM 0x08
422 1.1 mycroft #define STCNTL 0x04
423 1.1 mycroft #define SCSIBLK 0x02
424 1.1 mycroft #define DMABLK 0x01
425 1.1 mycroft
426 1.35 thorpej #ifndef DDB
428 1.35 thorpej #define Debugger() panic("should call debugger here (aic6360.c)")
429 1.1 mycroft #endif /* ! DDB */
430 1.2 mycroft
431 1.21 mycroft typedef u_long physaddr;
432 1.1 mycroft typedef u_long physlen;
433 1.1 mycroft
434 1.21 mycroft struct aic_dma_seg {
435 1.21 mycroft physaddr seg_addr;
436 1.1 mycroft physlen seg_len;
437 1.1 mycroft };
438 1.1 mycroft
439 1.1 mycroft #define AIC_NSEG 16
440 1.33 mycroft
441 1.1 mycroft /*
442 1.1 mycroft * ACB. Holds additional information for each SCSI command Comments: We
443 1.1 mycroft * need a separate scsi command block because we may need to overwrite it
444 1.1 mycroft * with a request sense command. Basicly, we refrain from fiddling with
445 1.1 mycroft * the scsi_xfer struct (except do the expected updating of return values).
446 1.1 mycroft * We'll generally update: xs->{flags,resid,error,sense,status} and
447 1.1 mycroft * occasionally xs->retries.
448 1.21 mycroft */
449 1.21 mycroft struct aic_acb {
450 1.21 mycroft struct scsi_generic scsi_cmd;
451 1.21 mycroft int scsi_cmd_length;
452 1.21 mycroft u_char *data_addr; /* Saved data pointer */
453 1.21 mycroft int data_length; /* Residue */
454 1.21 mycroft
455 1.21 mycroft u_char target_stat; /* SCSI status byte */
456 1.21 mycroft
457 1.21 mycroft /* struct aic_dma_seg dma[AIC_NSEG]; /* Physical addresses+len */
458 1.21 mycroft
459 1.1 mycroft TAILQ_ENTRY(aic_acb) chain;
460 1.21 mycroft struct scsi_xfer *xs; /* SCSI xfer ctrl block from above */
461 1.41 mycroft int flags;
462 1.42 mycroft #define ACB_ALLOC 0x01
463 1.42 mycroft #define ACB_NEXUS 0x02
464 1.42 mycroft #define ACB_SENSE 0x04
465 1.42 mycroft #define ACB_ABORT 0x40
466 1.42 mycroft #define ACB_RESET 0x80
467 1.1 mycroft int timeout;
468 1.1 mycroft };
469 1.33 mycroft
470 1.33 mycroft /*
471 1.33 mycroft * Some info about each (possible) target on the SCSI bus. This should
472 1.21 mycroft * probably have been a "per target+lunit" structure, but we'll leave it at
473 1.1 mycroft * this for now.
474 1.1 mycroft */
475 1.1 mycroft struct aic_tinfo {
476 1.1 mycroft int cmds; /* #commands processed */
477 1.1 mycroft int dconns; /* #disconnects */
478 1.1 mycroft int touts; /* #timeouts */
479 1.1 mycroft int perrs; /* #parity errors */
480 1.1 mycroft int senses; /* #request sense commands sent */
481 1.1 mycroft ushort lubusy; /* What local units/subr. are busy? */
482 1.14 mycroft u_char flags;
483 1.14 mycroft #define DO_SYNC 0x01 /* (Re)Negotiate synchronous options */
484 1.14 mycroft #define DO_WIDE 0x02 /* (Re)Negotiate wide options */
485 1.14 mycroft u_char period; /* Period suggestion */
486 1.14 mycroft u_char offset; /* Offset suggestion */
487 1.1 mycroft u_char width; /* Width suggestion */
488 1.1 mycroft } tinfo_t;
489 1.21 mycroft
490 1.21 mycroft struct aic_softc {
491 1.21 mycroft struct device sc_dev;
492 1.31 cgd struct isadev sc_id;
493 1.16 mycroft void *sc_ih;
494 1.21 mycroft
495 1.21 mycroft int sc_iobase;
496 1.21 mycroft int sc_irq, sc_drq;
497 1.1 mycroft
498 1.24 mycroft struct scsi_link sc_link; /* prototype for subdevs */
499 1.21 mycroft
500 1.24 mycroft TAILQ_HEAD(, aic_acb) free_list, ready_list, nexus_list;
501 1.27 mycroft struct aic_acb *sc_nexus; /* current command */
502 1.24 mycroft struct aic_acb sc_acb[8];
503 1.24 mycroft struct aic_tinfo sc_tinfo[8];
504 1.1 mycroft
505 1.24 mycroft /* Data about the current nexus (updated for every cmd switch) */
506 1.24 mycroft u_char *sc_dp; /* Current data pointer */
507 1.24 mycroft size_t sc_dleft; /* Data bytes left to transfer */
508 1.24 mycroft u_char *sc_cp; /* Current command pointer */
509 1.24 mycroft size_t sc_cleft; /* Command bytes left to transfer */
510 1.1 mycroft
511 1.24 mycroft /* Adapter state */
512 1.24 mycroft u_char sc_phase; /* Current bus phase */
513 1.24 mycroft u_char sc_prevphase; /* Previous bus phase */
514 1.42 mycroft u_char sc_state; /* State applicable to the adapter */
515 1.42 mycroft #define AIC_INIT 0
516 1.42 mycroft #define AIC_IDLE 1
517 1.42 mycroft #define AIC_SELECTING 2 /* SCSI command is arbiting */
518 1.42 mycroft #define AIC_RESELECTED 3 /* Has been reselected */
519 1.42 mycroft #define AIC_CONNECTED 4 /* Actively using the SCSI bus */
520 1.42 mycroft #define AIC_DISCONNECT 5 /* MSG_DISCONNECT received */
521 1.42 mycroft #define AIC_CMDCOMPLETE 6 /* MSG_CMDCOMPLETE received */
522 1.24 mycroft #define AIC_CLEANING 7
523 1.21 mycroft u_char sc_flags;
524 1.16 mycroft #define AIC_DROP_MSGIN 0x01 /* Discard all msgs (parity err detected) */
525 1.16 mycroft #define AIC_ABORTING 0x02 /* Bailing out */
526 1.27 mycroft #define AIC_DOINGDMA 0x04 /* The FIFO data path is active! */
527 1.24 mycroft u_char sc_selid; /* Reselection ID */
528 1.1 mycroft
529 1.24 mycroft /* Message stuff */
530 1.24 mycroft u_char sc_msgpriq; /* Messages we want to send */
531 1.29 mycroft u_char sc_msgoutq; /* Messages sent during last MESSAGE OUT */
532 1.29 mycroft u_char sc_lastmsg; /* Message last transmitted */
533 1.1 mycroft u_char sc_currmsg; /* Message currently ready to transmit */
534 1.1 mycroft #define SEND_DEV_RESET 0x01
535 1.42 mycroft #define SEND_PARITY_ERROR 0x02
536 1.1 mycroft #define SEND_INIT_DET_ERR 0x04
537 1.42 mycroft #define SEND_REJECT 0x08
538 1.42 mycroft #define SEND_IDENTIFY 0x10
539 1.1 mycroft #define SEND_ABORT 0x20
540 1.14 mycroft #define SEND_SDTR 0x40
541 1.1 mycroft #define SEND_WDTR 0x80
542 1.24 mycroft #define AIC_MAX_MSG_LEN 8
543 1.24 mycroft u_char sc_omess[AIC_MAX_MSG_LEN];
544 1.24 mycroft u_char *sc_omp; /* Outgoing message pointer */
545 1.24 mycroft u_char sc_imess[AIC_MAX_MSG_LEN];
546 1.27 mycroft u_char *sc_imp; /* Incoming message pointer */
547 1.27 mycroft
548 1.27 mycroft /* Hardware stuff */
549 1.27 mycroft int sc_initiator; /* Our scsi id */
550 1.27 mycroft int sc_freq; /* Clock frequency in MHz */
551 1.27 mycroft int sc_minsync; /* Minimum sync period / 4 */
552 1.1 mycroft int sc_maxsync; /* Maximum sync period / 4 */
553 1.1 mycroft };
554 1.1 mycroft
555 1.14 mycroft #if AIC_DEBUG
556 1.14 mycroft #define AIC_SHOWACBS 0x01
557 1.14 mycroft #define AIC_SHOWINTS 0x02
558 1.14 mycroft #define AIC_SHOWCMDS 0x04
559 1.14 mycroft #define AIC_SHOWMISC 0x08
560 1.14 mycroft #define AIC_SHOWTRACE 0x10
561 1.15 mycroft #define AIC_SHOWSTART 0x20
562 1.33 mycroft #define AIC_DOBREAK 0x40
563 1.14 mycroft int aic_debug = 0x00; /* AIC_SHOWSTART|AIC_SHOWMISC|AIC_SHOWTRACE; /**/
564 1.15 mycroft #define AIC_PRINT(b, s) do {if ((aic_debug & (b)) != 0) printf s;} while (0)
565 1.25 mycroft #define AIC_BREAK() do {if ((aic_debug & AIC_DOBREAK) != 0) Debugger();} while (0)
566 1.1 mycroft #define AIC_ASSERT(x) do {if (x) {} else {printf("%s at line %d: assertion failed\n", sc->sc_dev.dv_xname, __LINE__); Debugger();}} while (0)
567 1.14 mycroft #else
568 1.15 mycroft #define AIC_PRINT(b, s)
569 1.18 mycroft #define AIC_BREAK()
570 1.1 mycroft #define AIC_ASSERT(x)
571 1.1 mycroft #endif
572 1.14 mycroft
573 1.14 mycroft #define AIC_ACBS(s) AIC_PRINT(AIC_SHOWACBS, s)
574 1.14 mycroft #define AIC_INTS(s) AIC_PRINT(AIC_SHOWINTS, s)
575 1.14 mycroft #define AIC_CMDS(s) AIC_PRINT(AIC_SHOWCMDS, s)
576 1.14 mycroft #define AIC_MISC(s) AIC_PRINT(AIC_SHOWMISC, s)
577 1.14 mycroft #define AIC_TRACE(s) AIC_PRINT(AIC_SHOWTRACE, s)
578 1.14 mycroft #define AIC_START(s) AIC_PRINT(AIC_SHOWSTART, s)
579 1.10 mycroft
580 1.1 mycroft int aicprobe __P((struct device *, void *, void *));
581 1.34 pk void aicattach __P((struct device *, struct device *, void *));
582 1.33 mycroft int aicprint __P((void *, char *));
583 1.31 cgd void aic_minphys __P((struct buf *));
584 1.1 mycroft int aicintr __P((void *));
585 1.21 mycroft void aic_init __P((struct aic_softc *));
586 1.21 mycroft void aic_done __P((struct aic_softc *, struct aic_acb *));
587 1.1 mycroft void aic_dequeue __P((struct aic_softc *, struct aic_acb *));
588 1.21 mycroft int aic_scsi_cmd __P((struct scsi_xfer *));
589 1.40 mycroft int aic_poll __P((struct aic_softc *, struct scsi_xfer *, int));
590 1.40 mycroft integrate void aic_sched_msgout __P((struct aic_softc *, u_char));
591 1.24 mycroft integrate void aic_setsync __P((struct aic_softc *, struct aic_tinfo *));
592 1.27 mycroft void aic_select __P((struct aic_softc *, struct aic_acb *));
593 1.1 mycroft void aic_timeout __P((void *));
594 1.1 mycroft int aic_find __P((struct aic_softc *));
595 1.1 mycroft void aic_sched __P((struct aic_softc *));
596 1.27 mycroft void aic_scsi_reset __P((struct aic_softc *));
597 1.1 mycroft void aic_reset __P((struct aic_softc *));
598 1.1 mycroft #if AIC_DEBUG
599 1.1 mycroft void aic_print_active_acb();
600 1.1 mycroft void aic_dump_driver();
601 1.1 mycroft void aic_dump6360();
602 1.1 mycroft #endif
603 1.39 thorpej
604 1.39 thorpej struct cfattach aic_ca = {
605 1.39 thorpej sizeof(struct aic_softc), aicprobe, aicattach
606 1.39 thorpej };
607 1.39 thorpej
608 1.39 thorpej struct cfdriver aic_cd = {
609 1.1 mycroft NULL, "aic", DV_DULL
610 1.1 mycroft };
611 1.1 mycroft
612 1.1 mycroft struct scsi_adapter aic_switch = {
613 1.1 mycroft aic_scsi_cmd,
614 1.1 mycroft aic_minphys,
615 1.1 mycroft 0,
616 1.1 mycroft 0,
617 1.1 mycroft };
618 1.1 mycroft
619 1.1 mycroft struct scsi_device aic_dev = {
620 1.1 mycroft NULL, /* Use default error handler */
621 1.1 mycroft NULL, /* have a queue, served by this */
622 1.1 mycroft NULL, /* have no async handler */
623 1.1 mycroft NULL, /* Use default 'done' routine */
624 1.1 mycroft };
625 1.33 mycroft
626 1.1 mycroft /*
628 1.1 mycroft * INITIALIZATION ROUTINES (probe, attach ++)
629 1.1 mycroft */
630 1.1 mycroft
631 1.1 mycroft /*
632 1.1 mycroft * aicprobe: probe for AIC6360 SCSI-controller
633 1.33 mycroft * returns non-zero value if a controller is found.
634 1.10 mycroft */
635 1.10 mycroft int
636 1.10 mycroft aicprobe(parent, match, aux)
637 1.1 mycroft struct device *parent;
638 1.24 mycroft void *match, *aux;
639 1.1 mycroft {
640 1.1 mycroft struct aic_softc *sc = match;
641 1.33 mycroft struct isa_attach_args *ia = aux;
642 1.1 mycroft int i, len, ic;
643 1.1 mycroft
644 1.1 mycroft #ifdef NEWCONFIG
645 1.1 mycroft if (ia->ia_iobase == IOBASEUNK)
646 1.21 mycroft return 0;
647 1.24 mycroft #endif
648 1.24 mycroft
649 1.1 mycroft sc->sc_iobase = ia->ia_iobase;
650 1.21 mycroft if (aic_find(sc) != 0)
651 1.1 mycroft return 0;
652 1.21 mycroft
653 1.24 mycroft #ifdef NEWCONFIG
654 1.21 mycroft if (ia->ia_irq != IRQUNK) {
655 1.24 mycroft if (ia->ia_irq != sc->sc_irq) {
656 1.21 mycroft printf("%s: irq mismatch; kernel configured %d != board configured %d\n",
657 1.21 mycroft sc->sc_dev.dv_xname, ia->ia_irq, sc->sc_irq);
658 1.21 mycroft return 0;
659 1.24 mycroft }
660 1.33 mycroft } else
661 1.21 mycroft ia->ia_irq = sc->sc_irq;
662 1.24 mycroft
663 1.21 mycroft if (ia->ia_drq != DRQUNK) {
664 1.24 mycroft if (ia->ia_drq != sc->sc_drq) {
665 1.21 mycroft printf("%s: drq mismatch; kernel configured %d != board configured %d\n",
666 1.21 mycroft sc->sc_dev.dv_xname, ia->ia_drq, sc->sc_drq);
667 1.21 mycroft return 0;
668 1.24 mycroft }
669 1.1 mycroft } else
670 1.21 mycroft ia->ia_drq = sc->sc_drq;
671 1.1 mycroft #endif
672 1.1 mycroft
673 1.1 mycroft ia->ia_msize = 0;
674 1.1 mycroft ia->ia_iosize = 0x20;
675 1.1 mycroft return 1;
676 1.33 mycroft }
677 1.24 mycroft
678 1.1 mycroft /* Do the real search-for-device.
679 1.1 mycroft * Prerequisite: sc->sc_iobase should be set to the proper value
680 1.24 mycroft */
681 1.24 mycroft int
682 1.33 mycroft aic_find(sc)
683 1.40 mycroft struct aic_softc *sc;
684 1.1 mycroft {
685 1.1 mycroft int iobase = sc->sc_iobase;
686 1.1 mycroft char chip_id[sizeof(IDSTRING)]; /* For chips that support it */
687 1.33 mycroft char *start;
688 1.1 mycroft int i;
689 1.40 mycroft
690 1.1 mycroft /* Remove aic6360 from possible powerdown mode */
691 1.33 mycroft outb(iobase + DMACNTRL0, 0);
692 1.33 mycroft
693 1.1 mycroft /* Thanks to mark (at) aggregate.com for the new method for detecting
694 1.1 mycroft * whether the chip is present or not. Bonus: may also work for
695 1.21 mycroft * the AIC-6260!
696 1.24 mycroft */
697 1.33 mycroft AIC_TRACE(("aic: probing for aic-chip at port 0x%x\n",
698 1.1 mycroft sc->sc_iobase));
699 1.33 mycroft /*
700 1.1 mycroft * Linux also init's the stack to 1-16 and then clears it,
701 1.1 mycroft * 6260's don't appear to have an ID reg - mpg
702 1.1 mycroft */
703 1.40 mycroft /* Push the sequence 0,1,..,15 on the stack */
704 1.2 mycroft #define STSIZE 16
705 1.40 mycroft outb(iobase + DMACNTRL1, 0); /* Reset stack pointer */
706 1.1 mycroft for (i = 0; i < STSIZE; i++)
707 1.1 mycroft outb(iobase + STACK, i);
708 1.40 mycroft
709 1.40 mycroft /* See if we can pull out the same sequence */
710 1.1 mycroft outb(iobase + DMACNTRL1, 0);
711 1.1 mycroft for (i = 0; i < STSIZE && inb(iobase + STACK) == i; i++)
712 1.1 mycroft ;
713 1.1 mycroft if (i != STSIZE) {
714 1.1 mycroft AIC_START(("STACK futzed at %d.\n", i));
715 1.1 mycroft return ENXIO;
716 1.1 mycroft }
717 1.1 mycroft
718 1.1 mycroft /* See if we can pull the id string out of the ID register,
719 1.1 mycroft * now only used for informational purposes.
720 1.40 mycroft */
721 1.24 mycroft bzero(chip_id, sizeof(chip_id));
722 1.1 mycroft insb(iobase + ID, chip_id, sizeof(IDSTRING)-1);
723 1.40 mycroft AIC_START(("AIC found at 0x%x ", sc->sc_iobase));
724 1.27 mycroft AIC_START(("ID: %s ",chip_id));
725 1.27 mycroft AIC_START(("chip revision %d\n",(int)inb(iobase + REV)));
726 1.27 mycroft
727 1.27 mycroft sc->sc_initiator = 7;
728 1.27 mycroft sc->sc_freq = 20; /* XXXX Assume 20 MHz. */
729 1.27 mycroft
730 1.27 mycroft /*
731 1.27 mycroft * These are the bounds of the sync period, based on the frequency of
732 1.27 mycroft * the chip's clock input and the size and offset of the sync period
733 1.27 mycroft * register.
734 1.27 mycroft *
735 1.27 mycroft * For a 20Mhz clock, this gives us 25, or 100nS, or 10MB/s, as a
736 1.27 mycroft * maximum transfer rate, and 112.5, or 450nS, or 2.22MB/s, as a
737 1.27 mycroft * minimum transfer rate.
738 1.27 mycroft */
739 1.27 mycroft sc->sc_minsync = (2 * 250) / sc->sc_freq;
740 1.1 mycroft sc->sc_maxsync = (9 * 250) / sc->sc_freq;
741 1.1 mycroft
742 1.1 mycroft return 0;
743 1.1 mycroft }
744 1.34 pk
745 1.34 pk int
746 1.34 pk aicprint(aux, name)
747 1.1 mycroft void *aux;
748 1.34 pk char *name;
749 1.34 pk {
750 1.34 pk if (name != NULL)
751 1.1 mycroft printf("%s: scsibus ", name);
752 1.1 mycroft return UNCONF;
753 1.1 mycroft }
754 1.1 mycroft
755 1.1 mycroft /*
756 1.33 mycroft * Attach the AIC6360, fill out some high and low level data structures
757 1.1 mycroft */
758 1.1 mycroft void
759 1.1 mycroft aicattach(parent, self, aux)
760 1.1 mycroft struct device *parent, *self;
761 1.1 mycroft void *aux;
762 1.24 mycroft {
763 1.1 mycroft struct isa_attach_args *ia = aux;
764 1.14 mycroft struct aic_softc *sc = (void *)self;
765 1.42 mycroft
766 1.24 mycroft AIC_TRACE(("aicattach "));
767 1.1 mycroft sc->sc_state = AIC_INIT;
768 1.1 mycroft aic_init(sc); /* Init chip and driver */
769 1.1 mycroft
770 1.1 mycroft /*
771 1.24 mycroft * Fill in the prototype scsi_link
772 1.27 mycroft */
773 1.24 mycroft sc->sc_link.adapter_softc = sc;
774 1.24 mycroft sc->sc_link.adapter_target = sc->sc_initiator;
775 1.24 mycroft sc->sc_link.adapter = &aic_switch;
776 1.21 mycroft sc->sc_link.device = &aic_dev;
777 1.1 mycroft sc->sc_link.openings = 2;
778 1.1 mycroft
779 1.1 mycroft printf("\n");
780 1.24 mycroft
781 1.1 mycroft #ifdef NEWCONFIG
782 1.44 cgd isa_establish(&sc->sc_id, &sc->sc_dev);
783 1.44 cgd #endif
784 1.33 mycroft sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq, IST_EDGE,
785 1.24 mycroft IPL_BIO, aicintr, sc);
786 1.1 mycroft
787 1.1 mycroft config_found(self, &sc->sc_link, aicprint);
788 1.1 mycroft }
789 1.1 mycroft
790 1.1 mycroft
791 1.1 mycroft /* Initialize AIC6360 chip itself
792 1.1 mycroft * The following conditions should hold:
793 1.1 mycroft * aicprobe should have succeeded, i.e. the iobase address in aic_softc must
794 1.27 mycroft * be valid.
795 1.27 mycroft */
796 1.24 mycroft void
797 1.1 mycroft aic_reset(sc)
798 1.40 mycroft struct aic_softc *sc;
799 1.1 mycroft {
800 1.40 mycroft int iobase = sc->sc_iobase;
801 1.40 mycroft
802 1.1 mycroft outb(iobase + SCSITEST, 0); /* Doc. recommends to clear these two */
803 1.1 mycroft outb(iobase + TEST, 0); /* registers before operations commence */
804 1.40 mycroft
805 1.33 mycroft /* Reset SCSI-FIFO and abort any transfers */
806 1.1 mycroft outb(iobase + SXFRCTL0, CHEN | CLRCH | CLRSTCNT);
807 1.40 mycroft
808 1.40 mycroft /* Reset DMA-FIFO */
809 1.1 mycroft outb(iobase + DMACNTRL0, RSTFIFO);
810 1.40 mycroft outb(iobase + DMACNTRL1, 0);
811 1.40 mycroft
812 1.1 mycroft outb(iobase + SCSISEQ, 0); /* Disable all selection features */
813 1.40 mycroft outb(iobase + SXFRCTL1, 0);
814 1.40 mycroft
815 1.1 mycroft outb(iobase + SIMODE0, 0x00); /* Disable some interrupts */
816 1.40 mycroft outb(iobase + CLRSINT0, 0x7f); /* Clear a slew of interrupts */
817 1.40 mycroft
818 1.33 mycroft outb(iobase + SIMODE1, 0x00); /* Disable some more interrupts */
819 1.40 mycroft outb(iobase + CLRSINT1, 0xef); /* Clear another slew of interrupts */
820 1.1 mycroft
821 1.40 mycroft outb(iobase + SCSIRATE, 0); /* Disable synchronous transfers */
822 1.33 mycroft
823 1.40 mycroft outb(iobase + CLRSERR, 0x07); /* Haven't seen ant errors (yet) */
824 1.40 mycroft
825 1.1 mycroft outb(iobase + SCSIID, sc->sc_initiator << OID_S); /* Set our SCSI-ID */
826 1.1 mycroft outb(iobase + BRSTCNTRL, EISA_BRST_TIM);
827 1.1 mycroft }
828 1.1 mycroft
829 1.24 mycroft /* Pull the SCSI RST line for 500 us */
830 1.24 mycroft void
831 1.1 mycroft aic_scsi_reset(sc)
832 1.40 mycroft struct aic_softc *sc;
833 1.1 mycroft {
834 1.40 mycroft int iobase = sc->sc_iobase;
835 1.1 mycroft
836 1.40 mycroft outb(iobase + SCSISEQ, SCSIRSTO);
837 1.1 mycroft delay(500);
838 1.1 mycroft outb(iobase + SCSISEQ, 0);
839 1.1 mycroft delay(50);
840 1.1 mycroft }
841 1.27 mycroft
842 1.1 mycroft /*
843 1.1 mycroft * Initialize aic SCSI driver.
844 1.24 mycroft */
845 1.24 mycroft void
846 1.1 mycroft aic_init(sc)
847 1.40 mycroft struct aic_softc *sc;
848 1.21 mycroft {
849 1.1 mycroft int iobase = sc->sc_iobase;
850 1.33 mycroft struct aic_acb *acb;
851 1.27 mycroft int r;
852 1.24 mycroft
853 1.27 mycroft aic_reset(sc);
854 1.1 mycroft aic_scsi_reset(sc);
855 1.42 mycroft aic_reset(sc);
856 1.27 mycroft
857 1.24 mycroft if (sc->sc_state == AIC_INIT) {
858 1.24 mycroft /* First time through; initialize. */
859 1.24 mycroft TAILQ_INIT(&sc->ready_list);
860 1.24 mycroft TAILQ_INIT(&sc->nexus_list);
861 1.24 mycroft TAILQ_INIT(&sc->free_list);
862 1.24 mycroft sc->sc_nexus = NULL;
863 1.24 mycroft acb = sc->sc_acb;
864 1.24 mycroft bzero(acb, sizeof(sc->sc_acb));
865 1.1 mycroft for (r = 0; r < sizeof(sc->sc_acb) / sizeof(*acb); r++) {
866 1.1 mycroft TAILQ_INSERT_TAIL(&sc->free_list, acb, chain);
867 1.24 mycroft acb++;
868 1.2 mycroft }
869 1.27 mycroft bzero(&sc->sc_tinfo, sizeof(sc->sc_tinfo));
870 1.24 mycroft } else {
871 1.24 mycroft /* Cancel any active commands. */
872 1.14 mycroft sc->sc_state = AIC_CLEANING;
873 1.14 mycroft if ((acb = sc->sc_nexus) != NULL) {
874 1.24 mycroft acb->xs->error = XS_DRIVER_STUFFUP;
875 1.1 mycroft untimeout(aic_timeout, acb);
876 1.24 mycroft aic_done(sc, acb);
877 1.1 mycroft }
878 1.5 cgd while (acb = sc->nexus_list.tqh_first) {
879 1.24 mycroft acb->xs->error = XS_DRIVER_STUFFUP;
880 1.1 mycroft untimeout(aic_timeout, acb);
881 1.1 mycroft aic_done(sc, acb);
882 1.33 mycroft }
883 1.24 mycroft }
884 1.14 mycroft
885 1.24 mycroft sc->sc_prevphase = PH_INVALID;
886 1.14 mycroft for (r = 0; r < 8; r++) {
887 1.14 mycroft struct aic_tinfo *ti = &sc->sc_tinfo[r];
888 1.21 mycroft
889 1.21 mycroft ti->flags = 0;
890 1.27 mycroft #if AIC_USE_SYNCHRONOUS
891 1.21 mycroft ti->flags |= DO_SYNC;
892 1.27 mycroft ti->period = sc->sc_minsync;
893 1.27 mycroft ti->offset = AIC_SYNC_REQ_ACK_OFS;
894 1.21 mycroft #else
895 1.21 mycroft ti->period = ti->offset = 0;
896 1.21 mycroft #endif
897 1.21 mycroft #if AIC_USE_WIDE
898 1.27 mycroft ti->flags |= DO_WIDE;
899 1.27 mycroft ti->width = AIC_MAX_WIDTH;
900 1.21 mycroft #else
901 1.1 mycroft ti->width = 0;
902 1.14 mycroft #endif
903 1.24 mycroft }
904 1.40 mycroft
905 1.14 mycroft sc->sc_state = AIC_IDLE;
906 1.14 mycroft outb(iobase + DMACNTRL0, INTEN);
907 1.14 mycroft }
908 1.24 mycroft
909 1.24 mycroft void
910 1.21 mycroft aic_free_acb(sc, acb, flags)
911 1.14 mycroft struct aic_softc *sc;
912 1.14 mycroft struct aic_acb *acb;
913 1.14 mycroft int flags;
914 1.14 mycroft {
915 1.21 mycroft int s;
916 1.14 mycroft
917 1.41 mycroft s = splbio();
918 1.24 mycroft
919 1.36 mycroft acb->flags = 0;
920 1.36 mycroft TAILQ_INSERT_HEAD(&sc->free_list, acb, chain);
921 1.36 mycroft
922 1.36 mycroft /*
923 1.36 mycroft * If there were none, wake anybody waiting for one to come free,
924 1.14 mycroft * starting with queued entries.
925 1.24 mycroft */
926 1.14 mycroft if (acb->chain.tqe_next == 0)
927 1.21 mycroft wakeup(&sc->free_list);
928 1.14 mycroft
929 1.14 mycroft splx(s);
930 1.21 mycroft }
931 1.24 mycroft
932 1.24 mycroft struct aic_acb *
933 1.14 mycroft aic_get_acb(sc, flags)
934 1.14 mycroft struct aic_softc *sc;
935 1.36 mycroft int flags;
936 1.14 mycroft {
937 1.14 mycroft struct aic_acb *acb;
938 1.21 mycroft int s;
939 1.14 mycroft
940 1.24 mycroft s = splbio();
941 1.14 mycroft
942 1.24 mycroft while ((acb = sc->free_list.tqh_first) == NULL &&
943 1.14 mycroft (flags & SCSI_NOSLEEP) == 0)
944 1.24 mycroft tsleep(&sc->free_list, PRIBIO, "aicacb", 0);
945 1.41 mycroft if (acb) {
946 1.14 mycroft TAILQ_REMOVE(&sc->free_list, acb, chain);
947 1.14 mycroft acb->flags |= ACB_ALLOC;
948 1.21 mycroft }
949 1.14 mycroft
950 1.1 mycroft splx(s);
951 1.1 mycroft return acb;
952 1.1 mycroft }
953 1.1 mycroft
954 1.1 mycroft /*
956 1.1 mycroft * DRIVER FUNCTIONS CALLABLE FROM HIGHER LEVEL DRIVERS
957 1.1 mycroft */
958 1.1 mycroft
959 1.1 mycroft /*
960 1.1 mycroft * Expected sequence:
961 1.1 mycroft * 1) Command inserted into ready list
962 1.1 mycroft * 2) Command selected for execution
963 1.1 mycroft * 3) Command won arbitration and has selected target device
964 1.1 mycroft * 4) Send message out (identify message, eventually also sync.negotiations)
965 1.1 mycroft * 5) Send command
966 1.1 mycroft * 5a) Receive disconnect message, disconnect.
967 1.1 mycroft * 5b) Reselected by target
968 1.1 mycroft * 5c) Receive identify message from target.
969 1.1 mycroft * 6) Send or receive data
970 1.1 mycroft * 7) Receive status
971 1.1 mycroft * 8) Receive message (command complete etc.)
972 1.1 mycroft * 9) If status == SCSI_CHECK construct a synthetic request sense SCSI cmd.
973 1.1 mycroft * Repeat 2-8 (no disconnects please...)
974 1.1 mycroft */
975 1.1 mycroft
976 1.1 mycroft /*
977 1.1 mycroft * Start a SCSI-command
978 1.33 mycroft * This function is called by the higher level SCSI-driver to queue/run
979 1.1 mycroft * SCSI-commands.
980 1.1 mycroft */
981 1.1 mycroft int
982 1.24 mycroft aic_scsi_cmd(xs)
983 1.24 mycroft struct scsi_xfer *xs;
984 1.21 mycroft {
985 1.1 mycroft struct scsi_link *sc_link = xs->sc_link;
986 1.33 mycroft struct aic_softc *sc = sc_link->adapter_softc;
987 1.14 mycroft struct aic_acb *acb;
988 1.33 mycroft int s, flags;
989 1.24 mycroft
990 1.1 mycroft AIC_TRACE(("aic_scsi_cmd "));
991 1.1 mycroft AIC_CMDS(("[0x%x, %d]->%d ", (int)xs->cmd->opcode, xs->cmdlen,
992 1.24 mycroft sc_link->target));
993 1.1 mycroft
994 1.1 mycroft flags = xs->flags;
995 1.1 mycroft if ((acb = aic_get_acb(sc, flags)) == NULL) {
996 1.1 mycroft xs->error = XS_DRIVER_STUFFUP;
997 1.1 mycroft return TRY_AGAIN_LATER;
998 1.1 mycroft }
999 1.42 mycroft
1000 1.42 mycroft /* Initialize acb */
1001 1.42 mycroft acb->xs = xs;
1002 1.42 mycroft acb->timeout = xs->timeout;
1003 1.42 mycroft
1004 1.42 mycroft if (xs->flags & SCSI_RESET) {
1005 1.42 mycroft acb->flags |= ACB_RESET;
1006 1.42 mycroft acb->scsi_cmd_length = 0;
1007 1.42 mycroft acb->data_length = 0;
1008 1.42 mycroft } else {
1009 1.42 mycroft bcopy(xs->cmd, &acb->scsi_cmd, xs->cmdlen);
1010 1.42 mycroft acb->scsi_cmd_length = xs->cmdlen;
1011 1.21 mycroft acb->data_addr = xs->data;
1012 1.33 mycroft acb->data_length = xs->datalen;
1013 1.21 mycroft }
1014 1.1 mycroft acb->target_stat = 0;
1015 1.24 mycroft
1016 1.24 mycroft s = splbio();
1017 1.24 mycroft
1018 1.1 mycroft TAILQ_INSERT_TAIL(&sc->ready_list, acb, chain);
1019 1.42 mycroft if (sc->sc_state == AIC_IDLE)
1020 1.42 mycroft aic_sched(sc);
1021 1.42 mycroft
1022 1.1 mycroft splx(s);
1023 1.21 mycroft
1024 1.1 mycroft if ((flags & SCSI_POLL) == 0)
1025 1.42 mycroft return SUCCESSFULLY_QUEUED;
1026 1.21 mycroft
1027 1.42 mycroft /* Not allowed to use interrupts, use polling instead */
1028 1.21 mycroft if (aic_poll(sc, xs, acb->timeout)) {
1029 1.21 mycroft aic_timeout(acb);
1030 1.21 mycroft if (aic_poll(sc, xs, acb->timeout))
1031 1.1 mycroft aic_timeout(acb);
1032 1.1 mycroft }
1033 1.1 mycroft return COMPLETE;
1034 1.1 mycroft }
1035 1.1 mycroft
1036 1.33 mycroft /*
1037 1.1 mycroft * Adjust transfer size in buffer structure
1038 1.1 mycroft */
1039 1.1 mycroft void
1040 1.2 mycroft aic_minphys(bp)
1041 1.14 mycroft struct buf *bp;
1042 1.2 mycroft {
1043 1.2 mycroft
1044 1.33 mycroft AIC_TRACE(("aic_minphys "));
1045 1.1 mycroft if (bp->b_bcount > (AIC_NSEG << PGSHIFT))
1046 1.1 mycroft bp->b_bcount = (AIC_NSEG << PGSHIFT);
1047 1.1 mycroft minphys(bp);
1048 1.1 mycroft }
1049 1.1 mycroft
1050 1.1 mycroft /*
1051 1.24 mycroft * Used when interrupt driven I/O isn't allowed, e.g. during boot.
1052 1.24 mycroft */
1053 1.21 mycroft int
1054 1.21 mycroft aic_poll(sc, xs, count)
1055 1.1 mycroft struct aic_softc *sc;
1056 1.40 mycroft struct scsi_xfer *xs;
1057 1.1 mycroft int count;
1058 1.14 mycroft {
1059 1.1 mycroft int iobase = sc->sc_iobase;
1060 1.21 mycroft
1061 1.21 mycroft AIC_TRACE(("aic_poll "));
1062 1.21 mycroft while (count) {
1063 1.21 mycroft /*
1064 1.40 mycroft * If we had interrupts enabled, would we
1065 1.24 mycroft * have got an interrupt?
1066 1.14 mycroft */
1067 1.21 mycroft if ((inb(iobase + DMASTAT) & INTSTAT) != 0)
1068 1.21 mycroft aicintr(sc);
1069 1.1 mycroft if ((xs->flags & ITSDONE) != 0)
1070 1.1 mycroft return 0;
1071 1.21 mycroft delay(1000);
1072 1.1 mycroft count--;
1073 1.14 mycroft }
1074 1.14 mycroft return 1;
1075 1.27 mycroft }
1076 1.27 mycroft
1077 1.27 mycroft /*
1079 1.40 mycroft * LOW LEVEL SCSI UTILITIES
1080 1.40 mycroft */
1081 1.40 mycroft
1082 1.40 mycroft integrate void
1083 1.40 mycroft aic_sched_msgout(sc, m)
1084 1.40 mycroft struct aic_softc *sc;
1085 1.40 mycroft u_char m;
1086 1.40 mycroft {
1087 1.40 mycroft int iobase = sc->sc_iobase;
1088 1.40 mycroft
1089 1.27 mycroft if (sc->sc_msgpriq == 0)
1090 1.28 mycroft outb(iobase + SCSISIG, sc->sc_phase | ATNO);
1091 1.28 mycroft sc->sc_msgpriq |= m;
1092 1.28 mycroft }
1093 1.40 mycroft
1094 1.28 mycroft /*
1095 1.28 mycroft * Set synchronous transfer offset and period.
1096 1.28 mycroft */
1097 1.28 mycroft integrate void
1098 1.40 mycroft aic_setsync(sc, ti)
1099 1.40 mycroft struct aic_softc *sc;
1100 1.28 mycroft struct aic_tinfo *ti;
1101 1.28 mycroft {
1102 1.40 mycroft #if AIC_USE_SYNCHRONOUS
1103 1.28 mycroft int iobase = sc->sc_iobase;
1104 1.28 mycroft
1105 1.40 mycroft if (ti->offset != 0)
1106 1.40 mycroft outb(iobase + SCSIRATE,
1107 1.28 mycroft ((ti->period * sc->sc_freq) / 250 - 2) << 4 | ti->offset);
1108 1.28 mycroft else
1109 1.27 mycroft outb(iobase + SCSIRATE, 0);
1110 1.14 mycroft #endif
1111 1.14 mycroft }
1112 1.14 mycroft
1113 1.14 mycroft /*
1114 1.24 mycroft * Start a selection. This is used by aic_sched() to select an idle target,
1115 1.24 mycroft * and by aic_done() to immediately reselect a target to get sense information.
1116 1.24 mycroft */
1117 1.14 mycroft void
1118 1.24 mycroft aic_select(sc, acb)
1119 1.24 mycroft struct aic_softc *sc;
1120 1.24 mycroft struct aic_acb *acb;
1121 1.40 mycroft {
1122 1.1 mycroft struct scsi_link *sc_link = acb->xs->sc_link;
1123 1.40 mycroft int target = sc_link->target;
1124 1.28 mycroft struct aic_tinfo *ti = &sc->sc_tinfo[target];
1125 1.40 mycroft int iobase = sc->sc_iobase;
1126 1.27 mycroft
1127 1.14 mycroft outb(iobase + SCSIID, sc->sc_initiator << OID_S | target);
1128 1.40 mycroft aic_setsync(sc, ti);
1129 1.40 mycroft outb(iobase + SXFRCTL1, STIMO_256ms | ENSTIMER);
1130 1.40 mycroft
1131 1.14 mycroft /* Always enable reselections. */
1132 1.24 mycroft outb(iobase + SIMODE0, ENSELDI | ENSELDO);
1133 1.14 mycroft outb(iobase + SIMODE1, ENSCSIRST | ENSELTIMO);
1134 1.27 mycroft outb(iobase + SCSISEQ, ENRESELI | ENSELO | ENAUTOATNO);
1135 1.27 mycroft
1136 1.27 mycroft sc->sc_state = AIC_SELECTING;
1137 1.27 mycroft }
1138 1.27 mycroft
1139 1.27 mycroft int
1140 1.27 mycroft aic_reselect(sc, message)
1141 1.27 mycroft struct aic_softc *sc;
1142 1.27 mycroft u_char message;
1143 1.27 mycroft {
1144 1.27 mycroft u_char selid, target, lun;
1145 1.27 mycroft struct aic_acb *acb;
1146 1.27 mycroft struct scsi_link *sc_link;
1147 1.27 mycroft struct aic_tinfo *ti;
1148 1.27 mycroft
1149 1.27 mycroft /*
1150 1.27 mycroft * The SCSI chip made a snapshot of the data bus while the reselection
1151 1.27 mycroft * was being negotiated. This enables us to determine which target did
1152 1.27 mycroft * the reselect.
1153 1.27 mycroft */
1154 1.27 mycroft selid = sc->sc_selid & ~(1 << sc->sc_initiator);
1155 1.27 mycroft if (selid & (selid - 1)) {
1156 1.27 mycroft printf("%s: reselect with invalid selid %02x; sending DEVICE RESET\n",
1157 1.27 mycroft sc->sc_dev.dv_xname, selid);
1158 1.27 mycroft AIC_BREAK();
1159 1.27 mycroft goto reset;
1160 1.27 mycroft }
1161 1.33 mycroft
1162 1.27 mycroft /* Search wait queue for disconnected cmd
1163 1.27 mycroft * The list should be short, so I haven't bothered with
1164 1.27 mycroft * any more sophisticated structures than a simple
1165 1.27 mycroft * singly linked list.
1166 1.27 mycroft */
1167 1.27 mycroft target = ffs(selid) - 1;
1168 1.27 mycroft lun = message & 0x07;
1169 1.27 mycroft for (acb = sc->nexus_list.tqh_first; acb != NULL;
1170 1.27 mycroft acb = acb->chain.tqe_next) {
1171 1.27 mycroft sc_link = acb->xs->sc_link;
1172 1.27 mycroft if (sc_link->target == target && sc_link->lun == lun)
1173 1.27 mycroft break;
1174 1.27 mycroft }
1175 1.27 mycroft if (acb == NULL) {
1176 1.27 mycroft printf("%s: reselect from target %d lun %d with no nexus; sending ABORT\n",
1177 1.27 mycroft sc->sc_dev.dv_xname, target, lun);
1178 1.27 mycroft AIC_BREAK();
1179 1.27 mycroft goto abort;
1180 1.27 mycroft }
1181 1.27 mycroft
1182 1.27 mycroft /* Make this nexus active again. */
1183 1.27 mycroft TAILQ_REMOVE(&sc->nexus_list, acb, chain);
1184 1.28 mycroft sc->sc_state = AIC_CONNECTED;
1185 1.27 mycroft sc->sc_nexus = acb;
1186 1.42 mycroft ti = &sc->sc_tinfo[target];
1187 1.42 mycroft ti->lubusy |= (1 << lun);
1188 1.42 mycroft aic_setsync(sc, ti);
1189 1.42 mycroft
1190 1.42 mycroft if (acb->flags & ACB_RESET)
1191 1.27 mycroft aic_sched_msgout(sc, SEND_DEV_RESET);
1192 1.27 mycroft else if (acb->flags & ACB_ABORT)
1193 1.27 mycroft aic_sched_msgout(sc, SEND_ABORT);
1194 1.27 mycroft
1195 1.27 mycroft /* Do an implicit RESTORE POINTERS. */
1196 1.27 mycroft sc->sc_dp = acb->data_addr;
1197 1.27 mycroft sc->sc_dleft = acb->data_length;
1198 1.27 mycroft sc->sc_cp = (u_char *)&acb->scsi_cmd;
1199 1.27 mycroft sc->sc_cleft = acb->scsi_cmd_length;
1200 1.40 mycroft
1201 1.27 mycroft return (0);
1202 1.27 mycroft
1203 1.27 mycroft reset:
1204 1.40 mycroft aic_sched_msgout(sc, SEND_DEV_RESET);
1205 1.27 mycroft return (1);
1206 1.27 mycroft
1207 1.1 mycroft abort:
1208 1.14 mycroft aic_sched_msgout(sc, SEND_ABORT);
1209 1.14 mycroft return (1);
1210 1.1 mycroft }
1211 1.1 mycroft
1212 1.1 mycroft /*
1214 1.1 mycroft * Schedule a SCSI operation. This has now been pulled out of the interrupt
1215 1.24 mycroft * handler so that we may call it from aic_scsi_cmd and aic_done. This may
1216 1.24 mycroft * save us an unecessary interrupt just to get things going. Should only be
1217 1.1 mycroft * called when state == AIC_IDLE and at bio pl.
1218 1.21 mycroft */
1219 1.24 mycroft void
1220 1.14 mycroft aic_sched(sc)
1221 1.40 mycroft register struct aic_softc *sc;
1222 1.33 mycroft {
1223 1.1 mycroft struct aic_acb *acb;
1224 1.14 mycroft struct scsi_link *sc_link;
1225 1.14 mycroft struct aic_tinfo *ti;
1226 1.1 mycroft int iobase = sc->sc_iobase;
1227 1.40 mycroft
1228 1.24 mycroft /*
1229 1.18 mycroft * Find first acb in ready queue that is for a target/lunit pair that
1230 1.24 mycroft * is not busy.
1231 1.24 mycroft */
1232 1.27 mycroft outb(iobase + CLRSINT1, CLRSELTIMO | CLRBUSFREE | CLRSCSIPERR);
1233 1.24 mycroft for (acb = sc->ready_list.tqh_first; acb != NULL;
1234 1.24 mycroft acb = acb->chain.tqe_next) {
1235 1.24 mycroft sc_link = acb->xs->sc_link;
1236 1.24 mycroft ti = &sc->sc_tinfo[sc_link->target];
1237 1.24 mycroft if ((ti->lubusy & (1 << sc_link->lun)) == 0) {
1238 1.14 mycroft AIC_MISC(("selecting %d:%d ",
1239 1.1 mycroft sc_link->target, sc_link->lun));
1240 1.24 mycroft TAILQ_REMOVE(&sc->ready_list, acb, chain);
1241 1.24 mycroft sc->sc_nexus = acb;
1242 1.1 mycroft aic_select(sc, acb);
1243 1.14 mycroft return;
1244 1.14 mycroft } else
1245 1.40 mycroft AIC_MISC(("%d:%d busy\n",
1246 1.40 mycroft sc_link->target, sc_link->lun));
1247 1.40 mycroft }
1248 1.1 mycroft AIC_MISC(("idle "));
1249 1.1 mycroft /* Nothing to start; just enable reselections and wait. */
1250 1.41 mycroft outb(iobase + SIMODE0, ENSELDI);
1251 1.41 mycroft outb(iobase + SIMODE1, ENSCSIRST);
1252 1.41 mycroft outb(iobase + SCSISEQ, ENRESELI);
1253 1.41 mycroft }
1254 1.41 mycroft
1255 1.41 mycroft void
1257 1.41 mycroft aic_sense(sc, acb)
1258 1.41 mycroft struct aic_softc *sc;
1259 1.41 mycroft struct aic_acb *acb;
1260 1.41 mycroft {
1261 1.41 mycroft struct scsi_xfer *xs = acb->xs;
1262 1.41 mycroft struct scsi_link *sc_link = xs->sc_link;
1263 1.41 mycroft struct aic_tinfo *ti = &sc->sc_tinfo[sc_link->target];
1264 1.41 mycroft struct scsi_sense *ss = (void *)&acb->scsi_cmd;
1265 1.41 mycroft
1266 1.41 mycroft AIC_MISC(("requesting sense "));
1267 1.41 mycroft /* Next, setup a request sense command block */
1268 1.41 mycroft bzero(ss, sizeof(*ss));
1269 1.41 mycroft ss->opcode = REQUEST_SENSE;
1270 1.41 mycroft ss->byte2 = sc_link->lun << 5;
1271 1.41 mycroft ss->length = sizeof(struct scsi_sense_data);
1272 1.41 mycroft acb->scsi_cmd_length = sizeof(*ss);
1273 1.41 mycroft acb->data_addr = (char *)&xs->sense;
1274 1.41 mycroft acb->data_length = sizeof(struct scsi_sense_data);
1275 1.41 mycroft acb->flags |= ACB_SENSE;
1276 1.41 mycroft ti->senses++;
1277 1.41 mycroft if (acb->flags & ACB_NEXUS)
1278 1.41 mycroft ti->lubusy &= ~(1 << sc_link->lun);
1279 1.41 mycroft if (acb == sc->sc_nexus) {
1280 1.41 mycroft aic_select(sc, acb);
1281 1.41 mycroft } else {
1282 1.41 mycroft aic_dequeue(sc, acb);
1283 1.1 mycroft TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
1284 1.1 mycroft if (sc->sc_state == AIC_IDLE)
1285 1.1 mycroft aic_sched(sc);
1286 1.1 mycroft }
1287 1.24 mycroft }
1288 1.24 mycroft
1289 1.21 mycroft /*
1290 1.1 mycroft * POST PROCESSING OF SCSI_CMD (usually current)
1291 1.1 mycroft */
1292 1.21 mycroft void
1293 1.24 mycroft aic_done(sc, acb)
1294 1.1 mycroft struct aic_softc *sc;
1295 1.14 mycroft struct aic_acb *acb;
1296 1.1 mycroft {
1297 1.1 mycroft struct scsi_xfer *xs = acb->xs;
1298 1.33 mycroft struct scsi_link *sc_link = xs->sc_link;
1299 1.1 mycroft struct aic_tinfo *ti = &sc->sc_tinfo[sc_link->target];
1300 1.33 mycroft
1301 1.33 mycroft AIC_TRACE(("aic_done "));
1302 1.1 mycroft
1303 1.1 mycroft /*
1304 1.1 mycroft * Now, if we've come here with no error code, i.e. we've kept the
1305 1.21 mycroft * initial XS_NOERROR, and the status code signals that we should
1306 1.41 mycroft * check sense, we'll need to set up a request sense cmd block and
1307 1.21 mycroft * push the command back into the ready queue *before* any other
1308 1.41 mycroft * commands for this target/lunit, else we lose the sense info.
1309 1.21 mycroft * We don't support chk sense conditions for the request sense cmd.
1310 1.21 mycroft */
1311 1.1 mycroft if (xs->error == XS_NOERROR) {
1312 1.21 mycroft if (acb->flags & ACB_ABORT) {
1313 1.21 mycroft xs->error = XS_DRIVER_STUFFUP;
1314 1.41 mycroft } else if (acb->flags & ACB_SENSE) {
1315 1.1 mycroft xs->error = XS_SENSE;
1316 1.21 mycroft } else if (acb->target_stat == SCSI_CHECK) {
1317 1.21 mycroft /* First, save the return values */
1318 1.1 mycroft xs->resid = acb->data_length;
1319 1.1 mycroft xs->status = acb->target_stat;
1320 1.33 mycroft aic_sense(sc, acb);
1321 1.1 mycroft return;
1322 1.33 mycroft } else {
1323 1.1 mycroft xs->resid = acb->data_length;
1324 1.14 mycroft }
1325 1.14 mycroft }
1326 1.14 mycroft
1327 1.1 mycroft xs->flags |= ITSDONE;
1328 1.14 mycroft
1329 1.14 mycroft #if AIC_DEBUG
1330 1.14 mycroft if ((aic_debug & AIC_SHOWMISC) != 0) {
1331 1.1 mycroft if (xs->resid != 0)
1332 1.1 mycroft printf("resid=%d ", xs->resid);
1333 1.1 mycroft if (xs->error == XS_SENSE)
1334 1.1 mycroft printf("sense=0x%02x\n", xs->sense.error_code);
1335 1.41 mycroft else
1336 1.1 mycroft printf("error=%d\n", xs->error);
1337 1.41 mycroft }
1338 1.41 mycroft #endif
1339 1.24 mycroft
1340 1.42 mycroft /*
1341 1.24 mycroft * Remove the ACB from whatever queue it happens to be on.
1342 1.24 mycroft */
1343 1.21 mycroft if (acb->flags & ACB_NEXUS)
1344 1.24 mycroft ti->lubusy &= ~(1 << sc_link->lun);
1345 1.21 mycroft if (acb == sc->sc_nexus) {
1346 1.24 mycroft sc->sc_nexus = NULL;
1347 1.21 mycroft sc->sc_state = AIC_IDLE;
1348 1.21 mycroft aic_sched(sc);
1349 1.21 mycroft } else
1350 1.21 mycroft aic_dequeue(sc, acb);
1351 1.21 mycroft
1352 1.24 mycroft aic_free_acb(sc, acb, xs->flags);
1353 1.24 mycroft ti->cmds++;
1354 1.21 mycroft scsi_done(xs);
1355 1.21 mycroft }
1356 1.21 mycroft
1357 1.41 mycroft void
1358 1.41 mycroft aic_dequeue(sc, acb)
1359 1.41 mycroft struct aic_softc *sc;
1360 1.24 mycroft struct aic_acb *acb;
1361 1.1 mycroft {
1362 1.1 mycroft
1363 1.1 mycroft if (acb->flags & ACB_NEXUS) {
1364 1.1 mycroft TAILQ_REMOVE(&sc->nexus_list, acb, chain);
1365 1.1 mycroft } else {
1366 1.1 mycroft TAILQ_REMOVE(&sc->ready_list, acb, chain);
1367 1.1 mycroft }
1368 1.14 mycroft }
1369 1.1 mycroft
1370 1.14 mycroft /*
1372 1.14 mycroft * INTERRUPT/PROTOCOL ENGINE
1373 1.14 mycroft */
1374 1.1 mycroft
1375 1.1 mycroft #define IS1BYTEMSG(m) (((m) != 0x01 && (m) < 0x20) || (m) >= 0x80)
1376 1.1 mycroft #define IS2BYTEMSG(m) (((m) & 0xf0) == 0x20)
1377 1.41 mycroft #define ISEXTMSG(m) ((m) == 0x01)
1378 1.24 mycroft
1379 1.24 mycroft /*
1380 1.1 mycroft * Precondition:
1381 1.40 mycroft * The SCSI bus is already in the MSGI phase and there is a message byte
1382 1.27 mycroft * on the bus, along with an asserted REQ signal.
1383 1.14 mycroft */
1384 1.14 mycroft void
1385 1.14 mycroft aic_msgin(sc)
1386 1.14 mycroft register struct aic_softc *sc;
1387 1.24 mycroft {
1388 1.14 mycroft int iobase = sc->sc_iobase;
1389 1.24 mycroft u_char sstat1;
1390 1.14 mycroft int n;
1391 1.1 mycroft
1392 1.14 mycroft AIC_TRACE(("aic_msgin "));
1393 1.14 mycroft
1394 1.24 mycroft if (sc->sc_prevphase == PH_MSGIN) {
1395 1.14 mycroft /* This is a continuation of the previous message. */
1396 1.14 mycroft n = sc->sc_imp - sc->sc_imess;
1397 1.14 mycroft goto nextbyte;
1398 1.24 mycroft }
1399 1.14 mycroft
1400 1.14 mycroft /* This is a new MESSAGE IN phase. Clean up our state. */
1401 1.33 mycroft sc->sc_flags &= ~AIC_DROP_MSGIN;
1402 1.33 mycroft
1403 1.14 mycroft nextmsg:
1404 1.14 mycroft n = 0;
1405 1.1 mycroft sc->sc_imp = &sc->sc_imess[n];
1406 1.2 mycroft
1407 1.16 mycroft nextbyte:
1408 1.40 mycroft /*
1409 1.43 mycroft * Read a whole message, but don't ack the last byte. If we reject the
1410 1.27 mycroft * message, we have to assert ATN during the message transfer phase
1411 1.27 mycroft * itself.
1412 1.27 mycroft */
1413 1.40 mycroft for (;;) {
1414 1.27 mycroft for (;;) {
1415 1.27 mycroft sstat1 = inb(iobase + SSTAT1);
1416 1.27 mycroft if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0)
1417 1.27 mycroft break;
1418 1.27 mycroft /* Wait for REQINIT. XXX Need timeout. */
1419 1.41 mycroft }
1420 1.27 mycroft if ((sstat1 & (PHASECHG | BUSFREE)) != 0) {
1421 1.27 mycroft /*
1422 1.27 mycroft * Target left MESSAGE IN, probably because it
1423 1.27 mycroft * a) noticed our ATN signal, or
1424 1.27 mycroft * b) ran out of messages.
1425 1.40 mycroft */
1426 1.1 mycroft goto out;
1427 1.14 mycroft }
1428 1.14 mycroft
1429 1.24 mycroft /* If parity error, just dump everything on the floor. */
1430 1.14 mycroft if ((sstat1 & SCSIPERR) != 0) {
1431 1.40 mycroft sc->sc_flags |= AIC_DROP_MSGIN;
1432 1.24 mycroft aic_sched_msgout(sc, SEND_PARITY_ERROR);
1433 1.40 mycroft }
1434 1.14 mycroft
1435 1.40 mycroft /* Gather incoming message bytes if needed. */
1436 1.14 mycroft if ((sc->sc_flags & AIC_DROP_MSGIN) == 0) {
1437 1.14 mycroft if (n >= AIC_MAX_MSG_LEN) {
1438 1.14 mycroft (void) inb(iobase + SCSIDAT);
1439 1.14 mycroft sc->sc_flags |= AIC_DROP_MSGIN;
1440 1.14 mycroft aic_sched_msgout(sc, SEND_REJECT);
1441 1.14 mycroft } else {
1442 1.14 mycroft *sc->sc_imp++ = inb(iobase + SCSIDAT);
1443 1.24 mycroft n++;
1444 1.14 mycroft /*
1445 1.24 mycroft * This testing is suboptimal, but most
1446 1.14 mycroft * messages will be of the one byte variety, so
1447 1.24 mycroft * it should not affect performance
1448 1.24 mycroft * significantly.
1449 1.14 mycroft */
1450 1.1 mycroft if (n == 1 && IS1BYTEMSG(sc->sc_imess[0]))
1451 1.27 mycroft break;
1452 1.40 mycroft if (n == 2 && IS2BYTEMSG(sc->sc_imess[0]))
1453 1.14 mycroft break;
1454 1.14 mycroft if (n >= 3 && ISEXTMSG(sc->sc_imess[0]) &&
1455 1.14 mycroft n == sc->sc_imess[1] + 2)
1456 1.14 mycroft break;
1457 1.14 mycroft }
1458 1.1 mycroft } else
1459 1.40 mycroft (void) inb(iobase + SCSIDAT);
1460 1.14 mycroft
1461 1.40 mycroft /*
1462 1.40 mycroft * If we reach this spot we're either:
1463 1.40 mycroft * a) in the middle of a multi-byte message, or
1464 1.21 mycroft * b) dropping bytes.
1465 1.14 mycroft */
1466 1.14 mycroft outb(iobase + SXFRCTL0, CHEN | SPIOEN);
1467 1.24 mycroft /* Ack the last byte read. */
1468 1.14 mycroft (void) inb(iobase + SCSIDAT);
1469 1.14 mycroft outb(iobase + SXFRCTL0, CHEN);
1470 1.24 mycroft while ((inb(iobase + SCSISIG) & ACKI) != 0)
1471 1.21 mycroft ;
1472 1.24 mycroft }
1473 1.14 mycroft
1474 1.1 mycroft AIC_MISC(("n=%d imess=0x%02x ", n, sc->sc_imess[0]));
1475 1.14 mycroft
1476 1.24 mycroft /* We now have a complete message. Parse it. */
1477 1.24 mycroft switch (sc->sc_state) {
1478 1.24 mycroft struct aic_acb *acb;
1479 1.1 mycroft struct scsi_link *sc_link;
1480 1.24 mycroft struct aic_tinfo *ti;
1481 1.1 mycroft
1482 1.24 mycroft case AIC_CONNECTED:
1483 1.24 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
1484 1.18 mycroft acb = sc->sc_nexus;
1485 1.24 mycroft ti = &sc->sc_tinfo[acb->xs->sc_link->target];
1486 1.24 mycroft
1487 1.21 mycroft switch (sc->sc_imess[0]) {
1488 1.1 mycroft case MSG_CMDCOMPLETE:
1489 1.24 mycroft if (sc->sc_dleft < 0) {
1490 1.24 mycroft sc_link = acb->xs->sc_link;
1491 1.1 mycroft printf("%s: %d extra bytes from %d:%d\n",
1492 1.14 mycroft sc->sc_dev.dv_xname, -sc->sc_dleft,
1493 1.14 mycroft sc_link->target, sc_link->lun);
1494 1.14 mycroft acb->data_length = 0;
1495 1.40 mycroft }
1496 1.14 mycroft acb->xs->resid = acb->data_length = sc->sc_dleft;
1497 1.14 mycroft sc->sc_state = AIC_CMDCOMPLETE;
1498 1.1 mycroft break;
1499 1.29 mycroft
1500 1.29 mycroft case MSG_PARITY_ERROR:
1501 1.28 mycroft /* Resend the last message. */
1502 1.14 mycroft aic_sched_msgout(sc, sc->sc_lastmsg);
1503 1.40 mycroft break;
1504 1.27 mycroft
1505 1.29 mycroft case MSG_MESSAGE_REJECT:
1506 1.27 mycroft AIC_MISC(("message rejected %02x ", sc->sc_lastmsg));
1507 1.14 mycroft switch (sc->sc_lastmsg) {
1508 1.28 mycroft #if AIC_USE_SYNCHRONOUS + AIC_USE_WIDE
1509 1.28 mycroft case SEND_IDENTIFY:
1510 1.14 mycroft ti->flags &= ~(DO_SYNC | DO_WIDE);
1511 1.14 mycroft ti->period = ti->offset = 0;
1512 1.27 mycroft aic_setsync(sc, ti);
1513 1.29 mycroft ti->width = 0;
1514 1.14 mycroft break;
1515 1.28 mycroft #endif
1516 1.28 mycroft #if AIC_USE_SYNCHRONOUS
1517 1.14 mycroft case SEND_SDTR:
1518 1.14 mycroft ti->flags &= ~DO_SYNC;
1519 1.27 mycroft ti->period = ti->offset = 0;
1520 1.14 mycroft aic_setsync(sc, ti);
1521 1.28 mycroft break;
1522 1.14 mycroft #endif
1523 1.40 mycroft #if AIC_USE_WIDE
1524 1.14 mycroft case SEND_WDTR:
1525 1.1 mycroft ti->flags &= ~DO_WIDE;
1526 1.1 mycroft ti->width = 0;
1527 1.14 mycroft break;
1528 1.14 mycroft #endif
1529 1.14 mycroft case SEND_INIT_DET_ERR:
1530 1.14 mycroft aic_sched_msgout(sc, SEND_ABORT);
1531 1.1 mycroft break;
1532 1.1 mycroft }
1533 1.24 mycroft break;
1534 1.1 mycroft
1535 1.14 mycroft case MSG_NOOP:
1536 1.1 mycroft break;
1537 1.24 mycroft
1538 1.24 mycroft case MSG_DISCONNECT:
1539 1.1 mycroft ti->dconns++;
1540 1.14 mycroft sc->sc_state = AIC_DISCONNECT;
1541 1.1 mycroft break;
1542 1.24 mycroft
1543 1.24 mycroft case MSG_SAVEDATAPOINTER:
1544 1.24 mycroft acb->data_addr = sc->sc_dp;
1545 1.24 mycroft acb->data_length = sc->sc_dleft;
1546 1.1 mycroft break;
1547 1.14 mycroft
1548 1.1 mycroft case MSG_RESTOREPOINTERS:
1549 1.24 mycroft sc->sc_dp = acb->data_addr;
1550 1.28 mycroft sc->sc_dleft = acb->data_length;
1551 1.1 mycroft sc->sc_cp = (u_char *)&acb->scsi_cmd;
1552 1.24 mycroft sc->sc_cleft = acb->scsi_cmd_length;
1553 1.14 mycroft break;
1554 1.27 mycroft
1555 1.27 mycroft case MSG_EXTENDED:
1556 1.28 mycroft switch (sc->sc_imess[2]) {
1557 1.27 mycroft #if AIC_USE_SYNCHRONOUS
1558 1.27 mycroft case MSG_EXT_SDTR:
1559 1.27 mycroft if (sc->sc_imess[1] != 3)
1560 1.29 mycroft goto reject;
1561 1.27 mycroft ti->period = sc->sc_imess[3];
1562 1.40 mycroft ti->offset = sc->sc_imess[4];
1563 1.2 mycroft ti->flags &= ~DO_SYNC;
1564 1.29 mycroft if (ti->offset == 0) {
1565 1.27 mycroft } else if (ti->period < sc->sc_minsync ||
1566 1.27 mycroft ti->period > sc->sc_maxsync ||
1567 1.1 mycroft ti->offset > 8) {
1568 1.28 mycroft ti->period = ti->offset = 0;
1569 1.1 mycroft aic_sched_msgout(sc, SEND_SDTR);
1570 1.28 mycroft } else {
1571 1.14 mycroft sc_print_addr(acb->xs->sc_link);
1572 1.28 mycroft printf("sync, offset %d, period %dnsec\n",
1573 1.14 mycroft ti->offset, ti->period * 4);
1574 1.24 mycroft }
1575 1.14 mycroft aic_setsync(sc, ti);
1576 1.27 mycroft break;
1577 1.28 mycroft #endif
1578 1.27 mycroft
1579 1.27 mycroft #if AIC_USE_WIDE
1580 1.14 mycroft case MSG_EXT_WDTR:
1581 1.40 mycroft if (sc->sc_imess[1] != 2)
1582 1.14 mycroft goto reject;
1583 1.29 mycroft ti->width = sc->sc_imess[3];
1584 1.27 mycroft ti->flags &= ~DO_WIDE;
1585 1.27 mycroft if (ti->width == 0) {
1586 1.14 mycroft } else if (ti->width > AIC_MAX_WIDTH) {
1587 1.1 mycroft ti->width = 0;
1588 1.28 mycroft aic_sched_msgout(sc, SEND_WDTR);
1589 1.14 mycroft } else {
1590 1.14 mycroft sc_print_addr(acb->xs->sc_link);
1591 1.25 mycroft printf("wide, width %d\n",
1592 1.25 mycroft 1 << (3 + ti->width));
1593 1.15 mycroft }
1594 1.14 mycroft break;
1595 1.1 mycroft #endif
1596 1.1 mycroft
1597 1.14 mycroft default:
1598 1.1 mycroft printf("%s: unrecognized MESSAGE EXTENDED; sending REJECT\n",
1599 1.25 mycroft sc->sc_dev.dv_xname);
1600 1.25 mycroft AIC_BREAK();
1601 1.15 mycroft goto reject;
1602 1.14 mycroft }
1603 1.40 mycroft break;
1604 1.1 mycroft
1605 1.1 mycroft default:
1606 1.14 mycroft printf("%s: unrecognized MESSAGE; sending REJECT\n",
1607 1.14 mycroft sc->sc_dev.dv_xname);
1608 1.14 mycroft AIC_BREAK();
1609 1.24 mycroft reject:
1610 1.25 mycroft aic_sched_msgout(sc, SEND_REJECT);
1611 1.25 mycroft break;
1612 1.15 mycroft }
1613 1.14 mycroft break;
1614 1.14 mycroft
1615 1.14 mycroft case AIC_RESELECTED:
1616 1.27 mycroft if (!MSG_ISIDENTIFY(sc->sc_imess[0])) {
1617 1.14 mycroft printf("%s: reselect without IDENTIFY; sending DEVICE RESET\n",
1618 1.14 mycroft sc->sc_dev.dv_xname);
1619 1.14 mycroft AIC_BREAK();
1620 1.25 mycroft goto reset;
1621 1.25 mycroft }
1622 1.15 mycroft
1623 1.14 mycroft (void) aic_reselect(sc, sc->sc_imess[0]);
1624 1.40 mycroft break;
1625 1.14 mycroft
1626 1.21 mycroft default:
1627 1.21 mycroft printf("%s: unexpected MESSAGE IN; sending DEVICE RESET\n",
1628 1.40 mycroft sc->sc_dev.dv_xname);
1629 1.21 mycroft AIC_BREAK();
1630 1.1 mycroft reset:
1631 1.14 mycroft aic_sched_msgout(sc, SEND_DEV_RESET);
1632 1.40 mycroft break;
1633 1.14 mycroft
1634 1.40 mycroft abort:
1635 1.40 mycroft aic_sched_msgout(sc, SEND_ABORT);
1636 1.40 mycroft break;
1637 1.21 mycroft }
1638 1.14 mycroft
1639 1.14 mycroft outb(iobase + SXFRCTL0, CHEN | SPIOEN);
1640 1.14 mycroft /* Ack the last message byte. */
1641 1.14 mycroft (void) inb(iobase + SCSIDAT);
1642 1.14 mycroft outb(iobase + SXFRCTL0, CHEN);
1643 1.24 mycroft while ((inb(iobase + SCSISIG) & ACKI) != 0)
1644 1.1 mycroft ;
1645 1.1 mycroft
1646 1.27 mycroft /* Go get the next message, if any. */
1647 1.27 mycroft goto nextmsg;
1648 1.1 mycroft
1649 1.14 mycroft out:
1650 1.24 mycroft AIC_MISC(("n=%d imess=0x%02x ", n, sc->sc_imess[0]));
1651 1.24 mycroft }
1652 1.1 mycroft
1653 1.40 mycroft /*
1654 1.1 mycroft * Send the highest priority, scheduled message.
1655 1.29 mycroft */
1656 1.14 mycroft void
1657 1.14 mycroft aic_msgout(sc)
1658 1.14 mycroft register struct aic_softc *sc;
1659 1.1 mycroft {
1660 1.14 mycroft int iobase = sc->sc_iobase;
1661 1.40 mycroft struct aic_tinfo *ti;
1662 1.14 mycroft u_char sstat1;
1663 1.40 mycroft int n;
1664 1.14 mycroft
1665 1.24 mycroft AIC_TRACE(("aic_msgout "));
1666 1.24 mycroft
1667 1.14 mycroft /* Reset the FIFO. */
1668 1.14 mycroft outb(iobase + DMACNTRL0, RSTFIFO);
1669 1.14 mycroft /* Enable REQ/ACK protocol. */
1670 1.14 mycroft outb(iobase + SXFRCTL0, CHEN | SPIOEN);
1671 1.14 mycroft
1672 1.14 mycroft if (sc->sc_prevphase == PH_MSGOUT) {
1673 1.14 mycroft if (sc->sc_omp == sc->sc_omess) {
1674 1.14 mycroft /*
1675 1.14 mycroft * This is a retransmission.
1676 1.14 mycroft *
1677 1.14 mycroft * We get here if the target stayed in MESSAGE OUT
1678 1.14 mycroft * phase. Section 5.1.9.2 of the SCSI 2 spec indicates
1679 1.24 mycroft * that all of the previously transmitted messages must
1680 1.43 mycroft * be sent again, in the same order. Therefore, we
1681 1.43 mycroft * requeue all the previously transmitted messages, and
1682 1.43 mycroft * start again from the top. Our simple priority
1683 1.43 mycroft * scheme keeps the messages in the right order.
1684 1.43 mycroft */
1685 1.14 mycroft AIC_MISC(("retransmitting "));
1686 1.14 mycroft sc->sc_msgpriq |= sc->sc_msgoutq;
1687 1.24 mycroft /*
1688 1.14 mycroft * Set ATN. If we're just sending a trivial 1-byte
1689 1.14 mycroft * message, we'll clear ATN later on anyway.
1690 1.14 mycroft */
1691 1.14 mycroft outb(iobase + SCSISIG, PH_MSGOUT | ATNO);
1692 1.14 mycroft } else {
1693 1.24 mycroft /* This is a continuation of the previous message. */
1694 1.29 mycroft n = sc->sc_omp - sc->sc_omess;
1695 1.14 mycroft goto nextbyte;
1696 1.14 mycroft }
1697 1.14 mycroft }
1698 1.29 mycroft
1699 1.29 mycroft /* No messages transmitted so far. */
1700 1.29 mycroft sc->sc_msgoutq = 0;
1701 1.14 mycroft sc->sc_lastmsg = 0;
1702 1.14 mycroft
1703 1.29 mycroft nextmsg:
1704 1.14 mycroft /* Pick up highest priority message. */
1705 1.24 mycroft sc->sc_currmsg = sc->sc_msgpriq & -sc->sc_msgpriq;
1706 1.41 mycroft sc->sc_msgpriq &= ~sc->sc_currmsg;
1707 1.41 mycroft sc->sc_msgoutq |= sc->sc_currmsg;
1708 1.14 mycroft
1709 1.14 mycroft /* Build the outgoing message data. */
1710 1.14 mycroft switch (sc->sc_currmsg) {
1711 1.28 mycroft case SEND_IDENTIFY:
1712 1.14 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
1713 1.24 mycroft sc->sc_omess[0] =
1714 1.24 mycroft MSG_IDENTIFY(sc->sc_nexus->xs->sc_link->lun, 1);
1715 1.24 mycroft n = 1;
1716 1.24 mycroft break;
1717 1.24 mycroft
1718 1.24 mycroft #if AIC_USE_SYNCHRONOUS
1719 1.24 mycroft case SEND_SDTR:
1720 1.14 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
1721 1.14 mycroft ti = &sc->sc_tinfo[sc->sc_nexus->xs->sc_link->target];
1722 1.28 mycroft sc->sc_omess[4] = MSG_EXTENDED;
1723 1.14 mycroft sc->sc_omess[3] = 3;
1724 1.28 mycroft sc->sc_omess[2] = MSG_EXT_SDTR;
1725 1.14 mycroft sc->sc_omess[1] = ti->period >> 2;
1726 1.24 mycroft sc->sc_omess[0] = ti->offset;
1727 1.24 mycroft n = 5;
1728 1.24 mycroft break;
1729 1.24 mycroft #endif
1730 1.24 mycroft
1731 1.24 mycroft #if AIC_USE_WIDE
1732 1.14 mycroft case SEND_WDTR:
1733 1.14 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
1734 1.28 mycroft ti = &sc->sc_tinfo[sc->sc_nexus->xs->sc_link->target];
1735 1.14 mycroft sc->sc_omess[3] = MSG_EXTENDED;
1736 1.14 mycroft sc->sc_omess[2] = 2;
1737 1.41 mycroft sc->sc_omess[1] = MSG_EXT_WDTR;
1738 1.24 mycroft sc->sc_omess[0] = ti->width;
1739 1.14 mycroft n = 4;
1740 1.14 mycroft break;
1741 1.14 mycroft #endif
1742 1.14 mycroft
1743 1.24 mycroft case SEND_DEV_RESET:
1744 1.14 mycroft sc->sc_flags |= AIC_ABORTING;
1745 1.14 mycroft sc->sc_omess[0] = MSG_BUS_DEV_RESET;
1746 1.14 mycroft n = 1;
1747 1.14 mycroft break;
1748 1.24 mycroft
1749 1.14 mycroft case SEND_REJECT:
1750 1.14 mycroft sc->sc_omess[0] = MSG_MESSAGE_REJECT;
1751 1.14 mycroft n = 1;
1752 1.14 mycroft break;
1753 1.24 mycroft
1754 1.14 mycroft case SEND_PARITY_ERROR:
1755 1.14 mycroft sc->sc_omess[0] = MSG_PARITY_ERROR;
1756 1.14 mycroft n = 1;
1757 1.14 mycroft break;
1758 1.41 mycroft
1759 1.24 mycroft case SEND_INIT_DET_ERR:
1760 1.14 mycroft sc->sc_omess[0] = MSG_INITIATOR_DET_ERR;
1761 1.14 mycroft n = 1;
1762 1.14 mycroft break;
1763 1.41 mycroft
1764 1.25 mycroft case SEND_ABORT:
1765 1.25 mycroft sc->sc_flags |= AIC_ABORTING;
1766 1.21 mycroft sc->sc_omess[0] = MSG_ABORT;
1767 1.24 mycroft n = 1;
1768 1.14 mycroft break;
1769 1.14 mycroft
1770 1.1 mycroft default:
1771 1.24 mycroft printf("%s: unexpected MESSAGE OUT; sending NOOP\n",
1772 1.14 mycroft sc->sc_dev.dv_xname);
1773 1.14 mycroft AIC_BREAK();
1774 1.14 mycroft sc->sc_omess[0] = MSG_NOOP;
1775 1.16 mycroft n = 1;
1776 1.16 mycroft break;
1777 1.40 mycroft }
1778 1.43 mycroft sc->sc_omp = &sc->sc_omess[n];
1779 1.29 mycroft
1780 1.29 mycroft nextbyte:
1781 1.29 mycroft /* Send message bytes. */
1782 1.40 mycroft for (;;) {
1783 1.29 mycroft for (;;) {
1784 1.29 mycroft sstat1 = inb(iobase + SSTAT1);
1785 1.29 mycroft if ((sstat1 & (REQINIT | PHASECHG | BUSFREE)) != 0)
1786 1.41 mycroft break;
1787 1.41 mycroft /* Wait for REQINIT. XXX Need timeout. */
1788 1.41 mycroft }
1789 1.41 mycroft if ((sstat1 & (PHASECHG | BUSFREE)) != 0) {
1790 1.41 mycroft /*
1791 1.41 mycroft * Target left MESSAGE OUT, possibly to reject
1792 1.29 mycroft * our message.
1793 1.41 mycroft *
1794 1.41 mycroft * If this is the last message being sent, then we
1795 1.29 mycroft * deassert ATN, since either the target is going to
1796 1.14 mycroft * ignore this message, or it's going to ask for a
1797 1.14 mycroft * retransmission via MESSAGE PARITY ERROR (in which
1798 1.14 mycroft * case we reassert ATN anyway).
1799 1.29 mycroft */
1800 1.40 mycroft if (sc->sc_msgpriq == 0)
1801 1.14 mycroft outb(iobase + CLRSINT1, CLRATNO);
1802 1.40 mycroft goto out;
1803 1.29 mycroft }
1804 1.29 mycroft
1805 1.29 mycroft /* Clear ATN before last byte if this is the last message. */
1806 1.16 mycroft if (n == 1 && sc->sc_msgpriq == 0)
1807 1.40 mycroft outb(iobase + CLRSINT1, CLRATNO);
1808 1.1 mycroft /* Send message byte. */
1809 1.16 mycroft outb(iobase + SCSIDAT, *--sc->sc_omp);
1810 1.16 mycroft --n;
1811 1.16 mycroft /* Keep track of the last message we've sent any bytes of. */
1812 1.1 mycroft sc->sc_lastmsg = sc->sc_currmsg;
1813 1.14 mycroft /* Wait for ACK to be negated. XXX Need timeout. */
1814 1.14 mycroft while ((inb(iobase + SCSISIG) & ACKI) != 0)
1815 1.24 mycroft ;
1816 1.14 mycroft
1817 1.14 mycroft if (n == 0)
1818 1.14 mycroft break;
1819 1.14 mycroft }
1820 1.14 mycroft
1821 1.14 mycroft /* We get here only if the entire message has been transmitted. */
1822 1.14 mycroft if (sc->sc_msgpriq != 0) {
1823 1.14 mycroft /* There are more outgoing messages. */
1824 1.14 mycroft goto nextmsg;
1825 1.14 mycroft }
1826 1.1 mycroft
1827 1.14 mycroft /*
1828 1.14 mycroft * The last message has been transmitted. We need to remember the last
1829 1.14 mycroft * message transmitted (in case the target switches to MESSAGE IN phase
1830 1.40 mycroft * and sends a MESSAGE REJECT), and the list of messages transmitted
1831 1.1 mycroft * this time around (in case the target stays in MESSAGE OUT phase to
1832 1.14 mycroft * request a retransmit).
1833 1.14 mycroft */
1834 1.1 mycroft
1835 1.1 mycroft out:
1836 1.1 mycroft /* Disable REQ/ACK protocol. */
1837 1.1 mycroft outb(iobase + SXFRCTL0, CHEN);
1838 1.1 mycroft }
1839 1.14 mycroft
1840 1.24 mycroft /* aic_dataout_pio: perform a data transfer using the FIFO datapath in the aic6360
1842 1.14 mycroft * Precondition: The SCSI bus should be in the DOUT phase, with REQ asserted
1843 1.14 mycroft * and ACK deasserted (i.e. waiting for a data byte)
1844 1.1 mycroft * This new revision has been optimized (I tried) to make the common case fast,
1845 1.40 mycroft * and the rarer cases (as a result) somewhat more comlex
1846 1.1 mycroft */
1847 1.14 mycroft int
1848 1.6 mycroft aic_dataout_pio(sc, p, n)
1849 1.1 mycroft register struct aic_softc *sc;
1850 1.29 mycroft u_char *p;
1851 1.40 mycroft int n;
1852 1.14 mycroft {
1853 1.40 mycroft int iobase = sc->sc_iobase;
1854 1.40 mycroft register u_char dmastat;
1855 1.1 mycroft int out = 0;
1856 1.21 mycroft #define DOUTAMOUNT 128 /* Full FIFO */
1857 1.40 mycroft
1858 1.40 mycroft /* Clear host FIFO and counter. */
1859 1.1 mycroft outb(iobase + DMACNTRL0, RSTFIFO | WRITE);
1860 1.1 mycroft /* Enable FIFOs. */
1861 1.33 mycroft outb(iobase + SXFRCTL0, SCSIEN | DMAEN | CHEN);
1862 1.1 mycroft outb(iobase + DMACNTRL0, ENDMA | DWORDPIO | WRITE);
1863 1.1 mycroft
1864 1.14 mycroft /* Turn off ENREQINIT for now. */
1865 1.6 mycroft outb(iobase + SIMODE1,
1866 1.40 mycroft ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENPHASECHG);
1867 1.42 mycroft
1868 1.6 mycroft /* I have tried to make the main loop as tight as possible. This
1869 1.6 mycroft * means that some of the code following the loop is a bit more
1870 1.6 mycroft * complex than otherwise.
1871 1.42 mycroft */
1872 1.42 mycroft while (n > 0) {
1873 1.14 mycroft for (;;) {
1874 1.42 mycroft dmastat = inb(iobase + DMASTAT);
1875 1.42 mycroft if ((dmastat & (DFIFOEMP | INTSTAT)) != 0)
1876 1.42 mycroft break;
1877 1.29 mycroft }
1878 1.42 mycroft
1879 1.42 mycroft if ((dmastat & INTSTAT) != 0)
1880 1.42 mycroft goto phasechange;
1881 1.42 mycroft
1882 1.42 mycroft if (n >= DOUTAMOUNT) {
1883 1.42 mycroft n -= DOUTAMOUNT;
1884 1.42 mycroft out += DOUTAMOUNT;
1885 1.42 mycroft
1886 1.42 mycroft #if AIC_USE_DWORDS
1887 1.42 mycroft outsl(iobase + DMADATALONG, p, DOUTAMOUNT >> 2);
1888 1.42 mycroft #else
1889 1.42 mycroft outsw(iobase + DMADATA, p, DOUTAMOUNT >> 1);
1890 1.42 mycroft #endif
1891 1.42 mycroft
1892 1.42 mycroft p += DOUTAMOUNT;
1893 1.1 mycroft } else {
1894 1.1 mycroft register int xfer;
1895 1.42 mycroft
1896 1.42 mycroft xfer = n;
1897 1.42 mycroft AIC_MISC(("%d> ", xfer));
1898 1.42 mycroft
1899 1.42 mycroft n -= xfer;
1900 1.1 mycroft out += xfer;
1901 1.42 mycroft
1902 1.42 mycroft #if AIC_USE_DWORDS
1903 1.42 mycroft if (xfer >= 12) {
1904 1.42 mycroft outsl(iobase + DMADATALONG, p, xfer >> 2);
1905 1.42 mycroft p += xfer & ~3;
1906 1.1 mycroft xfer &= 3;
1907 1.1 mycroft }
1908 1.42 mycroft #else
1909 1.42 mycroft if (xfer >= 8) {
1910 1.42 mycroft outsw(iobase + DMADATA, p, xfer >> 1);
1911 1.42 mycroft p += xfer & ~1;
1912 1.42 mycroft xfer &= 1;
1913 1.42 mycroft }
1914 1.6 mycroft #endif
1915 1.1 mycroft
1916 1.6 mycroft if (xfer > 0) {
1917 1.29 mycroft outb(iobase + DMACNTRL0, ENDMA | B8MODE | WRITE);
1918 1.40 mycroft outsb(iobase + DMADATA, p, xfer);
1919 1.29 mycroft p += xfer;
1920 1.40 mycroft outb(iobase + DMACNTRL0, ENDMA | DWORDPIO | WRITE);
1921 1.29 mycroft }
1922 1.29 mycroft }
1923 1.40 mycroft }
1924 1.29 mycroft
1925 1.29 mycroft if (out == 0) {
1926 1.29 mycroft outb(iobase + SXFRCTL1, BITBUCKET);
1927 1.29 mycroft for (;;) {
1928 1.40 mycroft if ((inb(iobase + DMASTAT) & INTSTAT) != 0)
1929 1.42 mycroft break;
1930 1.42 mycroft }
1931 1.29 mycroft outb(iobase + SXFRCTL1, 0);
1932 1.40 mycroft AIC_MISC(("extra data "));
1933 1.29 mycroft } else {
1934 1.29 mycroft /* See the bytes off chip */
1935 1.6 mycroft for (;;) {
1936 1.1 mycroft dmastat = inb(iobase + DMASTAT);
1937 1.6 mycroft if ((dmastat & INTSTAT) != 0)
1938 1.29 mycroft goto phasechange;
1939 1.40 mycroft if ((dmastat & DFIFOEMP) != 0 &&
1940 1.40 mycroft (inb(iobase + SSTAT2) & SEMPTY) != 0)
1941 1.29 mycroft break;
1942 1.6 mycroft }
1943 1.14 mycroft }
1944 1.14 mycroft
1945 1.14 mycroft phasechange:
1946 1.14 mycroft /* Stop the FIFO data path. */
1947 1.1 mycroft outb(iobase + SXFRCTL0, CHEN);
1948 1.40 mycroft while ((inb(iobase + SXFRCTL0) & SCSIEN) != 0)
1949 1.29 mycroft ;
1950 1.29 mycroft
1951 1.40 mycroft if ((dmastat & INTSTAT) != 0) {
1952 1.29 mycroft /* Some sort of phase change. */
1953 1.29 mycroft int amount;
1954 1.1 mycroft
1955 1.14 mycroft /* Stop transfers, do some accounting */
1956 1.21 mycroft amount = inb(iobase + FIFOSTAT) + (inb(iobase + SSTAT2) & 15);
1957 1.40 mycroft if (amount > 0) {
1958 1.40 mycroft out -= amount;
1959 1.21 mycroft outb(iobase + SXFRCTL0, CHEN | CLRSTCNT | CLRCH);
1960 1.14 mycroft AIC_MISC(("+%d ", amount));
1961 1.1 mycroft }
1962 1.14 mycroft }
1963 1.14 mycroft
1964 1.1 mycroft /* Turn on ENREQINIT again. */
1965 1.1 mycroft outb(iobase + SIMODE1,
1966 1.1 mycroft ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT | ENPHASECHG);
1967 1.33 mycroft
1968 1.1 mycroft return out;
1969 1.1 mycroft }
1970 1.14 mycroft
1971 1.24 mycroft /* aic_datain_pio: perform data transfers using the FIFO datapath in the aic6360
1973 1.14 mycroft * Precondition: The SCSI bus should be in the DIN phase, with REQ asserted
1974 1.14 mycroft * and ACK deasserted (i.e. at least one byte is ready).
1975 1.1 mycroft * For now, uses a pretty dumb algorithm, hangs around until all data has been
1976 1.40 mycroft * transferred. This, is OK for fast targets, but not so smart for slow
1977 1.1 mycroft * targets which don't disconnect or for huge transfers.
1978 1.14 mycroft */
1979 1.14 mycroft int
1980 1.33 mycroft aic_datain_pio(sc, p, n)
1981 1.29 mycroft register struct aic_softc *sc;
1982 1.40 mycroft u_char *p;
1983 1.41 mycroft int n;
1984 1.40 mycroft {
1985 1.40 mycroft int iobase = sc->sc_iobase;
1986 1.1 mycroft register u_char dmastat;
1987 1.21 mycroft int in = 0;
1988 1.40 mycroft #define DINAMOUNT 128 /* Full FIFO */
1989 1.40 mycroft
1990 1.6 mycroft /* Clear host FIFO and counter. */
1991 1.1 mycroft outb(iobase + DMACNTRL0, RSTFIFO);
1992 1.21 mycroft /* Enable FIFOs. */
1993 1.1 mycroft outb(iobase + SXFRCTL0, SCSIEN | DMAEN | CHEN);
1994 1.1 mycroft outb(iobase + DMACNTRL0, ENDMA | DWORDPIO);
1995 1.14 mycroft
1996 1.6 mycroft /* Turn off ENREQINIT for now. */
1997 1.6 mycroft outb(iobase + SIMODE1,
1998 1.40 mycroft ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENPHASECHG);
1999 1.40 mycroft
2000 1.6 mycroft /* We leave this loop if one or more of the following is true:
2001 1.6 mycroft * a) phase != PH_DATAIN && FIFOs are empty
2002 1.6 mycroft * b) SCSIRSTI is set (a reset has occurred) or busfree is detected.
2003 1.42 mycroft */
2004 1.42 mycroft while (n > 0) {
2005 1.42 mycroft /* Wait for fifo half full or phase mismatch */
2006 1.42 mycroft for (;;) {
2007 1.42 mycroft dmastat = inb(iobase + DMASTAT);
2008 1.42 mycroft if ((dmastat & (DFIFOFULL | INTSTAT)) != 0)
2009 1.42 mycroft break;
2010 1.42 mycroft }
2011 1.42 mycroft
2012 1.42 mycroft if ((dmastat & DFIFOFULL) != 0) {
2013 1.42 mycroft n -= DINAMOUNT;
2014 1.42 mycroft in += DINAMOUNT;
2015 1.42 mycroft
2016 1.42 mycroft #if AIC_USE_DWORDS
2017 1.40 mycroft insl(iobase + DMADATALONG, p, DINAMOUNT >> 2);
2018 1.42 mycroft #else
2019 1.6 mycroft insw(iobase + DMADATA, p, DINAMOUNT >> 1);
2020 1.42 mycroft #endif
2021 1.42 mycroft
2022 1.1 mycroft p += DINAMOUNT;
2023 1.1 mycroft } else {
2024 1.42 mycroft register int xfer;
2025 1.42 mycroft
2026 1.42 mycroft xfer = min(inb(iobase + FIFOSTAT), n);
2027 1.42 mycroft AIC_MISC((">%d ", xfer));
2028 1.42 mycroft
2029 1.1 mycroft n -= xfer;
2030 1.42 mycroft in += xfer;
2031 1.42 mycroft
2032 1.42 mycroft #if AIC_USE_DWORDS
2033 1.42 mycroft if (xfer >= 12) {
2034 1.42 mycroft insl(iobase + DMADATALONG, p, xfer >> 2);
2035 1.1 mycroft p += xfer & ~3;
2036 1.6 mycroft xfer &= 3;
2037 1.42 mycroft }
2038 1.42 mycroft #else
2039 1.42 mycroft if (xfer >= 8) {
2040 1.42 mycroft insw(iobase + DMADATA, p, xfer >> 1);
2041 1.42 mycroft p += xfer & ~1;
2042 1.42 mycroft xfer &= 1;
2043 1.6 mycroft }
2044 1.6 mycroft #endif
2045 1.14 mycroft
2046 1.29 mycroft if (xfer > 0) {
2047 1.1 mycroft outb(iobase + DMACNTRL0, ENDMA | B8MODE);
2048 1.6 mycroft insb(iobase + DMADATA, p, xfer);
2049 1.1 mycroft p += xfer;
2050 1.33 mycroft outb(iobase + DMACNTRL0, ENDMA | DWORDPIO);
2051 1.1 mycroft }
2052 1.14 mycroft }
2053 1.14 mycroft
2054 1.1 mycroft if ((dmastat & INTSTAT) != 0)
2055 1.14 mycroft goto phasechange;
2056 1.40 mycroft }
2057 1.6 mycroft
2058 1.40 mycroft /* Some SCSI-devices are rude enough to transfer more data than what
2059 1.6 mycroft * was requested, e.g. 2048 bytes from a CD-ROM instead of the
2060 1.1 mycroft * requested 512. Test for progress, i.e. real transfers. If no real
2061 1.40 mycroft * transfers have been performed (n is probably already zero) and the
2062 1.29 mycroft * FIFO is not empty, waste some bytes....
2063 1.27 mycroft */
2064 1.6 mycroft if (in == 0) {
2065 1.29 mycroft outb(iobase + SXFRCTL1, BITBUCKET);
2066 1.29 mycroft for (;;) {
2067 1.40 mycroft if ((inb(iobase + DMASTAT) & INTSTAT) != 0)
2068 1.40 mycroft break;
2069 1.14 mycroft }
2070 1.14 mycroft outb(iobase + SXFRCTL1, 0);
2071 1.21 mycroft AIC_MISC(("extra data "));
2072 1.40 mycroft }
2073 1.40 mycroft
2074 1.14 mycroft phasechange:
2075 1.14 mycroft /* Stop the FIFO data path. */
2076 1.1 mycroft outb(iobase + SXFRCTL0, CHEN);
2077 1.14 mycroft while ((inb(iobase + SXFRCTL0) & SCSIEN) != 0)
2078 1.1 mycroft ;
2079 1.1 mycroft
2080 1.1 mycroft /* Turn on ENREQINIT again. */
2081 1.1 mycroft outb(iobase + SIMODE1,
2082 1.1 mycroft ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT | ENPHASECHG);
2083 1.33 mycroft
2084 1.31 cgd return in;
2085 1.31 cgd }
2086 1.1 mycroft
2087 1.31 cgd /*
2089 1.14 mycroft * This is the workhorse routine of the driver.
2090 1.21 mycroft * Deficiencies (for now):
2091 1.24 mycroft * 1) always uses programmed I/O
2092 1.1 mycroft */
2093 1.14 mycroft int
2094 1.14 mycroft aicintr(arg)
2095 1.14 mycroft void *arg;
2096 1.27 mycroft {
2097 1.27 mycroft register struct aic_softc *sc = arg;
2098 1.1 mycroft int iobase = sc->sc_iobase;
2099 1.40 mycroft u_char sstat0, sstat1;
2100 1.27 mycroft register struct aic_acb *acb;
2101 1.14 mycroft register struct scsi_link *sc_link;
2102 1.33 mycroft struct aic_tinfo *ti;
2103 1.29 mycroft int n;
2104 1.1 mycroft
2105 1.14 mycroft /*
2106 1.1 mycroft * Clear INTEN. We enable it again before returning. This makes the
2107 1.40 mycroft * interrupt esssentially level-triggered.
2108 1.14 mycroft */
2109 1.21 mycroft outb(iobase + DMACNTRL0, 0);
2110 1.14 mycroft
2111 1.27 mycroft AIC_TRACE(("aicintr "));
2112 1.14 mycroft
2113 1.14 mycroft loop:
2114 1.27 mycroft /*
2115 1.27 mycroft * First check for abnormal conditions, such as reset.
2116 1.27 mycroft */
2117 1.27 mycroft sstat1 = inb(iobase + SSTAT1);
2118 1.14 mycroft AIC_MISC(("sstat1:0x%02x ", sstat1));
2119 1.27 mycroft
2120 1.40 mycroft if ((sstat1 & SCSIRSTI) != 0) {
2121 1.24 mycroft printf("%s: SCSI bus reset\n", sc->sc_dev.dv_xname);
2122 1.24 mycroft goto reset;
2123 1.40 mycroft }
2124 1.33 mycroft
2125 1.40 mycroft /*
2126 1.1 mycroft * Check for less serious errors.
2127 1.1 mycroft */
2128 1.33 mycroft if ((sstat1 & SCSIPERR) != 0) {
2129 1.1 mycroft printf("%s: SCSI bus parity error\n", sc->sc_dev.dv_xname);
2130 1.1 mycroft outb(iobase + CLRSINT1, CLRSCSIPERR);
2131 1.1 mycroft if (sc->sc_prevphase == PH_MSGIN) {
2132 1.1 mycroft sc->sc_flags |= AIC_DROP_MSGIN;
2133 1.1 mycroft aic_sched_msgout(sc, SEND_PARITY_ERROR);
2134 1.33 mycroft } else
2135 1.1 mycroft aic_sched_msgout(sc, SEND_INIT_DET_ERR);
2136 1.1 mycroft }
2137 1.1 mycroft
2138 1.24 mycroft /*
2139 1.14 mycroft * If we're not already busy doing something test for the following
2140 1.14 mycroft * conditions:
2141 1.40 mycroft * 1) We have been reselected by something
2142 1.21 mycroft * 2) We have selected something successfully
2143 1.21 mycroft * 3) Our selection process has timed out
2144 1.21 mycroft * 4) This is really a bus free interrupt just to get a new command
2145 1.21 mycroft * going?
2146 1.21 mycroft * 5) Spurious interrupt?
2147 1.21 mycroft */
2148 1.42 mycroft switch (sc->sc_state) {
2149 1.25 mycroft case AIC_IDLE:
2150 1.40 mycroft case AIC_SELECTING:
2151 1.21 mycroft sstat0 = inb(iobase + SSTAT0);
2152 1.42 mycroft AIC_MISC(("sstat0:0x%02x ", sstat0));
2153 1.21 mycroft
2154 1.14 mycroft if ((sstat0 & TARGET) != 0) {
2155 1.14 mycroft /*
2156 1.14 mycroft * We don't currently support target mode.
2157 1.33 mycroft */
2158 1.14 mycroft printf("%s: target mode selected; going to BUS FREE\n",
2159 1.1 mycroft sc->sc_dev.dv_xname);
2160 1.24 mycroft outb(iobase + SCSISIG, 0);
2161 1.14 mycroft
2162 1.24 mycroft goto sched;
2163 1.24 mycroft } else if ((sstat0 & SELDI) != 0) {
2164 1.24 mycroft AIC_MISC(("reselected "));
2165 1.24 mycroft
2166 1.1 mycroft /*
2167 1.14 mycroft * If we're trying to select a target ourselves,
2168 1.27 mycroft * push our command back into the ready list.
2169 1.40 mycroft */
2170 1.27 mycroft if (sc->sc_state == AIC_SELECTING) {
2171 1.24 mycroft AIC_MISC(("backoff selector "));
2172 1.14 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2173 1.14 mycroft acb = sc->sc_nexus;
2174 1.14 mycroft sc->sc_nexus = NULL;
2175 1.1 mycroft TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
2176 1.1 mycroft }
2177 1.1 mycroft
2178 1.1 mycroft /* Save reselection ID. */
2179 1.1 mycroft sc->sc_selid = inb(iobase + SELID);
2180 1.24 mycroft
2181 1.27 mycroft sc->sc_state = AIC_RESELECTED;
2182 1.25 mycroft } else if ((sstat0 & SELDO) != 0) {
2183 1.15 mycroft AIC_MISC(("selected "));
2184 1.14 mycroft
2185 1.1 mycroft /* We have selected a target. Things to do:
2186 1.24 mycroft * a) Determine what message(s) to send.
2187 1.24 mycroft * b) Verify that we're still selecting the target.
2188 1.24 mycroft * c) Mark device as busy.
2189 1.24 mycroft */
2190 1.42 mycroft if (sc->sc_state != AIC_SELECTING) {
2191 1.42 mycroft printf("%s: selection out while idle; resetting\n",
2192 1.42 mycroft sc->sc_dev.dv_xname);
2193 1.42 mycroft AIC_BREAK();
2194 1.42 mycroft goto reset;
2195 1.42 mycroft }
2196 1.42 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2197 1.28 mycroft acb = sc->sc_nexus;
2198 1.42 mycroft sc_link = acb->xs->sc_link;
2199 1.42 mycroft ti = &sc->sc_tinfo[sc_link->target];
2200 1.28 mycroft
2201 1.28 mycroft sc->sc_msgpriq = SEND_IDENTIFY;
2202 1.42 mycroft if (acb->flags & ACB_RESET)
2203 1.42 mycroft sc->sc_msgpriq |= SEND_DEV_RESET;
2204 1.28 mycroft else if (acb->flags & ACB_ABORT)
2205 1.42 mycroft sc->sc_msgpriq |= SEND_ABORT;
2206 1.14 mycroft else {
2207 1.41 mycroft #if AIC_USE_SYNCHRONOUS
2208 1.29 mycroft if ((ti->flags & DO_SYNC) != 0)
2209 1.14 mycroft sc->sc_msgpriq |= SEND_SDTR;
2210 1.14 mycroft #endif
2211 1.24 mycroft #if AIC_USE_WIDE
2212 1.24 mycroft if ((ti->flags & DO_WIDE) != 0)
2213 1.24 mycroft sc->sc_msgpriq |= SEND_WDTR;
2214 1.24 mycroft #endif
2215 1.14 mycroft }
2216 1.42 mycroft
2217 1.42 mycroft acb->flags |= ACB_NEXUS;
2218 1.42 mycroft ti->lubusy |= (1 << sc_link->lun);
2219 1.42 mycroft
2220 1.24 mycroft /* Do an implicit RESTORE POINTERS. */
2221 1.14 mycroft sc->sc_dp = acb->data_addr;
2222 1.14 mycroft sc->sc_dleft = acb->data_length;
2223 1.14 mycroft sc->sc_cp = (u_char *)&acb->scsi_cmd;
2224 1.24 mycroft sc->sc_cleft = acb->scsi_cmd_length;
2225 1.27 mycroft
2226 1.25 mycroft /* On our first connection, schedule a timeout. */
2227 1.15 mycroft if ((acb->xs->flags & SCSI_POLL) == 0)
2228 1.14 mycroft timeout(aic_timeout, acb, (acb->timeout * hz) / 1000);
2229 1.1 mycroft
2230 1.24 mycroft sc->sc_state = AIC_CONNECTED;
2231 1.24 mycroft } else if ((sstat1 & SELTO) != 0) {
2232 1.14 mycroft AIC_MISC(("selection timeout "));
2233 1.40 mycroft
2234 1.40 mycroft if (sc->sc_state != AIC_SELECTING) {
2235 1.40 mycroft printf("%s: selection timeout while idle; resetting\n",
2236 1.42 mycroft sc->sc_dev.dv_xname);
2237 1.14 mycroft AIC_BREAK();
2238 1.21 mycroft goto reset;
2239 1.42 mycroft }
2240 1.2 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2241 1.24 mycroft acb = sc->sc_nexus;
2242 1.25 mycroft
2243 1.25 mycroft outb(iobase + SXFRCTL1, 0);
2244 1.15 mycroft outb(iobase + SCSISEQ, ENRESELI);
2245 1.16 mycroft outb(iobase + CLRSINT1, CLRSELTIMO);
2246 1.14 mycroft delay(250);
2247 1.14 mycroft
2248 1.42 mycroft acb->xs->error = XS_SELTIMEOUT;
2249 1.1 mycroft goto finish;
2250 1.16 mycroft } else {
2251 1.21 mycroft if (sc->sc_state != AIC_IDLE) {
2252 1.21 mycroft printf("%s: BUS FREE while not idle; state=%d\n",
2253 1.21 mycroft sc->sc_dev.dv_xname, sc->sc_state);
2254 1.21 mycroft AIC_BREAK();
2255 1.43 mycroft goto out;
2256 1.40 mycroft }
2257 1.40 mycroft
2258 1.40 mycroft goto sched;
2259 1.40 mycroft }
2260 1.40 mycroft
2261 1.40 mycroft /*
2262 1.40 mycroft * Turn off selection stuff, and prepare to catch bus free
2263 1.21 mycroft * interrupts, parity errors, and phase changes.
2264 1.24 mycroft */
2265 1.24 mycroft outb(iobase + SXFRCTL0, CHEN | CLRSTCNT | CLRCH);
2266 1.21 mycroft outb(iobase + SXFRCTL1, 0);
2267 1.16 mycroft outb(iobase + SCSISEQ, ENAUTOATNP);
2268 1.1 mycroft outb(iobase + CLRSINT0, CLRSELDI | CLRSELDO);
2269 1.21 mycroft outb(iobase + CLRSINT1, CLRBUSFREE | CLRPHASECHG);
2270 1.21 mycroft outb(iobase + SIMODE0, 0);
2271 1.42 mycroft outb(iobase + SIMODE1,
2272 1.16 mycroft ENSCSIRST | ENSCSIPERR | ENBUSFREE | ENREQINIT | ENPHASECHG);
2273 1.24 mycroft
2274 1.16 mycroft sc->sc_flags = 0;
2275 1.42 mycroft sc->sc_prevphase = PH_INVALID;
2276 1.14 mycroft goto dophase;
2277 1.16 mycroft }
2278 1.41 mycroft
2279 1.41 mycroft if ((sstat1 & BUSFREE) != 0) {
2280 1.42 mycroft /* We've gone to BUS FREE phase. */
2281 1.41 mycroft outb(iobase + CLRSINT1, CLRBUSFREE | CLRPHASECHG);
2282 1.41 mycroft
2283 1.41 mycroft switch (sc->sc_state) {
2284 1.41 mycroft case AIC_RESELECTED:
2285 1.41 mycroft goto sched;
2286 1.41 mycroft
2287 1.41 mycroft case AIC_CONNECTED:
2288 1.41 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2289 1.41 mycroft acb = sc->sc_nexus;
2290 1.41 mycroft
2291 1.41 mycroft #if AIC_USE_SYNCHRONOUS + AIC_USE_WIDE
2292 1.41 mycroft if (sc->sc_prevphase == PH_MSGOUT) {
2293 1.41 mycroft /*
2294 1.41 mycroft * If the target went to BUS FREE phase during
2295 1.41 mycroft * or immediately after sending a SDTR or WDTR
2296 1.41 mycroft * message, disable negotiation.
2297 1.41 mycroft */
2298 1.41 mycroft sc_link = acb->xs->sc_link;
2299 1.41 mycroft ti = &sc->sc_tinfo[sc_link->target];
2300 1.41 mycroft switch (sc->sc_lastmsg) {
2301 1.41 mycroft #if AIC_USE_SYNCHRONOUS
2302 1.41 mycroft case SEND_SDTR:
2303 1.41 mycroft ti->flags &= ~DO_SYNC;
2304 1.41 mycroft ti->period = ti->offset = 0;
2305 1.41 mycroft break;
2306 1.42 mycroft #endif
2307 1.24 mycroft #if AIC_USE_WIDE
2308 1.41 mycroft case SEND_WDTR:
2309 1.41 mycroft ti->flags &= ~DO_WIDE;
2310 1.41 mycroft ti->width = 0;
2311 1.41 mycroft break;
2312 1.41 mycroft #endif
2313 1.41 mycroft }
2314 1.41 mycroft }
2315 1.41 mycroft #endif
2316 1.41 mycroft
2317 1.25 mycroft if ((sc->sc_flags & AIC_ABORTING) == 0) {
2318 1.16 mycroft /*
2319 1.41 mycroft * Section 5.1.1 of the SCSI 2 spec suggests
2320 1.41 mycroft * issuing a REQUEST SENSE following an
2321 1.16 mycroft * unexpected disconnect. Some devices go into
2322 1.42 mycroft * a contingent allegiance condition when
2323 1.16 mycroft * disconnecting, and this is necessary to
2324 1.16 mycroft * clean up their state.
2325 1.14 mycroft */
2326 1.16 mycroft printf("%s: unexpected disconnect; sending REQUEST SENSE\n",
2327 1.24 mycroft sc->sc_dev.dv_xname);
2328 1.24 mycroft AIC_BREAK();
2329 1.41 mycroft aic_sense(sc, acb);
2330 1.24 mycroft goto out;
2331 1.42 mycroft }
2332 1.16 mycroft
2333 1.16 mycroft acb->xs->error = XS_DRIVER_STUFFUP;
2334 1.24 mycroft goto finish;
2335 1.24 mycroft
2336 1.42 mycroft case AIC_DISCONNECT:
2337 1.16 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2338 1.21 mycroft acb = sc->sc_nexus;
2339 1.16 mycroft TAILQ_INSERT_HEAD(&sc->nexus_list, acb, chain);
2340 1.42 mycroft sc->sc_nexus = NULL;
2341 1.42 mycroft goto sched;
2342 1.21 mycroft
2343 1.21 mycroft case AIC_CMDCOMPLETE:
2344 1.16 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2345 1.16 mycroft acb = sc->sc_nexus;
2346 1.21 mycroft goto finish;
2347 1.21 mycroft }
2348 1.40 mycroft }
2349 1.40 mycroft
2350 1.16 mycroft outb(iobase + CLRSINT1, CLRPHASECHG);
2351 1.27 mycroft
2352 1.21 mycroft dophase:
2353 1.42 mycroft if ((sstat1 & REQINIT) == 0) {
2354 1.42 mycroft /* Wait for REQINIT. */
2355 1.14 mycroft goto out;
2356 1.24 mycroft }
2357 1.29 mycroft
2358 1.29 mycroft sc->sc_phase = inb(iobase + SCSISIG) & PH_MASK;
2359 1.14 mycroft outb(iobase + SCSISIG, sc->sc_phase);
2360 1.21 mycroft
2361 1.42 mycroft switch (sc->sc_phase) {
2362 1.42 mycroft case PH_MSGOUT:
2363 1.21 mycroft if (sc->sc_state != AIC_CONNECTED &&
2364 1.41 mycroft sc->sc_state != AIC_RESELECTED)
2365 1.29 mycroft break;
2366 1.29 mycroft aic_msgout(sc);
2367 1.14 mycroft sc->sc_prevphase = PH_MSGOUT;
2368 1.27 mycroft goto loop;
2369 1.42 mycroft
2370 1.21 mycroft case PH_MSGIN:
2371 1.16 mycroft if (sc->sc_state != AIC_CONNECTED &&
2372 1.21 mycroft sc->sc_state != AIC_RESELECTED)
2373 1.24 mycroft break;
2374 1.24 mycroft aic_msgin(sc);
2375 1.21 mycroft sc->sc_prevphase = PH_MSGIN;
2376 1.21 mycroft goto loop;
2377 1.1 mycroft
2378 1.21 mycroft case PH_CMD:
2379 1.24 mycroft if (sc->sc_state != AIC_CONNECTED)
2380 1.24 mycroft break;
2381 1.24 mycroft #if AIC_DEBUG
2382 1.29 mycroft if ((aic_debug & AIC_SHOWMISC) != 0) {
2383 1.29 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2384 1.21 mycroft acb = sc->sc_nexus;
2385 1.21 mycroft printf("cmd=0x%02x+%d ",
2386 1.42 mycroft acb->scsi_cmd.opcode, acb->scsi_cmd_length-1);
2387 1.21 mycroft }
2388 1.24 mycroft #endif
2389 1.24 mycroft n = aic_dataout_pio(sc, sc->sc_cp, sc->sc_cleft);
2390 1.24 mycroft sc->sc_cp += n;
2391 1.24 mycroft sc->sc_cleft -= n;
2392 1.29 mycroft sc->sc_prevphase = PH_CMD;
2393 1.29 mycroft goto loop;
2394 1.21 mycroft
2395 1.21 mycroft case PH_DATAOUT:
2396 1.42 mycroft if (sc->sc_state != AIC_CONNECTED)
2397 1.21 mycroft break;
2398 1.21 mycroft AIC_MISC(("dataout dleft=%d ", sc->sc_dleft));
2399 1.24 mycroft n = aic_dataout_pio(sc, sc->sc_dp, sc->sc_dleft);
2400 1.24 mycroft sc->sc_dp += n;
2401 1.24 mycroft sc->sc_dleft -= n;
2402 1.29 mycroft sc->sc_prevphase = PH_DATAOUT;
2403 1.29 mycroft goto loop;
2404 1.21 mycroft
2405 1.21 mycroft case PH_DATAIN:
2406 1.42 mycroft if (sc->sc_state != AIC_CONNECTED)
2407 1.21 mycroft break;
2408 1.24 mycroft AIC_MISC(("datain "));
2409 1.24 mycroft n = aic_datain_pio(sc, sc->sc_dp, sc->sc_dleft);
2410 1.30 mycroft sc->sc_dp += n;
2411 1.40 mycroft sc->sc_dleft -= n;
2412 1.40 mycroft sc->sc_prevphase = PH_DATAIN;
2413 1.40 mycroft goto loop;
2414 1.40 mycroft
2415 1.40 mycroft case PH_STAT:
2416 1.40 mycroft if (sc->sc_state != AIC_CONNECTED)
2417 1.21 mycroft break;
2418 1.21 mycroft AIC_ASSERT(sc->sc_nexus != NULL);
2419 1.29 mycroft acb = sc->sc_nexus;
2420 1.29 mycroft /* XXXX Don't clear FIFO. Wait for byte to come in. */
2421 1.1 mycroft outb(iobase + SXFRCTL0, CHEN | SPIOEN);
2422 1.14 mycroft outb(iobase + DMACNTRL0, RSTFIFO);
2423 1.27 mycroft acb->target_stat = inb(iobase + SCSIDAT);
2424 1.16 mycroft outb(iobase + SXFRCTL0, CHEN);
2425 1.16 mycroft outb(iobase + DMACNTRL0, RSTFIFO);
2426 1.24 mycroft while ((inb(iobase + SXFRCTL0) & SCSIEN) != 0)
2427 1.16 mycroft ;
2428 1.16 mycroft AIC_MISC(("target_stat=0x%02x ", acb->target_stat));
2429 1.42 mycroft sc->sc_prevphase = PH_STAT;
2430 1.42 mycroft goto loop;
2431 1.42 mycroft }
2432 1.42 mycroft
2433 1.42 mycroft printf("%s: unexpected bus phase; resetting\n", sc->sc_dev.dv_xname);
2434 1.42 mycroft AIC_BREAK();
2435 1.42 mycroft reset:
2436 1.42 mycroft aic_init(sc);
2437 1.42 mycroft return 1;
2438 1.42 mycroft
2439 1.14 mycroft finish:
2440 1.40 mycroft untimeout(aic_timeout, acb);
2441 1.1 mycroft aic_done(sc, acb);
2442 1.1 mycroft goto out;
2443 1.1 mycroft
2444 1.1 mycroft sched:
2445 1.24 mycroft sc->sc_state = AIC_IDLE;
2446 1.24 mycroft aic_sched(sc);
2447 1.21 mycroft goto out;
2448 1.21 mycroft
2449 1.21 mycroft out:
2450 1.42 mycroft outb(iobase + DMACNTRL0, INTEN);
2451 1.42 mycroft return 1;
2452 1.42 mycroft }
2453 1.42 mycroft
2454 1.41 mycroft void
2455 1.41 mycroft aic_abort(sc, acb)
2456 1.41 mycroft struct aic_softc *sc;
2457 1.41 mycroft struct aic_acb *acb;
2458 1.41 mycroft {
2459 1.41 mycroft
2460 1.40 mycroft /* 2 secs for the abort */
2461 1.21 mycroft acb->timeout = AIC_ABORT_TIMEOUT;
2462 1.24 mycroft acb->flags |= ACB_ABORT;
2463 1.24 mycroft
2464 1.24 mycroft if (acb == sc->sc_nexus) {
2465 1.24 mycroft /*
2466 1.21 mycroft * If we're still selecting, the message will be scheduled
2467 1.21 mycroft * after selection is complete.
2468 1.21 mycroft */
2469 1.21 mycroft if (sc->sc_state == AIC_CONNECTED)
2470 1.1 mycroft aic_sched_msgout(sc, SEND_ABORT);
2471 1.5 cgd } else {
2472 1.1 mycroft aic_dequeue(sc, acb);
2473 1.21 mycroft TAILQ_INSERT_HEAD(&sc->ready_list, acb, chain);
2474 1.21 mycroft if (sc->sc_state == AIC_IDLE)
2475 1.21 mycroft aic_sched(sc);
2476 1.24 mycroft }
2477 1.14 mycroft }
2478 1.14 mycroft
2479 1.21 mycroft void
2480 1.21 mycroft aic_timeout(arg)
2481 1.21 mycroft void *arg;
2482 1.14 mycroft {
2483 1.1 mycroft struct aic_acb *acb = arg;
2484 1.41 mycroft struct scsi_xfer *xs = acb->xs;
2485 1.21 mycroft struct scsi_link *sc_link = xs->sc_link;
2486 1.21 mycroft struct aic_softc *sc = sc_link->adapter_softc;
2487 1.42 mycroft int s;
2488 1.21 mycroft
2489 1.21 mycroft sc_print_addr(sc_link);
2490 1.21 mycroft printf("timed out");
2491 1.21 mycroft
2492 1.24 mycroft s = splbio();
2493 1.21 mycroft
2494 1.14 mycroft if (acb->flags & ACB_ABORT) {
2495 1.1 mycroft /* abort timed out */
2496 1.1 mycroft printf(" AGAIN\n");
2497 1.1 mycroft /* XXX Must reset! */
2498 1.1 mycroft } else {
2499 1.1 mycroft /* abort the operation that has timed out */
2500 1.1 mycroft printf("\n");
2501 1.1 mycroft acb->xs->error = XS_TIMEOUT;
2502 1.1 mycroft aic_abort(sc, acb);
2503 1.1 mycroft }
2504 1.1 mycroft
2505 1.1 mycroft splx(s);
2506 1.21 mycroft }
2507 1.1 mycroft
2508 1.21 mycroft #ifdef AIC_DEBUG
2510 1.1 mycroft /*
2511 1.1 mycroft * The following functions are mostly used for debugging purposes, either
2512 1.24 mycroft * directly called from the driver or from the kernel debugger.
2513 1.14 mycroft */
2514 1.21 mycroft
2515 1.2 mycroft void
2516 1.1 mycroft aic_show_scsi_cmd(acb)
2517 1.1 mycroft struct aic_acb *acb;
2518 1.1 mycroft {
2519 1.1 mycroft u_char *b = (u_char *)&acb->scsi_cmd;
2520 1.2 mycroft struct scsi_link *sc_link = acb->xs->sc_link;
2521 1.2 mycroft int i;
2522 1.1 mycroft
2523 1.1 mycroft sc_print_addr(sc_link);
2524 1.1 mycroft if ((acb->xs->flags & SCSI_RESET) == 0) {
2525 1.1 mycroft for (i = 0; i < acb->scsi_cmd_length; i++) {
2526 1.21 mycroft if (i)
2527 1.1 mycroft printf(",");
2528 1.2 mycroft printf("%x", b[i]);
2529 1.2 mycroft }
2530 1.21 mycroft printf("\n");
2531 1.21 mycroft } else
2532 1.1 mycroft printf("RESET\n");
2533 1.1 mycroft }
2534 1.1 mycroft
2535 1.1 mycroft void
2536 1.1 mycroft aic_print_acb(acb)
2537 1.1 mycroft struct aic_acb *acb;
2538 1.21 mycroft {
2539 1.39 thorpej
2540 1.1 mycroft printf("acb@%x xs=%x flags=%x", acb, acb->xs, acb->flags);
2541 1.1 mycroft printf(" dp=%x dleft=%d target_stat=%x\n",
2542 1.24 mycroft (long)acb->data_addr, acb->data_length, acb->target_stat);
2543 1.18 mycroft aic_show_scsi_cmd(acb);
2544 1.1 mycroft }
2545 1.1 mycroft
2546 1.24 mycroft void
2547 1.24 mycroft aic_print_active_acb()
2548 1.1 mycroft {
2549 1.24 mycroft struct aic_acb *acb;
2550 1.18 mycroft struct aic_softc *sc = aic_cd.cd_devs[0];
2551 1.1 mycroft
2552 1.1 mycroft printf("ready list:\n");
2553 1.1 mycroft for (acb = sc->ready_list.tqh_first; acb != NULL;
2554 1.1 mycroft acb = acb->chain.tqe_next)
2555 1.24 mycroft aic_print_acb(acb);
2556 1.24 mycroft printf("nexus:\n");
2557 1.1 mycroft if (sc->sc_nexus != NULL)
2558 1.40 mycroft aic_print_acb(sc->sc_nexus);
2559 1.1 mycroft printf("nexus list:\n");
2560 1.21 mycroft for (acb = sc->nexus_list.tqh_first; acb != NULL;
2561 1.40 mycroft acb = acb->chain.tqe_next)
2562 1.40 mycroft aic_print_acb(acb);
2563 1.1 mycroft }
2564 1.40 mycroft
2565 1.40 mycroft void
2566 1.1 mycroft aic_dump6360(sc)
2567 1.40 mycroft struct aic_softc *sc;
2568 1.40 mycroft {
2569 1.40 mycroft int iobase = sc->sc_iobase;
2570 1.33 mycroft
2571 1.40 mycroft printf("aic6360: SCSISEQ=%x SXFRCTL0=%x SXFRCTL1=%x SCSISIG=%x\n",
2572 1.1 mycroft inb(iobase + SCSISEQ), inb(iobase + SXFRCTL0),
2573 1.1 mycroft inb(iobase + SXFRCTL1), inb(iobase + SCSISIG));
2574 1.1 mycroft printf(" SSTAT0=%x SSTAT1=%x SSTAT2=%x SSTAT3=%x SSTAT4=%x\n",
2575 1.24 mycroft inb(iobase + SSTAT0), inb(iobase + SSTAT1), inb(iobase + SSTAT2),
2576 1.24 mycroft inb(iobase + SSTAT3), inb(iobase + SSTAT4));
2577 1.1 mycroft printf(" SIMODE0=%x SIMODE1=%x DMACNTRL0=%x DMACNTRL1=%x DMASTAT=%x\n",
2578 1.1 mycroft inb(iobase + SIMODE0), inb(iobase + SIMODE1),
2579 1.1 mycroft inb(iobase + DMACNTRL0), inb(iobase + DMACNTRL1),
2580 1.33 mycroft inb(iobase + DMASTAT));
2581 1.24 mycroft printf(" FIFOSTAT=%d SCSIBUS=0x%x\n",
2582 1.29 mycroft inb(iobase + FIFOSTAT), inb(iobase + SCSIBUS));
2583 1.24 mycroft }
2584 1.29 mycroft
2585 1.2 mycroft void
2586 1.24 mycroft aic_dump_driver(sc)
2587 1.1 mycroft struct aic_softc *sc;
2588 1.2 mycroft {
2589 1.2 mycroft struct aic_tinfo *ti;
2590 1.1 mycroft int i;
2591 1.1 mycroft
2592 1.1 mycroft printf("nexus=%x prevphase=%x\n", sc->sc_nexus, sc->sc_prevphase);
2593 printf("state=%x msgin=%x msgpriq=%x msgoutq=%x lastmsg=%x currmsg=%x\n",
2594 sc->sc_state, sc->sc_imess[0],
2595 sc->sc_msgpriq, sc->sc_msgoutq, sc->sc_lastmsg, sc->sc_currmsg);
2596 for (i = 0; i < 7; i++) {
2597 ti = &sc->sc_tinfo[i];
2598 printf("tinfo%d: %d cmds %d disconnects %d timeouts",
2599 i, ti->cmds, ti->dconns, ti->touts);
2600 printf(" %d senses flags=%x\n", ti->senses, ti->flags);
2601 }
2602 }
2603 #endif
2604