dma.c revision 1.18 1 1.18 thorpej /* $NetBSD: dma.c,v 1.18 1997/04/27 21:02:34 thorpej Exp $ */
2 1.5 cgd
3 1.1 cgd /*
4 1.11 thorpej * Copyright (c) 1995, 1996, 1997
5 1.11 thorpej * Jason R. Thorpe. All rights reserved.
6 1.4 mycroft * Copyright (c) 1982, 1990, 1993
7 1.4 mycroft * The Regents of the University of California. All rights reserved.
8 1.1 cgd *
9 1.1 cgd * Redistribution and use in source and binary forms, with or without
10 1.1 cgd * modification, are permitted provided that the following conditions
11 1.1 cgd * are met:
12 1.1 cgd * 1. Redistributions of source code must retain the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer.
14 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
15 1.1 cgd * notice, this list of conditions and the following disclaimer in the
16 1.1 cgd * documentation and/or other materials provided with the distribution.
17 1.1 cgd * 3. All advertising materials mentioning features or use of this software
18 1.1 cgd * must display the following acknowledgement:
19 1.1 cgd * This product includes software developed by the University of
20 1.1 cgd * California, Berkeley and its contributors.
21 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
22 1.1 cgd * may be used to endorse or promote products derived from this software
23 1.1 cgd * without specific prior written permission.
24 1.1 cgd *
25 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
26 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
29 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
30 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
31 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
32 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
33 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
34 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
35 1.1 cgd * SUCH DAMAGE.
36 1.1 cgd *
37 1.5 cgd * @(#)dma.c 8.1 (Berkeley) 6/10/93
38 1.1 cgd */
39 1.1 cgd
40 1.1 cgd /*
41 1.1 cgd * DMA driver
42 1.1 cgd */
43 1.1 cgd
44 1.18 thorpej #include <machine/hp300spu.h> /* XXX param.h includes cpu.h */
45 1.18 thorpej
46 1.4 mycroft #include <sys/param.h>
47 1.4 mycroft #include <sys/systm.h>
48 1.4 mycroft #include <sys/time.h>
49 1.4 mycroft #include <sys/kernel.h>
50 1.4 mycroft #include <sys/proc.h>
51 1.11 thorpej #include <sys/device.h>
52 1.4 mycroft
53 1.14 scottr #include <machine/frame.h>
54 1.4 mycroft #include <machine/cpu.h>
55 1.17 thorpej #include <machine/intr.h>
56 1.4 mycroft
57 1.4 mycroft #include <hp300/dev/dmareg.h>
58 1.4 mycroft #include <hp300/dev/dmavar.h>
59 1.1 cgd
60 1.1 cgd /*
61 1.1 cgd * The largest single request will be MAXPHYS bytes which will require
62 1.1 cgd * at most MAXPHYS/NBPG+1 chain elements to describe, i.e. if none of
63 1.1 cgd * the buffer pages are physically contiguous (MAXPHYS/NBPG) and the
64 1.1 cgd * buffer is not page aligned (+1).
65 1.1 cgd */
66 1.1 cgd #define DMAMAXIO (MAXPHYS/NBPG+1)
67 1.1 cgd
68 1.1 cgd struct dma_chain {
69 1.1 cgd int dc_count;
70 1.1 cgd char *dc_addr;
71 1.1 cgd };
72 1.1 cgd
73 1.6 thorpej struct dma_channel {
74 1.11 thorpej struct dmaqueue *dm_job; /* current job */
75 1.6 thorpej struct dma_softc *dm_softc; /* pointer back to softc */
76 1.6 thorpej struct dmadevice *dm_hwaddr; /* registers if DMA_C */
77 1.6 thorpej struct dmaBdevice *dm_Bhwaddr; /* registers if not DMA_C */
78 1.6 thorpej char dm_flags; /* misc. flags */
79 1.6 thorpej u_short dm_cmd; /* DMA controller command */
80 1.11 thorpej int dm_cur; /* current segment */
81 1.11 thorpej int dm_last; /* last segment */
82 1.6 thorpej struct dma_chain dm_chain[DMAMAXIO]; /* all segments */
83 1.6 thorpej };
84 1.6 thorpej
85 1.1 cgd struct dma_softc {
86 1.6 thorpej char *sc_xname; /* XXX external name */
87 1.6 thorpej struct dmareg *sc_dmareg; /* pointer to our hardware */
88 1.6 thorpej struct dma_channel sc_chan[NDMACHAN]; /* 2 channels */
89 1.11 thorpej TAILQ_HEAD(, dmaqueue) sc_queue; /* job queue */
90 1.6 thorpej char sc_type; /* A, B, or C */
91 1.10 thorpej int sc_ipl; /* our interrupt level */
92 1.10 thorpej void *sc_ih; /* interrupt cookie */
93 1.6 thorpej } Dma_softc;
94 1.1 cgd
95 1.1 cgd /* types */
96 1.1 cgd #define DMA_B 0
97 1.1 cgd #define DMA_C 1
98 1.1 cgd
99 1.1 cgd /* flags */
100 1.1 cgd #define DMAF_PCFLUSH 0x01
101 1.1 cgd #define DMAF_VCFLUSH 0x02
102 1.1 cgd #define DMAF_NOINTR 0x04
103 1.1 cgd
104 1.7 thorpej int dmaintr __P((void *));
105 1.1 cgd
106 1.1 cgd #ifdef DEBUG
107 1.1 cgd int dmadebug = 0;
108 1.1 cgd #define DDB_WORD 0x01 /* same as DMAGO_WORD */
109 1.1 cgd #define DDB_LWORD 0x02 /* same as DMAGO_LWORD */
110 1.1 cgd #define DDB_FOLLOW 0x04
111 1.1 cgd #define DDB_IO 0x08
112 1.1 cgd
113 1.3 mycroft void dmatimeout __P((void *));
114 1.6 thorpej int dmatimo[NDMACHAN];
115 1.1 cgd
116 1.6 thorpej long dmahits[NDMACHAN];
117 1.6 thorpej long dmamisses[NDMACHAN];
118 1.6 thorpej long dmabyte[NDMACHAN];
119 1.6 thorpej long dmaword[NDMACHAN];
120 1.6 thorpej long dmalword[NDMACHAN];
121 1.1 cgd #endif
122 1.1 cgd
123 1.1 cgd void
124 1.1 cgd dmainit()
125 1.1 cgd {
126 1.6 thorpej struct dma_softc *sc = &Dma_softc;
127 1.6 thorpej struct dmareg *dma;
128 1.6 thorpej struct dma_channel *dc;
129 1.6 thorpej int i;
130 1.1 cgd char rev;
131 1.1 cgd
132 1.6 thorpej /* There's just one. */
133 1.6 thorpej sc->sc_dmareg = (struct dmareg *)DMA_BASE;
134 1.6 thorpej dma = sc->sc_dmareg;
135 1.6 thorpej sc->sc_xname = "dma0";
136 1.6 thorpej
137 1.1 cgd /*
138 1.6 thorpej * Determine the DMA type. A DMA_A or DMA_B will fail the
139 1.6 thorpej * following probe.
140 1.6 thorpej *
141 1.6 thorpej * XXX Don't know how to easily differentiate the A and B cards,
142 1.1 cgd * so we just hope nobody has an A card (A cards will work if
143 1.10 thorpej * splbio works out to ipl 3).
144 1.1 cgd */
145 1.6 thorpej if (badbaddr((char *)&dma->dma_id[2])) {
146 1.1 cgd rev = 'B';
147 1.1 cgd #if !defined(HP320)
148 1.1 cgd panic("dmainit: DMA card requires hp320 support");
149 1.1 cgd #endif
150 1.6 thorpej } else
151 1.6 thorpej rev = dma->dma_id[2];
152 1.6 thorpej
153 1.6 thorpej sc->sc_type = (rev == 'B') ? DMA_B : DMA_C;
154 1.1 cgd
155 1.11 thorpej TAILQ_INIT(&sc->sc_queue);
156 1.11 thorpej
157 1.6 thorpej for (i = 0; i < NDMACHAN; i++) {
158 1.6 thorpej dc = &sc->sc_chan[i];
159 1.6 thorpej dc->dm_softc = sc;
160 1.11 thorpej dc->dm_job = NULL;
161 1.6 thorpej switch (i) {
162 1.6 thorpej case 0:
163 1.6 thorpej dc->dm_hwaddr = &dma->dma_chan0;
164 1.6 thorpej dc->dm_Bhwaddr = &dma->dma_Bchan0;
165 1.6 thorpej break;
166 1.6 thorpej
167 1.6 thorpej case 1:
168 1.6 thorpej dc->dm_hwaddr = &dma->dma_chan1;
169 1.6 thorpej dc->dm_Bhwaddr = &dma->dma_Bchan1;
170 1.6 thorpej break;
171 1.6 thorpej
172 1.6 thorpej default:
173 1.6 thorpej panic("dmainit: more than 2 channels?");
174 1.6 thorpej /* NOTREACHED */
175 1.6 thorpej }
176 1.1 cgd }
177 1.11 thorpej
178 1.1 cgd #ifdef DEBUG
179 1.1 cgd /* make sure timeout is really not needed */
180 1.6 thorpej timeout(dmatimeout, sc, 30 * hz);
181 1.1 cgd #endif
182 1.1 cgd
183 1.9 christos printf("%s: 98620%c, 2 channels, %d bit\n", sc->sc_xname,
184 1.6 thorpej rev, (rev == 'B') ? 16 : 32);
185 1.7 thorpej
186 1.10 thorpej /*
187 1.10 thorpej * Defer hooking up our interrupt until the first
188 1.10 thorpej * DMA-using controller has hooked up theirs.
189 1.10 thorpej */
190 1.10 thorpej sc->sc_ih = NULL;
191 1.10 thorpej }
192 1.10 thorpej
193 1.10 thorpej /*
194 1.10 thorpej * Compute the ipl and (re)establish the interrupt handler
195 1.10 thorpej * for the DMA controller.
196 1.10 thorpej */
197 1.10 thorpej void
198 1.10 thorpej dmacomputeipl()
199 1.10 thorpej {
200 1.10 thorpej struct dma_softc *sc = &Dma_softc;
201 1.10 thorpej
202 1.10 thorpej if (sc->sc_ih != NULL)
203 1.17 thorpej intr_disestablish(sc->sc_ih);
204 1.10 thorpej
205 1.10 thorpej /*
206 1.10 thorpej * Our interrupt level must be as high as the highest
207 1.10 thorpej * device using DMA (i.e. splbio).
208 1.10 thorpej */
209 1.10 thorpej sc->sc_ipl = PSLTOIPL(hp300_bioipl);
210 1.17 thorpej sc->sc_ih = intr_establish(dmaintr, sc, sc->sc_ipl, IPL_BIO);
211 1.1 cgd }
212 1.1 cgd
213 1.1 cgd int
214 1.1 cgd dmareq(dq)
215 1.11 thorpej struct dmaqueue *dq;
216 1.1 cgd {
217 1.11 thorpej struct dma_softc *sc = &Dma_softc;
218 1.11 thorpej int i, chan, s;
219 1.11 thorpej
220 1.11 thorpej #if 1
221 1.11 thorpej s = splhigh(); /* XXXthorpej */
222 1.11 thorpej #else
223 1.11 thorpej s = splbio();
224 1.11 thorpej #endif
225 1.11 thorpej
226 1.11 thorpej chan = dq->dq_chan;
227 1.11 thorpej for (i = NDMACHAN - 1; i >= 0; i--) {
228 1.11 thorpej /*
229 1.11 thorpej * Can we use this channel?
230 1.11 thorpej */
231 1.1 cgd if ((chan & (1 << i)) == 0)
232 1.1 cgd continue;
233 1.11 thorpej
234 1.11 thorpej /*
235 1.11 thorpej * We can use it; is it busy?
236 1.11 thorpej */
237 1.11 thorpej if (sc->sc_chan[i].dm_job != NULL)
238 1.1 cgd continue;
239 1.11 thorpej
240 1.11 thorpej /*
241 1.11 thorpej * Not busy; give the caller this channel.
242 1.11 thorpej */
243 1.11 thorpej sc->sc_chan[i].dm_job = dq;
244 1.11 thorpej dq->dq_chan = i;
245 1.1 cgd splx(s);
246 1.11 thorpej return (1);
247 1.1 cgd }
248 1.11 thorpej
249 1.11 thorpej /*
250 1.11 thorpej * Couldn't get a channel now; put this in the queue.
251 1.11 thorpej */
252 1.11 thorpej TAILQ_INSERT_TAIL(&sc->sc_queue, dq, dq_list);
253 1.1 cgd splx(s);
254 1.11 thorpej return (0);
255 1.1 cgd }
256 1.1 cgd
257 1.1 cgd void
258 1.1 cgd dmafree(dq)
259 1.11 thorpej struct dmaqueue *dq;
260 1.1 cgd {
261 1.11 thorpej int unit = dq->dq_chan;
262 1.6 thorpej struct dma_softc *sc = &Dma_softc;
263 1.11 thorpej struct dma_channel *dc = &sc->sc_chan[unit];
264 1.11 thorpej struct dmaqueue *dn;
265 1.11 thorpej int chan, s;
266 1.11 thorpej
267 1.11 thorpej #if 1
268 1.11 thorpej s = splhigh(); /* XXXthorpej */
269 1.11 thorpej #else
270 1.11 thorpej s = splbio();
271 1.11 thorpej #endif
272 1.1 cgd
273 1.1 cgd #ifdef DEBUG
274 1.1 cgd dmatimo[unit] = 0;
275 1.1 cgd #endif
276 1.11 thorpej
277 1.1 cgd DMA_CLEAR(dc);
278 1.18 thorpej
279 1.18 thorpej #if defined(CACHE_HAVE_PAC) || defined(M68040)
280 1.1 cgd /*
281 1.1 cgd * XXX we may not always go thru the flush code in dmastop()
282 1.1 cgd */
283 1.6 thorpej if (dc->dm_flags & DMAF_PCFLUSH) {
284 1.1 cgd PCIA();
285 1.6 thorpej dc->dm_flags &= ~DMAF_PCFLUSH;
286 1.1 cgd }
287 1.1 cgd #endif
288 1.18 thorpej
289 1.18 thorpej #if defined(CACHE_HAVE_VAC)
290 1.6 thorpej if (dc->dm_flags & DMAF_VCFLUSH) {
291 1.1 cgd /*
292 1.1 cgd * 320/350s have VACs that may also need flushing.
293 1.1 cgd * In our case we only flush the supervisor side
294 1.1 cgd * because we know that if we are DMAing to user
295 1.1 cgd * space, the physical pages will also be mapped
296 1.1 cgd * in kernel space (via vmapbuf) and hence cache-
297 1.1 cgd * inhibited by the pmap module due to the multiple
298 1.1 cgd * mapping.
299 1.1 cgd */
300 1.1 cgd DCIS();
301 1.6 thorpej dc->dm_flags &= ~DMAF_VCFLUSH;
302 1.1 cgd }
303 1.1 cgd #endif
304 1.18 thorpej
305 1.11 thorpej /*
306 1.11 thorpej * Channel is now free. Look for another job to run on this
307 1.11 thorpej * channel.
308 1.11 thorpej */
309 1.11 thorpej dc->dm_job = NULL;
310 1.1 cgd chan = 1 << unit;
311 1.11 thorpej for (dn = sc->sc_queue.tqh_first; dn != NULL;
312 1.11 thorpej dn = dn->dq_list.tqe_next) {
313 1.11 thorpej if (dn->dq_chan & chan) {
314 1.11 thorpej /* Found one... */
315 1.11 thorpej TAILQ_REMOVE(&sc->sc_queue, dn, dq_list);
316 1.11 thorpej dc->dm_job = dn;
317 1.11 thorpej dn->dq_chan = dq->dq_chan;
318 1.1 cgd splx(s);
319 1.11 thorpej
320 1.11 thorpej /* Start the initiator. */
321 1.11 thorpej (*dn->dq_start)(dn->dq_softc);
322 1.1 cgd return;
323 1.1 cgd }
324 1.1 cgd }
325 1.1 cgd splx(s);
326 1.1 cgd }
327 1.1 cgd
328 1.1 cgd void
329 1.1 cgd dmago(unit, addr, count, flags)
330 1.1 cgd int unit;
331 1.13 scottr char *addr;
332 1.13 scottr int count;
333 1.13 scottr int flags;
334 1.1 cgd {
335 1.6 thorpej struct dma_softc *sc = &Dma_softc;
336 1.13 scottr struct dma_channel *dc = &sc->sc_chan[unit];
337 1.13 scottr char *dmaend = NULL;
338 1.13 scottr int seg, tcount;
339 1.1 cgd
340 1.1 cgd if (count > MAXPHYS)
341 1.1 cgd panic("dmago: count > MAXPHYS");
342 1.18 thorpej
343 1.1 cgd #if defined(HP320)
344 1.6 thorpej if (sc->sc_type == DMA_B && (flags & DMAGO_LWORD))
345 1.1 cgd panic("dmago: no can do 32-bit DMA");
346 1.1 cgd #endif
347 1.18 thorpej
348 1.1 cgd #ifdef DEBUG
349 1.1 cgd if (dmadebug & DDB_FOLLOW)
350 1.15 scottr printf("dmago(%d, %p, %x, %x)\n",
351 1.1 cgd unit, addr, count, flags);
352 1.1 cgd if (flags & DMAGO_LWORD)
353 1.1 cgd dmalword[unit]++;
354 1.1 cgd else if (flags & DMAGO_WORD)
355 1.1 cgd dmaword[unit]++;
356 1.1 cgd else
357 1.1 cgd dmabyte[unit]++;
358 1.1 cgd #endif
359 1.1 cgd /*
360 1.1 cgd * Build the DMA chain
361 1.1 cgd */
362 1.11 thorpej for (seg = 0; count > 0; seg++) {
363 1.11 thorpej dc->dm_chain[seg].dc_addr = (char *) kvtop(addr);
364 1.18 thorpej #if defined(M68040)
365 1.4 mycroft /*
366 1.4 mycroft * Push back dirty cache lines
367 1.4 mycroft */
368 1.4 mycroft if (mmutype == MMU_68040)
369 1.14 scottr DCFP((vm_offset_t)dc->dm_chain[seg].dc_addr);
370 1.4 mycroft #endif
371 1.1 cgd if (count < (tcount = NBPG - ((int)addr & PGOFSET)))
372 1.1 cgd tcount = count;
373 1.11 thorpej dc->dm_chain[seg].dc_count = tcount;
374 1.1 cgd addr += tcount;
375 1.1 cgd count -= tcount;
376 1.1 cgd if (flags & DMAGO_LWORD)
377 1.1 cgd tcount >>= 2;
378 1.1 cgd else if (flags & DMAGO_WORD)
379 1.1 cgd tcount >>= 1;
380 1.11 thorpej
381 1.11 thorpej /*
382 1.11 thorpej * Try to compact the DMA transfer if the pages are adjacent.
383 1.11 thorpej * Note: this will never happen on the first iteration.
384 1.11 thorpej */
385 1.11 thorpej if (dc->dm_chain[seg].dc_addr == dmaend
386 1.1 cgd #if defined(HP320)
387 1.1 cgd /* only 16-bit count on 98620B */
388 1.6 thorpej && (sc->sc_type != DMA_B ||
389 1.11 thorpej dc->dm_chain[seg - 1].dc_count + tcount <= 65536)
390 1.1 cgd #endif
391 1.1 cgd ) {
392 1.1 cgd #ifdef DEBUG
393 1.1 cgd dmahits[unit]++;
394 1.1 cgd #endif
395 1.11 thorpej dmaend += dc->dm_chain[seg].dc_count;
396 1.11 thorpej dc->dm_chain[--seg].dc_count += tcount;
397 1.1 cgd } else {
398 1.1 cgd #ifdef DEBUG
399 1.1 cgd dmamisses[unit]++;
400 1.1 cgd #endif
401 1.11 thorpej dmaend = dc->dm_chain[seg].dc_addr +
402 1.11 thorpej dc->dm_chain[seg].dc_count;
403 1.11 thorpej dc->dm_chain[seg].dc_count = tcount;
404 1.1 cgd }
405 1.1 cgd }
406 1.11 thorpej dc->dm_cur = 0;
407 1.11 thorpej dc->dm_last = --seg;
408 1.6 thorpej dc->dm_flags = 0;
409 1.1 cgd /*
410 1.1 cgd * Set up the command word based on flags
411 1.1 cgd */
412 1.10 thorpej dc->dm_cmd = DMA_ENAB | DMA_IPL(sc->sc_ipl) | DMA_START;
413 1.1 cgd if ((flags & DMAGO_READ) == 0)
414 1.6 thorpej dc->dm_cmd |= DMA_WRT;
415 1.1 cgd if (flags & DMAGO_LWORD)
416 1.6 thorpej dc->dm_cmd |= DMA_LWORD;
417 1.1 cgd else if (flags & DMAGO_WORD)
418 1.6 thorpej dc->dm_cmd |= DMA_WORD;
419 1.1 cgd if (flags & DMAGO_PRI)
420 1.6 thorpej dc->dm_cmd |= DMA_PRI;
421 1.18 thorpej
422 1.18 thorpej #if defined(M68040)
423 1.4 mycroft /*
424 1.4 mycroft * On the 68040 we need to flush (push) the data cache before a
425 1.4 mycroft * DMA (already done above) and flush again after DMA completes.
426 1.4 mycroft * In theory we should only need to flush prior to a write DMA
427 1.4 mycroft * and purge after a read DMA but if the entire page is not
428 1.4 mycroft * involved in the DMA we might purge some valid data.
429 1.4 mycroft */
430 1.4 mycroft if (mmutype == MMU_68040 && (flags & DMAGO_READ))
431 1.6 thorpej dc->dm_flags |= DMAF_PCFLUSH;
432 1.4 mycroft #endif
433 1.18 thorpej
434 1.18 thorpej #if defined(CACHE_HAVE_PAC)
435 1.1 cgd /*
436 1.1 cgd * Remember if we need to flush external physical cache when
437 1.1 cgd * DMA is done. We only do this if we are reading (writing memory).
438 1.1 cgd */
439 1.1 cgd if (ectype == EC_PHYS && (flags & DMAGO_READ))
440 1.6 thorpej dc->dm_flags |= DMAF_PCFLUSH;
441 1.1 cgd #endif
442 1.18 thorpej
443 1.18 thorpej #if defined(CACHE_HAVE_VAC)
444 1.1 cgd if (ectype == EC_VIRT && (flags & DMAGO_READ))
445 1.6 thorpej dc->dm_flags |= DMAF_VCFLUSH;
446 1.1 cgd #endif
447 1.18 thorpej
448 1.1 cgd /*
449 1.1 cgd * Remember if we can skip the dma completion interrupt on
450 1.1 cgd * the last segment in the chain.
451 1.1 cgd */
452 1.1 cgd if (flags & DMAGO_NOINT) {
453 1.6 thorpej if (dc->dm_cur == dc->dm_last)
454 1.6 thorpej dc->dm_cmd &= ~DMA_ENAB;
455 1.1 cgd else
456 1.6 thorpej dc->dm_flags |= DMAF_NOINTR;
457 1.1 cgd }
458 1.1 cgd #ifdef DEBUG
459 1.11 thorpej if (dmadebug & DDB_IO) {
460 1.15 scottr if (((dmadebug&DDB_WORD) && (dc->dm_cmd&DMA_WORD)) ||
461 1.15 scottr ((dmadebug&DDB_LWORD) && (dc->dm_cmd&DMA_LWORD))) {
462 1.9 christos printf("dmago: cmd %x, flags %x\n",
463 1.6 thorpej dc->dm_cmd, dc->dm_flags);
464 1.11 thorpej for (seg = 0; seg <= dc->dm_last; seg++)
465 1.15 scottr printf(" %d: %d@%p\n", seg,
466 1.11 thorpej dc->dm_chain[seg].dc_count,
467 1.11 thorpej dc->dm_chain[seg].dc_addr);
468 1.1 cgd }
469 1.11 thorpej }
470 1.1 cgd dmatimo[unit] = 1;
471 1.1 cgd #endif
472 1.1 cgd DMA_ARM(dc);
473 1.1 cgd }
474 1.1 cgd
475 1.1 cgd void
476 1.1 cgd dmastop(unit)
477 1.13 scottr int unit;
478 1.1 cgd {
479 1.6 thorpej struct dma_softc *sc = &Dma_softc;
480 1.13 scottr struct dma_channel *dc = &sc->sc_chan[unit];
481 1.1 cgd
482 1.1 cgd #ifdef DEBUG
483 1.1 cgd if (dmadebug & DDB_FOLLOW)
484 1.9 christos printf("dmastop(%d)\n", unit);
485 1.1 cgd dmatimo[unit] = 0;
486 1.1 cgd #endif
487 1.1 cgd DMA_CLEAR(dc);
488 1.18 thorpej
489 1.18 thorpej #if defined(CACHE_HAVE_PAC) || defined(M68040)
490 1.6 thorpej if (dc->dm_flags & DMAF_PCFLUSH) {
491 1.1 cgd PCIA();
492 1.6 thorpej dc->dm_flags &= ~DMAF_PCFLUSH;
493 1.1 cgd }
494 1.1 cgd #endif
495 1.18 thorpej
496 1.18 thorpej #if defined(CACHE_HAVE_VAC)
497 1.6 thorpej if (dc->dm_flags & DMAF_VCFLUSH) {
498 1.1 cgd /*
499 1.1 cgd * 320/350s have VACs that may also need flushing.
500 1.1 cgd * In our case we only flush the supervisor side
501 1.1 cgd * because we know that if we are DMAing to user
502 1.1 cgd * space, the physical pages will also be mapped
503 1.1 cgd * in kernel space (via vmapbuf) and hence cache-
504 1.1 cgd * inhibited by the pmap module due to the multiple
505 1.1 cgd * mapping.
506 1.1 cgd */
507 1.1 cgd DCIS();
508 1.6 thorpej dc->dm_flags &= ~DMAF_VCFLUSH;
509 1.1 cgd }
510 1.1 cgd #endif
511 1.18 thorpej
512 1.1 cgd /*
513 1.1 cgd * We may get this interrupt after a device service routine
514 1.1 cgd * has freed the dma channel. So, ignore the intr if there's
515 1.1 cgd * nothing on the queue.
516 1.1 cgd */
517 1.11 thorpej if (dc->dm_job != NULL)
518 1.11 thorpej (*dc->dm_job->dq_done)(dc->dm_job->dq_softc);
519 1.1 cgd }
520 1.1 cgd
521 1.1 cgd int
522 1.7 thorpej dmaintr(arg)
523 1.7 thorpej void *arg;
524 1.1 cgd {
525 1.7 thorpej struct dma_softc *sc = arg;
526 1.13 scottr struct dma_channel *dc;
527 1.13 scottr int i, stat;
528 1.1 cgd int found = 0;
529 1.1 cgd
530 1.1 cgd #ifdef DEBUG
531 1.1 cgd if (dmadebug & DDB_FOLLOW)
532 1.9 christos printf("dmaintr\n");
533 1.1 cgd #endif
534 1.6 thorpej for (i = 0; i < NDMACHAN; i++) {
535 1.6 thorpej dc = &sc->sc_chan[i];
536 1.1 cgd stat = DMA_STAT(dc);
537 1.1 cgd if ((stat & DMA_INTR) == 0)
538 1.1 cgd continue;
539 1.1 cgd found++;
540 1.1 cgd #ifdef DEBUG
541 1.1 cgd if (dmadebug & DDB_IO) {
542 1.15 scottr if (((dmadebug&DDB_WORD) && (dc->dm_cmd&DMA_WORD)) ||
543 1.15 scottr ((dmadebug&DDB_LWORD) && (dc->dm_cmd&DMA_LWORD)))
544 1.11 thorpej printf("dmaintr: flags %x unit %d stat %x next %d\n",
545 1.11 thorpej dc->dm_flags, i, stat, dc->dm_cur + 1);
546 1.1 cgd }
547 1.1 cgd if (stat & DMA_ARMED)
548 1.9 christos printf("%s, chan %d: intr when armed\n",
549 1.6 thorpej sc->sc_xname, i);
550 1.1 cgd #endif
551 1.11 thorpej /*
552 1.11 thorpej * Load the next segemnt, or finish up if we're done.
553 1.11 thorpej */
554 1.11 thorpej dc->dm_cur++;
555 1.11 thorpej if (dc->dm_cur <= dc->dm_last) {
556 1.1 cgd #ifdef DEBUG
557 1.1 cgd dmatimo[i] = 1;
558 1.1 cgd #endif
559 1.1 cgd /*
560 1.11 thorpej * If we're the last segment, disable the
561 1.11 thorpej * completion interrupt, if necessary.
562 1.1 cgd */
563 1.6 thorpej if (dc->dm_cur == dc->dm_last &&
564 1.6 thorpej (dc->dm_flags & DMAF_NOINTR))
565 1.6 thorpej dc->dm_cmd &= ~DMA_ENAB;
566 1.1 cgd DMA_CLEAR(dc);
567 1.1 cgd DMA_ARM(dc);
568 1.1 cgd } else
569 1.1 cgd dmastop(i);
570 1.1 cgd }
571 1.1 cgd return(found);
572 1.1 cgd }
573 1.1 cgd
574 1.1 cgd #ifdef DEBUG
575 1.1 cgd void
576 1.3 mycroft dmatimeout(arg)
577 1.3 mycroft void *arg;
578 1.1 cgd {
579 1.13 scottr int i, s;
580 1.6 thorpej struct dma_softc *sc = arg;
581 1.1 cgd
582 1.6 thorpej for (i = 0; i < NDMACHAN; i++) {
583 1.1 cgd s = splbio();
584 1.1 cgd if (dmatimo[i]) {
585 1.1 cgd if (dmatimo[i] > 1)
586 1.11 thorpej printf("%s: chan %d timeout #%d\n",
587 1.11 thorpej sc->sc_xname, i, dmatimo[i]-1);
588 1.1 cgd dmatimo[i]++;
589 1.1 cgd }
590 1.1 cgd splx(s);
591 1.1 cgd }
592 1.6 thorpej timeout(dmatimeout, sc, 30 * hz);
593 1.1 cgd }
594 1.1 cgd #endif
595