ahsc.c revision 1.1 1 1.1 chopps /*
2 1.1 chopps * Copyright (c) 1994 Christian E. Hopps
3 1.1 chopps * Copyright (c) 1982, 1990 The Regents of the University of California.
4 1.1 chopps * All rights reserved.
5 1.1 chopps *
6 1.1 chopps * Redistribution and use in source and binary forms, with or without
7 1.1 chopps * modification, are permitted provided that the following conditions
8 1.1 chopps * are met:
9 1.1 chopps * 1. Redistributions of source code must retain the above copyright
10 1.1 chopps * notice, this list of conditions and the following disclaimer.
11 1.1 chopps * 2. Redistributions in binary form must reproduce the above copyright
12 1.1 chopps * notice, this list of conditions and the following disclaimer in the
13 1.1 chopps * documentation and/or other materials provided with the distribution.
14 1.1 chopps * 3. All advertising materials mentioning features or use of this software
15 1.1 chopps * must display the following acknowledgement:
16 1.1 chopps * This product includes software developed by the University of
17 1.1 chopps * California, Berkeley and its contributors.
18 1.1 chopps * 4. Neither the name of the University nor the names of its contributors
19 1.1 chopps * may be used to endorse or promote products derived from this software
20 1.1 chopps * without specific prior written permission.
21 1.1 chopps *
22 1.1 chopps * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 chopps * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 chopps * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 chopps * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 chopps * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 chopps * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 chopps * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 chopps * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 chopps * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 chopps * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 chopps * SUCH DAMAGE.
33 1.1 chopps *
34 1.1 chopps * @(#)dma.c
35 1.1 chopps * $Id: ahsc.c,v 1.1 1994/05/08 05:52:54 chopps Exp $
36 1.1 chopps */
37 1.1 chopps #include <sys/param.h>
38 1.1 chopps #include <sys/systm.h>
39 1.1 chopps #include <sys/kernel.h>
40 1.1 chopps #include <sys/device.h>
41 1.1 chopps #include <scsi/scsi_all.h>
42 1.1 chopps #include <scsi/scsiconf.h>
43 1.1 chopps #include <amiga/amiga/custom.h>
44 1.1 chopps #include <amiga/amiga/cc.h>
45 1.1 chopps #include <amiga/amiga/device.h>
46 1.1 chopps #include <amiga/dev/dmavar.h>
47 1.1 chopps #include <amiga/dev/sbicreg.h>
48 1.1 chopps #include <amiga/dev/sbicvar.h>
49 1.1 chopps #include <amiga/dev/ahscreg.h>
50 1.1 chopps #include <amiga/dev/ztwobusvar.h>
51 1.1 chopps
52 1.1 chopps int ahscprint __P((void *auxp, char *));
53 1.1 chopps void ahscattach __P((struct device *, struct device *, void *));
54 1.1 chopps int ahscmatch __P((struct device *, struct cfdata *, void *));
55 1.1 chopps
56 1.1 chopps void ahsc_dmafree __P((struct sbic_softc *));
57 1.1 chopps void ahsc_dmastop __P((struct sbic_softc *));
58 1.1 chopps int ahsc_dmanext __P((struct sbic_softc *));
59 1.1 chopps int ahsc_dmaintr __P((void));
60 1.1 chopps int ahsc_dmago __P((struct sbic_softc *, char *, int, int));
61 1.1 chopps
62 1.1 chopps struct scsi_adapter ahsc_scsiswitch = {
63 1.1 chopps sbic_scsicmd,
64 1.1 chopps sbic_minphys,
65 1.1 chopps 0, /* no lun support */
66 1.1 chopps 0, /* no lun support */
67 1.1 chopps sbic_adinfo,
68 1.1 chopps "ahsc",
69 1.1 chopps };
70 1.1 chopps
71 1.1 chopps struct scsi_device ahsc_scsidev = {
72 1.1 chopps NULL, /* use default error handler */
73 1.1 chopps NULL, /* do not have a start functio */
74 1.1 chopps NULL, /* have no async handler */
75 1.1 chopps NULL, /* Use default done routine */
76 1.1 chopps "ahsc",
77 1.1 chopps 0,
78 1.1 chopps };
79 1.1 chopps
80 1.1 chopps
81 1.1 chopps #ifdef DEBUG
82 1.1 chopps void ahsc_dmatimeout __P((void *));
83 1.1 chopps int ahsc_dmadebug = 0;
84 1.1 chopps #endif
85 1.1 chopps
86 1.1 chopps struct cfdriver ahsccd = {
87 1.1 chopps NULL, "ahsc", ahscmatch, ahscattach,
88 1.1 chopps DV_DULL, sizeof(struct sbic_softc), NULL, 0 };
89 1.1 chopps
90 1.1 chopps /*
91 1.1 chopps * if we are an A3000 we are here.
92 1.1 chopps */
93 1.1 chopps int
94 1.1 chopps ahscmatch(pdp, cdp, auxp)
95 1.1 chopps struct device *pdp;
96 1.1 chopps struct cfdata *cdp;
97 1.1 chopps void *auxp;
98 1.1 chopps {
99 1.1 chopps char *mbusstr;
100 1.1 chopps
101 1.1 chopps mbusstr = auxp;
102 1.1 chopps if (is_a3000() && matchname(auxp, "ahsc"))
103 1.1 chopps return(1);
104 1.1 chopps return(0);
105 1.1 chopps }
106 1.1 chopps
107 1.1 chopps void
108 1.1 chopps ahscattach(pdp, dp, auxp)
109 1.1 chopps struct device *pdp, *dp;
110 1.1 chopps void *auxp;
111 1.1 chopps {
112 1.1 chopps volatile struct sdmac *rp;
113 1.1 chopps struct sbic_softc *sc;
114 1.1 chopps
115 1.1 chopps sc = (struct sbic_softc *)dp;
116 1.1 chopps sc->sc_cregs = rp = ztwomap(0xdd0000);
117 1.1 chopps /*
118 1.1 chopps * disable ints and reset bank register
119 1.1 chopps */
120 1.1 chopps rp->CNTR = CNTR_PDMD;
121 1.1 chopps rp->DAWR = DAWR_AHSC;
122 1.1 chopps sc->sc_dmafree = ahsc_dmafree;
123 1.1 chopps sc->sc_dmago = ahsc_dmago;
124 1.1 chopps sc->sc_dmanext = ahsc_dmanext;
125 1.1 chopps sc->sc_dmastop = ahsc_dmastop;
126 1.1 chopps sc->sc_dmacmd = 0;
127 1.1 chopps
128 1.1 chopps #ifdef DEBUG
129 1.1 chopps /* make sure timeout is really not needed */
130 1.1 chopps timeout(ahsc_dmatimeout, 0, 30 * hz);
131 1.1 chopps #endif
132 1.1 chopps /*
133 1.1 chopps * eveything is a valid dma address
134 1.1 chopps */
135 1.1 chopps sc->sc_dmamask = 0;
136 1.1 chopps sc->sc_sbicp = (sbic_regmap_p) ((int)rp + 0x41);
137 1.1 chopps sc->sc_clkfreq = sbic_clock_override ? sbic_clock_override : 143;
138 1.1 chopps
139 1.1 chopps sbicreset(sc);
140 1.1 chopps
141 1.1 chopps sc->sc_link.adapter_softc = sc;
142 1.1 chopps sc->sc_link.adapter_targ = 7;
143 1.1 chopps sc->sc_link.adapter = &ahsc_scsiswitch;
144 1.1 chopps sc->sc_link.device = &ahsc_scsidev;
145 1.1 chopps TAILQ_INIT(&sc->sc_xslist);
146 1.1 chopps
147 1.1 chopps custom.intreq = INTF_PORTS;
148 1.1 chopps custom.intena = INTF_SETCLR | INTF_PORTS;
149 1.1 chopps
150 1.1 chopps /*
151 1.1 chopps * attach all scsi units on us
152 1.1 chopps */
153 1.1 chopps config_found(dp, &sc->sc_link, ahscprint);
154 1.1 chopps }
155 1.1 chopps
156 1.1 chopps /*
157 1.1 chopps * print diag if pnp is NULL else just extra
158 1.1 chopps */
159 1.1 chopps int
160 1.1 chopps ahscprint(auxp, pnp)
161 1.1 chopps void *auxp;
162 1.1 chopps char *pnp;
163 1.1 chopps {
164 1.1 chopps if (pnp == NULL)
165 1.1 chopps return(UNCONF);
166 1.1 chopps return(QUIET);
167 1.1 chopps }
168 1.1 chopps
169 1.1 chopps
170 1.1 chopps void
171 1.1 chopps ahsc_dmafree(dev)
172 1.1 chopps struct sbic_softc *dev;
173 1.1 chopps {
174 1.1 chopps volatile struct sdmac *sdp;
175 1.1 chopps int s;
176 1.1 chopps
177 1.1 chopps sdp = dev->sc_cregs;
178 1.1 chopps
179 1.1 chopps s = splbio();
180 1.1 chopps #ifdef DEBUG
181 1.1 chopps dev->sc_dmatimo = 0;
182 1.1 chopps #endif
183 1.1 chopps if (dev->sc_dmacmd) {
184 1.1 chopps if ((dev->sc_dmacmd & (CNTR_TCEN | CNTR_DDIR)) == 0) {
185 1.1 chopps /*
186 1.1 chopps * only FLUSH if terminal count not enabled,
187 1.1 chopps * and reading from peripheral
188 1.1 chopps */
189 1.1 chopps sdp->FLUSH = 1;
190 1.1 chopps while ((sdp->ISTR & ISTR_FE_FLG) == 0)
191 1.1 chopps ;
192 1.1 chopps }
193 1.1 chopps /*
194 1.1 chopps * clear possible interrupt and stop dma
195 1.1 chopps */
196 1.1 chopps sdp->CINT = 1;
197 1.1 chopps sdp->SP_DMA = 1;
198 1.1 chopps dev->sc_dmacmd = 0;
199 1.1 chopps }
200 1.1 chopps /*
201 1.1 chopps * disable interrupts
202 1.1 chopps */
203 1.1 chopps sdp->CNTR = CNTR_PDMD; /* disable interrupts from dma/scsi */
204 1.1 chopps dev->sc_flags &= ~SBICF_INTR;
205 1.1 chopps splx(s);
206 1.1 chopps }
207 1.1 chopps
208 1.1 chopps int
209 1.1 chopps ahsc_dmago(dev, addr, count, flags)
210 1.1 chopps struct sbic_softc *dev;
211 1.1 chopps char *addr;
212 1.1 chopps int count, flags;
213 1.1 chopps {
214 1.1 chopps volatile struct sdmac *sdp;
215 1.1 chopps
216 1.1 chopps sdp = dev->sc_cregs;
217 1.1 chopps /*
218 1.1 chopps * Set up the command word based on flags
219 1.1 chopps */
220 1.1 chopps dev->sc_dmacmd = CNTR_PDMD | CNTR_INTEN;
221 1.1 chopps if ((flags & DMAGO_READ) == 0)
222 1.1 chopps dev->sc_dmacmd |= CNTR_DDIR;
223 1.1 chopps #ifdef DEBUG
224 1.1 chopps if (ahsc_dmadebug & DDB_IO)
225 1.1 chopps printf("ahsc_dmago: cmd %x\n", dev->sc_dmacmd);
226 1.1 chopps dev->sc_dmatimo = 1;
227 1.1 chopps #endif
228 1.1 chopps
229 1.1 chopps dev->sc_flags |= SBICF_INTR;
230 1.1 chopps sdp->CNTR = dev->sc_dmacmd;
231 1.1 chopps sdp->ACR = (u_int) dev->sc_cur->dc_addr;
232 1.1 chopps sdp->ST_DMA = 1;
233 1.1 chopps
234 1.1 chopps return(dev->sc_tcnt);
235 1.1 chopps }
236 1.1 chopps
237 1.1 chopps void
238 1.1 chopps ahsc_dmastop(dev)
239 1.1 chopps struct sbic_softc *dev;
240 1.1 chopps {
241 1.1 chopps volatile struct sdmac *sdp;
242 1.1 chopps int s;
243 1.1 chopps
244 1.1 chopps sdp = dev->sc_cregs;
245 1.1 chopps
246 1.1 chopps #ifdef DEBUG
247 1.1 chopps if (ahsc_dmadebug & DDB_FOLLOW)
248 1.1 chopps printf("ahsc_dmastop()\n");
249 1.1 chopps dev->sc_dmatimo = 0;
250 1.1 chopps #endif
251 1.1 chopps if (dev->sc_dmacmd) {
252 1.1 chopps s = splbio();
253 1.1 chopps if ((dev->sc_dmacmd & (CNTR_TCEN | CNTR_DDIR)) == 0) {
254 1.1 chopps /*
255 1.1 chopps * only FLUSH if terminal count not enabled,
256 1.1 chopps * and reading from peripheral
257 1.1 chopps */
258 1.1 chopps sdp->FLUSH = 1;
259 1.1 chopps while ((sdp->ISTR & ISTR_FE_FLG) == 0)
260 1.1 chopps ;
261 1.1 chopps }
262 1.1 chopps /*
263 1.1 chopps * clear possible interrupt and stop dma
264 1.1 chopps */
265 1.1 chopps sdp->CINT = 1;
266 1.1 chopps sdp->SP_DMA = 1;
267 1.1 chopps dev->sc_dmacmd = 0;
268 1.1 chopps splx(s);
269 1.1 chopps }
270 1.1 chopps }
271 1.1 chopps
272 1.1 chopps int
273 1.1 chopps ahsc_dmaintr()
274 1.1 chopps {
275 1.1 chopps volatile struct sdmac *sdp;
276 1.1 chopps struct sbic_softc *dev;
277 1.1 chopps int i, stat, found;
278 1.1 chopps
279 1.1 chopps found = 0;
280 1.1 chopps for (i = 0; i < ahsccd.cd_ndevs; i++) {
281 1.1 chopps dev = ahsccd.cd_devs[i];
282 1.1 chopps if (dev == NULL)
283 1.1 chopps continue;
284 1.1 chopps sdp = dev->sc_cregs;
285 1.1 chopps stat = sdp->ISTR;
286 1.1 chopps
287 1.1 chopps if ((stat & (ISTR_INT_F|ISTR_INT_P)) == 0)
288 1.1 chopps continue;
289 1.1 chopps
290 1.1 chopps #ifdef DEBUG
291 1.1 chopps if (ahsc_dmadebug & DDB_FOLLOW)
292 1.1 chopps printf("ahsc_dmaintr (%d, 0x%x)\n", i, stat);
293 1.1 chopps #endif
294 1.1 chopps
295 1.1 chopps /*
296 1.1 chopps * both, SCSI and DMA interrupts arrive here. I chose
297 1.1 chopps * arbitrarily that DMA interrupts should have higher
298 1.1 chopps * precedence than SCSI interrupts.
299 1.1 chopps */
300 1.1 chopps if (stat & ISTR_E_INT) {
301 1.1 chopps found++;
302 1.1 chopps
303 1.1 chopps sdp->CINT = 1; /* clear possible interrupt */
304 1.1 chopps
305 1.1 chopps /*
306 1.1 chopps * check for SCSI ints in the same go and
307 1.1 chopps * eventually save an interrupt
308 1.1 chopps */
309 1.1 chopps }
310 1.1 chopps
311 1.1 chopps if (dev->sc_flags & SBICF_INTR && stat & ISTR_INTS)
312 1.1 chopps found += sbicintr(i);
313 1.1 chopps }
314 1.1 chopps return(found);
315 1.1 chopps }
316 1.1 chopps
317 1.1 chopps
318 1.1 chopps int
319 1.1 chopps ahsc_dmanext(dev)
320 1.1 chopps struct sbic_softc *dev;
321 1.1 chopps {
322 1.1 chopps volatile struct sdmac *sdp;
323 1.1 chopps int i, stat;
324 1.1 chopps
325 1.1 chopps sdp = dev->sc_cregs;
326 1.1 chopps
327 1.1 chopps if (dev->sc_cur > dev->sc_last) {
328 1.1 chopps /* shouldn't happen !! */
329 1.1 chopps printf("ahsc_dmanext at end !!!\n");
330 1.1 chopps ahsc_dmastop(dev);
331 1.1 chopps return(0);
332 1.1 chopps }
333 1.1 chopps #ifdef DEBUG
334 1.1 chopps dev->sc_dmatimo = 1;
335 1.1 chopps #endif
336 1.1 chopps if ((dev->sc_dmacmd & (CNTR_TCEN | CNTR_DDIR)) == 0) {
337 1.1 chopps /*
338 1.1 chopps * only FLUSH if terminal count not enabled,
339 1.1 chopps * and reading from peripheral
340 1.1 chopps */
341 1.1 chopps sdp->FLUSH = 1;
342 1.1 chopps while ((sdp->ISTR & ISTR_FE_FLG) == 0)
343 1.1 chopps ;
344 1.1 chopps }
345 1.1 chopps /*
346 1.1 chopps * clear possible interrupt and stop dma
347 1.1 chopps */
348 1.1 chopps sdp->CINT = 1; /* clear possible interrupt */
349 1.1 chopps sdp->SP_DMA = 1; /* stop dma */
350 1.1 chopps sdp->CNTR = dev->sc_dmacmd;
351 1.1 chopps sdp->ACR = (u_int)dev->sc_cur->dc_addr;
352 1.1 chopps sdp->ST_DMA = 1;
353 1.1 chopps
354 1.1 chopps dev->sc_tcnt = dev->sc_cur->dc_count << 1;
355 1.1 chopps return(dev->sc_tcnt);
356 1.1 chopps }
357 1.1 chopps
358 1.1 chopps #ifdef DEBUG
359 1.1 chopps /*ARGSUSED*/
360 1.1 chopps void
361 1.1 chopps ahsc_dmatimeout(arg)
362 1.1 chopps void *arg;
363 1.1 chopps {
364 1.1 chopps struct sbic_softc *dev;
365 1.1 chopps int i, s;
366 1.1 chopps
367 1.1 chopps for (i = 0; i < ahsccd.cd_ndevs; i++) {
368 1.1 chopps dev = ahsccd.cd_devs[i];
369 1.1 chopps if (dev == NULL)
370 1.1 chopps continue;
371 1.1 chopps
372 1.1 chopps s = splbio();
373 1.1 chopps if (dev->sc_dmatimo) {
374 1.1 chopps if (dev->sc_dmatimo > 1)
375 1.1 chopps printf("ahsc_dma%d: timeout #%d\n",
376 1.1 chopps dev->sc_dev.dv_unit, dev->sc_dmatimo - 1);
377 1.1 chopps dev->sc_dmatimo++;
378 1.1 chopps }
379 1.1 chopps splx(s);
380 1.1 chopps }
381 1.1 chopps timeout(ahsc_dmatimeout, 0, 30 * hz);
382 1.1 chopps }
383 1.1 chopps #endif
384