mlhsc.c revision 1.9 1 /* $NetBSD: mlhsc.c,v 1.9 1996/03/17 01:17:46 thorpej Exp $ */
2
3 /*
4 * Copyright (c) 1994 Michael L. Hitch
5 * Copyright (c) 1982, 1990 The Regents of the University of California.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. All advertising materials mentioning features or use of this software
17 * must display the following acknowledgement:
18 * This product includes software developed by the University of
19 * California, Berkeley and its contributors.
20 * 4. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
35 *
36 * @(#)dma.c
37 */
38 #include <sys/param.h>
39 #include <sys/systm.h>
40 #include <sys/kernel.h>
41 #include <sys/device.h>
42 #include <scsi/scsi_all.h>
43 #include <scsi/scsiconf.h>
44 #include <amiga/amiga/device.h>
45 #include <amiga/amiga/isr.h>
46 #include <amiga/dev/scireg.h>
47 #include <amiga/dev/scivar.h>
48 #include <amiga/dev/zbusvar.h>
49
50 int mlhscprint __P((void *auxp, char *));
51 void mlhscattach __P((struct device *, struct device *, void *));
52 int mlhscmatch __P((struct device *, void *, void *));
53
54 int mlhsc_dma_xfer_in __P((struct sci_softc *dev, int len,
55 register u_char *buf, int phase));
56 int mlhsc_dma_xfer_out __P((struct sci_softc *dev, int len,
57 register u_char *buf, int phase));
58
59 struct scsi_adapter mlhsc_scsiswitch = {
60 sci_scsicmd,
61 sci_minphys,
62 0, /* no lun support */
63 0, /* no lun support */
64 };
65
66 struct scsi_device mlhsc_scsidev = {
67 NULL, /* use default error handler */
68 NULL, /* do not have a start functio */
69 NULL, /* have no async handler */
70 NULL, /* Use default done routine */
71 };
72
73 #define QPRINTF
74
75 #ifdef DEBUG
76 extern int sci_debug;
77 #endif
78
79 extern int sci_data_wait;
80
81 struct cfattach mlhsc_ca = {
82 sizeof(struct sci_softc), mlhscmatch, mlhscattach
83 };
84
85 struct cfdriver mlhsc_cd = {
86 NULL, "mlhsc", DV_DULL, NULL, 0
87 };
88
89 /*
90 * if we are my Hacker's SCSI board we are here.
91 */
92 int
93 mlhscmatch(pdp, match, auxp)
94 struct device *pdp;
95 void *match, *auxp;
96 {
97 struct zbus_args *zap;
98
99 zap = auxp;
100
101 /*
102 * Check manufacturer and product id.
103 */
104 if (zap->manid == 2011 && zap->prodid == 1)
105 return(1);
106 else
107 return(0);
108 }
109
110 void
111 mlhscattach(pdp, dp, auxp)
112 struct device *pdp, *dp;
113 void *auxp;
114 {
115 volatile u_char *rp;
116 struct sci_softc *sc;
117 struct zbus_args *zap;
118
119 printf("\n");
120
121 zap = auxp;
122
123 sc = (struct sci_softc *)dp;
124 rp = zap->va;
125 sc->sci_data = rp + 1;
126 sc->sci_odata = rp + 1;
127 sc->sci_icmd = rp + 3;
128 sc->sci_mode = rp + 5;
129 sc->sci_tcmd = rp + 7;
130 sc->sci_bus_csr = rp + 9;
131 sc->sci_sel_enb = rp + 9;
132 sc->sci_csr = rp + 11;
133 sc->sci_dma_send = rp + 11;
134 sc->sci_idata = rp + 13;
135 sc->sci_trecv = rp + 13;
136 sc->sci_iack = rp + 15;
137 sc->sci_irecv = rp + 15;
138
139 sc->dma_xfer_in = mlhsc_dma_xfer_in;
140 sc->dma_xfer_out = mlhsc_dma_xfer_out;
141
142 scireset(sc);
143
144 sc->sc_link.adapter_softc = sc;
145 sc->sc_link.adapter_target = 7;
146 sc->sc_link.adapter = &mlhsc_scsiswitch;
147 sc->sc_link.device = &mlhsc_scsidev;
148 sc->sc_link.openings = 1;
149 TAILQ_INIT(&sc->sc_xslist);
150
151 /*
152 * attach all scsi units on us
153 */
154 config_found(dp, &sc->sc_link, mlhscprint);
155 }
156
157 /*
158 * print diag if pnp is NULL else just extra
159 */
160 int
161 mlhscprint(auxp, pnp)
162 void *auxp;
163 char *pnp;
164 {
165 if (pnp == NULL)
166 return(UNCONF);
167 return(QUIET);
168 }
169
170
171 int
172 mlhsc_dma_xfer_in (dev, len, buf, phase)
173 struct sci_softc *dev;
174 int len;
175 register u_char *buf;
176 int phase;
177 {
178 int wait = sci_data_wait;
179 u_char csr;
180 u_char *obp = buf;
181 volatile register u_char *sci_dma = dev->sci_data + 16;
182 volatile register u_char *sci_csr = dev->sci_csr;
183 volatile register u_char *sci_icmd = dev->sci_icmd;
184
185 csr = *dev->sci_bus_csr;
186
187 QPRINTF(("mlhdma_in %d, csr=%02x\n", len, csr));
188
189 *dev->sci_tcmd = phase;
190 *dev->sci_mode |= SCI_MODE_DMA;
191 *dev->sci_icmd = 0;
192 *dev->sci_irecv = 0;
193 while (len > 128) {
194 wait = sci_data_wait;
195 while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
196 (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
197 if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
198 || !(*dev->sci_bus_csr & SCI_BUS_BSY)
199 || --wait < 0) {
200 #ifdef DEBUG
201 if (sci_debug)
202 printf("mlhdma_in fail: l%d i%x w%d\n",
203 len, csr, wait);
204 #endif
205 *dev->sci_mode &= ~SCI_MODE_DMA;
206 return 0;
207 }
208 }
209
210 #define R1 (*buf++ = *sci_dma)
211 R1; R1; R1; R1; R1; R1; R1; R1;
212 R1; R1; R1; R1; R1; R1; R1; R1;
213 R1; R1; R1; R1; R1; R1; R1; R1;
214 R1; R1; R1; R1; R1; R1; R1; R1;
215 R1; R1; R1; R1; R1; R1; R1; R1;
216 R1; R1; R1; R1; R1; R1; R1; R1;
217 R1; R1; R1; R1; R1; R1; R1; R1;
218 R1; R1; R1; R1; R1; R1; R1; R1;
219 R1; R1; R1; R1; R1; R1; R1; R1;
220 R1; R1; R1; R1; R1; R1; R1; R1;
221 R1; R1; R1; R1; R1; R1; R1; R1;
222 R1; R1; R1; R1; R1; R1; R1; R1;
223 R1; R1; R1; R1; R1; R1; R1; R1;
224 R1; R1; R1; R1; R1; R1; R1; R1;
225 R1; R1; R1; R1; R1; R1; R1; R1;
226 R1; R1; R1; R1; R1; R1; R1; R1;
227 len -= 128;
228 }
229 while (len > 0) {
230 wait = sci_data_wait;
231 while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
232 (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
233 if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
234 || !(*dev->sci_bus_csr & SCI_BUS_BSY)
235 || --wait < 0) {
236 #ifdef DEBUG
237 if (sci_debug)
238 printf("mlhdma_in fail: l%d i%x w%d\n",
239 len, csr, wait);
240 #endif
241 *dev->sci_mode &= ~SCI_MODE_DMA;
242 return 0;
243 }
244 }
245
246 *buf++ = *sci_dma;
247 len--;
248 }
249
250 QPRINTF(("mlhdma_in {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
251 len, obp[0], obp[1], obp[2], obp[3], obp[4], obp[5],
252 obp[6], obp[7], obp[8], obp[9]));
253
254 *dev->sci_mode &= ~SCI_MODE_DMA;
255 return 0;
256 }
257
258 int
259 mlhsc_dma_xfer_out (dev, len, buf, phase)
260 struct sci_softc *dev;
261 int len;
262 register u_char *buf;
263 int phase;
264 {
265 int wait = sci_data_wait;
266 u_char csr;
267 u_char *obp = buf;
268 volatile register u_char *sci_dma = dev->sci_data + 16;
269 volatile register u_char *sci_csr = dev->sci_csr;
270 volatile register u_char *sci_icmd = dev->sci_icmd;
271
272 csr = *dev->sci_bus_csr;
273
274 QPRINTF(("mlhdma_xfer %d, csr=%02x\n", len, csr));
275
276 QPRINTF(("mlhgdma_out {%d} %02x %02x %02x %02x %02x %02x %02x %02x %02x %02x\n",
277 len, buf[0], buf[1], buf[2], buf[3], buf[4], buf[5],
278 buf[6], buf[7], buf[8], buf[9]));
279
280 *dev->sci_tcmd = phase;
281 *dev->sci_mode |= SCI_MODE_DMA;
282 *dev->sci_icmd = SCI_ICMD_DATA;
283 *dev->sci_dma_send = 0;
284 while (len > 64) {
285 wait = sci_data_wait;
286 while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
287 (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
288 if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
289 || !(*dev->sci_bus_csr & SCI_BUS_BSY)
290 || --wait < 0) {
291 #ifdef DEBUG
292 if (sci_debug)
293 printf("mlhdma_out fail: l%d i%x w%d\n",
294 len, csr, wait);
295 #endif
296 *dev->sci_mode &= ~SCI_MODE_DMA;
297 return 0;
298 }
299 }
300
301 #define W1 (*sci_dma = *buf++)
302 W1; W1; W1; W1; W1; W1; W1; W1;
303 W1; W1; W1; W1; W1; W1; W1; W1;
304 W1; W1; W1; W1; W1; W1; W1; W1;
305 W1; W1; W1; W1; W1; W1; W1; W1;
306 W1; W1; W1; W1; W1; W1; W1; W1;
307 W1; W1; W1; W1; W1; W1; W1; W1;
308 W1; W1; W1; W1; W1; W1; W1; W1;
309 W1; W1; W1; W1; W1; W1; W1; W1;
310 len -= 64;
311 }
312 while (len > 0) {
313 wait = sci_data_wait;
314 while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) !=
315 (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) {
316 if (!(*sci_csr & SCI_CSR_PHASE_MATCH)
317 || !(*dev->sci_bus_csr & SCI_BUS_BSY)
318 || --wait < 0) {
319 #ifdef DEBUG
320 if (sci_debug)
321 printf("mlhdma_out fail: l%d i%x w%d\n",
322 len, csr, wait);
323 #endif
324 *dev->sci_mode &= ~SCI_MODE_DMA;
325 return 0;
326 }
327 }
328
329 *sci_dma = *buf++;
330 len--;
331 }
332
333 wait = sci_data_wait;
334 while ((*sci_csr & (SCI_CSR_DREQ|SCI_CSR_PHASE_MATCH)) ==
335 SCI_CSR_PHASE_MATCH && --wait);
336
337 *dev->sci_mode &= ~SCI_MODE_DMA;
338 return 0;
339 }
340