bus_dma.c revision 1.60 1 1.60 matt /* $NetBSD: bus_dma.c,v 1.60 2012/10/06 02:58:39 matt Exp $ */
2 1.1 chris
3 1.1 chris /*-
4 1.1 chris * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 1.1 chris * All rights reserved.
6 1.1 chris *
7 1.1 chris * This code is derived from software contributed to The NetBSD Foundation
8 1.1 chris * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 chris * NASA Ames Research Center.
10 1.1 chris *
11 1.1 chris * Redistribution and use in source and binary forms, with or without
12 1.1 chris * modification, are permitted provided that the following conditions
13 1.1 chris * are met:
14 1.1 chris * 1. Redistributions of source code must retain the above copyright
15 1.1 chris * notice, this list of conditions and the following disclaimer.
16 1.1 chris * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 chris * notice, this list of conditions and the following disclaimer in the
18 1.1 chris * documentation and/or other materials provided with the distribution.
19 1.1 chris *
20 1.1 chris * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
21 1.1 chris * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
22 1.1 chris * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23 1.1 chris * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
24 1.1 chris * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25 1.1 chris * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 1.1 chris * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 1.1 chris * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 1.1 chris * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 1.1 chris * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 1.1 chris * POSSIBILITY OF SUCH DAMAGE.
31 1.1 chris */
32 1.33 lukem
33 1.35 rearnsha #define _ARM32_BUS_DMA_PRIVATE
34 1.35 rearnsha
35 1.33 lukem #include <sys/cdefs.h>
36 1.60 matt __KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.60 2012/10/06 02:58:39 matt Exp $");
37 1.1 chris
38 1.1 chris #include <sys/param.h>
39 1.1 chris #include <sys/systm.h>
40 1.1 chris #include <sys/kernel.h>
41 1.1 chris #include <sys/proc.h>
42 1.1 chris #include <sys/buf.h>
43 1.1 chris #include <sys/reboot.h>
44 1.1 chris #include <sys/conf.h>
45 1.1 chris #include <sys/file.h>
46 1.1 chris #include <sys/malloc.h>
47 1.1 chris #include <sys/mbuf.h>
48 1.1 chris #include <sys/vnode.h>
49 1.1 chris #include <sys/device.h>
50 1.1 chris
51 1.53 uebayasi #include <uvm/uvm.h>
52 1.1 chris
53 1.54 dyoung #include <sys/bus.h>
54 1.1 chris #include <machine/cpu.h>
55 1.4 thorpej
56 1.4 thorpej #include <arm/cpufunc.h>
57 1.1 chris
58 1.58 matt static struct evcnt bus_dma_creates =
59 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "creates");
60 1.58 matt static struct evcnt bus_dma_bounced_creates =
61 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "bounced creates");
62 1.58 matt static struct evcnt bus_dma_loads =
63 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "loads");
64 1.58 matt static struct evcnt bus_dma_bounced_loads =
65 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "bounced loads");
66 1.58 matt static struct evcnt bus_dma_read_bounces =
67 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "read bounces");
68 1.58 matt static struct evcnt bus_dma_write_bounces =
69 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "write bounces");
70 1.58 matt static struct evcnt bus_dma_bounced_unloads =
71 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "bounced unloads");
72 1.58 matt static struct evcnt bus_dma_unloads =
73 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "unloads");
74 1.58 matt static struct evcnt bus_dma_bounced_destroys =
75 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "bounced destroys");
76 1.58 matt static struct evcnt bus_dma_destroys =
77 1.58 matt EVCNT_INITIALIZER(EVCNT_TYPE_MISC, NULL, "busdma", "destroys");
78 1.58 matt
79 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_creates);
80 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_bounced_creates);
81 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_loads);
82 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_bounced_loads);
83 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_read_bounces);
84 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_write_bounces);
85 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_unloads);
86 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_bounced_unloads);
87 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_destroys);
88 1.58 matt EVCNT_ATTACH_STATIC(bus_dma_bounced_destroys);
89 1.58 matt
90 1.58 matt #define STAT_INCR(x) (bus_dma_ ## x.ev_count++)
91 1.58 matt
92 1.7 thorpej int _bus_dmamap_load_buffer(bus_dma_tag_t, bus_dmamap_t, void *,
93 1.48 yamt bus_size_t, struct vmspace *, int);
94 1.58 matt static struct arm32_dma_range *
95 1.59 matt _bus_dma_paddr_inrange(struct arm32_dma_range *, int, paddr_t);
96 1.1 chris
97 1.1 chris /*
98 1.19 briggs * Check to see if the specified page is in an allowed DMA range.
99 1.19 briggs */
100 1.47 perry inline struct arm32_dma_range *
101 1.59 matt _bus_dma_paddr_inrange(struct arm32_dma_range *ranges, int nranges,
102 1.19 briggs bus_addr_t curaddr)
103 1.19 briggs {
104 1.19 briggs struct arm32_dma_range *dr;
105 1.19 briggs int i;
106 1.19 briggs
107 1.19 briggs for (i = 0, dr = ranges; i < nranges; i++, dr++) {
108 1.19 briggs if (curaddr >= dr->dr_sysbase &&
109 1.19 briggs round_page(curaddr) <= (dr->dr_sysbase + dr->dr_len))
110 1.19 briggs return (dr);
111 1.19 briggs }
112 1.19 briggs
113 1.19 briggs return (NULL);
114 1.19 briggs }
115 1.19 briggs
116 1.19 briggs /*
117 1.59 matt * Check to see if the specified busaddr is in an allowed DMA range.
118 1.59 matt */
119 1.59 matt static inline paddr_t
120 1.59 matt _bus_dma_busaddr_to_paddr(bus_dma_tag_t t, bus_addr_t curaddr)
121 1.59 matt {
122 1.59 matt struct arm32_dma_range *dr;
123 1.59 matt u_int i;
124 1.59 matt
125 1.59 matt if (t->_nranges == 0)
126 1.59 matt return curaddr;
127 1.59 matt
128 1.59 matt for (i = 0, dr = t->_ranges; i < t->_nranges; i++, dr++) {
129 1.59 matt if (dr->dr_busbase <= curaddr
130 1.59 matt && round_page(curaddr) <= dr->dr_busbase + dr->dr_len)
131 1.59 matt return curaddr - dr->dr_busbase + dr->dr_sysbase;
132 1.59 matt }
133 1.59 matt panic("%s: curaddr %#lx not in range", __func__, curaddr);
134 1.59 matt }
135 1.59 matt
136 1.59 matt /*
137 1.41 thorpej * Common function to load the specified physical address into the
138 1.41 thorpej * DMA map, coalescing segments and boundary checking as necessary.
139 1.41 thorpej */
140 1.41 thorpej static int
141 1.41 thorpej _bus_dmamap_load_paddr(bus_dma_tag_t t, bus_dmamap_t map,
142 1.41 thorpej bus_addr_t paddr, bus_size_t size)
143 1.41 thorpej {
144 1.41 thorpej bus_dma_segment_t * const segs = map->dm_segs;
145 1.41 thorpej int nseg = map->dm_nsegs;
146 1.58 matt bus_addr_t lastaddr;
147 1.41 thorpej bus_addr_t bmask = ~(map->_dm_boundary - 1);
148 1.41 thorpej bus_addr_t curaddr;
149 1.41 thorpej bus_size_t sgsize;
150 1.41 thorpej
151 1.41 thorpej if (nseg > 0)
152 1.41 thorpej lastaddr = segs[nseg-1].ds_addr + segs[nseg-1].ds_len;
153 1.58 matt else
154 1.58 matt lastaddr = 0xdead;
155 1.58 matt
156 1.41 thorpej again:
157 1.41 thorpej sgsize = size;
158 1.41 thorpej
159 1.41 thorpej /* Make sure we're in an allowed DMA range. */
160 1.41 thorpej if (t->_ranges != NULL) {
161 1.41 thorpej /* XXX cache last result? */
162 1.41 thorpej const struct arm32_dma_range * const dr =
163 1.59 matt _bus_dma_paddr_inrange(t->_ranges, t->_nranges, paddr);
164 1.41 thorpej if (dr == NULL)
165 1.41 thorpej return (EINVAL);
166 1.41 thorpej
167 1.41 thorpej /*
168 1.41 thorpej * In a valid DMA range. Translate the physical
169 1.41 thorpej * memory address to an address in the DMA window.
170 1.41 thorpej */
171 1.41 thorpej curaddr = (paddr - dr->dr_sysbase) + dr->dr_busbase;
172 1.41 thorpej } else
173 1.41 thorpej curaddr = paddr;
174 1.41 thorpej
175 1.41 thorpej /*
176 1.41 thorpej * Make sure we don't cross any boundaries.
177 1.41 thorpej */
178 1.41 thorpej if (map->_dm_boundary > 0) {
179 1.41 thorpej bus_addr_t baddr; /* next boundary address */
180 1.41 thorpej
181 1.41 thorpej baddr = (curaddr + map->_dm_boundary) & bmask;
182 1.41 thorpej if (sgsize > (baddr - curaddr))
183 1.41 thorpej sgsize = (baddr - curaddr);
184 1.41 thorpej }
185 1.41 thorpej
186 1.41 thorpej /*
187 1.41 thorpej * Insert chunk into a segment, coalescing with the
188 1.41 thorpej * previous segment if possible.
189 1.41 thorpej */
190 1.41 thorpej if (nseg > 0 && curaddr == lastaddr &&
191 1.43 matt segs[nseg-1].ds_len + sgsize <= map->dm_maxsegsz &&
192 1.41 thorpej (map->_dm_boundary == 0 ||
193 1.41 thorpej (segs[nseg-1].ds_addr & bmask) == (curaddr & bmask))) {
194 1.41 thorpej /* coalesce */
195 1.41 thorpej segs[nseg-1].ds_len += sgsize;
196 1.41 thorpej } else if (nseg >= map->_dm_segcnt) {
197 1.41 thorpej return (EFBIG);
198 1.41 thorpej } else {
199 1.41 thorpej /* new segment */
200 1.41 thorpej segs[nseg].ds_addr = curaddr;
201 1.41 thorpej segs[nseg].ds_len = sgsize;
202 1.41 thorpej nseg++;
203 1.41 thorpej }
204 1.41 thorpej
205 1.41 thorpej lastaddr = curaddr + sgsize;
206 1.41 thorpej
207 1.41 thorpej paddr += sgsize;
208 1.41 thorpej size -= sgsize;
209 1.41 thorpej if (size > 0)
210 1.41 thorpej goto again;
211 1.41 thorpej
212 1.41 thorpej map->dm_nsegs = nseg;
213 1.41 thorpej return (0);
214 1.41 thorpej }
215 1.41 thorpej
216 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
217 1.58 matt static int _bus_dma_alloc_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map,
218 1.58 matt bus_size_t size, int flags);
219 1.58 matt static void _bus_dma_free_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map);
220 1.58 matt static int _bus_dma_uiomove(void *buf, struct uio *uio, size_t n,
221 1.58 matt int direction);
222 1.58 matt
223 1.58 matt static int
224 1.58 matt _bus_dma_load_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
225 1.58 matt size_t buflen, int buftype, int flags)
226 1.58 matt {
227 1.58 matt struct arm32_bus_dma_cookie * const cookie = map->_dm_cookie;
228 1.58 matt struct vmspace * const vm = vmspace_kernel();
229 1.58 matt int error;
230 1.58 matt
231 1.58 matt KASSERT(cookie != NULL);
232 1.58 matt KASSERT(cookie->id_flags & _BUS_DMA_MIGHT_NEED_BOUNCE);
233 1.58 matt
234 1.58 matt /*
235 1.58 matt * Allocate bounce pages, if necessary.
236 1.58 matt */
237 1.58 matt if ((cookie->id_flags & _BUS_DMA_HAS_BOUNCE) == 0) {
238 1.58 matt error = _bus_dma_alloc_bouncebuf(t, map, buflen, flags);
239 1.58 matt if (error)
240 1.58 matt return (error);
241 1.58 matt }
242 1.58 matt
243 1.58 matt /*
244 1.58 matt * Cache a pointer to the caller's buffer and load the DMA map
245 1.58 matt * with the bounce buffer.
246 1.58 matt */
247 1.58 matt cookie->id_origbuf = buf;
248 1.58 matt cookie->id_origbuflen = buflen;
249 1.58 matt error = _bus_dmamap_load_buffer(t, map, cookie->id_bouncebuf,
250 1.58 matt buflen, vm, flags);
251 1.58 matt if (error)
252 1.58 matt return (error);
253 1.58 matt
254 1.58 matt STAT_INCR(bounced_loads);
255 1.58 matt map->dm_mapsize = buflen;
256 1.58 matt map->_dm_vmspace = vm;
257 1.58 matt map->_dm_buftype = buftype;
258 1.58 matt
259 1.58 matt /* ...so _bus_dmamap_sync() knows we're bouncing */
260 1.58 matt cookie->id_flags |= _BUS_DMA_IS_BOUNCING;
261 1.58 matt return 0;
262 1.58 matt }
263 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
264 1.58 matt
265 1.41 thorpej /*
266 1.1 chris * Common function for DMA map creation. May be called by bus-specific
267 1.1 chris * DMA map creation functions.
268 1.1 chris */
269 1.1 chris int
270 1.7 thorpej _bus_dmamap_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
271 1.7 thorpej bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamp)
272 1.1 chris {
273 1.1 chris struct arm32_bus_dmamap *map;
274 1.1 chris void *mapstore;
275 1.1 chris size_t mapsize;
276 1.1 chris
277 1.1 chris #ifdef DEBUG_DMA
278 1.1 chris printf("dmamap_create: t=%p size=%lx nseg=%x msegsz=%lx boundary=%lx flags=%x\n",
279 1.1 chris t, size, nsegments, maxsegsz, boundary, flags);
280 1.1 chris #endif /* DEBUG_DMA */
281 1.1 chris
282 1.1 chris /*
283 1.1 chris * Allocate and initialize the DMA map. The end of the map
284 1.1 chris * is a variable-sized array of segments, so we allocate enough
285 1.1 chris * room for them in one shot.
286 1.1 chris *
287 1.1 chris * Note we don't preserve the WAITOK or NOWAIT flags. Preservation
288 1.1 chris * of ALLOCNOW notifies others that we've reserved these resources,
289 1.1 chris * and they are not to be freed.
290 1.1 chris *
291 1.1 chris * The bus_dmamap_t includes one bus_dma_segment_t, hence
292 1.1 chris * the (nsegments - 1).
293 1.1 chris */
294 1.1 chris mapsize = sizeof(struct arm32_bus_dmamap) +
295 1.1 chris (sizeof(bus_dma_segment_t) * (nsegments - 1));
296 1.58 matt const int mallocflags = M_ZERO|(flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK;
297 1.58 matt if ((mapstore = malloc(mapsize, M_DMAMAP, mallocflags)) == NULL)
298 1.1 chris return (ENOMEM);
299 1.1 chris
300 1.1 chris map = (struct arm32_bus_dmamap *)mapstore;
301 1.1 chris map->_dm_size = size;
302 1.1 chris map->_dm_segcnt = nsegments;
303 1.43 matt map->_dm_maxmaxsegsz = maxsegsz;
304 1.1 chris map->_dm_boundary = boundary;
305 1.1 chris map->_dm_flags = flags & ~(BUS_DMA_WAITOK|BUS_DMA_NOWAIT);
306 1.14 thorpej map->_dm_origbuf = NULL;
307 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_INVALID;
308 1.48 yamt map->_dm_vmspace = vmspace_kernel();
309 1.58 matt map->_dm_cookie = NULL;
310 1.43 matt map->dm_maxsegsz = maxsegsz;
311 1.1 chris map->dm_mapsize = 0; /* no valid mappings */
312 1.1 chris map->dm_nsegs = 0;
313 1.1 chris
314 1.1 chris *dmamp = map;
315 1.58 matt
316 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
317 1.58 matt struct arm32_bus_dma_cookie *cookie;
318 1.58 matt int cookieflags;
319 1.58 matt void *cookiestore;
320 1.58 matt size_t cookiesize;
321 1.58 matt int error;
322 1.58 matt
323 1.58 matt cookieflags = 0;
324 1.58 matt
325 1.58 matt if (t->_may_bounce != NULL) {
326 1.58 matt error = (*t->_may_bounce)(t, map, flags, &cookieflags);
327 1.58 matt if (error != 0)
328 1.58 matt goto out;
329 1.58 matt }
330 1.58 matt
331 1.58 matt if (t->_ranges != NULL)
332 1.58 matt cookieflags |= _BUS_DMA_MIGHT_NEED_BOUNCE;
333 1.58 matt
334 1.58 matt if ((cookieflags & _BUS_DMA_MIGHT_NEED_BOUNCE) == 0) {
335 1.58 matt STAT_INCR(creates);
336 1.58 matt return 0;
337 1.58 matt }
338 1.58 matt
339 1.58 matt cookiesize = sizeof(struct arm32_bus_dma_cookie) +
340 1.58 matt (sizeof(bus_dma_segment_t) * map->_dm_segcnt);
341 1.58 matt
342 1.58 matt /*
343 1.58 matt * Allocate our cookie.
344 1.58 matt */
345 1.58 matt if ((cookiestore = malloc(cookiesize, M_DMAMAP, mallocflags)) == NULL) {
346 1.58 matt error = ENOMEM;
347 1.58 matt goto out;
348 1.58 matt }
349 1.58 matt cookie = (struct arm32_bus_dma_cookie *)cookiestore;
350 1.58 matt cookie->id_flags = cookieflags;
351 1.58 matt map->_dm_cookie = cookie;
352 1.58 matt STAT_INCR(bounced_creates);
353 1.58 matt
354 1.58 matt error = _bus_dma_alloc_bouncebuf(t, map, size, flags);
355 1.58 matt out:
356 1.58 matt if (error)
357 1.58 matt _bus_dmamap_destroy(t, map);
358 1.58 matt #else
359 1.58 matt STAT_INCR(creates);
360 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
361 1.58 matt
362 1.1 chris #ifdef DEBUG_DMA
363 1.1 chris printf("dmamap_create:map=%p\n", map);
364 1.1 chris #endif /* DEBUG_DMA */
365 1.1 chris return (0);
366 1.1 chris }
367 1.1 chris
368 1.1 chris /*
369 1.1 chris * Common function for DMA map destruction. May be called by bus-specific
370 1.1 chris * DMA map destruction functions.
371 1.1 chris */
372 1.1 chris void
373 1.7 thorpej _bus_dmamap_destroy(bus_dma_tag_t t, bus_dmamap_t map)
374 1.1 chris {
375 1.1 chris
376 1.1 chris #ifdef DEBUG_DMA
377 1.1 chris printf("dmamap_destroy: t=%p map=%p\n", t, map);
378 1.1 chris #endif /* DEBUG_DMA */
379 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
380 1.58 matt struct arm32_bus_dma_cookie *cookie = map->_dm_cookie;
381 1.13 briggs
382 1.13 briggs /*
383 1.58 matt * Free any bounce pages this map might hold.
384 1.13 briggs */
385 1.58 matt if (cookie != NULL) {
386 1.58 matt if (cookie->id_flags & _BUS_DMA_IS_BOUNCING)
387 1.58 matt STAT_INCR(bounced_unloads);
388 1.58 matt map->dm_nsegs = 0;
389 1.58 matt if (cookie->id_flags & _BUS_DMA_HAS_BOUNCE)
390 1.58 matt _bus_dma_free_bouncebuf(t, map);
391 1.58 matt STAT_INCR(bounced_destroys);
392 1.58 matt free(cookie, M_DMAMAP);
393 1.58 matt } else
394 1.58 matt #endif
395 1.58 matt STAT_INCR(destroys);
396 1.58 matt
397 1.58 matt if (map->dm_nsegs > 0)
398 1.58 matt STAT_INCR(unloads);
399 1.13 briggs
400 1.25 chris free(map, M_DMAMAP);
401 1.1 chris }
402 1.1 chris
403 1.1 chris /*
404 1.1 chris * Common function for loading a DMA map with a linear buffer. May
405 1.1 chris * be called by bus-specific DMA map load functions.
406 1.1 chris */
407 1.1 chris int
408 1.7 thorpej _bus_dmamap_load(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
409 1.7 thorpej bus_size_t buflen, struct proc *p, int flags)
410 1.1 chris {
411 1.58 matt struct vmspace *vm;
412 1.41 thorpej int error;
413 1.1 chris
414 1.1 chris #ifdef DEBUG_DMA
415 1.1 chris printf("dmamap_load: t=%p map=%p buf=%p len=%lx p=%p f=%d\n",
416 1.1 chris t, map, buf, buflen, p, flags);
417 1.1 chris #endif /* DEBUG_DMA */
418 1.1 chris
419 1.58 matt if (map->dm_nsegs > 0) {
420 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
421 1.58 matt struct arm32_bus_dma_cookie *cookie = map->_dm_cookie;
422 1.58 matt if (cookie != NULL) {
423 1.58 matt if (cookie->id_flags & _BUS_DMA_IS_BOUNCING) {
424 1.58 matt STAT_INCR(bounced_unloads);
425 1.58 matt cookie->id_flags &= ~_BUS_DMA_IS_BOUNCING;
426 1.58 matt }
427 1.58 matt } else
428 1.58 matt #endif
429 1.58 matt STAT_INCR(unloads);
430 1.58 matt }
431 1.58 matt
432 1.1 chris /*
433 1.1 chris * Make sure that on error condition we return "no valid mappings".
434 1.1 chris */
435 1.1 chris map->dm_mapsize = 0;
436 1.1 chris map->dm_nsegs = 0;
437 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_INVALID;
438 1.43 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
439 1.1 chris
440 1.1 chris if (buflen > map->_dm_size)
441 1.1 chris return (EINVAL);
442 1.1 chris
443 1.48 yamt if (p != NULL) {
444 1.48 yamt vm = p->p_vmspace;
445 1.48 yamt } else {
446 1.48 yamt vm = vmspace_kernel();
447 1.48 yamt }
448 1.48 yamt
449 1.17 thorpej /* _bus_dmamap_load_buffer() clears this if we're not... */
450 1.58 matt map->_dm_flags |= _BUS_DMAMAP_COHERENT;
451 1.17 thorpej
452 1.48 yamt error = _bus_dmamap_load_buffer(t, map, buf, buflen, vm, flags);
453 1.1 chris if (error == 0) {
454 1.1 chris map->dm_mapsize = buflen;
455 1.58 matt map->_dm_vmspace = vm;
456 1.14 thorpej map->_dm_origbuf = buf;
457 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_LINEAR;
458 1.58 matt return 0;
459 1.1 chris }
460 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
461 1.58 matt struct arm32_bus_dma_cookie * const cookie = map->_dm_cookie;
462 1.58 matt if (cookie != NULL && (cookie->id_flags & _BUS_DMA_MIGHT_NEED_BOUNCE)) {
463 1.58 matt error = _bus_dma_load_bouncebuf(t, map, buf, buflen,
464 1.58 matt _BUS_DMA_BUFTYPE_LINEAR, flags);
465 1.58 matt }
466 1.58 matt #endif
467 1.1 chris return (error);
468 1.1 chris }
469 1.1 chris
470 1.1 chris /*
471 1.1 chris * Like _bus_dmamap_load(), but for mbufs.
472 1.1 chris */
473 1.1 chris int
474 1.7 thorpej _bus_dmamap_load_mbuf(bus_dma_tag_t t, bus_dmamap_t map, struct mbuf *m0,
475 1.7 thorpej int flags)
476 1.1 chris {
477 1.41 thorpej int error;
478 1.1 chris struct mbuf *m;
479 1.1 chris
480 1.1 chris #ifdef DEBUG_DMA
481 1.1 chris printf("dmamap_load_mbuf: t=%p map=%p m0=%p f=%d\n",
482 1.1 chris t, map, m0, flags);
483 1.1 chris #endif /* DEBUG_DMA */
484 1.1 chris
485 1.58 matt if (map->dm_nsegs > 0) {
486 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
487 1.58 matt struct arm32_bus_dma_cookie *cookie = map->_dm_cookie;
488 1.58 matt if (cookie != NULL) {
489 1.58 matt if (cookie->id_flags & _BUS_DMA_IS_BOUNCING) {
490 1.58 matt STAT_INCR(bounced_unloads);
491 1.58 matt cookie->id_flags &= ~_BUS_DMA_IS_BOUNCING;
492 1.58 matt }
493 1.58 matt } else
494 1.58 matt #endif
495 1.58 matt STAT_INCR(unloads);
496 1.58 matt }
497 1.58 matt
498 1.1 chris /*
499 1.1 chris * Make sure that on error condition we return "no valid mappings."
500 1.1 chris */
501 1.1 chris map->dm_mapsize = 0;
502 1.1 chris map->dm_nsegs = 0;
503 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_INVALID;
504 1.43 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
505 1.1 chris
506 1.1 chris #ifdef DIAGNOSTIC
507 1.1 chris if ((m0->m_flags & M_PKTHDR) == 0)
508 1.1 chris panic("_bus_dmamap_load_mbuf: no packet header");
509 1.1 chris #endif /* DIAGNOSTIC */
510 1.1 chris
511 1.1 chris if (m0->m_pkthdr.len > map->_dm_size)
512 1.1 chris return (EINVAL);
513 1.1 chris
514 1.28 thorpej /*
515 1.28 thorpej * Mbuf chains should almost never have coherent (i.e.
516 1.28 thorpej * un-cached) mappings, so clear that flag now.
517 1.28 thorpej */
518 1.58 matt map->_dm_flags &= ~_BUS_DMAMAP_COHERENT;
519 1.17 thorpej
520 1.1 chris error = 0;
521 1.1 chris for (m = m0; m != NULL && error == 0; m = m->m_next) {
522 1.41 thorpej int offset;
523 1.41 thorpej int remainbytes;
524 1.41 thorpej const struct vm_page * const *pgs;
525 1.41 thorpej paddr_t paddr;
526 1.41 thorpej int size;
527 1.41 thorpej
528 1.28 thorpej if (m->m_len == 0)
529 1.28 thorpej continue;
530 1.57 matt /*
531 1.57 matt * Don't allow reads in read-only mbufs.
532 1.57 matt */
533 1.57 matt if (M_ROMAP(m) && (flags & BUS_DMA_READ)) {
534 1.57 matt error = EFAULT;
535 1.57 matt break;
536 1.57 matt }
537 1.41 thorpej switch (m->m_flags & (M_EXT|M_CLUSTER|M_EXT_PAGES)) {
538 1.28 thorpej case M_EXT|M_CLUSTER:
539 1.28 thorpej /* XXX KDASSERT */
540 1.28 thorpej KASSERT(m->m_ext.ext_paddr != M_PADDR_INVALID);
541 1.41 thorpej paddr = m->m_ext.ext_paddr +
542 1.28 thorpej (m->m_data - m->m_ext.ext_buf);
543 1.41 thorpej size = m->m_len;
544 1.41 thorpej error = _bus_dmamap_load_paddr(t, map, paddr, size);
545 1.41 thorpej break;
546 1.41 thorpej
547 1.41 thorpej case M_EXT|M_EXT_PAGES:
548 1.41 thorpej KASSERT(m->m_ext.ext_buf <= m->m_data);
549 1.41 thorpej KASSERT(m->m_data <=
550 1.41 thorpej m->m_ext.ext_buf + m->m_ext.ext_size);
551 1.41 thorpej
552 1.41 thorpej offset = (vaddr_t)m->m_data -
553 1.41 thorpej trunc_page((vaddr_t)m->m_ext.ext_buf);
554 1.41 thorpej remainbytes = m->m_len;
555 1.41 thorpej
556 1.41 thorpej /* skip uninteresting pages */
557 1.41 thorpej pgs = (const struct vm_page * const *)
558 1.41 thorpej m->m_ext.ext_pgs + (offset >> PAGE_SHIFT);
559 1.41 thorpej
560 1.41 thorpej offset &= PAGE_MASK; /* offset in the first page */
561 1.41 thorpej
562 1.41 thorpej /* load each page */
563 1.41 thorpej while (remainbytes > 0) {
564 1.41 thorpej const struct vm_page *pg;
565 1.41 thorpej
566 1.41 thorpej size = MIN(remainbytes, PAGE_SIZE - offset);
567 1.41 thorpej
568 1.41 thorpej pg = *pgs++;
569 1.41 thorpej KASSERT(pg);
570 1.41 thorpej paddr = VM_PAGE_TO_PHYS(pg) + offset;
571 1.41 thorpej
572 1.41 thorpej error = _bus_dmamap_load_paddr(t, map,
573 1.41 thorpej paddr, size);
574 1.41 thorpej if (error)
575 1.28 thorpej break;
576 1.41 thorpej offset = 0;
577 1.41 thorpej remainbytes -= size;
578 1.28 thorpej }
579 1.28 thorpej break;
580 1.28 thorpej
581 1.28 thorpej case 0:
582 1.41 thorpej paddr = m->m_paddr + M_BUFOFFSET(m) +
583 1.28 thorpej (m->m_data - M_BUFADDR(m));
584 1.41 thorpej size = m->m_len;
585 1.41 thorpej error = _bus_dmamap_load_paddr(t, map, paddr, size);
586 1.41 thorpej break;
587 1.28 thorpej
588 1.28 thorpej default:
589 1.28 thorpej error = _bus_dmamap_load_buffer(t, map, m->m_data,
590 1.48 yamt m->m_len, vmspace_kernel(), flags);
591 1.28 thorpej }
592 1.1 chris }
593 1.1 chris if (error == 0) {
594 1.1 chris map->dm_mapsize = m0->m_pkthdr.len;
595 1.14 thorpej map->_dm_origbuf = m0;
596 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_MBUF;
597 1.48 yamt map->_dm_vmspace = vmspace_kernel(); /* always kernel */
598 1.58 matt return 0;
599 1.1 chris }
600 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
601 1.58 matt struct arm32_bus_dma_cookie * const cookie = map->_dm_cookie;
602 1.58 matt if (cookie != NULL && (cookie->id_flags & _BUS_DMA_MIGHT_NEED_BOUNCE)) {
603 1.58 matt error = _bus_dma_load_bouncebuf(t, map, m0, m0->m_pkthdr.len,
604 1.58 matt _BUS_DMA_BUFTYPE_MBUF, flags);
605 1.58 matt }
606 1.58 matt #endif
607 1.1 chris return (error);
608 1.1 chris }
609 1.1 chris
610 1.1 chris /*
611 1.1 chris * Like _bus_dmamap_load(), but for uios.
612 1.1 chris */
613 1.1 chris int
614 1.7 thorpej _bus_dmamap_load_uio(bus_dma_tag_t t, bus_dmamap_t map, struct uio *uio,
615 1.7 thorpej int flags)
616 1.1 chris {
617 1.41 thorpej int i, error;
618 1.1 chris bus_size_t minlen, resid;
619 1.1 chris struct iovec *iov;
620 1.50 christos void *addr;
621 1.1 chris
622 1.1 chris /*
623 1.1 chris * Make sure that on error condition we return "no valid mappings."
624 1.1 chris */
625 1.1 chris map->dm_mapsize = 0;
626 1.1 chris map->dm_nsegs = 0;
627 1.43 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
628 1.1 chris
629 1.1 chris resid = uio->uio_resid;
630 1.1 chris iov = uio->uio_iov;
631 1.1 chris
632 1.17 thorpej /* _bus_dmamap_load_buffer() clears this if we're not... */
633 1.58 matt map->_dm_flags |= _BUS_DMAMAP_COHERENT;
634 1.17 thorpej
635 1.1 chris error = 0;
636 1.1 chris for (i = 0; i < uio->uio_iovcnt && resid != 0 && error == 0; i++) {
637 1.1 chris /*
638 1.1 chris * Now at the first iovec to load. Load each iovec
639 1.1 chris * until we have exhausted the residual count.
640 1.1 chris */
641 1.1 chris minlen = resid < iov[i].iov_len ? resid : iov[i].iov_len;
642 1.50 christos addr = (void *)iov[i].iov_base;
643 1.1 chris
644 1.1 chris error = _bus_dmamap_load_buffer(t, map, addr, minlen,
645 1.48 yamt uio->uio_vmspace, flags);
646 1.1 chris
647 1.1 chris resid -= minlen;
648 1.1 chris }
649 1.1 chris if (error == 0) {
650 1.1 chris map->dm_mapsize = uio->uio_resid;
651 1.14 thorpej map->_dm_origbuf = uio;
652 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_UIO;
653 1.48 yamt map->_dm_vmspace = uio->uio_vmspace;
654 1.1 chris }
655 1.1 chris return (error);
656 1.1 chris }
657 1.1 chris
658 1.1 chris /*
659 1.1 chris * Like _bus_dmamap_load(), but for raw memory allocated with
660 1.1 chris * bus_dmamem_alloc().
661 1.1 chris */
662 1.1 chris int
663 1.7 thorpej _bus_dmamap_load_raw(bus_dma_tag_t t, bus_dmamap_t map,
664 1.7 thorpej bus_dma_segment_t *segs, int nsegs, bus_size_t size, int flags)
665 1.1 chris {
666 1.1 chris
667 1.1 chris panic("_bus_dmamap_load_raw: not implemented");
668 1.1 chris }
669 1.1 chris
670 1.1 chris /*
671 1.1 chris * Common function for unloading a DMA map. May be called by
672 1.1 chris * bus-specific DMA map unload functions.
673 1.1 chris */
674 1.1 chris void
675 1.7 thorpej _bus_dmamap_unload(bus_dma_tag_t t, bus_dmamap_t map)
676 1.1 chris {
677 1.1 chris
678 1.1 chris #ifdef DEBUG_DMA
679 1.1 chris printf("dmamap_unload: t=%p map=%p\n", t, map);
680 1.1 chris #endif /* DEBUG_DMA */
681 1.1 chris
682 1.1 chris /*
683 1.1 chris * No resources to free; just mark the mappings as
684 1.1 chris * invalid.
685 1.1 chris */
686 1.1 chris map->dm_mapsize = 0;
687 1.1 chris map->dm_nsegs = 0;
688 1.14 thorpej map->_dm_origbuf = NULL;
689 1.58 matt map->_dm_buftype = _BUS_DMA_BUFTYPE_INVALID;
690 1.48 yamt map->_dm_vmspace = NULL;
691 1.1 chris }
692 1.1 chris
693 1.57 matt static void
694 1.57 matt _bus_dmamap_sync_segment(vaddr_t va, paddr_t pa, vsize_t len, int ops, bool readonly_p)
695 1.14 thorpej {
696 1.57 matt KASSERT((va & PAGE_MASK) == (pa & PAGE_MASK));
697 1.14 thorpej
698 1.14 thorpej switch (ops) {
699 1.14 thorpej case BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE:
700 1.57 matt if (!readonly_p) {
701 1.57 matt cpu_dcache_wbinv_range(va, len);
702 1.57 matt cpu_sdcache_wbinv_range(va, pa, len);
703 1.57 matt break;
704 1.57 matt }
705 1.57 matt /* FALLTHROUGH */
706 1.14 thorpej
707 1.57 matt case BUS_DMASYNC_PREREAD: {
708 1.59 matt const size_t line_size = arm_dcache_align;
709 1.59 matt const size_t line_mask = arm_dcache_align_mask;
710 1.59 matt vsize_t misalignment = va & line_mask;
711 1.57 matt if (misalignment) {
712 1.59 matt va -= misalignment;
713 1.59 matt pa -= misalignment;
714 1.59 matt len += misalignment;
715 1.59 matt cpu_dcache_wbinv_range(va, line_size);
716 1.59 matt cpu_sdcache_wbinv_range(va, pa, line_size);
717 1.59 matt if (len <= line_size)
718 1.57 matt break;
719 1.59 matt va += line_size;
720 1.59 matt pa += line_size;
721 1.59 matt len -= line_size;
722 1.57 matt }
723 1.59 matt misalignment = len & line_mask;
724 1.57 matt len -= misalignment;
725 1.57 matt cpu_dcache_inv_range(va, len);
726 1.57 matt cpu_sdcache_inv_range(va, pa, len);
727 1.57 matt if (misalignment) {
728 1.57 matt va += len;
729 1.57 matt pa += len;
730 1.59 matt cpu_dcache_wbinv_range(va, line_size);
731 1.59 matt cpu_sdcache_wbinv_range(va, pa, line_size);
732 1.57 matt }
733 1.14 thorpej break;
734 1.57 matt }
735 1.14 thorpej
736 1.14 thorpej case BUS_DMASYNC_PREWRITE:
737 1.57 matt cpu_dcache_wb_range(va, len);
738 1.57 matt cpu_sdcache_wb_range(va, pa, len);
739 1.14 thorpej break;
740 1.14 thorpej }
741 1.14 thorpej }
742 1.14 thorpej
743 1.47 perry static inline void
744 1.57 matt _bus_dmamap_sync_linear(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
745 1.14 thorpej bus_size_t len, int ops)
746 1.14 thorpej {
747 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
748 1.58 matt struct arm32_bus_dma_cookie * const cookie = map->_dm_cookie;
749 1.58 matt bool bouncing = (cookie != NULL && (cookie->id_flags & _BUS_DMA_IS_BOUNCING));
750 1.58 matt #endif
751 1.57 matt bus_dma_segment_t *ds = map->dm_segs;
752 1.57 matt vaddr_t va = (vaddr_t) map->_dm_origbuf;
753 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
754 1.58 matt if (bouncing) {
755 1.58 matt va = (vaddr_t) cookie->id_bouncebuf;
756 1.58 matt }
757 1.58 matt #endif
758 1.57 matt
759 1.57 matt while (len > 0) {
760 1.57 matt while (offset >= ds->ds_len) {
761 1.57 matt offset -= ds->ds_len;
762 1.57 matt va += ds->ds_len;
763 1.57 matt ds++;
764 1.57 matt }
765 1.57 matt
766 1.59 matt paddr_t pa = _bus_dma_busaddr_to_paddr(t, ds->ds_addr + offset);
767 1.57 matt size_t seglen = min(len, ds->ds_len - offset);
768 1.57 matt
769 1.57 matt _bus_dmamap_sync_segment(va + offset, pa, seglen, ops, false);
770 1.57 matt
771 1.57 matt offset += seglen;
772 1.57 matt len -= seglen;
773 1.57 matt }
774 1.57 matt }
775 1.57 matt
776 1.57 matt static inline void
777 1.57 matt _bus_dmamap_sync_mbuf(bus_dma_tag_t t, bus_dmamap_t map, bus_size_t offset,
778 1.57 matt bus_size_t len, int ops)
779 1.57 matt {
780 1.57 matt bus_dma_segment_t *ds = map->dm_segs;
781 1.57 matt struct mbuf *m = map->_dm_origbuf;
782 1.57 matt bus_size_t voff = offset;
783 1.57 matt bus_size_t ds_off = offset;
784 1.57 matt
785 1.57 matt while (len > 0) {
786 1.57 matt /* Find the current dma segment */
787 1.57 matt while (ds_off >= ds->ds_len) {
788 1.57 matt ds_off -= ds->ds_len;
789 1.57 matt ds++;
790 1.57 matt }
791 1.57 matt /* Find the current mbuf. */
792 1.57 matt while (voff >= m->m_len) {
793 1.57 matt voff -= m->m_len;
794 1.57 matt m = m->m_next;
795 1.14 thorpej }
796 1.14 thorpej
797 1.14 thorpej /*
798 1.14 thorpej * Now at the first mbuf to sync; nail each one until
799 1.14 thorpej * we have exhausted the length.
800 1.14 thorpej */
801 1.57 matt vsize_t seglen = min(len, min(m->m_len - voff, ds->ds_len - ds_off));
802 1.57 matt vaddr_t va = mtod(m, vaddr_t) + voff;
803 1.59 matt paddr_t pa = _bus_dma_busaddr_to_paddr(t, ds->ds_addr + ds_off);
804 1.14 thorpej
805 1.28 thorpej /*
806 1.28 thorpej * We can save a lot of work here if we know the mapping
807 1.28 thorpej * is read-only at the MMU:
808 1.28 thorpej *
809 1.28 thorpej * If a mapping is read-only, no dirty cache blocks will
810 1.28 thorpej * exist for it. If a writable mapping was made read-only,
811 1.28 thorpej * we know any dirty cache lines for the range will have
812 1.28 thorpej * been cleaned for us already. Therefore, if the upper
813 1.28 thorpej * layer can tell us we have a read-only mapping, we can
814 1.28 thorpej * skip all cache cleaning.
815 1.28 thorpej *
816 1.28 thorpej * NOTE: This only works if we know the pmap cleans pages
817 1.28 thorpej * before making a read-write -> read-only transition. If
818 1.28 thorpej * this ever becomes non-true (e.g. Physically Indexed
819 1.28 thorpej * cache), this will have to be revisited.
820 1.28 thorpej */
821 1.14 thorpej
822 1.57 matt _bus_dmamap_sync_segment(va, pa, seglen, ops, M_ROMAP(m));
823 1.57 matt voff += seglen;
824 1.57 matt ds_off += seglen;
825 1.57 matt len -= seglen;
826 1.14 thorpej }
827 1.14 thorpej }
828 1.14 thorpej
829 1.47 perry static inline void
830 1.14 thorpej _bus_dmamap_sync_uio(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
831 1.14 thorpej bus_size_t len, int ops)
832 1.14 thorpej {
833 1.57 matt bus_dma_segment_t *ds = map->dm_segs;
834 1.14 thorpej struct uio *uio = map->_dm_origbuf;
835 1.57 matt struct iovec *iov = uio->uio_iov;
836 1.57 matt bus_size_t voff = offset;
837 1.57 matt bus_size_t ds_off = offset;
838 1.57 matt
839 1.57 matt while (len > 0) {
840 1.57 matt /* Find the current dma segment */
841 1.57 matt while (ds_off >= ds->ds_len) {
842 1.57 matt ds_off -= ds->ds_len;
843 1.57 matt ds++;
844 1.57 matt }
845 1.14 thorpej
846 1.57 matt /* Find the current iovec. */
847 1.57 matt while (voff >= iov->iov_len) {
848 1.57 matt voff -= iov->iov_len;
849 1.57 matt iov++;
850 1.14 thorpej }
851 1.14 thorpej
852 1.14 thorpej /*
853 1.14 thorpej * Now at the first iovec to sync; nail each one until
854 1.14 thorpej * we have exhausted the length.
855 1.14 thorpej */
856 1.57 matt vsize_t seglen = min(len, min(iov->iov_len - voff, ds->ds_len - ds_off));
857 1.57 matt vaddr_t va = (vaddr_t) iov->iov_base + voff;
858 1.59 matt paddr_t pa = _bus_dma_busaddr_to_paddr(t, ds->ds_addr + ds_off);
859 1.57 matt
860 1.57 matt _bus_dmamap_sync_segment(va, pa, seglen, ops, false);
861 1.57 matt
862 1.57 matt voff += seglen;
863 1.57 matt ds_off += seglen;
864 1.57 matt len -= seglen;
865 1.14 thorpej }
866 1.14 thorpej }
867 1.14 thorpej
868 1.1 chris /*
869 1.1 chris * Common function for DMA map synchronization. May be called
870 1.1 chris * by bus-specific DMA map synchronization functions.
871 1.8 thorpej *
872 1.8 thorpej * This version works for the Virtually Indexed Virtually Tagged
873 1.8 thorpej * cache found on 32-bit ARM processors.
874 1.8 thorpej *
875 1.8 thorpej * XXX Should have separate versions for write-through vs.
876 1.8 thorpej * XXX write-back caches. We currently assume write-back
877 1.8 thorpej * XXX here, which is not as efficient as it could be for
878 1.8 thorpej * XXX the write-through case.
879 1.1 chris */
880 1.1 chris void
881 1.7 thorpej _bus_dmamap_sync(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
882 1.7 thorpej bus_size_t len, int ops)
883 1.1 chris {
884 1.58 matt bool bouncing = false;
885 1.1 chris
886 1.1 chris #ifdef DEBUG_DMA
887 1.1 chris printf("dmamap_sync: t=%p map=%p offset=%lx len=%lx ops=%x\n",
888 1.1 chris t, map, offset, len, ops);
889 1.1 chris #endif /* DEBUG_DMA */
890 1.1 chris
891 1.8 thorpej /*
892 1.8 thorpej * Mixing of PRE and POST operations is not allowed.
893 1.8 thorpej */
894 1.8 thorpej if ((ops & (BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE)) != 0 &&
895 1.8 thorpej (ops & (BUS_DMASYNC_POSTREAD|BUS_DMASYNC_POSTWRITE)) != 0)
896 1.8 thorpej panic("_bus_dmamap_sync: mix PRE and POST");
897 1.8 thorpej
898 1.8 thorpej #ifdef DIAGNOSTIC
899 1.8 thorpej if (offset >= map->dm_mapsize)
900 1.8 thorpej panic("_bus_dmamap_sync: bad offset %lu (map size is %lu)",
901 1.8 thorpej offset, map->dm_mapsize);
902 1.8 thorpej if (len == 0 || (offset + len) > map->dm_mapsize)
903 1.8 thorpej panic("_bus_dmamap_sync: bad length");
904 1.8 thorpej #endif
905 1.8 thorpej
906 1.8 thorpej /*
907 1.8 thorpej * For a virtually-indexed write-back cache, we need
908 1.8 thorpej * to do the following things:
909 1.8 thorpej *
910 1.8 thorpej * PREREAD -- Invalidate the D-cache. We do this
911 1.8 thorpej * here in case a write-back is required by the back-end.
912 1.8 thorpej *
913 1.8 thorpej * PREWRITE -- Write-back the D-cache. Note that if
914 1.8 thorpej * we are doing a PREREAD|PREWRITE, we can collapse
915 1.8 thorpej * the whole thing into a single Wb-Inv.
916 1.8 thorpej *
917 1.8 thorpej * POSTREAD -- Nothing.
918 1.8 thorpej *
919 1.8 thorpej * POSTWRITE -- Nothing.
920 1.8 thorpej */
921 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
922 1.58 matt struct arm32_bus_dma_cookie * const cookie = map->_dm_cookie;
923 1.58 matt bouncing = (cookie != NULL && (cookie->id_flags & _BUS_DMA_IS_BOUNCING));
924 1.58 matt #endif
925 1.8 thorpej
926 1.58 matt const int pre_ops = ops & (BUS_DMASYNC_PREREAD|BUS_DMASYNC_PREWRITE);
927 1.58 matt if (!bouncing && pre_ops == 0)
928 1.8 thorpej return;
929 1.8 thorpej
930 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
931 1.58 matt if (bouncing && (ops & BUS_DMASYNC_PREWRITE)) {
932 1.58 matt STAT_INCR(write_bounces);
933 1.58 matt char * const dataptr = (char *)cookie->id_bouncebuf + offset;
934 1.58 matt /*
935 1.58 matt * Copy the caller's buffer to the bounce buffer.
936 1.58 matt */
937 1.58 matt switch (map->_dm_buftype) {
938 1.58 matt case _BUS_DMA_BUFTYPE_LINEAR:
939 1.58 matt memcpy(dataptr, cookie->id_origlinearbuf + offset, len);
940 1.58 matt break;
941 1.58 matt case _BUS_DMA_BUFTYPE_MBUF:
942 1.58 matt m_copydata(cookie->id_origmbuf, offset, len, dataptr);
943 1.58 matt break;
944 1.58 matt case _BUS_DMA_BUFTYPE_UIO:
945 1.58 matt _bus_dma_uiomove(dataptr, cookie->id_origuio, len, UIO_WRITE);
946 1.58 matt break;
947 1.58 matt #ifdef DIAGNOSTIC
948 1.58 matt case _BUS_DMA_BUFTYPE_RAW:
949 1.58 matt panic("_bus_dmamap_sync(pre): _BUS_DMA_BUFTYPE_RAW");
950 1.58 matt break;
951 1.58 matt
952 1.58 matt case _BUS_DMA_BUFTYPE_INVALID:
953 1.58 matt panic("_bus_dmamap_sync(pre): _BUS_DMA_BUFTYPE_INVALID");
954 1.58 matt break;
955 1.58 matt
956 1.58 matt default:
957 1.58 matt panic("_bus_dmamap_sync(pre): map %p: unknown buffer type %d\n",
958 1.58 matt map, map->_dm_buftype);
959 1.58 matt break;
960 1.58 matt #endif /* DIAGNOSTIC */
961 1.58 matt }
962 1.58 matt }
963 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
964 1.58 matt
965 1.17 thorpej /* Skip cache frobbing if mapping was COHERENT. */
966 1.58 matt if (!bouncing && (map->_dm_flags & _BUS_DMAMAP_COHERENT)) {
967 1.17 thorpej /* Drain the write buffer. */
968 1.17 thorpej cpu_drain_writebuf();
969 1.17 thorpej return;
970 1.17 thorpej }
971 1.8 thorpej
972 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
973 1.58 matt if (bouncing && ((map->_dm_flags & _BUS_DMAMAP_COHERENT) || pre_ops == 0)) {
974 1.58 matt goto bounce_it;
975 1.58 matt }
976 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
977 1.58 matt
978 1.8 thorpej /*
979 1.38 scw * If the mapping belongs to a non-kernel vmspace, and the
980 1.38 scw * vmspace has not been active since the last time a full
981 1.38 scw * cache flush was performed, we don't need to do anything.
982 1.8 thorpej */
983 1.48 yamt if (__predict_false(!VMSPACE_IS_KERNEL_P(map->_dm_vmspace) &&
984 1.48 yamt vm_map_pmap(&map->_dm_vmspace->vm_map)->pm_cstate.cs_cache_d == 0))
985 1.8 thorpej return;
986 1.8 thorpej
987 1.58 matt int buftype = map->_dm_buftype;
988 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
989 1.58 matt if (bouncing) {
990 1.58 matt buftype = _BUS_DMA_BUFTYPE_LINEAR;
991 1.58 matt }
992 1.58 matt #endif
993 1.58 matt
994 1.58 matt switch (buftype) {
995 1.58 matt case _BUS_DMA_BUFTYPE_LINEAR:
996 1.14 thorpej _bus_dmamap_sync_linear(t, map, offset, len, ops);
997 1.14 thorpej break;
998 1.14 thorpej
999 1.58 matt case _BUS_DMA_BUFTYPE_MBUF:
1000 1.14 thorpej _bus_dmamap_sync_mbuf(t, map, offset, len, ops);
1001 1.14 thorpej break;
1002 1.14 thorpej
1003 1.58 matt case _BUS_DMA_BUFTYPE_UIO:
1004 1.14 thorpej _bus_dmamap_sync_uio(t, map, offset, len, ops);
1005 1.14 thorpej break;
1006 1.14 thorpej
1007 1.58 matt case _BUS_DMA_BUFTYPE_RAW:
1008 1.58 matt panic("_bus_dmamap_sync: _BUS_DMA_BUFTYPE_RAW");
1009 1.14 thorpej break;
1010 1.14 thorpej
1011 1.58 matt case _BUS_DMA_BUFTYPE_INVALID:
1012 1.58 matt panic("_bus_dmamap_sync: _BUS_DMA_BUFTYPE_INVALID");
1013 1.14 thorpej break;
1014 1.14 thorpej
1015 1.14 thorpej default:
1016 1.58 matt panic("_bus_dmamap_sync: map %p: unknown buffer type %d\n",
1017 1.58 matt map, map->_dm_buftype);
1018 1.8 thorpej }
1019 1.1 chris
1020 1.8 thorpej /* Drain the write buffer. */
1021 1.8 thorpej cpu_drain_writebuf();
1022 1.58 matt
1023 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
1024 1.58 matt bounce_it:
1025 1.58 matt if ((ops & BUS_DMASYNC_POSTREAD) == 0
1026 1.58 matt || cookie == NULL
1027 1.58 matt || (cookie->id_flags & _BUS_DMA_IS_BOUNCING) == 0)
1028 1.58 matt return;
1029 1.58 matt
1030 1.58 matt char * const dataptr = (char *)cookie->id_bouncebuf + offset;
1031 1.58 matt STAT_INCR(read_bounces);
1032 1.58 matt /*
1033 1.58 matt * Copy the bounce buffer to the caller's buffer.
1034 1.58 matt */
1035 1.58 matt switch (map->_dm_buftype) {
1036 1.58 matt case _BUS_DMA_BUFTYPE_LINEAR:
1037 1.58 matt memcpy(cookie->id_origlinearbuf + offset, dataptr, len);
1038 1.58 matt break;
1039 1.58 matt
1040 1.58 matt case _BUS_DMA_BUFTYPE_MBUF:
1041 1.58 matt m_copyback(cookie->id_origmbuf, offset, len, dataptr);
1042 1.58 matt break;
1043 1.58 matt
1044 1.58 matt case _BUS_DMA_BUFTYPE_UIO:
1045 1.58 matt _bus_dma_uiomove(dataptr, cookie->id_origuio, len, UIO_READ);
1046 1.58 matt break;
1047 1.58 matt #ifdef DIAGNOSTIC
1048 1.58 matt case _BUS_DMA_BUFTYPE_RAW:
1049 1.58 matt panic("_bus_dmamap_sync(post): _BUS_DMA_BUFTYPE_RAW");
1050 1.58 matt break;
1051 1.58 matt
1052 1.58 matt case _BUS_DMA_BUFTYPE_INVALID:
1053 1.58 matt panic("_bus_dmamap_sync(post): _BUS_DMA_BUFTYPE_INVALID");
1054 1.58 matt break;
1055 1.58 matt
1056 1.58 matt default:
1057 1.58 matt panic("_bus_dmamap_sync(post): map %p: unknown buffer type %d\n",
1058 1.58 matt map, map->_dm_buftype);
1059 1.58 matt break;
1060 1.58 matt #endif
1061 1.58 matt }
1062 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
1063 1.1 chris }
1064 1.1 chris
1065 1.1 chris /*
1066 1.1 chris * Common function for DMA-safe memory allocation. May be called
1067 1.1 chris * by bus-specific DMA memory allocation functions.
1068 1.1 chris */
1069 1.1 chris
1070 1.11 thorpej extern paddr_t physical_start;
1071 1.11 thorpej extern paddr_t physical_end;
1072 1.1 chris
1073 1.1 chris int
1074 1.7 thorpej _bus_dmamem_alloc(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment,
1075 1.7 thorpej bus_size_t boundary, bus_dma_segment_t *segs, int nsegs, int *rsegs,
1076 1.7 thorpej int flags)
1077 1.1 chris {
1078 1.15 thorpej struct arm32_dma_range *dr;
1079 1.37 mycroft int error, i;
1080 1.15 thorpej
1081 1.1 chris #ifdef DEBUG_DMA
1082 1.15 thorpej printf("dmamem_alloc t=%p size=%lx align=%lx boundary=%lx "
1083 1.15 thorpej "segs=%p nsegs=%x rsegs=%p flags=%x\n", t, size, alignment,
1084 1.15 thorpej boundary, segs, nsegs, rsegs, flags);
1085 1.15 thorpej #endif
1086 1.15 thorpej
1087 1.15 thorpej if ((dr = t->_ranges) != NULL) {
1088 1.37 mycroft error = ENOMEM;
1089 1.15 thorpej for (i = 0; i < t->_nranges; i++, dr++) {
1090 1.37 mycroft if (dr->dr_len == 0)
1091 1.15 thorpej continue;
1092 1.15 thorpej error = _bus_dmamem_alloc_range(t, size, alignment,
1093 1.15 thorpej boundary, segs, nsegs, rsegs, flags,
1094 1.15 thorpej trunc_page(dr->dr_sysbase),
1095 1.15 thorpej trunc_page(dr->dr_sysbase + dr->dr_len));
1096 1.15 thorpej if (error == 0)
1097 1.15 thorpej break;
1098 1.15 thorpej }
1099 1.15 thorpej } else {
1100 1.15 thorpej error = _bus_dmamem_alloc_range(t, size, alignment, boundary,
1101 1.15 thorpej segs, nsegs, rsegs, flags, trunc_page(physical_start),
1102 1.15 thorpej trunc_page(physical_end));
1103 1.15 thorpej }
1104 1.15 thorpej
1105 1.1 chris #ifdef DEBUG_DMA
1106 1.1 chris printf("dmamem_alloc: =%d\n", error);
1107 1.15 thorpej #endif
1108 1.15 thorpej
1109 1.1 chris return(error);
1110 1.1 chris }
1111 1.1 chris
1112 1.1 chris /*
1113 1.1 chris * Common function for freeing DMA-safe memory. May be called by
1114 1.1 chris * bus-specific DMA memory free functions.
1115 1.1 chris */
1116 1.1 chris void
1117 1.7 thorpej _bus_dmamem_free(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs)
1118 1.1 chris {
1119 1.1 chris struct vm_page *m;
1120 1.1 chris bus_addr_t addr;
1121 1.1 chris struct pglist mlist;
1122 1.1 chris int curseg;
1123 1.1 chris
1124 1.1 chris #ifdef DEBUG_DMA
1125 1.1 chris printf("dmamem_free: t=%p segs=%p nsegs=%x\n", t, segs, nsegs);
1126 1.1 chris #endif /* DEBUG_DMA */
1127 1.1 chris
1128 1.1 chris /*
1129 1.1 chris * Build a list of pages to free back to the VM system.
1130 1.1 chris */
1131 1.1 chris TAILQ_INIT(&mlist);
1132 1.1 chris for (curseg = 0; curseg < nsegs; curseg++) {
1133 1.1 chris for (addr = segs[curseg].ds_addr;
1134 1.1 chris addr < (segs[curseg].ds_addr + segs[curseg].ds_len);
1135 1.1 chris addr += PAGE_SIZE) {
1136 1.1 chris m = PHYS_TO_VM_PAGE(addr);
1137 1.52 ad TAILQ_INSERT_TAIL(&mlist, m, pageq.queue);
1138 1.1 chris }
1139 1.1 chris }
1140 1.1 chris uvm_pglistfree(&mlist);
1141 1.1 chris }
1142 1.1 chris
1143 1.1 chris /*
1144 1.1 chris * Common function for mapping DMA-safe memory. May be called by
1145 1.1 chris * bus-specific DMA memory map functions.
1146 1.1 chris */
1147 1.1 chris int
1148 1.7 thorpej _bus_dmamem_map(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
1149 1.50 christos size_t size, void **kvap, int flags)
1150 1.1 chris {
1151 1.11 thorpej vaddr_t va;
1152 1.57 matt paddr_t pa;
1153 1.1 chris int curseg;
1154 1.1 chris pt_entry_t *ptep/*, pte*/;
1155 1.45 yamt const uvm_flag_t kmflags =
1156 1.45 yamt (flags & BUS_DMA_NOWAIT) != 0 ? UVM_KMF_NOWAIT : 0;
1157 1.1 chris
1158 1.1 chris #ifdef DEBUG_DMA
1159 1.3 rearnsha printf("dmamem_map: t=%p segs=%p nsegs=%x size=%lx flags=%x\n", t,
1160 1.3 rearnsha segs, nsegs, (unsigned long)size, flags);
1161 1.1 chris #endif /* DEBUG_DMA */
1162 1.1 chris
1163 1.1 chris size = round_page(size);
1164 1.45 yamt va = uvm_km_alloc(kernel_map, size, 0, UVM_KMF_VAONLY | kmflags);
1165 1.1 chris
1166 1.1 chris if (va == 0)
1167 1.1 chris return (ENOMEM);
1168 1.1 chris
1169 1.50 christos *kvap = (void *)va;
1170 1.1 chris
1171 1.1 chris for (curseg = 0; curseg < nsegs; curseg++) {
1172 1.57 matt for (pa = segs[curseg].ds_addr;
1173 1.57 matt pa < (segs[curseg].ds_addr + segs[curseg].ds_len);
1174 1.57 matt pa += PAGE_SIZE, va += PAGE_SIZE, size -= PAGE_SIZE) {
1175 1.1 chris #ifdef DEBUG_DMA
1176 1.57 matt printf("wiring p%lx to v%lx", pa, va);
1177 1.1 chris #endif /* DEBUG_DMA */
1178 1.1 chris if (size == 0)
1179 1.1 chris panic("_bus_dmamem_map: size botch");
1180 1.57 matt pmap_enter(pmap_kernel(), va, pa,
1181 1.1 chris VM_PROT_READ | VM_PROT_WRITE,
1182 1.1 chris VM_PROT_READ | VM_PROT_WRITE | PMAP_WIRED);
1183 1.57 matt
1184 1.1 chris /*
1185 1.1 chris * If the memory must remain coherent with the
1186 1.1 chris * cache then we must make the memory uncacheable
1187 1.1 chris * in order to maintain virtual cache coherency.
1188 1.24 wiz * We must also guarantee the cache does not already
1189 1.1 chris * contain the virtal addresses we are making
1190 1.1 chris * uncacheable.
1191 1.1 chris */
1192 1.1 chris if (flags & BUS_DMA_COHERENT) {
1193 1.27 thorpej cpu_dcache_wbinv_range(va, PAGE_SIZE);
1194 1.57 matt cpu_sdcache_wbinv_range(va, pa, PAGE_SIZE);
1195 1.1 chris cpu_drain_writebuf();
1196 1.1 chris ptep = vtopte(va);
1197 1.17 thorpej *ptep &= ~L2_S_CACHE_MASK;
1198 1.21 thorpej PTE_SYNC(ptep);
1199 1.1 chris tlb_flush();
1200 1.1 chris }
1201 1.1 chris #ifdef DEBUG_DMA
1202 1.1 chris ptep = vtopte(va);
1203 1.1 chris printf(" pte=v%p *pte=%x\n", ptep, *ptep);
1204 1.1 chris #endif /* DEBUG_DMA */
1205 1.1 chris }
1206 1.1 chris }
1207 1.2 chris pmap_update(pmap_kernel());
1208 1.1 chris #ifdef DEBUG_DMA
1209 1.1 chris printf("dmamem_map: =%p\n", *kvap);
1210 1.1 chris #endif /* DEBUG_DMA */
1211 1.1 chris return (0);
1212 1.1 chris }
1213 1.1 chris
1214 1.1 chris /*
1215 1.1 chris * Common function for unmapping DMA-safe memory. May be called by
1216 1.1 chris * bus-specific DMA memory unmapping functions.
1217 1.1 chris */
1218 1.1 chris void
1219 1.50 christos _bus_dmamem_unmap(bus_dma_tag_t t, void *kva, size_t size)
1220 1.1 chris {
1221 1.1 chris
1222 1.1 chris #ifdef DEBUG_DMA
1223 1.3 rearnsha printf("dmamem_unmap: t=%p kva=%p size=%lx\n", t, kva,
1224 1.3 rearnsha (unsigned long)size);
1225 1.1 chris #endif /* DEBUG_DMA */
1226 1.1 chris #ifdef DIAGNOSTIC
1227 1.1 chris if ((u_long)kva & PGOFSET)
1228 1.1 chris panic("_bus_dmamem_unmap");
1229 1.1 chris #endif /* DIAGNOSTIC */
1230 1.1 chris
1231 1.1 chris size = round_page(size);
1232 1.44 yamt pmap_remove(pmap_kernel(), (vaddr_t)kva, (vaddr_t)kva + size);
1233 1.44 yamt pmap_update(pmap_kernel());
1234 1.44 yamt uvm_km_free(kernel_map, (vaddr_t)kva, size, UVM_KMF_VAONLY);
1235 1.1 chris }
1236 1.1 chris
1237 1.1 chris /*
1238 1.1 chris * Common functin for mmap(2)'ing DMA-safe memory. May be called by
1239 1.1 chris * bus-specific DMA mmap(2)'ing functions.
1240 1.1 chris */
1241 1.1 chris paddr_t
1242 1.7 thorpej _bus_dmamem_mmap(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
1243 1.7 thorpej off_t off, int prot, int flags)
1244 1.1 chris {
1245 1.1 chris int i;
1246 1.1 chris
1247 1.1 chris for (i = 0; i < nsegs; i++) {
1248 1.1 chris #ifdef DIAGNOSTIC
1249 1.1 chris if (off & PGOFSET)
1250 1.1 chris panic("_bus_dmamem_mmap: offset unaligned");
1251 1.1 chris if (segs[i].ds_addr & PGOFSET)
1252 1.1 chris panic("_bus_dmamem_mmap: segment unaligned");
1253 1.1 chris if (segs[i].ds_len & PGOFSET)
1254 1.1 chris panic("_bus_dmamem_mmap: segment size not multiple"
1255 1.1 chris " of page size");
1256 1.1 chris #endif /* DIAGNOSTIC */
1257 1.1 chris if (off >= segs[i].ds_len) {
1258 1.1 chris off -= segs[i].ds_len;
1259 1.1 chris continue;
1260 1.1 chris }
1261 1.1 chris
1262 1.9 thorpej return (arm_btop((u_long)segs[i].ds_addr + off));
1263 1.1 chris }
1264 1.1 chris
1265 1.1 chris /* Page not found. */
1266 1.1 chris return (-1);
1267 1.1 chris }
1268 1.1 chris
1269 1.1 chris /**********************************************************************
1270 1.1 chris * DMA utility functions
1271 1.1 chris **********************************************************************/
1272 1.1 chris
1273 1.1 chris /*
1274 1.1 chris * Utility function to load a linear buffer. lastaddrp holds state
1275 1.1 chris * between invocations (for multiple-buffer loads). segp contains
1276 1.1 chris * the starting segment on entrace, and the ending segment on exit.
1277 1.1 chris * first indicates if this is the first invocation of this function.
1278 1.1 chris */
1279 1.1 chris int
1280 1.7 thorpej _bus_dmamap_load_buffer(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
1281 1.48 yamt bus_size_t buflen, struct vmspace *vm, int flags)
1282 1.1 chris {
1283 1.1 chris bus_size_t sgsize;
1284 1.41 thorpej bus_addr_t curaddr;
1285 1.11 thorpej vaddr_t vaddr = (vaddr_t)buf;
1286 1.17 thorpej pd_entry_t *pde;
1287 1.17 thorpej pt_entry_t pte;
1288 1.41 thorpej int error;
1289 1.1 chris pmap_t pmap;
1290 1.29 scw pt_entry_t *ptep;
1291 1.1 chris
1292 1.1 chris #ifdef DEBUG_DMA
1293 1.40 scw printf("_bus_dmamem_load_buffer(buf=%p, len=%lx, flags=%d)\n",
1294 1.40 scw buf, buflen, flags);
1295 1.1 chris #endif /* DEBUG_DMA */
1296 1.1 chris
1297 1.48 yamt pmap = vm_map_pmap(&vm->vm_map);
1298 1.1 chris
1299 1.41 thorpej while (buflen > 0) {
1300 1.1 chris /*
1301 1.1 chris * Get the physical address for this segment.
1302 1.17 thorpej *
1303 1.55 matt * XXX Doesn't support checking for coherent mappings
1304 1.17 thorpej * XXX in user address space.
1305 1.1 chris */
1306 1.17 thorpej if (__predict_true(pmap == pmap_kernel())) {
1307 1.29 scw (void) pmap_get_pde_pte(pmap, vaddr, &pde, &ptep);
1308 1.17 thorpej if (__predict_false(pmap_pde_section(pde))) {
1309 1.55 matt paddr_t s_frame = L1_S_FRAME;
1310 1.55 matt paddr_t s_offset = L1_S_OFFSET;
1311 1.56 matt #if (ARM_MMU_V6 + ARM_MMU_V7) > 0
1312 1.55 matt if (__predict_false(pmap_pde_supersection(pde))) {
1313 1.55 matt s_frame = L1_SS_FRAME;
1314 1.60 matt s_offset = L1_SS_OFFSET;
1315 1.60 matt }
1316 1.55 matt #endif
1317 1.55 matt curaddr = (*pde & s_frame) | (vaddr & s_offset);
1318 1.17 thorpej if (*pde & L1_S_CACHE_MASK) {
1319 1.58 matt map->_dm_flags &= ~_BUS_DMAMAP_COHERENT;
1320 1.17 thorpej }
1321 1.17 thorpej } else {
1322 1.29 scw pte = *ptep;
1323 1.17 thorpej KDASSERT((pte & L2_TYPE_MASK) != L2_TYPE_INV);
1324 1.17 thorpej if (__predict_false((pte & L2_TYPE_MASK)
1325 1.17 thorpej == L2_TYPE_L)) {
1326 1.17 thorpej curaddr = (pte & L2_L_FRAME) |
1327 1.17 thorpej (vaddr & L2_L_OFFSET);
1328 1.17 thorpej if (pte & L2_L_CACHE_MASK) {
1329 1.17 thorpej map->_dm_flags &=
1330 1.58 matt ~_BUS_DMAMAP_COHERENT;
1331 1.17 thorpej }
1332 1.17 thorpej } else {
1333 1.17 thorpej curaddr = (pte & L2_S_FRAME) |
1334 1.17 thorpej (vaddr & L2_S_OFFSET);
1335 1.17 thorpej if (pte & L2_S_CACHE_MASK) {
1336 1.17 thorpej map->_dm_flags &=
1337 1.58 matt ~_BUS_DMAMAP_COHERENT;
1338 1.17 thorpej }
1339 1.17 thorpej }
1340 1.17 thorpej }
1341 1.34 briggs } else {
1342 1.17 thorpej (void) pmap_extract(pmap, vaddr, &curaddr);
1343 1.58 matt map->_dm_flags &= ~_BUS_DMAMAP_COHERENT;
1344 1.34 briggs }
1345 1.1 chris
1346 1.1 chris /*
1347 1.1 chris * Compute the segment size, and adjust counts.
1348 1.1 chris */
1349 1.27 thorpej sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
1350 1.1 chris if (buflen < sgsize)
1351 1.1 chris sgsize = buflen;
1352 1.1 chris
1353 1.41 thorpej error = _bus_dmamap_load_paddr(t, map, curaddr, sgsize);
1354 1.41 thorpej if (error)
1355 1.41 thorpej return (error);
1356 1.1 chris
1357 1.1 chris vaddr += sgsize;
1358 1.1 chris buflen -= sgsize;
1359 1.1 chris }
1360 1.1 chris
1361 1.1 chris return (0);
1362 1.1 chris }
1363 1.1 chris
1364 1.1 chris /*
1365 1.1 chris * Allocate physical memory from the given physical address range.
1366 1.1 chris * Called by DMA-safe memory allocation methods.
1367 1.1 chris */
1368 1.1 chris int
1369 1.7 thorpej _bus_dmamem_alloc_range(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment,
1370 1.7 thorpej bus_size_t boundary, bus_dma_segment_t *segs, int nsegs, int *rsegs,
1371 1.11 thorpej int flags, paddr_t low, paddr_t high)
1372 1.1 chris {
1373 1.11 thorpej paddr_t curaddr, lastaddr;
1374 1.1 chris struct vm_page *m;
1375 1.1 chris struct pglist mlist;
1376 1.1 chris int curseg, error;
1377 1.1 chris
1378 1.1 chris #ifdef DEBUG_DMA
1379 1.1 chris printf("alloc_range: t=%p size=%lx align=%lx boundary=%lx segs=%p nsegs=%x rsegs=%p flags=%x lo=%lx hi=%lx\n",
1380 1.1 chris t, size, alignment, boundary, segs, nsegs, rsegs, flags, low, high);
1381 1.1 chris #endif /* DEBUG_DMA */
1382 1.1 chris
1383 1.1 chris /* Always round the size. */
1384 1.1 chris size = round_page(size);
1385 1.1 chris
1386 1.1 chris /*
1387 1.1 chris * Allocate pages from the VM system.
1388 1.1 chris */
1389 1.1 chris error = uvm_pglistalloc(size, low, high, alignment, boundary,
1390 1.1 chris &mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
1391 1.1 chris if (error)
1392 1.1 chris return (error);
1393 1.1 chris
1394 1.1 chris /*
1395 1.1 chris * Compute the location, size, and number of segments actually
1396 1.1 chris * returned by the VM code.
1397 1.1 chris */
1398 1.42 chris m = TAILQ_FIRST(&mlist);
1399 1.1 chris curseg = 0;
1400 1.1 chris lastaddr = segs[curseg].ds_addr = VM_PAGE_TO_PHYS(m);
1401 1.1 chris segs[curseg].ds_len = PAGE_SIZE;
1402 1.1 chris #ifdef DEBUG_DMA
1403 1.1 chris printf("alloc: page %lx\n", lastaddr);
1404 1.1 chris #endif /* DEBUG_DMA */
1405 1.52 ad m = TAILQ_NEXT(m, pageq.queue);
1406 1.1 chris
1407 1.52 ad for (; m != NULL; m = TAILQ_NEXT(m, pageq.queue)) {
1408 1.1 chris curaddr = VM_PAGE_TO_PHYS(m);
1409 1.1 chris #ifdef DIAGNOSTIC
1410 1.1 chris if (curaddr < low || curaddr >= high) {
1411 1.1 chris printf("uvm_pglistalloc returned non-sensical"
1412 1.1 chris " address 0x%lx\n", curaddr);
1413 1.1 chris panic("_bus_dmamem_alloc_range");
1414 1.1 chris }
1415 1.1 chris #endif /* DIAGNOSTIC */
1416 1.1 chris #ifdef DEBUG_DMA
1417 1.1 chris printf("alloc: page %lx\n", curaddr);
1418 1.1 chris #endif /* DEBUG_DMA */
1419 1.1 chris if (curaddr == (lastaddr + PAGE_SIZE))
1420 1.1 chris segs[curseg].ds_len += PAGE_SIZE;
1421 1.1 chris else {
1422 1.1 chris curseg++;
1423 1.1 chris segs[curseg].ds_addr = curaddr;
1424 1.1 chris segs[curseg].ds_len = PAGE_SIZE;
1425 1.1 chris }
1426 1.1 chris lastaddr = curaddr;
1427 1.1 chris }
1428 1.1 chris
1429 1.1 chris *rsegs = curseg + 1;
1430 1.1 chris
1431 1.15 thorpej return (0);
1432 1.15 thorpej }
1433 1.15 thorpej
1434 1.15 thorpej /*
1435 1.15 thorpej * Check if a memory region intersects with a DMA range, and return the
1436 1.15 thorpej * page-rounded intersection if it does.
1437 1.15 thorpej */
1438 1.15 thorpej int
1439 1.15 thorpej arm32_dma_range_intersect(struct arm32_dma_range *ranges, int nranges,
1440 1.15 thorpej paddr_t pa, psize_t size, paddr_t *pap, psize_t *sizep)
1441 1.15 thorpej {
1442 1.15 thorpej struct arm32_dma_range *dr;
1443 1.15 thorpej int i;
1444 1.15 thorpej
1445 1.15 thorpej if (ranges == NULL)
1446 1.15 thorpej return (0);
1447 1.15 thorpej
1448 1.15 thorpej for (i = 0, dr = ranges; i < nranges; i++, dr++) {
1449 1.15 thorpej if (dr->dr_sysbase <= pa &&
1450 1.15 thorpej pa < (dr->dr_sysbase + dr->dr_len)) {
1451 1.15 thorpej /*
1452 1.15 thorpej * Beginning of region intersects with this range.
1453 1.15 thorpej */
1454 1.15 thorpej *pap = trunc_page(pa);
1455 1.15 thorpej *sizep = round_page(min(pa + size,
1456 1.15 thorpej dr->dr_sysbase + dr->dr_len) - pa);
1457 1.15 thorpej return (1);
1458 1.15 thorpej }
1459 1.15 thorpej if (pa < dr->dr_sysbase && dr->dr_sysbase < (pa + size)) {
1460 1.15 thorpej /*
1461 1.15 thorpej * End of region intersects with this range.
1462 1.15 thorpej */
1463 1.15 thorpej *pap = trunc_page(dr->dr_sysbase);
1464 1.15 thorpej *sizep = round_page(min((pa + size) - dr->dr_sysbase,
1465 1.15 thorpej dr->dr_len));
1466 1.15 thorpej return (1);
1467 1.15 thorpej }
1468 1.15 thorpej }
1469 1.15 thorpej
1470 1.15 thorpej /* No intersection found. */
1471 1.1 chris return (0);
1472 1.1 chris }
1473 1.58 matt
1474 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
1475 1.58 matt static int
1476 1.58 matt _bus_dma_alloc_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map,
1477 1.58 matt bus_size_t size, int flags)
1478 1.58 matt {
1479 1.58 matt struct arm32_bus_dma_cookie *cookie = map->_dm_cookie;
1480 1.58 matt int error = 0;
1481 1.58 matt
1482 1.58 matt #ifdef DIAGNOSTIC
1483 1.58 matt if (cookie == NULL)
1484 1.58 matt panic("_bus_dma_alloc_bouncebuf: no cookie");
1485 1.58 matt #endif
1486 1.58 matt
1487 1.58 matt cookie->id_bouncebuflen = round_page(size);
1488 1.58 matt error = _bus_dmamem_alloc(t, cookie->id_bouncebuflen,
1489 1.58 matt PAGE_SIZE, map->_dm_boundary, cookie->id_bouncesegs,
1490 1.58 matt map->_dm_segcnt, &cookie->id_nbouncesegs, flags);
1491 1.58 matt if (error)
1492 1.58 matt goto out;
1493 1.58 matt error = _bus_dmamem_map(t, cookie->id_bouncesegs,
1494 1.58 matt cookie->id_nbouncesegs, cookie->id_bouncebuflen,
1495 1.58 matt (void **)&cookie->id_bouncebuf, flags);
1496 1.58 matt
1497 1.58 matt out:
1498 1.58 matt if (error) {
1499 1.58 matt _bus_dmamem_free(t, cookie->id_bouncesegs,
1500 1.58 matt cookie->id_nbouncesegs);
1501 1.58 matt cookie->id_bouncebuflen = 0;
1502 1.58 matt cookie->id_nbouncesegs = 0;
1503 1.58 matt } else {
1504 1.58 matt cookie->id_flags |= _BUS_DMA_HAS_BOUNCE;
1505 1.58 matt }
1506 1.58 matt
1507 1.58 matt return (error);
1508 1.58 matt }
1509 1.58 matt
1510 1.58 matt static void
1511 1.58 matt _bus_dma_free_bouncebuf(bus_dma_tag_t t, bus_dmamap_t map)
1512 1.58 matt {
1513 1.58 matt struct arm32_bus_dma_cookie *cookie = map->_dm_cookie;
1514 1.58 matt
1515 1.58 matt #ifdef DIAGNOSTIC
1516 1.58 matt if (cookie == NULL)
1517 1.58 matt panic("_bus_dma_alloc_bouncebuf: no cookie");
1518 1.58 matt #endif
1519 1.58 matt
1520 1.58 matt _bus_dmamem_unmap(t, cookie->id_bouncebuf, cookie->id_bouncebuflen);
1521 1.58 matt _bus_dmamem_free(t, cookie->id_bouncesegs,
1522 1.58 matt cookie->id_nbouncesegs);
1523 1.58 matt cookie->id_bouncebuflen = 0;
1524 1.58 matt cookie->id_nbouncesegs = 0;
1525 1.58 matt cookie->id_flags &= ~_BUS_DMA_HAS_BOUNCE;
1526 1.58 matt }
1527 1.58 matt
1528 1.58 matt /*
1529 1.58 matt * This function does the same as uiomove, but takes an explicit
1530 1.58 matt * direction, and does not update the uio structure.
1531 1.58 matt */
1532 1.58 matt static int
1533 1.58 matt _bus_dma_uiomove(void *buf, struct uio *uio, size_t n, int direction)
1534 1.58 matt {
1535 1.58 matt struct iovec *iov;
1536 1.58 matt int error;
1537 1.58 matt struct vmspace *vm;
1538 1.58 matt char *cp;
1539 1.58 matt size_t resid, cnt;
1540 1.58 matt int i;
1541 1.58 matt
1542 1.58 matt iov = uio->uio_iov;
1543 1.58 matt vm = uio->uio_vmspace;
1544 1.58 matt cp = buf;
1545 1.58 matt resid = n;
1546 1.58 matt
1547 1.58 matt for (i = 0; i < uio->uio_iovcnt && resid > 0; i++) {
1548 1.58 matt iov = &uio->uio_iov[i];
1549 1.58 matt if (iov->iov_len == 0)
1550 1.58 matt continue;
1551 1.58 matt cnt = MIN(resid, iov->iov_len);
1552 1.58 matt
1553 1.58 matt if (!VMSPACE_IS_KERNEL_P(vm) &&
1554 1.58 matt (curlwp->l_cpu->ci_schedstate.spc_flags & SPCF_SHOULDYIELD)
1555 1.58 matt != 0) {
1556 1.58 matt preempt();
1557 1.58 matt }
1558 1.58 matt if (direction == UIO_READ) {
1559 1.58 matt error = copyout_vmspace(vm, cp, iov->iov_base, cnt);
1560 1.58 matt } else {
1561 1.58 matt error = copyin_vmspace(vm, iov->iov_base, cp, cnt);
1562 1.58 matt }
1563 1.58 matt if (error)
1564 1.58 matt return (error);
1565 1.58 matt cp += cnt;
1566 1.58 matt resid -= cnt;
1567 1.58 matt }
1568 1.58 matt return (0);
1569 1.58 matt }
1570 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
1571 1.58 matt
1572 1.58 matt int
1573 1.58 matt _bus_dmatag_subregion(bus_dma_tag_t tag, bus_addr_t min_addr,
1574 1.58 matt bus_addr_t max_addr, bus_dma_tag_t *newtag, int flags)
1575 1.58 matt {
1576 1.58 matt
1577 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
1578 1.58 matt struct arm32_dma_range *dr;
1579 1.58 matt bool subset = false;
1580 1.58 matt size_t nranges = 0;
1581 1.58 matt size_t i;
1582 1.58 matt for (i = 0, dr = tag->_ranges; i < tag->_nranges; i++, dr++) {
1583 1.58 matt if (dr->dr_sysbase <= min_addr
1584 1.58 matt && max_addr <= dr->dr_sysbase + dr->dr_len - 1) {
1585 1.58 matt subset = true;
1586 1.58 matt }
1587 1.58 matt if (min_addr <= dr->dr_sysbase + dr->dr_len
1588 1.58 matt && max_addr >= dr->dr_sysbase) {
1589 1.58 matt nranges++;
1590 1.58 matt }
1591 1.58 matt }
1592 1.58 matt if (subset) {
1593 1.58 matt *newtag = tag;
1594 1.58 matt /* if the tag must be freed, add a reference */
1595 1.58 matt if (tag->_tag_needs_free)
1596 1.58 matt (tag->_tag_needs_free)++;
1597 1.58 matt return 0;
1598 1.58 matt }
1599 1.58 matt if (nranges == 0) {
1600 1.58 matt nranges = 1;
1601 1.58 matt }
1602 1.58 matt
1603 1.58 matt size_t mallocsize = sizeof(*tag) + nranges * sizeof(*dr);
1604 1.58 matt if ((*newtag = malloc(mallocsize, M_DMAMAP,
1605 1.58 matt (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL)
1606 1.58 matt return ENOMEM;
1607 1.58 matt
1608 1.58 matt dr = (void *)(*newtag + 1);
1609 1.58 matt **newtag = *tag;
1610 1.58 matt (*newtag)->_tag_needs_free = 1;
1611 1.58 matt (*newtag)->_ranges = dr;
1612 1.58 matt (*newtag)->_nranges = nranges;
1613 1.58 matt
1614 1.58 matt if (tag->_ranges == NULL) {
1615 1.58 matt dr->dr_sysbase = min_addr;
1616 1.58 matt dr->dr_busbase = min_addr;
1617 1.58 matt dr->dr_len = max_addr + 1 - min_addr;
1618 1.58 matt } else {
1619 1.58 matt for (i = 0; i < nranges; i++) {
1620 1.58 matt if (min_addr > dr->dr_sysbase + dr->dr_len
1621 1.58 matt || max_addr < dr->dr_sysbase)
1622 1.58 matt continue;
1623 1.58 matt dr[0] = tag->_ranges[i];
1624 1.58 matt if (dr->dr_sysbase < min_addr) {
1625 1.58 matt psize_t diff = min_addr - dr->dr_sysbase;
1626 1.58 matt dr->dr_busbase += diff;
1627 1.58 matt dr->dr_len -= diff;
1628 1.58 matt dr->dr_sysbase += diff;
1629 1.58 matt }
1630 1.58 matt if (max_addr != 0xffffffff
1631 1.58 matt && max_addr + 1 < dr->dr_sysbase + dr->dr_len) {
1632 1.58 matt dr->dr_len = max_addr + 1 - dr->dr_sysbase;
1633 1.58 matt }
1634 1.58 matt dr++;
1635 1.58 matt }
1636 1.58 matt }
1637 1.58 matt
1638 1.58 matt return 0;
1639 1.58 matt #else
1640 1.58 matt return EOPNOTSUPP;
1641 1.58 matt #endif /* _ARM32_NEED_BUS_DMA_BOUNCE */
1642 1.58 matt }
1643 1.58 matt
1644 1.58 matt void
1645 1.58 matt _bus_dmatag_destroy(bus_dma_tag_t tag)
1646 1.58 matt {
1647 1.58 matt #ifdef _ARM32_NEED_BUS_DMA_BOUNCE
1648 1.58 matt switch (tag->_tag_needs_free) {
1649 1.58 matt case 0:
1650 1.58 matt break; /* not allocated with malloc */
1651 1.58 matt case 1:
1652 1.58 matt free(tag, M_DMAMAP); /* last reference to tag */
1653 1.58 matt break;
1654 1.58 matt default:
1655 1.58 matt (tag->_tag_needs_free)--; /* one less reference */
1656 1.58 matt }
1657 1.58 matt #endif
1658 1.58 matt }
1659