ncr53c9xvar.h revision 1.18.2.6 1 1.18.2.3 bouyer /* $NetBSD: ncr53c9xvar.h,v 1.18.2.6 2001/01/05 17:35:46 bouyer Exp $ */
2 1.1 thorpej
3 1.11 thorpej /*-
4 1.11 thorpej * Copyright (c) 1997 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.11 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.11 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.11 thorpej * NASA Ames Research Center.
10 1.11 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1 thorpej * must display the following acknowledgement:
21 1.11 thorpej * This product includes software developed by the NetBSD
22 1.11 thorpej * Foundation, Inc. and its contributors.
23 1.11 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.11 thorpej * contributors may be used to endorse or promote products derived
25 1.11 thorpej * from this software without specific prior written permission.
26 1.1 thorpej *
27 1.11 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.11 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.11 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.11 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.11 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.11 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.11 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.11 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.11 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.11 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.11 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej /*
41 1.1 thorpej * Copyright (c) 1994 Peter Galbavy. All rights reserved.
42 1.1 thorpej *
43 1.1 thorpej * Redistribution and use in source and binary forms, with or without
44 1.1 thorpej * modification, are permitted provided that the following conditions
45 1.1 thorpej * are met:
46 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
47 1.1 thorpej * notice, this list of conditions and the following disclaimer.
48 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
49 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
50 1.1 thorpej * documentation and/or other materials provided with the distribution.
51 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
52 1.1 thorpej * must display the following acknowledgement:
53 1.1 thorpej * This product includes software developed by Peter Galbavy.
54 1.1 thorpej * 4. The name of the author may not be used to endorse or promote products
55 1.1 thorpej * derived from this software without specific prior written permission.
56 1.1 thorpej *
57 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
58 1.1 thorpej * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
59 1.1 thorpej * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
60 1.1 thorpej * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
61 1.1 thorpej * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
62 1.1 thorpej * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
63 1.1 thorpej * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
64 1.1 thorpej * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
65 1.1 thorpej * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
66 1.1 thorpej * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
67 1.1 thorpej */
68 1.1 thorpej
69 1.4 gwr /* Set this to 1 for normal debug, or 2 for per-target tracing. */
70 1.5 pk #define NCR53C9X_DEBUG 1
71 1.1 thorpej
72 1.18.2.4 bouyer /* Wide or differential can have 16 targets */
73 1.18.2.4 bouyer #define NCR_NTARG 8
74 1.18.2.4 bouyer #define NCR_NLUN 8
75 1.18.2.4 bouyer
76 1.1 thorpej #define NCR_ABORT_TIMEOUT 2000 /* time to wait for abort */
77 1.4 gwr #define NCR_SENSE_TIMEOUT 1000 /* time to wait for sense */
78 1.1 thorpej
79 1.1 thorpej #define FREQTOCCF(freq) (((freq + 4) / 5))
80 1.1 thorpej
81 1.1 thorpej /*
82 1.1 thorpej * NCR 53c9x variants. Note, these values are used as indexes into
83 1.1 thorpej * a table; don't modify them unless you know what you're doing.
84 1.1 thorpej */
85 1.1 thorpej #define NCR_VARIANT_ESP100 0
86 1.1 thorpej #define NCR_VARIANT_ESP100A 1
87 1.1 thorpej #define NCR_VARIANT_ESP200 2
88 1.1 thorpej #define NCR_VARIANT_NCR53C94 3
89 1.2 briggs #define NCR_VARIANT_NCR53C96 4
90 1.6 pk #define NCR_VARIANT_ESP406 5
91 1.6 pk #define NCR_VARIANT_FAS408 6
92 1.10 mhitch #define NCR_VARIANT_FAS216 7
93 1.17 thorpej #define NCR_VARIANT_AM53C974 8
94 1.17 thorpej #define NCR_VARIANT_MAX 9
95 1.1 thorpej
96 1.1 thorpej /*
97 1.1 thorpej * ECB. Holds additional information for each SCSI command Comments: We
98 1.1 thorpej * need a separate scsi command block because we may need to overwrite it
99 1.1 thorpej * with a request sense command. Basicly, we refrain from fiddling with
100 1.9 bouyer * the scsipi_xfer struct (except do the expected updating of return values).
101 1.1 thorpej * We'll generally update: xs->{flags,resid,error,sense,status} and
102 1.1 thorpej * occasionally xs->retries.
103 1.1 thorpej */
104 1.1 thorpej struct ncr53c9x_ecb {
105 1.1 thorpej TAILQ_ENTRY(ncr53c9x_ecb) chain;
106 1.9 bouyer struct scsipi_xfer *xs; /* SCSI xfer ctrl block from above */
107 1.1 thorpej int flags;
108 1.7 pk #define ECB_ALLOC 0x01
109 1.18.2.4 bouyer #define ECB_READY 0x02
110 1.7 pk #define ECB_SENSE 0x04
111 1.7 pk #define ECB_ABORT 0x40
112 1.7 pk #define ECB_RESET 0x80
113 1.7 pk #define ECB_TENTATIVE_DONE 0x100
114 1.1 thorpej int timeout;
115 1.1 thorpej
116 1.5 pk struct {
117 1.18.2.4 bouyer u_char msg[3]; /* Selection Id msg and tags */
118 1.5 pk struct scsi_generic cmd; /* SCSI command block */
119 1.5 pk } cmd;
120 1.1 thorpej char *daddr; /* Saved data pointer */
121 1.18.2.4 bouyer int clen; /* Size of command in cmd.cmd */
122 1.1 thorpej int dleft; /* Residue */
123 1.1 thorpej u_char stat; /* SCSI status byte */
124 1.18.2.4 bouyer u_char tag[2]; /* TAG bytes */
125 1.18.2.4 bouyer u_char pad[1];
126 1.1 thorpej
127 1.4 gwr #if NCR53C9X_DEBUG > 1
128 1.1 thorpej char trace[1000];
129 1.1 thorpej #endif
130 1.1 thorpej };
131 1.4 gwr #if NCR53C9X_DEBUG > 1
132 1.1 thorpej #define ECB_TRACE(ecb, msg, a, b) do { \
133 1.1 thorpej const char *f = "[" msg "]"; \
134 1.1 thorpej int n = strlen((ecb)->trace); \
135 1.1 thorpej if (n < (sizeof((ecb)->trace)-100)) \
136 1.1 thorpej sprintf((ecb)->trace + n, f, a, b); \
137 1.1 thorpej } while(0)
138 1.1 thorpej #else
139 1.1 thorpej #define ECB_TRACE(ecb, msg, a, b)
140 1.1 thorpej #endif
141 1.1 thorpej
142 1.1 thorpej /*
143 1.18.2.4 bouyer * Some info about each (possible) target and LUN on the SCSI bus.
144 1.18.2.4 bouyer *
145 1.18.2.4 bouyer * SCSI I and II devices can have up to 8 LUNs, each with up to 256
146 1.18.2.4 bouyer * outstanding tags. SCSI III devices have 64-bit LUN identifiers
147 1.18.2.4 bouyer * that can be sparsely allocated.
148 1.18.2.4 bouyer *
149 1.18.2.4 bouyer * Since SCSI II devices can have up to 8 LUNs, we use an array
150 1.18.2.4 bouyer * of 8 pointers to ncr53c9x_linfo structures for fast lookup.
151 1.18.2.4 bouyer * Longer LUNs need to traverse the linked list.
152 1.1 thorpej */
153 1.18.2.4 bouyer
154 1.18.2.4 bouyer struct ncr53c9x_linfo {
155 1.18.2.4 bouyer int64_t lun;
156 1.18.2.4 bouyer LIST_ENTRY(ncr53c9x_linfo) link;
157 1.18.2.4 bouyer time_t last_used;
158 1.18.2.4 bouyer unsigned char used; /* # slots in use */
159 1.18.2.4 bouyer unsigned char avail; /* where to start scanning */
160 1.18.2.4 bouyer unsigned char busy;
161 1.18.2.4 bouyer struct ncr53c9x_ecb *untagged;
162 1.18.2.4 bouyer struct ncr53c9x_ecb *queued[256];
163 1.18.2.4 bouyer };
164 1.18.2.4 bouyer
165 1.1 thorpej struct ncr53c9x_tinfo {
166 1.18.2.3 bouyer int cmds; /* # of commands processed */
167 1.18.2.3 bouyer int dconns; /* # of disconnects */
168 1.18.2.3 bouyer int touts; /* # of timeouts */
169 1.18.2.3 bouyer int perrs; /* # of parity errors */
170 1.18.2.3 bouyer int senses; /* # of request sense commands sent */
171 1.1 thorpej u_char flags;
172 1.1 thorpej #define T_NEED_TO_RESET 0x01 /* Should send a BUS_DEV_RESET */
173 1.1 thorpej #define T_NEGOTIATE 0x02 /* (Re)Negotiate synchronous options */
174 1.1 thorpej #define T_BUSY 0x04 /* Target is busy, i.e. cmd in progress */
175 1.18.2.3 bouyer #define T_SYNCMODE 0x08 /* SYNC mode has been negotiated */
176 1.18.2.3 bouyer #define T_SYNCHOFF 0x10 /* SYNC mode for is permanently off */
177 1.18.2.3 bouyer #define T_RSELECTOFF 0x20 /* RE-SELECT mode is off */
178 1.18.2.5 bouyer #define T_TAGOFF 0x40 /* TAG QUEUEs are off */
179 1.1 thorpej u_char period; /* Period suggestion */
180 1.1 thorpej u_char offset; /* Offset suggestion */
181 1.18.2.4 bouyer u_char nextag; /* Next available tag */
182 1.18.2.4 bouyer LIST_HEAD(lun_list, ncr53c9x_linfo) luns;
183 1.18.2.4 bouyer struct ncr53c9x_linfo *lun[NCR_NLUN]; /* For speedy lookups */
184 1.18.2.2 bouyer };
185 1.1 thorpej
186 1.18.2.4 bouyer /* Look up a lun in a tinfo */
187 1.18.2.4 bouyer #define TINFO_LUN(t, l) ( \
188 1.18.2.4 bouyer (((l) < NCR_NLUN) && (((t)->lun[(l)]) != NULL)) \
189 1.18.2.4 bouyer ? ((t)->lun[(l)]) \
190 1.18.2.4 bouyer : ncr53c9x_lunsearch((t), (int64_t)(l)) \
191 1.18.2.4 bouyer )
192 1.18.2.4 bouyer
193 1.1 thorpej /* Register a linenumber (for debugging) */
194 1.1 thorpej #define LOGLINE(p)
195 1.1 thorpej
196 1.1 thorpej #define NCR_SHOWECBS 0x01
197 1.1 thorpej #define NCR_SHOWINTS 0x02
198 1.1 thorpej #define NCR_SHOWCMDS 0x04
199 1.1 thorpej #define NCR_SHOWMISC 0x08
200 1.1 thorpej #define NCR_SHOWTRAC 0x10
201 1.1 thorpej #define NCR_SHOWSTART 0x20
202 1.1 thorpej #define NCR_SHOWPHASE 0x40
203 1.1 thorpej #define NCR_SHOWDMA 0x80
204 1.1 thorpej #define NCR_SHOWCCMDS 0x100
205 1.1 thorpej #define NCR_SHOWMSGS 0x200
206 1.1 thorpej
207 1.1 thorpej #ifdef NCR53C9X_DEBUG
208 1.1 thorpej extern int ncr53c9x_debug;
209 1.1 thorpej #define NCR_ECBS(str) \
210 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWECBS) printf str;} while (0)
211 1.1 thorpej #define NCR_MISC(str) \
212 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWMISC) printf str;} while (0)
213 1.1 thorpej #define NCR_INTS(str) \
214 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWINTS) printf str;} while (0)
215 1.1 thorpej #define NCR_TRACE(str) \
216 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWTRAC) printf str;} while (0)
217 1.1 thorpej #define NCR_CMDS(str) \
218 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWCMDS) printf str;} while (0)
219 1.1 thorpej #define NCR_START(str) \
220 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWSTART) printf str;}while (0)
221 1.1 thorpej #define NCR_PHASE(str) \
222 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWPHASE) printf str;}while (0)
223 1.1 thorpej #define NCR_DMA(str) \
224 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWDMA) printf str;}while (0)
225 1.1 thorpej #define NCR_MSGS(str) \
226 1.1 thorpej do {if (ncr53c9x_debug & NCR_SHOWMSGS) printf str;}while (0)
227 1.1 thorpej #else
228 1.1 thorpej #define NCR_ECBS(str)
229 1.1 thorpej #define NCR_MISC(str)
230 1.1 thorpej #define NCR_INTS(str)
231 1.1 thorpej #define NCR_TRACE(str)
232 1.1 thorpej #define NCR_CMDS(str)
233 1.1 thorpej #define NCR_START(str)
234 1.1 thorpej #define NCR_PHASE(str)
235 1.1 thorpej #define NCR_DMA(str)
236 1.1 thorpej #define NCR_MSGS(str)
237 1.1 thorpej #endif
238 1.1 thorpej
239 1.1 thorpej #define NCR_MAX_MSG_LEN 8
240 1.1 thorpej
241 1.1 thorpej struct ncr53c9x_softc;
242 1.1 thorpej
243 1.1 thorpej /*
244 1.1 thorpej * Function switch used as glue to MD code.
245 1.1 thorpej */
246 1.1 thorpej struct ncr53c9x_glue {
247 1.1 thorpej /* Mandatory entry points. */
248 1.18.2.4 bouyer u_char (*gl_read_reg)(struct ncr53c9x_softc *, int);
249 1.18.2.4 bouyer void (*gl_write_reg)(struct ncr53c9x_softc *, int, u_char);
250 1.18.2.4 bouyer int (*gl_dma_isintr)(struct ncr53c9x_softc *);
251 1.18.2.4 bouyer void (*gl_dma_reset)(struct ncr53c9x_softc *);
252 1.18.2.4 bouyer int (*gl_dma_intr)(struct ncr53c9x_softc *);
253 1.18.2.4 bouyer int (*gl_dma_setup)(struct ncr53c9x_softc *,
254 1.18.2.4 bouyer caddr_t *, size_t *, int, size_t *);
255 1.18.2.4 bouyer void (*gl_dma_go)(struct ncr53c9x_softc *);
256 1.18.2.4 bouyer void (*gl_dma_stop)(struct ncr53c9x_softc *);
257 1.18.2.4 bouyer int (*gl_dma_isactive)(struct ncr53c9x_softc *);
258 1.1 thorpej
259 1.1 thorpej /* Optional entry points. */
260 1.18.2.4 bouyer void (*gl_clear_latched_intr)(struct ncr53c9x_softc *);
261 1.1 thorpej };
262 1.1 thorpej
263 1.1 thorpej struct ncr53c9x_softc {
264 1.1 thorpej struct device sc_dev; /* us as a device */
265 1.1 thorpej
266 1.1 thorpej struct evcnt sc_intrcnt; /* intr count */
267 1.18.2.1 thorpej struct scsipi_adapter sc_adapter; /* out scsipi adapter */
268 1.18.2.1 thorpej struct scsipi_channel sc_channel; /* our scsipi channel */
269 1.18.2.2 bouyer struct device *sc_child; /* attached scsibus, if any */
270 1.18.2.4 bouyer struct callout sc_watchdog; /* periodic timer */
271 1.1 thorpej
272 1.1 thorpej struct ncr53c9x_glue *sc_glue; /* glue to MD code */
273 1.8 pk
274 1.8 pk int sc_cfflags; /* Copy of config flags */
275 1.1 thorpej
276 1.1 thorpej /* register defaults */
277 1.1 thorpej u_char sc_cfg1; /* Config 1 */
278 1.1 thorpej u_char sc_cfg2; /* Config 2, not ESP100 */
279 1.1 thorpej u_char sc_cfg3; /* Config 3, only ESP200 */
280 1.18 mhitch u_char sc_cfg3_fscsi; /* Chip-specific FSCSI bit */
281 1.18.2.2 bouyer u_char sc_cfg4; /* Config 3, only ESP200 */
282 1.18.2.2 bouyer u_char sc_cfg5; /* Config 3, only ESP200 */
283 1.1 thorpej u_char sc_ccf; /* Clock Conversion */
284 1.1 thorpej u_char sc_timeout;
285 1.1 thorpej
286 1.1 thorpej /* register copies, see espreadregs() */
287 1.1 thorpej u_char sc_espintr;
288 1.1 thorpej u_char sc_espstat;
289 1.1 thorpej u_char sc_espstep;
290 1.1 thorpej u_char sc_espfflags;
291 1.1 thorpej
292 1.1 thorpej /* Lists of command blocks */
293 1.15 pk TAILQ_HEAD(ecb_list, ncr53c9x_ecb)
294 1.18.2.4 bouyer ready_list;
295 1.1 thorpej
296 1.15 pk struct ncr53c9x_ecb *sc_nexus; /* Current command */
297 1.18.2.4 bouyer struct ncr53c9x_tinfo sc_tinfo[NCR_NTARG];
298 1.1 thorpej
299 1.1 thorpej /* Data about the current nexus (updated for every cmd switch) */
300 1.15 pk caddr_t sc_dp; /* Current data pointer */
301 1.15 pk ssize_t sc_dleft; /* Data left to transfer */
302 1.1 thorpej
303 1.1 thorpej /* Adapter state */
304 1.15 pk int sc_phase; /* Copy of what bus phase we are in */
305 1.15 pk int sc_prevphase; /* Copy of what bus phase we were in */
306 1.15 pk u_char sc_state; /* State applicable to the adapter */
307 1.15 pk u_char sc_flags; /* See below */
308 1.1 thorpej u_char sc_selid;
309 1.1 thorpej u_char sc_lastcmd;
310 1.1 thorpej
311 1.1 thorpej /* Message stuff */
312 1.18.2.4 bouyer u_short sc_msgify; /* IDENTIFY message associated with this nexus */
313 1.18.2.4 bouyer u_short sc_msgout; /* What message is on its way out? */
314 1.18.2.4 bouyer u_short sc_msgpriq; /* One or more messages to send (encoded) */
315 1.18.2.4 bouyer u_short sc_msgoutq; /* What messages have been sent so far? */
316 1.18.2.4 bouyer
317 1.12 pk u_char *sc_omess; /* MSGOUT buffer */
318 1.12 pk caddr_t sc_omp; /* Message pointer (for multibyte messages) */
319 1.1 thorpej size_t sc_omlen;
320 1.12 pk u_char *sc_imess; /* MSGIN buffer */
321 1.12 pk caddr_t sc_imp; /* Message pointer (for multibyte messages) */
322 1.1 thorpej size_t sc_imlen;
323 1.1 thorpej
324 1.5 pk caddr_t sc_cmdp; /* Command pointer (for DMAed commands) */
325 1.5 pk size_t sc_cmdlen; /* Size of command in transit */
326 1.5 pk
327 1.15 pk /* Hardware attributes */
328 1.15 pk int sc_freq; /* SCSI bus frequency in MHz */
329 1.15 pk int sc_id; /* Our SCSI id */
330 1.15 pk int sc_rev; /* Chip revision */
331 1.15 pk int sc_features; /* Chip features */
332 1.15 pk int sc_minsync; /* Minimum sync period / 4 */
333 1.15 pk int sc_maxxfer; /* Maximum transfer size */
334 1.1 thorpej };
335 1.1 thorpej
336 1.1 thorpej /* values for sc_state */
337 1.1 thorpej #define NCR_IDLE 1 /* waiting for something to do */
338 1.1 thorpej #define NCR_SELECTING 2 /* SCSI command is arbiting */
339 1.1 thorpej #define NCR_RESELECTED 3 /* Has been reselected */
340 1.18.2.4 bouyer #define NCR_IDENTIFIED 4 /* Has gotten IFY but not TAG */
341 1.18.2.4 bouyer #define NCR_CONNECTED 5 /* Actively using the SCSI bus */
342 1.18.2.4 bouyer #define NCR_DISCONNECT 6 /* MSG_DISCONNECT received */
343 1.18.2.4 bouyer #define NCR_CMDCOMPLETE 7 /* MSG_CMDCOMPLETE received */
344 1.18.2.4 bouyer #define NCR_CLEANING 8
345 1.18.2.4 bouyer #define NCR_SBR 9 /* Expect a SCSI RST because we commanded it */
346 1.1 thorpej
347 1.1 thorpej /* values for sc_flags */
348 1.1 thorpej #define NCR_DROP_MSGI 0x01 /* Discard all msgs (parity err detected) */
349 1.1 thorpej #define NCR_ABORTING 0x02 /* Bailing out */
350 1.1 thorpej #define NCR_DOINGDMA 0x04 /* The FIFO data path is active! */
351 1.1 thorpej #define NCR_SYNCHNEGO 0x08 /* Synch negotiation in progress. */
352 1.1 thorpej #define NCR_ICCS 0x10 /* Expect status phase results */
353 1.1 thorpej #define NCR_WAITI 0x20 /* Waiting for non-DMA data to arrive */
354 1.1 thorpej #define NCR_ATN 0x40 /* ATN asserted */
355 1.5 pk #define NCR_EXPECT_ILLCMD 0x80 /* Expect Illegal Command Interrupt */
356 1.13 thorpej
357 1.13 thorpej /* values for sc_features */
358 1.13 thorpej #define NCR_F_HASCFG3 0x01 /* chip has CFG3 register */
359 1.13 thorpej #define NCR_F_FASTSCSI 0x02 /* chip supports Fast mode */
360 1.1 thorpej
361 1.1 thorpej /* values for sc_msgout */
362 1.18.2.4 bouyer #define SEND_DEV_RESET 0x0001
363 1.18.2.4 bouyer #define SEND_PARITY_ERROR 0x0002
364 1.18.2.4 bouyer #define SEND_INIT_DET_ERR 0x0004
365 1.18.2.4 bouyer #define SEND_REJECT 0x0008
366 1.18.2.4 bouyer #define SEND_IDENTIFY 0x0010
367 1.18.2.6 bouyer #define SEND_ABORT 0x0020
368 1.18.2.6 bouyer #define SEND_SDTR 0x0040
369 1.18.2.6 bouyer #define SEND_WDTR 0x0080
370 1.18.2.6 bouyer #define SEND_TAG 0x0100
371 1.1 thorpej
372 1.1 thorpej /* SCSI Status codes */
373 1.1 thorpej #define ST_MASK 0x3e /* bit 0,6,7 is reserved */
374 1.1 thorpej
375 1.1 thorpej /* phase bits */
376 1.1 thorpej #define IOI 0x01
377 1.1 thorpej #define CDI 0x02
378 1.1 thorpej #define MSGI 0x04
379 1.1 thorpej
380 1.1 thorpej /* Information transfer phases */
381 1.1 thorpej #define DATA_OUT_PHASE (0)
382 1.1 thorpej #define DATA_IN_PHASE (IOI)
383 1.1 thorpej #define COMMAND_PHASE (CDI)
384 1.1 thorpej #define STATUS_PHASE (CDI|IOI)
385 1.1 thorpej #define MESSAGE_OUT_PHASE (MSGI|CDI)
386 1.1 thorpej #define MESSAGE_IN_PHASE (MSGI|CDI|IOI)
387 1.1 thorpej
388 1.1 thorpej #define PHASE_MASK (MSGI|CDI|IOI)
389 1.1 thorpej
390 1.1 thorpej /* Some pseudo phases for getphase()*/
391 1.1 thorpej #define BUSFREE_PHASE 0x100 /* Re/Selection no longer valid */
392 1.1 thorpej #define INVALID_PHASE 0x101 /* Re/Selection valid, but no REQ yet */
393 1.1 thorpej #define PSEUDO_PHASE 0x100 /* "pseudo" bit */
394 1.1 thorpej
395 1.1 thorpej /*
396 1.1 thorpej * Macros to read and write the chip's registers.
397 1.1 thorpej */
398 1.1 thorpej #define NCR_READ_REG(sc, reg) \
399 1.18.2.4 bouyer (*(sc)->sc_glue->gl_read_reg)((sc), (reg))
400 1.1 thorpej #define NCR_WRITE_REG(sc, reg, val) \
401 1.18.2.4 bouyer (*(sc)->sc_glue->gl_write_reg)((sc), (reg), (val))
402 1.1 thorpej
403 1.1 thorpej #ifdef NCR53C9X_DEBUG
404 1.18.2.4 bouyer #define NCRCMD(sc, cmd) do { \
405 1.18.2.4 bouyer if ((ncr53c9x_debug & NCR_SHOWCCMDS) != 0) \
406 1.18.2.4 bouyer printf("<cmd:0x%x %d>", (unsigned)cmd, __LINE__); \
407 1.18.2.4 bouyer sc->sc_lastcmd = cmd; \
408 1.18.2.4 bouyer NCR_WRITE_REG(sc, NCR_CMD, cmd); \
409 1.1 thorpej } while (0)
410 1.1 thorpej #else
411 1.1 thorpej #define NCRCMD(sc, cmd) NCR_WRITE_REG(sc, NCR_CMD, cmd)
412 1.1 thorpej #endif
413 1.1 thorpej
414 1.1 thorpej /*
415 1.1 thorpej * DMA macros for NCR53c9x
416 1.1 thorpej */
417 1.1 thorpej #define NCRDMA_ISINTR(sc) (*(sc)->sc_glue->gl_dma_isintr)((sc))
418 1.1 thorpej #define NCRDMA_RESET(sc) (*(sc)->sc_glue->gl_dma_reset)((sc))
419 1.1 thorpej #define NCRDMA_INTR(sc) (*(sc)->sc_glue->gl_dma_intr)((sc))
420 1.1 thorpej #define NCRDMA_SETUP(sc, addr, len, datain, dmasize) \
421 1.1 thorpej (*(sc)->sc_glue->gl_dma_setup)((sc), (addr), (len), (datain), (dmasize))
422 1.1 thorpej #define NCRDMA_GO(sc) (*(sc)->sc_glue->gl_dma_go)((sc))
423 1.1 thorpej #define NCRDMA_ISACTIVE(sc) (*(sc)->sc_glue->gl_dma_isactive)((sc))
424 1.1 thorpej
425 1.1 thorpej /*
426 1.1 thorpej * Macro to convert the chip register Clock Per Byte value to
427 1.1 thorpej * Sunchronous Transfer Period.
428 1.1 thorpej */
429 1.1 thorpej #define ncr53c9x_cpb2stp(sc, cpb) \
430 1.1 thorpej ((250 * (cpb)) / (sc)->sc_freq)
431 1.1 thorpej
432 1.18.2.1 thorpej void ncr53c9x_attach __P((struct ncr53c9x_softc *));
433 1.18.2.2 bouyer int ncr53c9x_detach __P((struct ncr53c9x_softc *, int));
434 1.18.2.1 thorpej void ncr53c9x_scsipi_request __P((struct scsipi_channel *chan,
435 1.18.2.1 thorpej scsipi_adapter_req_t req, void *));
436 1.1 thorpej void ncr53c9x_reset __P((struct ncr53c9x_softc *));
437 1.18.2.2 bouyer int ncr53c9x_intr __P((void *));
438 1.18.2.2 bouyer void ncr53c9x_init __P((struct ncr53c9x_softc *, int));
439 1.7 pk
440 1.7 pk extern int ncr53c9x_dmaselect;
441