dma.c revision 1.20.4.1 1 1.20.4.1 yamt /* $NetBSD: dma.c,v 1.20.4.1 2009/05/04 08:12:00 yamt Exp $ */
2 1.1 jeremy
3 1.1 jeremy /*
4 1.1 jeremy * Copyright (c) 1994 Paul Kranenburg. All rights reserved.
5 1.1 jeremy * Copyright (c) 1994 Peter Galbavy. All rights reserved.
6 1.1 jeremy *
7 1.1 jeremy * Redistribution and use in source and binary forms, with or without
8 1.1 jeremy * modification, are permitted provided that the following conditions
9 1.1 jeremy * are met:
10 1.1 jeremy * 1. Redistributions of source code must retain the above copyright
11 1.1 jeremy * notice, this list of conditions and the following disclaimer.
12 1.1 jeremy * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 jeremy * notice, this list of conditions and the following disclaimer in the
14 1.1 jeremy * documentation and/or other materials provided with the distribution.
15 1.1 jeremy * 3. All advertising materials mentioning features or use of this software
16 1.1 jeremy * must display the following acknowledgement:
17 1.1 jeremy * This product includes software developed by Peter Galbavy.
18 1.1 jeremy * 4. The name of the author may not be used to endorse or promote products
19 1.1 jeremy * derived from this software without specific prior written permission.
20 1.1 jeremy *
21 1.1 jeremy * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 1.1 jeremy * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 1.1 jeremy * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 1.1 jeremy * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 1.1 jeremy * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 1.1 jeremy * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 1.1 jeremy * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 1.1 jeremy * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 1.1 jeremy * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 1.1 jeremy * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 1.1 jeremy */
32 1.14 lukem
33 1.14 lukem #include <sys/cdefs.h>
34 1.20.4.1 yamt __KERNEL_RCSID(0, "$NetBSD: dma.c,v 1.20.4.1 2009/05/04 08:12:00 yamt Exp $");
35 1.1 jeremy
36 1.1 jeremy #include <sys/types.h>
37 1.1 jeremy #include <sys/param.h>
38 1.1 jeremy #include <sys/systm.h>
39 1.1 jeremy #include <sys/kernel.h>
40 1.1 jeremy #include <sys/errno.h>
41 1.1 jeremy #include <sys/device.h>
42 1.1 jeremy #include <sys/malloc.h>
43 1.1 jeremy
44 1.1 jeremy #include <machine/autoconf.h>
45 1.1 jeremy #include <machine/dvma.h>
46 1.1 jeremy
47 1.6 bouyer #include <dev/scsipi/scsi_all.h>
48 1.6 bouyer #include <dev/scsipi/scsipi_all.h>
49 1.6 bouyer #include <dev/scsipi/scsiconf.h>
50 1.1 jeremy
51 1.4 gwr #include <dev/ic/ncr53c9xreg.h>
52 1.4 gwr #include <dev/ic/ncr53c9xvar.h>
53 1.4 gwr
54 1.8 gwr #include <sun3/dev/dmareg.h>
55 1.8 gwr #include <sun3/dev/dmavar.h>
56 1.1 jeremy
57 1.20 tsutsui #include "ioconf.h"
58 1.20 tsutsui
59 1.10 gwr #define MAX_DMA_SZ 0x01000000 /* 16MB */
60 1.10 gwr
61 1.20 tsutsui static int dmamatch(device_t, cfdata_t, void *);
62 1.20 tsutsui static void dmaattach(device_t, device_t, void *);
63 1.10 gwr
64 1.20 tsutsui CFATTACH_DECL_NEW(dma, sizeof(struct dma_softc),
65 1.13 thorpej dmamatch, dmaattach, NULL, NULL);
66 1.10 gwr
67 1.15 chs static int
68 1.20 tsutsui dmamatch(device_t parent, cfdata_t cf, void *aux)
69 1.1 jeremy {
70 1.10 gwr struct confargs *ca = aux;
71 1.1 jeremy
72 1.1 jeremy /*
73 1.10 gwr * Check for the DMA registers.
74 1.1 jeremy */
75 1.10 gwr if (bus_peek(ca->ca_bustype, ca->ca_paddr, 4) == -1)
76 1.20 tsutsui return 0;
77 1.10 gwr
78 1.10 gwr /* If default ipl, fill it in. */
79 1.10 gwr if (ca->ca_intpri == -1)
80 1.10 gwr ca->ca_intpri = 2;
81 1.1 jeremy
82 1.20 tsutsui return 1;
83 1.10 gwr }
84 1.1 jeremy
85 1.15 chs static void
86 1.20 tsutsui dmaattach(device_t parent, device_t self, void *aux)
87 1.10 gwr {
88 1.20 tsutsui struct dma_softc *sc = device_private(self);
89 1.10 gwr struct confargs *ca = aux;
90 1.10 gwr int id;
91 1.4 gwr
92 1.20 tsutsui sc->sc_dev = self;
93 1.20 tsutsui
94 1.4 gwr #if 0
95 1.4 gwr /* indirect functions */
96 1.4 gwr sc->intr = espdmaintr;
97 1.10 gwr sc->setup = dma_setup;
98 1.4 gwr sc->reset = dma_reset;
99 1.4 gwr #endif
100 1.4 gwr
101 1.10 gwr /*
102 1.10 gwr * Map in the registers.
103 1.10 gwr */
104 1.17 tsutsui sc->sc_bst = ca->ca_bustag;
105 1.17 tsutsui sc->sc_dmatag = ca->ca_dmatag;
106 1.17 tsutsui if (bus_space_map(sc->sc_bst, ca->ca_paddr, DMAREG_SIZE,
107 1.17 tsutsui 0, &sc->sc_bsh) != 0) {
108 1.20 tsutsui aprint_error(": can't map register\n");
109 1.17 tsutsui return;
110 1.17 tsutsui }
111 1.17 tsutsui /*
112 1.17 tsutsui * Allocate dmamap.
113 1.17 tsutsui */
114 1.17 tsutsui if (bus_dmamap_create(sc->sc_dmatag, MAXPHYS, 1, MAXPHYS,
115 1.17 tsutsui 0, BUS_DMA_NOWAIT, &sc->sc_dmamap) != 0) {
116 1.20 tsutsui aprint_error(": can't create DMA map\n");
117 1.17 tsutsui return;
118 1.17 tsutsui }
119 1.17 tsutsui
120 1.17 tsutsui sc->sc_rev = DMA_GCSR(sc) & D_DEV_ID;
121 1.10 gwr id = (sc->sc_rev >> 28) & 0xf;
122 1.20 tsutsui aprint_normal(": rev %d\n", id);
123 1.4 gwr
124 1.10 gwr /*
125 1.10 gwr * Make sure the DMA chip is supported revision.
126 1.10 gwr * The Sun3/80 used only the old rev zero chip,
127 1.10 gwr * so the initialization has been simplified.
128 1.10 gwr */
129 1.1 jeremy switch (sc->sc_rev) {
130 1.1 jeremy case DMAREV_0:
131 1.1 jeremy case DMAREV_1:
132 1.1 jeremy break;
133 1.1 jeremy default:
134 1.10 gwr panic("unsupported dma rev");
135 1.1 jeremy }
136 1.4 gwr }
137 1.1 jeremy
138 1.10 gwr /*
139 1.10 gwr * This is called by espattach to get our softc.
140 1.10 gwr */
141 1.10 gwr struct dma_softc *
142 1.10 gwr espdmafind(int unit)
143 1.10 gwr {
144 1.20 tsutsui struct dma_softc *dma;
145 1.20 tsutsui
146 1.20 tsutsui dma = device_lookup_private(&dma_cd, unit);
147 1.20 tsutsui if (dma == NULL)
148 1.20 tsutsui panic("%s: no dma", __func__);
149 1.20 tsutsui return dma;
150 1.10 gwr }
151 1.1 jeremy
152 1.1 jeremy #define DMAWAIT(SC, COND, MSG, DONTPANIC) do if (COND) { \
153 1.10 gwr int count = 100000; \
154 1.17 tsutsui while ((COND) && --count > 0) \
155 1.17 tsutsui DELAY(5); \
156 1.1 jeremy if (count == 0) { \
157 1.10 gwr printf("%s: line %d: CSR = 0x%x\n", \
158 1.17 tsutsui __FILE__, __LINE__, DMA_GCSR(SC)); \
159 1.1 jeremy if (DONTPANIC) \
160 1.1 jeremy printf(MSG); \
161 1.1 jeremy else \
162 1.1 jeremy panic(MSG); \
163 1.1 jeremy } \
164 1.17 tsutsui } while (/* CONSTCOND */0)
165 1.1 jeremy
166 1.1 jeremy #define DMA_DRAIN(sc, dontpanic) do { \
167 1.17 tsutsui uint32_t _csr; \
168 1.1 jeremy /* \
169 1.1 jeremy * DMA rev0 & rev1: we are not allowed to touch the DMA "flush" \
170 1.1 jeremy * and "drain" bits while it is still thinking about a \
171 1.1 jeremy * request. \
172 1.1 jeremy * other revs: D_R_PEND bit reads as 0 \
173 1.1 jeremy */ \
174 1.17 tsutsui DMAWAIT(sc, DMA_GCSR(sc) & D_R_PEND, "R_PEND", dontpanic); \
175 1.1 jeremy /* \
176 1.10 gwr * Select drain bit (always rev 0,1) \
177 1.1 jeremy * also clears errors and D_TC flag \
178 1.1 jeremy */ \
179 1.17 tsutsui _csr = DMA_GCSR(sc); \
180 1.17 tsutsui _csr |= D_DRAIN; \
181 1.17 tsutsui DMA_SCSR(sc, _csr); \
182 1.1 jeremy /* \
183 1.1 jeremy * Wait for draining to finish \
184 1.1 jeremy */ \
185 1.17 tsutsui DMAWAIT(sc, DMA_GCSR(sc) & D_PACKCNT, "DRAINING", dontpanic); \
186 1.17 tsutsui } while (/* CONSTCOND */0)
187 1.10 gwr
188 1.10 gwr #define DMA_FLUSH(sc, dontpanic) do { \
189 1.17 tsutsui uint32_t _csr; \
190 1.10 gwr /* \
191 1.10 gwr * DMA rev0 & rev1: we are not allowed to touch the DMA "flush" \
192 1.10 gwr * and "drain" bits while it is still thinking about a \
193 1.10 gwr * request. \
194 1.10 gwr * other revs: D_R_PEND bit reads as 0 \
195 1.10 gwr */ \
196 1.17 tsutsui DMAWAIT(sc, DMA_GCSR(sc) & D_R_PEND, "R_PEND", dontpanic); \
197 1.17 tsutsui _csr = DMA_GCSR(sc); \
198 1.17 tsutsui _csr &= ~(D_WRITE|D_EN_DMA); \
199 1.17 tsutsui DMA_SCSR(sc, _csr); \
200 1.17 tsutsui _csr |= D_FLUSH; \
201 1.17 tsutsui DMA_SCSR(sc, _csr); \
202 1.17 tsutsui } while (/* CONSTCOND */0)
203 1.1 jeremy
204 1.15 chs void
205 1.15 chs dma_reset(struct dma_softc *sc)
206 1.1 jeremy {
207 1.17 tsutsui uint32_t csr;
208 1.17 tsutsui
209 1.17 tsutsui if (sc->sc_dmamap->dm_nsegs > 0)
210 1.17 tsutsui bus_dmamap_unload(sc->sc_dmatag, sc->sc_dmamap);
211 1.10 gwr
212 1.10 gwr DMA_FLUSH(sc, 1);
213 1.17 tsutsui csr = DMA_GCSR(sc);
214 1.17 tsutsui
215 1.17 tsutsui csr |= D_RESET; /* reset DMA */
216 1.17 tsutsui DMA_SCSR(sc, csr);
217 1.10 gwr DELAY(200); /* what should this be ? */
218 1.17 tsutsui
219 1.1 jeremy /*DMAWAIT1(sc); why was this here? */
220 1.17 tsutsui csr = DMA_GCSR(sc);
221 1.17 tsutsui csr &= ~D_RESET; /* de-assert reset line */
222 1.17 tsutsui DMA_SCSR(sc, csr);
223 1.10 gwr DELAY(5); /* allow a few ticks to settle */
224 1.1 jeremy
225 1.10 gwr /*
226 1.10 gwr * Get transfer burst size from (?) and plug it into the
227 1.10 gwr * controller registers. This is needed on the Sun4m...
228 1.10 gwr * Do we need it too? Apparently not, because the 3/80
229 1.10 gwr * always has the old, REV zero DMA chip.
230 1.10 gwr */
231 1.17 tsutsui csr = DMA_GCSR(sc);
232 1.17 tsutsui csr |= D_INT_EN; /* enable interrupts */
233 1.17 tsutsui
234 1.17 tsutsui DMA_SCSR(sc, csr);
235 1.1 jeremy
236 1.10 gwr sc->sc_active = 0;
237 1.1 jeremy }
238 1.1 jeremy
239 1.1 jeremy
240 1.10 gwr #define DMAMAX(a) (MAX_DMA_SZ - ((a) & (MAX_DMA_SZ-1)))
241 1.1 jeremy
242 1.1 jeremy /*
243 1.1 jeremy * setup a dma transfer
244 1.1 jeremy */
245 1.15 chs int
246 1.20 tsutsui dma_setup(struct dma_softc *sc, uint8_t **addr, size_t *len, int datain,
247 1.15 chs size_t *dmasize)
248 1.1 jeremy {
249 1.15 chs uint32_t csr;
250 1.1 jeremy
251 1.10 gwr DMA_FLUSH(sc, 0);
252 1.1 jeremy
253 1.1 jeremy #if 0
254 1.17 tsutsui DMA_SCSR(sc, DMA_GCSR(sc) & ~D_INT_EN);
255 1.1 jeremy #endif
256 1.1 jeremy sc->sc_dmaaddr = addr;
257 1.1 jeremy sc->sc_dmalen = len;
258 1.1 jeremy
259 1.20 tsutsui NCR_DMA(("%s: start %d@%p,%d\n", device_xname(sc->sc_dev),
260 1.20 tsutsui *sc->sc_dmalen, *sc->sc_dmaaddr, datain ? 1 : 0));
261 1.1 jeremy
262 1.1 jeremy /*
263 1.1 jeremy * the rules say we cannot transfer more than the limit
264 1.1 jeremy * of this DMA chip (64k for old and 16Mb for new),
265 1.1 jeremy * and we cannot cross a 16Mb boundary.
266 1.1 jeremy */
267 1.1 jeremy *dmasize = sc->sc_dmasize =
268 1.20 tsutsui min(*dmasize, DMAMAX((size_t) *sc->sc_dmaaddr));
269 1.1 jeremy
270 1.20 tsutsui NCR_DMA(("%s: dmasize = %d\n", __func__, sc->sc_dmasize));
271 1.1 jeremy
272 1.1 jeremy /* Program the DMA address */
273 1.1 jeremy if (sc->sc_dmasize) {
274 1.17 tsutsui if (bus_dmamap_load(sc->sc_dmatag, sc->sc_dmamap,
275 1.17 tsutsui *sc->sc_dmaaddr, sc->sc_dmasize,
276 1.17 tsutsui NULL /* kernel address */, BUS_DMA_NOWAIT))
277 1.17 tsutsui panic("%s: cannot allocate DVMA address",
278 1.20 tsutsui device_xname(sc->sc_dev));
279 1.17 tsutsui bus_dmamap_sync(sc->sc_dmatag, sc->sc_dmamap, 0, sc->sc_dmasize,
280 1.17 tsutsui datain ? BUS_DMASYNC_PREREAD : BUS_DMASYNC_PREWRITE);
281 1.17 tsutsui bus_space_write_4(sc->sc_bst, sc->sc_bsh, DMA_REG_ADDR,
282 1.17 tsutsui sc->sc_dmamap->dm_segs[0].ds_addr);
283 1.10 gwr }
284 1.10 gwr
285 1.10 gwr /* We never have DMAREV_ESC. */
286 1.1 jeremy
287 1.1 jeremy /* Setup DMA control register */
288 1.17 tsutsui csr = DMA_GCSR(sc);
289 1.1 jeremy if (datain)
290 1.1 jeremy csr |= D_WRITE;
291 1.1 jeremy else
292 1.1 jeremy csr &= ~D_WRITE;
293 1.1 jeremy csr |= D_INT_EN;
294 1.17 tsutsui DMA_SCSR(sc, csr);
295 1.1 jeremy
296 1.1 jeremy return 0;
297 1.1 jeremy }
298 1.1 jeremy
299 1.1 jeremy /*
300 1.1 jeremy * Pseudo (chained) interrupt from the esp driver to kick the
301 1.10 gwr * current running DMA transfer. I am relying on espintr() to
302 1.1 jeremy * pickup and clean errors for now
303 1.1 jeremy *
304 1.1 jeremy * return 1 if it was a DMA continue.
305 1.1 jeremy */
306 1.15 chs int
307 1.15 chs espdmaintr(struct dma_softc *sc)
308 1.1 jeremy {
309 1.17 tsutsui struct ncr53c9x_softc *nsc = sc->sc_client;
310 1.1 jeremy char bits[64];
311 1.1 jeremy int trans, resid;
312 1.15 chs uint32_t csr;
313 1.10 gwr
314 1.17 tsutsui csr = DMA_GCSR(sc);
315 1.1 jeremy
316 1.20.4.1 yamt #ifdef NCR53C9X_DEBUG
317 1.20.4.1 yamt if (ncr53c9x_debug & NCR_SHOWDMA)
318 1.20.4.1 yamt snprintb(bits, sizeof(bits), DMACSRBITS, csr);
319 1.20.4.1 yamt #endif
320 1.10 gwr NCR_DMA(("%s: intr: addr 0x%x, csr %s\n",
321 1.20.4.1 yamt device_xname(sc->sc_dev), DMADDR(sc), bits));
322 1.1 jeremy
323 1.1 jeremy if (csr & D_ERR_PEND) {
324 1.20.4.1 yamt snprintb(bits, sizeof(bits), DMACSRBITS, csr);
325 1.20.4.1 yamt printf("%s: error: csr=%s\n", device_xname(sc->sc_dev), bits);
326 1.17 tsutsui csr &= ~D_EN_DMA; /* Stop DMA */
327 1.17 tsutsui DMA_SCSR(sc, csr);
328 1.17 tsutsui csr |= D_FLUSH;
329 1.17 tsutsui DMA_SCSR(sc, csr);
330 1.17 tsutsui return -1;
331 1.1 jeremy }
332 1.1 jeremy
333 1.1 jeremy /* This is an "assertion" :) */
334 1.1 jeremy if (sc->sc_active == 0)
335 1.20 tsutsui panic("%s: DMA wasn't active", __func__);
336 1.1 jeremy
337 1.1 jeremy DMA_DRAIN(sc, 0);
338 1.1 jeremy
339 1.1 jeremy /* DMA has stopped */
340 1.17 tsutsui csr &= ~D_EN_DMA;
341 1.17 tsutsui DMA_SCSR(sc, csr);
342 1.1 jeremy sc->sc_active = 0;
343 1.1 jeremy
344 1.1 jeremy if (sc->sc_dmasize == 0) {
345 1.1 jeremy /* A "Transfer Pad" operation completed */
346 1.20 tsutsui NCR_DMA(("%s: discarded %d bytes (tcl=%d, tcm=%d)\n",
347 1.20 tsutsui __func__,
348 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCL) |
349 1.20 tsutsui (NCR_READ_REG(nsc, NCR_TCM) << 8),
350 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCL),
351 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCM)));
352 1.1 jeremy return 0;
353 1.1 jeremy }
354 1.1 jeremy
355 1.1 jeremy resid = 0;
356 1.1 jeremy /*
357 1.1 jeremy * If a transfer onto the SCSI bus gets interrupted by the device
358 1.1 jeremy * (e.g. for a SAVEPOINTER message), the data in the FIFO counts
359 1.1 jeremy * as residual since the ESP counter registers get decremented as
360 1.1 jeremy * bytes are clocked into the FIFO.
361 1.1 jeremy */
362 1.1 jeremy if (!(csr & D_WRITE) &&
363 1.4 gwr (resid = (NCR_READ_REG(nsc, NCR_FFLAG) & NCRFIFO_FF)) != 0) {
364 1.20 tsutsui NCR_DMA(("%s: empty esp FIFO of %d ", __func__, resid));
365 1.1 jeremy }
366 1.1 jeremy
367 1.4 gwr if ((nsc->sc_espstat & NCRSTAT_TC) == 0) {
368 1.1 jeremy /*
369 1.1 jeremy * `Terminal count' is off, so read the residue
370 1.1 jeremy * out of the ESP counter registers.
371 1.1 jeremy */
372 1.4 gwr resid += (NCR_READ_REG(nsc, NCR_TCL) |
373 1.20 tsutsui (NCR_READ_REG(nsc, NCR_TCM) << 8) |
374 1.20 tsutsui ((nsc->sc_cfg2 & NCRCFG2_FE) ?
375 1.20 tsutsui (NCR_READ_REG(nsc, NCR_TCH) << 16) : 0));
376 1.1 jeremy
377 1.1 jeremy if (resid == 0 && sc->sc_dmasize == 65536 &&
378 1.4 gwr (nsc->sc_cfg2 & NCRCFG2_FE) == 0)
379 1.1 jeremy /* A transfer of 64K is encoded as `TCL=TCM=0' */
380 1.1 jeremy resid = 65536;
381 1.1 jeremy }
382 1.1 jeremy
383 1.1 jeremy trans = sc->sc_dmasize - resid;
384 1.1 jeremy if (trans < 0) { /* transferred < 0 ? */
385 1.10 gwr #if 0
386 1.5 jeremy /*
387 1.5 jeremy * This situation can happen in perfectly normal operation
388 1.5 jeremy * if the ESP is reselected while using DMA to select
389 1.5 jeremy * another target. As such, don't print the warning.
390 1.5 jeremy */
391 1.1 jeremy printf("%s: xfer (%d) > req (%d)\n",
392 1.1 jeremy sc->sc_dev.dv_xname, trans, sc->sc_dmasize);
393 1.5 jeremy #endif
394 1.1 jeremy trans = sc->sc_dmasize;
395 1.1 jeremy }
396 1.1 jeremy
397 1.20 tsutsui NCR_DMA(("%s: tcl=%d, tcm=%d, tch=%d; trans=%d, resid=%d\n",
398 1.20 tsutsui __func__,
399 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCL),
400 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCM),
401 1.20 tsutsui (nsc->sc_cfg2 & NCRCFG2_FE) ?
402 1.20 tsutsui NCR_READ_REG(nsc, NCR_TCH) : 0,
403 1.20 tsutsui trans, resid));
404 1.1 jeremy
405 1.1 jeremy #ifdef SUN3X_470_EVENTUALLY
406 1.1 jeremy if (csr & D_WRITE)
407 1.1 jeremy cache_flush(*sc->sc_dmaaddr, trans);
408 1.1 jeremy #endif
409 1.1 jeremy
410 1.17 tsutsui if (sc->sc_dmamap->dm_nsegs > 0) {
411 1.17 tsutsui bus_dmamap_sync(sc->sc_dmatag, sc->sc_dmamap, 0, sc->sc_dmasize,
412 1.17 tsutsui (csr & D_WRITE) != 0 ?
413 1.17 tsutsui BUS_DMASYNC_POSTREAD : BUS_DMASYNC_POSTWRITE);
414 1.17 tsutsui bus_dmamap_unload(sc->sc_dmatag, sc->sc_dmamap);
415 1.17 tsutsui }
416 1.1 jeremy
417 1.1 jeremy *sc->sc_dmalen -= trans;
418 1.20 tsutsui *sc->sc_dmaaddr += trans;
419 1.1 jeremy
420 1.1 jeremy #if 0 /* this is not normal operation just yet */
421 1.1 jeremy if (*sc->sc_dmalen == 0 ||
422 1.4 gwr nsc->sc_phase != nsc->sc_prevphase)
423 1.1 jeremy return 0;
424 1.1 jeremy
425 1.1 jeremy /* and again */
426 1.17 tsutsui dma_start(sc, sc->sc_dmaaddr, sc->sc_dmalen, DMA_GCSR(sc) & D_WRITE);
427 1.1 jeremy return 1;
428 1.1 jeremy #endif
429 1.1 jeremy return 0;
430 1.1 jeremy }
431