aic6360var.h revision 1.17 1 1.17 andvar /* $NetBSD: aic6360var.h,v 1.17 2022/01/01 21:07:14 andvar Exp $ */
2 1.1 christos
3 1.1 christos /*
4 1.1 christos * Copyright (c) 1994, 1995, 1996 Charles M. Hannum. All rights reserved.
5 1.1 christos *
6 1.1 christos * Redistribution and use in source and binary forms, with or without
7 1.1 christos * modification, are permitted provided that the following conditions
8 1.1 christos * are met:
9 1.1 christos * 1. Redistributions of source code must retain the above copyright
10 1.1 christos * notice, this list of conditions and the following disclaimer.
11 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 christos * notice, this list of conditions and the following disclaimer in the
13 1.1 christos * documentation and/or other materials provided with the distribution.
14 1.1 christos * 3. All advertising materials mentioning features or use of this software
15 1.1 christos * must display the following acknowledgement:
16 1.1 christos * This product includes software developed by Charles M. Hannum.
17 1.1 christos * 4. The name of the author may not be used to endorse or promote products
18 1.1 christos * derived from this software without specific prior written permission.
19 1.1 christos *
20 1.1 christos * Copyright (c) 1994 Jarle Greipsland
21 1.1 christos * All rights reserved.
22 1.1 christos *
23 1.1 christos * Redistribution and use in source and binary forms, with or without
24 1.1 christos * modification, are permitted provided that the following conditions
25 1.1 christos * are met:
26 1.1 christos * 1. Redistributions of source code must retain the above copyright
27 1.1 christos * notice, this list of conditions and the following disclaimer.
28 1.1 christos * 2. Redistributions in binary form must reproduce the above copyright
29 1.1 christos * notice, this list of conditions and the following disclaimer in the
30 1.1 christos * documentation and/or other materials provided with the distribution.
31 1.1 christos * 3. The name of the author may not be used to endorse or promote products
32 1.1 christos * derived from this software without specific prior written permission.
33 1.1 christos *
34 1.1 christos * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
35 1.1 christos * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
36 1.1 christos * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37 1.1 christos * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
38 1.1 christos * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
39 1.1 christos * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
40 1.1 christos * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
41 1.1 christos * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
42 1.1 christos * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
43 1.1 christos * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
44 1.1 christos * POSSIBILITY OF SUCH DAMAGE.
45 1.1 christos */
46 1.1 christos
47 1.10 thorpej #ifndef _DEV_IC_AIC6360VAR_H_
48 1.10 thorpej #define _DEV_IC_AIC6360VAR_H_
49 1.10 thorpej
50 1.1 christos /*
51 1.1 christos * Acknowledgements: Many of the algorithms used in this driver are
52 1.1 christos * inspired by the work of Julian Elischer (julian (at) tfs.com) and
53 1.1 christos * Charles Hannum (mycroft (at) duality.gnu.ai.mit.edu). Thanks a million!
54 1.1 christos */
55 1.1 christos
56 1.1 christos typedef u_long physaddr;
57 1.1 christos typedef u_long physlen;
58 1.1 christos
59 1.1 christos struct aic_dma_seg {
60 1.1 christos physaddr seg_addr;
61 1.1 christos physlen seg_len;
62 1.1 christos };
63 1.1 christos
64 1.1 christos #define AIC_NSEG 16
65 1.1 christos
66 1.1 christos /*
67 1.1 christos * ACB. Holds additional information for each SCSI command Comments: We
68 1.1 christos * need a separate scsi command block because we may need to overwrite it
69 1.17 andvar * with a request sense command. Basically, we refrain from fiddling with
70 1.1 christos * the scsipi_xfer struct (except do the expected updating of return values).
71 1.1 christos * We'll generally update: xs->{flags,resid,error,sense,status} and
72 1.1 christos * occasionally xs->retries.
73 1.1 christos */
74 1.1 christos struct aic_acb {
75 1.11 thorpej struct scsipi_generic scsipi_cmd;
76 1.1 christos int scsipi_cmd_length;
77 1.1 christos u_char *data_addr; /* Saved data pointer */
78 1.1 christos int data_length; /* Residue */
79 1.1 christos
80 1.1 christos u_char target_stat; /* SCSI status byte */
81 1.1 christos
82 1.1 christos #ifdef notdef
83 1.1 christos struct aic_dma_seg dma[AIC_NSEG]; /* Physical addresses+len */
84 1.1 christos #endif
85 1.1 christos
86 1.1 christos TAILQ_ENTRY(aic_acb) chain;
87 1.1 christos struct scsipi_xfer *xs; /* SCSI xfer ctrl block from above */
88 1.1 christos int flags;
89 1.1 christos #define ACB_ALLOC 0x01
90 1.1 christos #define ACB_NEXUS 0x02
91 1.1 christos #define ACB_SENSE 0x04
92 1.1 christos #define ACB_ABORT 0x40
93 1.1 christos #define ACB_RESET 0x80
94 1.1 christos int timeout;
95 1.1 christos };
96 1.1 christos
97 1.1 christos /*
98 1.1 christos * Some info about each (possible) target on the SCSI bus. This should
99 1.1 christos * probably have been a "per target+lunit" structure, but we'll leave it at
100 1.1 christos * this for now.
101 1.1 christos */
102 1.1 christos struct aic_tinfo {
103 1.1 christos int cmds; /* #commands processed */
104 1.1 christos int dconns; /* #disconnects */
105 1.1 christos int touts; /* #timeouts */
106 1.1 christos int perrs; /* #parity errors */
107 1.1 christos int senses; /* #request sense commands sent */
108 1.1 christos ushort lubusy; /* What local units/subr. are busy? */
109 1.1 christos u_char flags;
110 1.1 christos #define DO_SYNC 0x01 /* (Re)Negotiate synchronous options */
111 1.1 christos #define DO_WIDE 0x02 /* (Re)Negotiate wide options */
112 1.1 christos u_char period; /* Period suggestion */
113 1.1 christos u_char offset; /* Offset suggestion */
114 1.1 christos u_char width; /* Width suggestion */
115 1.6 nisimura };
116 1.1 christos
117 1.1 christos struct aic_softc {
118 1.15 tsutsui device_t sc_dev;
119 1.1 christos
120 1.1 christos bus_space_tag_t sc_iot;
121 1.1 christos bus_space_handle_t sc_ioh;
122 1.1 christos
123 1.3 thorpej struct scsipi_adapter sc_adapter;
124 1.8 bouyer struct scsipi_channel sc_channel;
125 1.1 christos
126 1.1 christos TAILQ_HEAD(, aic_acb) free_list, ready_list, nexus_list;
127 1.1 christos struct aic_acb *sc_nexus; /* current command */
128 1.1 christos struct aic_acb sc_acb[8];
129 1.1 christos struct aic_tinfo sc_tinfo[8];
130 1.1 christos
131 1.1 christos /* Data about the current nexus (updated for every cmd switch) */
132 1.1 christos u_char *sc_dp; /* Current data pointer */
133 1.1 christos size_t sc_dleft; /* Data bytes left to transfer */
134 1.1 christos u_char *sc_cp; /* Current command pointer */
135 1.1 christos size_t sc_cleft; /* Command bytes left to transfer */
136 1.1 christos
137 1.1 christos /* Adapter state */
138 1.1 christos u_char sc_phase; /* Current bus phase */
139 1.1 christos u_char sc_prevphase; /* Previous bus phase */
140 1.1 christos u_char sc_state; /* State applicable to the adapter */
141 1.1 christos #define AIC_INIT 0
142 1.1 christos #define AIC_IDLE 1
143 1.1 christos #define AIC_SELECTING 2 /* SCSI command is arbiting */
144 1.1 christos #define AIC_RESELECTED 3 /* Has been reselected */
145 1.1 christos #define AIC_CONNECTED 4 /* Actively using the SCSI bus */
146 1.1 christos #define AIC_DISCONNECT 5 /* MSG_DISCONNECT received */
147 1.1 christos #define AIC_CMDCOMPLETE 6 /* MSG_CMDCOMPLETE received */
148 1.1 christos #define AIC_CLEANING 7
149 1.1 christos u_char sc_flags;
150 1.1 christos #define AIC_DROP_MSGIN 0x01 /* Discard all msgs (parity err detected) */
151 1.1 christos #define AIC_ABORTING 0x02 /* Bailing out */
152 1.1 christos #define AIC_DOINGDMA 0x04 /* The FIFO data path is active! */
153 1.1 christos u_char sc_selid; /* Reselection ID */
154 1.14 cegger device_t sc_child;/* Our child */
155 1.1 christos
156 1.1 christos /* Message stuff */
157 1.1 christos u_char sc_msgpriq; /* Messages we want to send */
158 1.1 christos u_char sc_msgoutq; /* Messages sent during last MESSAGE OUT */
159 1.1 christos u_char sc_lastmsg; /* Message last transmitted */
160 1.1 christos u_char sc_currmsg; /* Message currently ready to transmit */
161 1.1 christos #define SEND_DEV_RESET 0x01
162 1.1 christos #define SEND_PARITY_ERROR 0x02
163 1.1 christos #define SEND_INIT_DET_ERR 0x04
164 1.1 christos #define SEND_REJECT 0x08
165 1.1 christos #define SEND_IDENTIFY 0x10
166 1.1 christos #define SEND_ABORT 0x20
167 1.1 christos #define SEND_SDTR 0x40
168 1.1 christos #define SEND_WDTR 0x80
169 1.1 christos #define AIC_MAX_MSG_LEN 8
170 1.1 christos u_char sc_omess[AIC_MAX_MSG_LEN];
171 1.1 christos u_char *sc_omp; /* Outgoing message pointer */
172 1.1 christos u_char sc_imess[AIC_MAX_MSG_LEN];
173 1.1 christos u_char *sc_imp; /* Incoming message pointer */
174 1.1 christos
175 1.1 christos /* Hardware stuff */
176 1.1 christos int sc_initiator; /* Our scsi id */
177 1.1 christos int sc_freq; /* Clock frequency in MHz */
178 1.1 christos int sc_minsync; /* Minimum sync period / 4 */
179 1.1 christos int sc_maxsync; /* Maximum sync period / 4 */
180 1.1 christos };
181 1.1 christos
182 1.1 christos #if AIC_DEBUG
183 1.1 christos #define AIC_SHOWACBS 0x01
184 1.1 christos #define AIC_SHOWINTS 0x02
185 1.1 christos #define AIC_SHOWCMDS 0x04
186 1.1 christos #define AIC_SHOWMISC 0x08
187 1.1 christos #define AIC_SHOWTRACE 0x10
188 1.1 christos #define AIC_SHOWSTART 0x20
189 1.1 christos #define AIC_DOBREAK 0x40
190 1.1 christos extern int aic_debug; /* AIC_SHOWSTART|AIC_SHOWMISC|AIC_SHOWTRACE; */
191 1.9 lukem #define AIC_PRINT(b, s) do { \
192 1.9 lukem if ((aic_debug & (b)) != 0) \
193 1.9 lukem printf s; \
194 1.9 lukem } while (/* CONSTCOND */ 0)
195 1.9 lukem #define AIC_BREAK() do { \
196 1.9 lukem if ((aic_debug & AIC_DOBREAK) != 0) \
197 1.9 lukem Debugger(); \
198 1.9 lukem } while (/* CONSTCOND */ 0)
199 1.9 lukem #define AIC_ASSERT(x) do { \
200 1.9 lukem if (! (x)) { \
201 1.9 lukem printf("%s at line %d: assertion failed\n", \
202 1.15 tsutsui device_xname(sc->sc_dev), __LINE__); \
203 1.9 lukem Debugger(); \
204 1.9 lukem } } while (/* CONSTCOND */ 0)
205 1.1 christos #else
206 1.9 lukem #define AIC_PRINT(b, s) /* NOTHING */
207 1.9 lukem #define AIC_BREAK() /* NOTHING */
208 1.9 lukem #define AIC_ASSERT(x) /* NOTHING */
209 1.1 christos #endif
210 1.1 christos
211 1.1 christos #define AIC_ACBS(s) AIC_PRINT(AIC_SHOWACBS, s)
212 1.1 christos #define AIC_INTS(s) AIC_PRINT(AIC_SHOWINTS, s)
213 1.1 christos #define AIC_CMDS(s) AIC_PRINT(AIC_SHOWCMDS, s)
214 1.1 christos #define AIC_MISC(s) AIC_PRINT(AIC_SHOWMISC, s)
215 1.1 christos #define AIC_TRACE(s) AIC_PRINT(AIC_SHOWTRACE, s)
216 1.1 christos #define AIC_START(s) AIC_PRINT(AIC_SHOWSTART, s)
217 1.1 christos
218 1.1 christos #define AIC_ISA_IOSIZE 0x20 /* XXX */
219 1.1 christos
220 1.10 thorpej void aicattach(struct aic_softc *);
221 1.14 cegger int aic_activate(device_t, enum devact);
222 1.14 cegger int aic_detach(device_t, int);
223 1.10 thorpej int aicintr(void *);
224 1.10 thorpej int aic_find(bus_space_tag_t, bus_space_handle_t);
225 1.10 thorpej void aic_init(struct aic_softc *, int);
226 1.10 thorpej
227 1.10 thorpej #endif /* _DEV_IC_AIC6360VAR_H_ */
228