isadma_bounce.c revision 1.6 1 1.6 christos /* $NetBSD: isadma_bounce.c,v 1.6 2007/03/04 05:59:46 christos Exp $ */
2 1.1 simonb
3 1.1 simonb /*-
4 1.1 simonb * Copyright (c) 1996, 1997, 1998, 2000, 2001 The NetBSD Foundation, Inc.
5 1.1 simonb * All rights reserved.
6 1.1 simonb *
7 1.1 simonb * This code is derived from software contributed to The NetBSD Foundation
8 1.1 simonb * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 simonb * NASA Ames Research Center.
10 1.1 simonb *
11 1.1 simonb * Redistribution and use in source and binary forms, with or without
12 1.1 simonb * modification, are permitted provided that the following conditions
13 1.1 simonb * are met:
14 1.1 simonb * 1. Redistributions of source code must retain the above copyright
15 1.1 simonb * notice, this list of conditions and the following disclaimer.
16 1.1 simonb * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 simonb * notice, this list of conditions and the following disclaimer in the
18 1.1 simonb * documentation and/or other materials provided with the distribution.
19 1.1 simonb * 3. All advertising materials mentioning features or use of this software
20 1.1 simonb * must display the following acknowledgement:
21 1.1 simonb * This product includes software developed by the NetBSD
22 1.1 simonb * Foundation, Inc. and its contributors.
23 1.1 simonb * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 simonb * contributors may be used to endorse or promote products derived
25 1.1 simonb * from this software without specific prior written permission.
26 1.1 simonb *
27 1.1 simonb * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 simonb * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 simonb * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 simonb * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 simonb * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 simonb * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 simonb * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 simonb * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 simonb * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 simonb * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 simonb * POSSIBILITY OF SUCH DAMAGE.
38 1.1 simonb */
39 1.4 lukem
40 1.4 lukem #include <sys/cdefs.h>
41 1.6 christos __KERNEL_RCSID(0, "$NetBSD: isadma_bounce.c,v 1.6 2007/03/04 05:59:46 christos Exp $");
42 1.1 simonb
43 1.1 simonb #include <sys/param.h>
44 1.1 simonb #include <sys/systm.h>
45 1.1 simonb #include <sys/syslog.h>
46 1.1 simonb #include <sys/device.h>
47 1.1 simonb #include <sys/malloc.h>
48 1.1 simonb #include <sys/proc.h>
49 1.1 simonb #include <sys/mbuf.h>
50 1.1 simonb
51 1.1 simonb #include <mips/cache.h>
52 1.2 simonb #define _MIPS_BUS_DMA_PRIVATE
53 1.1 simonb #include <machine/bus.h>
54 1.1 simonb #include <machine/locore.h>
55 1.1 simonb
56 1.1 simonb #include <dev/isa/isareg.h>
57 1.1 simonb #include <dev/isa/isavar.h>
58 1.1 simonb
59 1.1 simonb #include <uvm/uvm_extern.h>
60 1.1 simonb
61 1.1 simonb extern paddr_t avail_end;
62 1.1 simonb
63 1.1 simonb /*
64 1.1 simonb * Cookie used by bouncing ISA DMA. A pointer to one of these is stashed
65 1.1 simonb * in the DMA map.
66 1.1 simonb */
67 1.1 simonb struct isadma_bounce_cookie {
68 1.1 simonb int id_flags; /* flags; see below */
69 1.1 simonb
70 1.1 simonb /*
71 1.1 simonb * Information about the original buffer used during
72 1.1 simonb * DMA map syncs. Note that origbuflen is only used
73 1.1 simonb * for ID_BUFTYPE_LINEAR.
74 1.1 simonb */
75 1.1 simonb void *id_origbuf; /* pointer to orig buffer if
76 1.1 simonb bouncing */
77 1.1 simonb bus_size_t id_origbuflen; /* ...and size */
78 1.1 simonb int id_buftype; /* type of buffer */
79 1.1 simonb
80 1.1 simonb void *id_bouncebuf; /* pointer to the bounce buffer */
81 1.1 simonb bus_size_t id_bouncebuflen; /* ...and size */
82 1.1 simonb int id_nbouncesegs; /* number of valid bounce segs */
83 1.1 simonb bus_dma_segment_t id_bouncesegs[1]; /* array of bounce buffer
84 1.1 simonb physical memory segments */
85 1.1 simonb };
86 1.1 simonb
87 1.1 simonb /* id_flags */
88 1.1 simonb #define ID_MIGHT_NEED_BOUNCE 0x01 /* map could need bounce buffers */
89 1.1 simonb #define ID_HAS_BOUNCE 0x02 /* map currently has bounce buffers */
90 1.1 simonb #define ID_IS_BOUNCING 0x04 /* map is bouncing current xfer */
91 1.1 simonb
92 1.1 simonb /* id_buftype */
93 1.1 simonb #define ID_BUFTYPE_INVALID 0
94 1.1 simonb #define ID_BUFTYPE_LINEAR 1
95 1.1 simonb #define ID_BUFTYPE_MBUF 2
96 1.1 simonb #define ID_BUFTYPE_UIO 3
97 1.1 simonb #define ID_BUFTYPE_RAW 4
98 1.1 simonb
99 1.1 simonb int isadma_bounce_alloc_bouncebuf(bus_dma_tag_t, bus_dmamap_t,
100 1.1 simonb bus_size_t, int);
101 1.1 simonb void isadma_bounce_free_bouncebuf(bus_dma_tag_t, bus_dmamap_t);
102 1.1 simonb
103 1.1 simonb /*
104 1.1 simonb * Create an ISA DMA map.
105 1.1 simonb */
106 1.1 simonb int
107 1.1 simonb isadma_bounce_dmamap_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
108 1.1 simonb bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamp)
109 1.1 simonb {
110 1.1 simonb struct isadma_bounce_cookie *cookie;
111 1.1 simonb bus_dmamap_t map;
112 1.1 simonb int error, cookieflags;
113 1.1 simonb void *cookiestore;
114 1.1 simonb size_t cookiesize;
115 1.1 simonb
116 1.1 simonb /* Call common function to create the basic map. */
117 1.1 simonb error = _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary,
118 1.1 simonb flags, dmamp);
119 1.1 simonb if (error)
120 1.1 simonb return (error);
121 1.1 simonb
122 1.1 simonb map = *dmamp;
123 1.1 simonb map->_dm_cookie = NULL;
124 1.1 simonb
125 1.1 simonb cookiesize = sizeof(*cookie);
126 1.1 simonb
127 1.1 simonb /*
128 1.1 simonb * ISA only has 24-bits of address space. This means
129 1.1 simonb * we can't DMA to pages over 16M. In order to DMA to
130 1.1 simonb * arbitrary buffers, we use "bounce buffers" - pages
131 1.1 simonb * in memory below the 16M boundary. On DMA reads,
132 1.1 simonb * DMA happens to the bounce buffers, and is copied into
133 1.1 simonb * the caller's buffer. On writes, data is copied into
134 1.1 simonb * but bounce buffer, and the DMA happens from those
135 1.1 simonb * pages. To software using the DMA mapping interface,
136 1.1 simonb * this looks simply like a data cache.
137 1.1 simonb *
138 1.1 simonb * If we have more than 16M of RAM in the system, we may
139 1.1 simonb * need bounce buffers. We check and remember that here.
140 1.1 simonb *
141 1.1 simonb * ...or, there is an opposite case. The most segments
142 1.1 simonb * a transfer will require is (maxxfer / PAGE_SIZE) + 1. If
143 1.1 simonb * the caller can't handle that many segments (e.g. the
144 1.1 simonb * ISA DMA controller), we may have to bounce it as well.
145 1.1 simonb */
146 1.1 simonb cookieflags = 0;
147 1.1 simonb if (avail_end > (t->_wbase + t->_wsize) ||
148 1.1 simonb ((map->_dm_size / PAGE_SIZE) + 1) > map->_dm_segcnt) {
149 1.1 simonb cookieflags |= ID_MIGHT_NEED_BOUNCE;
150 1.1 simonb cookiesize += (sizeof(bus_dma_segment_t) *
151 1.1 simonb (map->_dm_segcnt - 1));
152 1.1 simonb }
153 1.1 simonb
154 1.1 simonb /*
155 1.1 simonb * Allocate our cookie.
156 1.1 simonb */
157 1.1 simonb if ((cookiestore = malloc(cookiesize, M_DMAMAP,
158 1.1 simonb (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL) {
159 1.1 simonb error = ENOMEM;
160 1.1 simonb goto out;
161 1.1 simonb }
162 1.1 simonb memset(cookiestore, 0, cookiesize);
163 1.1 simonb cookie = (struct isadma_bounce_cookie *)cookiestore;
164 1.1 simonb cookie->id_flags = cookieflags;
165 1.1 simonb map->_dm_cookie = cookie;
166 1.1 simonb
167 1.1 simonb if (cookieflags & ID_MIGHT_NEED_BOUNCE) {
168 1.1 simonb /*
169 1.1 simonb * Allocate the bounce pages now if the caller
170 1.1 simonb * wishes us to do so.
171 1.1 simonb */
172 1.1 simonb if ((flags & BUS_DMA_ALLOCNOW) == 0)
173 1.1 simonb goto out;
174 1.1 simonb
175 1.1 simonb error = isadma_bounce_alloc_bouncebuf(t, map, size, flags);
176 1.1 simonb }
177 1.1 simonb
178 1.1 simonb out:
179 1.1 simonb if (error) {
180 1.1 simonb if (map->_dm_cookie != NULL)
181 1.1 simonb free(map->_dm_cookie, M_DMAMAP);
182 1.1 simonb _bus_dmamap_destroy(t, map);
183 1.1 simonb }
184 1.1 simonb return (error);
185 1.1 simonb }
186 1.1 simonb
187 1.1 simonb /*
188 1.1 simonb * Destroy an ISA DMA map.
189 1.1 simonb */
190 1.1 simonb void
191 1.1 simonb isadma_bounce_dmamap_destroy(bus_dma_tag_t t, bus_dmamap_t map)
192 1.1 simonb {
193 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
194 1.1 simonb
195 1.1 simonb /*
196 1.1 simonb * Free any bounce pages this map might hold.
197 1.1 simonb */
198 1.1 simonb if (cookie->id_flags & ID_HAS_BOUNCE)
199 1.1 simonb isadma_bounce_free_bouncebuf(t, map);
200 1.1 simonb
201 1.1 simonb free(cookie, M_DMAMAP);
202 1.1 simonb _bus_dmamap_destroy(t, map);
203 1.1 simonb }
204 1.1 simonb
205 1.1 simonb /*
206 1.1 simonb * Load an ISA DMA map with a linear buffer.
207 1.1 simonb */
208 1.1 simonb int
209 1.1 simonb isadma_bounce_dmamap_load(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
210 1.1 simonb bus_size_t buflen, struct proc *p, int flags)
211 1.1 simonb {
212 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
213 1.1 simonb int error;
214 1.1 simonb
215 1.1 simonb /*
216 1.1 simonb * Make sure that on error condition we return "no valid mappings."
217 1.1 simonb */
218 1.1 simonb map->dm_mapsize = 0;
219 1.1 simonb map->dm_nsegs = 0;
220 1.1 simonb
221 1.1 simonb /*
222 1.1 simonb * Try to load the map the normal way. If this errors out,
223 1.1 simonb * and we can bounce, we will.
224 1.1 simonb */
225 1.1 simonb error = _bus_dmamap_load(t, map, buf, buflen, p, flags);
226 1.1 simonb if (error == 0 ||
227 1.1 simonb (error != 0 && (cookie->id_flags & ID_MIGHT_NEED_BOUNCE) == 0))
228 1.1 simonb return (error);
229 1.1 simonb
230 1.1 simonb /*
231 1.1 simonb * First attempt failed; bounce it.
232 1.1 simonb */
233 1.1 simonb
234 1.1 simonb /*
235 1.1 simonb * Allocate bounce pages, if necessary.
236 1.1 simonb */
237 1.1 simonb if ((cookie->id_flags & ID_HAS_BOUNCE) == 0) {
238 1.1 simonb error = isadma_bounce_alloc_bouncebuf(t, map, buflen, flags);
239 1.1 simonb if (error)
240 1.1 simonb return (error);
241 1.1 simonb }
242 1.1 simonb
243 1.1 simonb /*
244 1.1 simonb * Cache a pointer to the caller's buffer and load the DMA map
245 1.1 simonb * with the bounce buffer.
246 1.1 simonb */
247 1.1 simonb cookie->id_origbuf = buf;
248 1.1 simonb cookie->id_origbuflen = buflen;
249 1.1 simonb cookie->id_buftype = ID_BUFTYPE_LINEAR;
250 1.1 simonb error = _bus_dmamap_load(t, map, cookie->id_bouncebuf, buflen,
251 1.1 simonb p, flags);
252 1.1 simonb if (error) {
253 1.1 simonb /*
254 1.1 simonb * Free the bounce pages, unless our resources
255 1.1 simonb * are reserved for our exclusive use.
256 1.1 simonb */
257 1.1 simonb if ((map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
258 1.1 simonb isadma_bounce_free_bouncebuf(t, map);
259 1.1 simonb return (error);
260 1.1 simonb }
261 1.1 simonb
262 1.1 simonb /* ...so isadma_bounce_dmamap_sync() knows we're bouncing */
263 1.1 simonb cookie->id_flags |= ID_IS_BOUNCING;
264 1.1 simonb return (0);
265 1.1 simonb }
266 1.1 simonb
267 1.1 simonb /*
268 1.1 simonb * Like isadma_bounce_dmamap_load(), but for mbufs.
269 1.1 simonb */
270 1.1 simonb int
271 1.1 simonb isadma_bounce_dmamap_load_mbuf(bus_dma_tag_t t, bus_dmamap_t map,
272 1.1 simonb struct mbuf *m0, int flags)
273 1.1 simonb {
274 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
275 1.1 simonb int error;
276 1.1 simonb
277 1.1 simonb /*
278 1.1 simonb * Make sure on error condition we return "no valid mappings."
279 1.1 simonb */
280 1.1 simonb map->dm_mapsize = 0;
281 1.1 simonb map->dm_nsegs = 0;
282 1.1 simonb
283 1.1 simonb #ifdef DIAGNOSTIC
284 1.1 simonb if ((m0->m_flags & M_PKTHDR) == 0)
285 1.1 simonb panic("isadma_bounce_dmamap_load_mbuf: no packet header");
286 1.1 simonb #endif
287 1.1 simonb
288 1.1 simonb if (m0->m_pkthdr.len > map->_dm_size)
289 1.1 simonb return (EINVAL);
290 1.1 simonb
291 1.1 simonb /*
292 1.1 simonb * Try to load the map the normal way. If this errors out,
293 1.1 simonb * and we can bounce, we will.
294 1.1 simonb */
295 1.1 simonb error = _bus_dmamap_load_mbuf(t, map, m0, flags);
296 1.1 simonb if (error == 0 ||
297 1.1 simonb (error != 0 && (cookie->id_flags & ID_MIGHT_NEED_BOUNCE) == 0))
298 1.1 simonb return (error);
299 1.1 simonb
300 1.1 simonb /*
301 1.1 simonb * First attempt failed; bounce it.
302 1.1 simonb */
303 1.1 simonb
304 1.1 simonb /*
305 1.1 simonb * Allocate bounce pages, if necessary.
306 1.1 simonb */
307 1.1 simonb if ((cookie->id_flags & ID_HAS_BOUNCE) == 0) {
308 1.1 simonb error = isadma_bounce_alloc_bouncebuf(t, map, m0->m_pkthdr.len,
309 1.1 simonb flags);
310 1.1 simonb if (error)
311 1.1 simonb return (error);
312 1.1 simonb }
313 1.1 simonb
314 1.1 simonb /*
315 1.1 simonb * Cache a pointer to the caller's buffer and load the DMA map
316 1.1 simonb * with the bounce buffer.
317 1.1 simonb */
318 1.1 simonb cookie->id_origbuf = m0;
319 1.1 simonb cookie->id_origbuflen = m0->m_pkthdr.len; /* not really used */
320 1.1 simonb cookie->id_buftype = ID_BUFTYPE_MBUF;
321 1.1 simonb error = _bus_dmamap_load(t, map, cookie->id_bouncebuf,
322 1.1 simonb m0->m_pkthdr.len, NULL, flags);
323 1.1 simonb if (error) {
324 1.1 simonb /*
325 1.1 simonb * Free the bounce pages, unless our resources
326 1.1 simonb * are reserved for our exclusive use.
327 1.1 simonb */
328 1.1 simonb if ((map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
329 1.1 simonb isadma_bounce_free_bouncebuf(t, map);
330 1.1 simonb return (error);
331 1.1 simonb }
332 1.1 simonb
333 1.1 simonb /* ...so isadma_bounce_dmamap_sync() knows we're bouncing */
334 1.1 simonb cookie->id_flags |= ID_IS_BOUNCING;
335 1.1 simonb return (0);
336 1.1 simonb }
337 1.1 simonb
338 1.1 simonb /*
339 1.1 simonb * Like isadma_bounce_dmamap_load(), but for uios.
340 1.1 simonb */
341 1.1 simonb int
342 1.1 simonb isadma_bounce_dmamap_load_uio(bus_dma_tag_t t, bus_dmamap_t map,
343 1.1 simonb struct uio *uio, int flags)
344 1.1 simonb {
345 1.1 simonb
346 1.1 simonb panic("isadma_bounce_dmamap_load_uio: not implemented");
347 1.1 simonb }
348 1.1 simonb
349 1.1 simonb /*
350 1.1 simonb * Like isadma_bounce_dmamap_load(), but for raw memory allocated with
351 1.1 simonb * bus_dmamem_alloc().
352 1.1 simonb */
353 1.1 simonb int
354 1.1 simonb isadma_bounce_dmamap_load_raw(bus_dma_tag_t t, bus_dmamap_t map,
355 1.1 simonb bus_dma_segment_t *segs, int nsegs, bus_size_t size, int flags)
356 1.1 simonb {
357 1.1 simonb
358 1.1 simonb panic("isadma_bounce_dmamap_load_raw: not implemented");
359 1.1 simonb }
360 1.1 simonb
361 1.1 simonb /*
362 1.1 simonb * Unload an ISA DMA map.
363 1.1 simonb */
364 1.1 simonb void
365 1.1 simonb isadma_bounce_dmamap_unload(bus_dma_tag_t t, bus_dmamap_t map)
366 1.1 simonb {
367 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
368 1.1 simonb
369 1.1 simonb /*
370 1.1 simonb * If we have bounce pages, free them, unless they're
371 1.1 simonb * reserved for our exclusive use.
372 1.1 simonb */
373 1.1 simonb if ((cookie->id_flags & ID_HAS_BOUNCE) &&
374 1.1 simonb (map->_dm_flags & BUS_DMA_ALLOCNOW) == 0)
375 1.1 simonb isadma_bounce_free_bouncebuf(t, map);
376 1.1 simonb
377 1.1 simonb cookie->id_flags &= ~ID_IS_BOUNCING;
378 1.1 simonb cookie->id_buftype = ID_BUFTYPE_INVALID;
379 1.1 simonb
380 1.1 simonb /*
381 1.1 simonb * Do the generic bits of the unload.
382 1.1 simonb */
383 1.1 simonb _bus_dmamap_unload(t, map);
384 1.1 simonb }
385 1.1 simonb
386 1.1 simonb /*
387 1.1 simonb * Synchronize an ISA DMA map.
388 1.1 simonb */
389 1.1 simonb void
390 1.1 simonb isadma_bounce_dmamap_sync(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
391 1.1 simonb bus_size_t len, int ops)
392 1.1 simonb {
393 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
394 1.1 simonb
395 1.1 simonb /*
396 1.1 simonb * Mixing PRE and POST operations is not allowed.
397 1.1 simonb */
398 1.1 simonb if ((ops & (BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)) != 0 &&
399 1.1 simonb (ops & (BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)) != 0)
400 1.1 simonb panic("isadma_bounce_dmamap_sync: mix PRE and POST");
401 1.1 simonb
402 1.1 simonb #ifdef DIAGNOSTIC
403 1.1 simonb if ((ops & (BUS_DMASYNC_PREWRITE|BUS_DMASYNC_POSTREAD)) != 0) {
404 1.1 simonb if (offset >= map->dm_mapsize)
405 1.1 simonb panic("isadma_bounce_dmamap_sync: bad offset");
406 1.1 simonb if (len == 0 || (offset + len) > map->dm_mapsize)
407 1.1 simonb panic("isadma_bounce_dmamap_sync: bad length");
408 1.1 simonb }
409 1.1 simonb #endif
410 1.1 simonb
411 1.1 simonb /*
412 1.1 simonb * If we're not bouncing, just do the normal sync operation
413 1.1 simonb * and return.
414 1.1 simonb */
415 1.1 simonb if ((cookie->id_flags & ID_IS_BOUNCING) == 0) {
416 1.1 simonb _bus_dmamap_sync(t, map, offset, len, ops);
417 1.1 simonb return;
418 1.1 simonb }
419 1.1 simonb
420 1.1 simonb /*
421 1.1 simonb * Flush data cache for PREREAD. This has the side-effect
422 1.1 simonb * of invalidating the cache. Done at PREREAD since it
423 1.1 simonb * causes the cache line(s) to be written back to memory.
424 1.1 simonb *
425 1.1 simonb * Copy the original buffer to the bounce buffer and flush
426 1.1 simonb * the data cache for PREWRITE, so that the contents
427 1.1 simonb * of the data buffer in memory reflect reality.
428 1.1 simonb *
429 1.1 simonb * Copy the bounce buffer to the original buffer in POSTREAD.
430 1.1 simonb */
431 1.1 simonb
432 1.1 simonb switch (cookie->id_buftype) {
433 1.1 simonb case ID_BUFTYPE_LINEAR:
434 1.1 simonb /*
435 1.1 simonb * Nothing to do for pre-read.
436 1.1 simonb */
437 1.1 simonb
438 1.1 simonb if (ops & BUS_DMASYNC_PREWRITE) {
439 1.1 simonb /*
440 1.1 simonb * Copy the caller's buffer to the bounce buffer.
441 1.1 simonb */
442 1.1 simonb memcpy((char *)cookie->id_bouncebuf + offset,
443 1.1 simonb (char *)cookie->id_origbuf + offset, len);
444 1.1 simonb wbflush();
445 1.1 simonb }
446 1.1 simonb
447 1.1 simonb if (ops & BUS_DMASYNC_POSTREAD) {
448 1.1 simonb /*
449 1.1 simonb * Copy the bounce buffer to the caller's buffer.
450 1.1 simonb */
451 1.1 simonb memcpy((char *)cookie->id_origbuf + offset,
452 1.1 simonb (char *)cookie->id_bouncebuf + offset, len);
453 1.1 simonb }
454 1.1 simonb
455 1.1 simonb /*
456 1.1 simonb * Nothing to do for post-write.
457 1.1 simonb */
458 1.1 simonb break;
459 1.1 simonb
460 1.1 simonb case ID_BUFTYPE_MBUF:
461 1.1 simonb {
462 1.1 simonb struct mbuf *m, *m0 = cookie->id_origbuf;
463 1.1 simonb bus_size_t minlen, moff;
464 1.1 simonb
465 1.1 simonb /*
466 1.1 simonb * Nothing to do for pre-read.
467 1.1 simonb */
468 1.1 simonb
469 1.1 simonb if (ops & BUS_DMASYNC_PREWRITE) {
470 1.1 simonb /*
471 1.1 simonb * Copy the caller's buffer to the bounce buffer.
472 1.1 simonb */
473 1.1 simonb m_copydata(m0, offset, len,
474 1.1 simonb (char *)cookie->id_bouncebuf + offset);
475 1.1 simonb }
476 1.1 simonb
477 1.1 simonb if (ops & BUS_DMASYNC_POSTREAD) {
478 1.1 simonb /*
479 1.1 simonb * Copy the bounce buffer to the caller's buffer.
480 1.1 simonb */
481 1.1 simonb for (moff = offset, m = m0; m != NULL && len != 0;
482 1.1 simonb m = m->m_next) {
483 1.1 simonb /* Find the beginning mbuf. */
484 1.1 simonb if (moff >= m->m_len) {
485 1.1 simonb moff -= m->m_len;
486 1.1 simonb continue;
487 1.1 simonb }
488 1.1 simonb
489 1.1 simonb /*
490 1.1 simonb * Now at the first mbuf to sync; nail
491 1.1 simonb * each one until we have exhausted the
492 1.1 simonb * length.
493 1.1 simonb */
494 1.1 simonb minlen = len < m->m_len - moff ?
495 1.1 simonb len : m->m_len - moff;
496 1.1 simonb
497 1.6 christos memcpy(mtod(m, void *) + moff,
498 1.1 simonb (char *)cookie->id_bouncebuf + offset,
499 1.1 simonb minlen);
500 1.1 simonb
501 1.1 simonb moff = 0;
502 1.1 simonb len -= minlen;
503 1.1 simonb offset += minlen;
504 1.1 simonb }
505 1.1 simonb }
506 1.1 simonb
507 1.1 simonb /*
508 1.1 simonb * Nothing to do for post-write.
509 1.1 simonb */
510 1.1 simonb break;
511 1.1 simonb }
512 1.1 simonb
513 1.1 simonb case ID_BUFTYPE_UIO:
514 1.1 simonb panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_UIO");
515 1.1 simonb break;
516 1.1 simonb
517 1.1 simonb case ID_BUFTYPE_RAW:
518 1.1 simonb panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_RAW");
519 1.1 simonb break;
520 1.1 simonb
521 1.1 simonb case ID_BUFTYPE_INVALID:
522 1.1 simonb panic("isadma_bounce_dmamap_sync: ID_BUFTYPE_INVALID");
523 1.1 simonb break;
524 1.1 simonb
525 1.1 simonb default:
526 1.1 simonb printf("unknown buffer type %d\n", cookie->id_buftype);
527 1.1 simonb panic("isadma_bounce_dmamap_sync");
528 1.1 simonb }
529 1.1 simonb
530 1.1 simonb /* Drain the write buffer. */
531 1.1 simonb wbflush();
532 1.1 simonb
533 1.1 simonb /* XXXJRT */
534 1.1 simonb if (ops & (BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE))
535 1.1 simonb mips_dcache_wbinv_range((vaddr_t)cookie->id_bouncebuf + offset,
536 1.1 simonb len);
537 1.1 simonb }
538 1.1 simonb
539 1.1 simonb /*
540 1.1 simonb * Allocate memory safe for ISA DMA.
541 1.1 simonb */
542 1.1 simonb int
543 1.1 simonb isadma_bounce_dmamem_alloc(bus_dma_tag_t t, bus_size_t size,
544 1.1 simonb bus_size_t alignment, bus_size_t boundary, bus_dma_segment_t *segs,
545 1.1 simonb int nsegs, int *rsegs, int flags)
546 1.1 simonb {
547 1.1 simonb paddr_t high;
548 1.1 simonb
549 1.1 simonb if (avail_end > ISA_DMA_BOUNCE_THRESHOLD)
550 1.1 simonb high = trunc_page(ISA_DMA_BOUNCE_THRESHOLD);
551 1.1 simonb else
552 1.1 simonb high = trunc_page(avail_end);
553 1.1 simonb
554 1.1 simonb return (_bus_dmamem_alloc_range(t, size, alignment, boundary,
555 1.1 simonb segs, nsegs, rsegs, flags, 0, high));
556 1.1 simonb }
557 1.1 simonb
558 1.1 simonb /**********************************************************************
559 1.1 simonb * ISA DMA utility functions
560 1.1 simonb **********************************************************************/
561 1.1 simonb
562 1.1 simonb int
563 1.1 simonb isadma_bounce_alloc_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map,
564 1.1 simonb bus_size_t size, int flags)
565 1.1 simonb {
566 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
567 1.1 simonb int error = 0;
568 1.1 simonb
569 1.1 simonb cookie->id_bouncebuflen = round_page(size);
570 1.1 simonb error = isadma_bounce_dmamem_alloc(t, cookie->id_bouncebuflen,
571 1.1 simonb PAGE_SIZE, map->_dm_boundary, cookie->id_bouncesegs,
572 1.1 simonb map->_dm_segcnt, &cookie->id_nbouncesegs, flags);
573 1.1 simonb if (error)
574 1.1 simonb goto out;
575 1.1 simonb error = _bus_dmamem_map(t, cookie->id_bouncesegs,
576 1.1 simonb cookie->id_nbouncesegs, cookie->id_bouncebuflen,
577 1.6 christos (void **)&cookie->id_bouncebuf, flags);
578 1.1 simonb
579 1.1 simonb out:
580 1.1 simonb if (error) {
581 1.1 simonb _bus_dmamem_free(t, cookie->id_bouncesegs,
582 1.1 simonb cookie->id_nbouncesegs);
583 1.1 simonb cookie->id_bouncebuflen = 0;
584 1.1 simonb cookie->id_nbouncesegs = 0;
585 1.1 simonb } else
586 1.1 simonb cookie->id_flags |= ID_HAS_BOUNCE;
587 1.1 simonb
588 1.1 simonb return (error);
589 1.1 simonb }
590 1.1 simonb
591 1.1 simonb void
592 1.1 simonb isadma_bounce_free_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map)
593 1.1 simonb {
594 1.1 simonb struct isadma_bounce_cookie *cookie = map->_dm_cookie;
595 1.1 simonb
596 1.1 simonb _bus_dmamem_unmap(t, cookie->id_bouncebuf,
597 1.1 simonb cookie->id_bouncebuflen);
598 1.1 simonb _bus_dmamem_free(t, cookie->id_bouncesegs,
599 1.1 simonb cookie->id_nbouncesegs);
600 1.1 simonb cookie->id_bouncebuflen = 0;
601 1.1 simonb cookie->id_nbouncesegs = 0;
602 1.1 simonb cookie->id_flags &= ~ID_HAS_BOUNCE;
603 1.1 simonb }
604