bus_dma.c revision 1.60 1 1.60 yamt /* $NetBSD: bus_dma.c,v 1.60 2005/11/24 13:08:32 yamt Exp $ */
2 1.2 thorpej
3 1.2 thorpej /*-
4 1.8 thorpej * Copyright (c) 1997, 1998 The NetBSD Foundation, Inc.
5 1.2 thorpej * All rights reserved.
6 1.2 thorpej *
7 1.2 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.2 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.2 thorpej * NASA Ames Research Center.
10 1.2 thorpej *
11 1.2 thorpej * Redistribution and use in source and binary forms, with or without
12 1.2 thorpej * modification, are permitted provided that the following conditions
13 1.2 thorpej * are met:
14 1.2 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.2 thorpej * notice, this list of conditions and the following disclaimer.
16 1.2 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.2 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.2 thorpej * documentation and/or other materials provided with the distribution.
19 1.2 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.2 thorpej * must display the following acknowledgement:
21 1.2 thorpej * This product includes software developed by the NetBSD
22 1.2 thorpej * Foundation, Inc. and its contributors.
23 1.2 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.2 thorpej * contributors may be used to endorse or promote products derived
25 1.2 thorpej * from this software without specific prior written permission.
26 1.2 thorpej *
27 1.2 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.2 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.2 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.2 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.2 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.2 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.2 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.2 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.2 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.2 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.2 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.2 thorpej */
39 1.2 thorpej
40 1.2 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
41 1.2 thorpej
42 1.60 yamt __KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.60 2005/11/24 13:08:32 yamt Exp $");
43 1.2 thorpej
44 1.2 thorpej #include <sys/param.h>
45 1.2 thorpej #include <sys/systm.h>
46 1.2 thorpej #include <sys/kernel.h>
47 1.2 thorpej #include <sys/device.h>
48 1.2 thorpej #include <sys/malloc.h>
49 1.2 thorpej #include <sys/proc.h>
50 1.9 thorpej #include <sys/mbuf.h>
51 1.28 mrg
52 1.16 thorpej #include <uvm/uvm_extern.h>
53 1.2 thorpej
54 1.2 thorpej #define _ALPHA_BUS_DMA_PRIVATE
55 1.2 thorpej #include <machine/bus.h>
56 1.3 thorpej #include <machine/intr.h>
57 1.2 thorpej
58 1.43 thorpej int _bus_dmamap_load_buffer_direct(bus_dma_tag_t,
59 1.26 thorpej bus_dmamap_t, void *, bus_size_t, struct proc *, int,
60 1.41 thorpej paddr_t *, int *, int);
61 1.9 thorpej
62 1.34 thorpej extern paddr_t avail_start, avail_end; /* from pmap.c */
63 1.34 thorpej
64 1.2 thorpej /*
65 1.2 thorpej * Common function for DMA map creation. May be called by bus-specific
66 1.2 thorpej * DMA map creation functions.
67 1.2 thorpej */
68 1.2 thorpej int
69 1.41 thorpej _bus_dmamap_create(bus_dma_tag_t t, bus_size_t size, int nsegments,
70 1.41 thorpej bus_size_t maxsegsz, bus_size_t boundary, int flags, bus_dmamap_t *dmamp)
71 1.2 thorpej {
72 1.2 thorpej struct alpha_bus_dmamap *map;
73 1.2 thorpej void *mapstore;
74 1.2 thorpej size_t mapsize;
75 1.2 thorpej
76 1.2 thorpej /*
77 1.35 mjacob * Allocate and initialize the DMA map. The end of the map
78 1.2 thorpej * is a variable-sized array of segments, so we allocate enough
79 1.2 thorpej * room for them in one shot.
80 1.2 thorpej *
81 1.2 thorpej * Note we don't preserve the WAITOK or NOWAIT flags. Preservation
82 1.56 simonb * of ALLOCNOW notifies others that we've reserved these resources,
83 1.2 thorpej * and they are not to be freed.
84 1.2 thorpej *
85 1.2 thorpej * The bus_dmamap_t includes one bus_dma_segment_t, hence
86 1.2 thorpej * the (nsegments - 1).
87 1.2 thorpej */
88 1.2 thorpej mapsize = sizeof(struct alpha_bus_dmamap) +
89 1.2 thorpej (sizeof(bus_dma_segment_t) * (nsegments - 1));
90 1.14 thorpej if ((mapstore = malloc(mapsize, M_DMAMAP,
91 1.2 thorpej (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL)
92 1.2 thorpej return (ENOMEM);
93 1.2 thorpej
94 1.47 thorpej memset(mapstore, 0, mapsize);
95 1.2 thorpej map = (struct alpha_bus_dmamap *)mapstore;
96 1.2 thorpej map->_dm_size = size;
97 1.2 thorpej map->_dm_segcnt = nsegments;
98 1.57 matt map->_dm_maxmaxsegsz = maxsegsz;
99 1.23 thorpej if (t->_boundary != 0 && t->_boundary < boundary)
100 1.23 thorpej map->_dm_boundary = t->_boundary;
101 1.23 thorpej else
102 1.23 thorpej map->_dm_boundary = boundary;
103 1.2 thorpej map->_dm_flags = flags & ~(BUS_DMA_WAITOK|BUS_DMA_NOWAIT);
104 1.57 matt map->dm_maxsegsz = maxsegsz;
105 1.10 thorpej map->dm_mapsize = 0; /* no valid mappings */
106 1.10 thorpej map->dm_nsegs = 0;
107 1.49 thorpej map->_dm_window = NULL;
108 1.2 thorpej
109 1.2 thorpej *dmamp = map;
110 1.2 thorpej return (0);
111 1.2 thorpej }
112 1.2 thorpej
113 1.2 thorpej /*
114 1.2 thorpej * Common function for DMA map destruction. May be called by bus-specific
115 1.2 thorpej * DMA map destruction functions.
116 1.2 thorpej */
117 1.2 thorpej void
118 1.41 thorpej _bus_dmamap_destroy(bus_dma_tag_t t, bus_dmamap_t map)
119 1.2 thorpej {
120 1.2 thorpej
121 1.14 thorpej free(map, M_DMAMAP);
122 1.2 thorpej }
123 1.2 thorpej
124 1.2 thorpej /*
125 1.9 thorpej * Utility function to load a linear buffer. lastaddrp holds state
126 1.9 thorpej * between invocations (for multiple-buffer loads). segp contains
127 1.9 thorpej * the starting segment on entrance, and the ending segment on exit.
128 1.9 thorpej * first indicates if this is the first invocation of this function.
129 1.2 thorpej */
130 1.2 thorpej int
131 1.43 thorpej _bus_dmamap_load_buffer_direct(bus_dma_tag_t t, bus_dmamap_t map,
132 1.41 thorpej void *buf, size_t buflen, struct proc *p, int flags, paddr_t *lastaddrp,
133 1.41 thorpej int *segp, int first)
134 1.2 thorpej {
135 1.2 thorpej bus_size_t sgsize;
136 1.22 thorpej bus_addr_t curaddr, lastaddr, baddr, bmask;
137 1.25 thorpej vaddr_t vaddr = (vaddr_t)buf;
138 1.9 thorpej int seg;
139 1.2 thorpej
140 1.9 thorpej lastaddr = *lastaddrp;
141 1.21 matt bmask = ~(map->_dm_boundary - 1);
142 1.2 thorpej
143 1.20 matt for (seg = *segp; buflen > 0 ; ) {
144 1.2 thorpej /*
145 1.2 thorpej * Get the physical address for this segment.
146 1.2 thorpej */
147 1.2 thorpej if (p != NULL)
148 1.31 thorpej (void) pmap_extract(p->p_vmspace->vm_map.pmap,
149 1.31 thorpej vaddr, &curaddr);
150 1.2 thorpej else
151 1.2 thorpej curaddr = vtophys(vaddr);
152 1.2 thorpej
153 1.19 thorpej /*
154 1.19 thorpej * If we're beyond the current DMA window, indicate
155 1.19 thorpej * that and try to fall back into SGMAPs.
156 1.19 thorpej */
157 1.26 thorpej if (t->_wsize != 0 && curaddr >= t->_wsize)
158 1.19 thorpej return (EINVAL);
159 1.19 thorpej
160 1.26 thorpej curaddr |= t->_wbase;
161 1.2 thorpej
162 1.2 thorpej /*
163 1.2 thorpej * Compute the segment size, and adjust counts.
164 1.2 thorpej */
165 1.52 thorpej sgsize = PAGE_SIZE - ((u_long)vaddr & PGOFSET);
166 1.2 thorpej if (buflen < sgsize)
167 1.2 thorpej sgsize = buflen;
168 1.57 matt if (map->dm_maxsegsz < sgsize)
169 1.57 matt sgsize = map->dm_maxsegsz;
170 1.22 thorpej
171 1.20 matt /*
172 1.22 thorpej * Make sure we don't cross any boundaries.
173 1.20 matt */
174 1.21 matt if (map->_dm_boundary > 0) {
175 1.20 matt baddr = (curaddr + map->_dm_boundary) & bmask;
176 1.22 thorpej if (sgsize > (baddr - curaddr))
177 1.22 thorpej sgsize = (baddr - curaddr);
178 1.20 matt }
179 1.2 thorpej
180 1.2 thorpej /*
181 1.2 thorpej * Insert chunk into a segment, coalescing with
182 1.2 thorpej * the previous segment if possible.
183 1.2 thorpej */
184 1.2 thorpej if (first) {
185 1.2 thorpej map->dm_segs[seg].ds_addr = curaddr;
186 1.2 thorpej map->dm_segs[seg].ds_len = sgsize;
187 1.2 thorpej first = 0;
188 1.2 thorpej } else {
189 1.36 thorpej if ((map->_dm_flags & DMAMAP_NO_COALESCE) == 0 &&
190 1.36 thorpej curaddr == lastaddr &&
191 1.2 thorpej (map->dm_segs[seg].ds_len + sgsize) <=
192 1.57 matt map->dm_maxsegsz &&
193 1.20 matt (map->_dm_boundary == 0 ||
194 1.20 matt (map->dm_segs[seg].ds_addr & bmask) ==
195 1.21 matt (curaddr & bmask)))
196 1.2 thorpej map->dm_segs[seg].ds_len += sgsize;
197 1.2 thorpej else {
198 1.20 matt if (++seg >= map->_dm_segcnt)
199 1.20 matt break;
200 1.2 thorpej map->dm_segs[seg].ds_addr = curaddr;
201 1.2 thorpej map->dm_segs[seg].ds_len = sgsize;
202 1.2 thorpej }
203 1.2 thorpej }
204 1.2 thorpej
205 1.2 thorpej lastaddr = curaddr + sgsize;
206 1.2 thorpej vaddr += sgsize;
207 1.2 thorpej buflen -= sgsize;
208 1.2 thorpej }
209 1.2 thorpej
210 1.9 thorpej *segp = seg;
211 1.9 thorpej *lastaddrp = lastaddr;
212 1.9 thorpej
213 1.2 thorpej /*
214 1.2 thorpej * Did we fit?
215 1.2 thorpej */
216 1.2 thorpej if (buflen != 0) {
217 1.2 thorpej /*
218 1.19 thorpej * If there is a chained window, we will automatically
219 1.19 thorpej * fall back to it.
220 1.2 thorpej */
221 1.2 thorpej return (EFBIG); /* XXX better return value here? */
222 1.2 thorpej }
223 1.19 thorpej
224 1.9 thorpej return (0);
225 1.9 thorpej }
226 1.9 thorpej
227 1.9 thorpej /*
228 1.9 thorpej * Common function for loading a direct-mapped DMA map with a linear
229 1.9 thorpej * buffer. Called by bus-specific DMA map load functions with the
230 1.9 thorpej * OR value appropriate for indicating "direct-mapped" for that
231 1.9 thorpej * chipset.
232 1.9 thorpej */
233 1.9 thorpej int
234 1.41 thorpej _bus_dmamap_load_direct(bus_dma_tag_t t, bus_dmamap_t map, void *buf,
235 1.41 thorpej bus_size_t buflen, struct proc *p, int flags)
236 1.9 thorpej {
237 1.25 thorpej paddr_t lastaddr;
238 1.9 thorpej int seg, error;
239 1.9 thorpej
240 1.9 thorpej /*
241 1.9 thorpej * Make sure that on error condition we return "no valid mappings".
242 1.9 thorpej */
243 1.10 thorpej map->dm_mapsize = 0;
244 1.9 thorpej map->dm_nsegs = 0;
245 1.57 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
246 1.59 mhitch KASSERT((map->_dm_flags & (BUS_DMA_READ|BUS_DMA_WRITE)) == 0);
247 1.2 thorpej
248 1.9 thorpej if (buflen > map->_dm_size)
249 1.9 thorpej return (EINVAL);
250 1.9 thorpej
251 1.9 thorpej seg = 0;
252 1.43 thorpej error = _bus_dmamap_load_buffer_direct(t, map, buf, buflen,
253 1.26 thorpej p, flags, &lastaddr, &seg, 1);
254 1.10 thorpej if (error == 0) {
255 1.10 thorpej map->dm_mapsize = buflen;
256 1.9 thorpej map->dm_nsegs = seg + 1;
257 1.49 thorpej map->_dm_window = t;
258 1.19 thorpej } else if (t->_next_window != NULL) {
259 1.19 thorpej /*
260 1.19 thorpej * Give the next window a chance.
261 1.19 thorpej */
262 1.19 thorpej error = bus_dmamap_load(t->_next_window, map, buf, buflen,
263 1.19 thorpej p, flags);
264 1.10 thorpej }
265 1.9 thorpej return (error);
266 1.2 thorpej }
267 1.2 thorpej
268 1.2 thorpej /*
269 1.42 thorpej * Like _bus_dmamap_load_direct(), but for mbufs.
270 1.2 thorpej */
271 1.2 thorpej int
272 1.41 thorpej _bus_dmamap_load_mbuf_direct(bus_dma_tag_t t, bus_dmamap_t map,
273 1.41 thorpej struct mbuf *m0, int flags)
274 1.2 thorpej {
275 1.25 thorpej paddr_t lastaddr;
276 1.9 thorpej int seg, error, first;
277 1.9 thorpej struct mbuf *m;
278 1.9 thorpej
279 1.9 thorpej /*
280 1.9 thorpej * Make sure that on error condition we return "no valid mappings."
281 1.9 thorpej */
282 1.10 thorpej map->dm_mapsize = 0;
283 1.9 thorpej map->dm_nsegs = 0;
284 1.57 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
285 1.59 mhitch KASSERT((map->_dm_flags & (BUS_DMA_READ|BUS_DMA_WRITE)) == 0);
286 1.9 thorpej
287 1.9 thorpej #ifdef DIAGNOSTIC
288 1.9 thorpej if ((m0->m_flags & M_PKTHDR) == 0)
289 1.43 thorpej panic("_bus_dmamap_load_mbuf_direct: no packet header");
290 1.9 thorpej #endif
291 1.2 thorpej
292 1.9 thorpej if (m0->m_pkthdr.len > map->_dm_size)
293 1.9 thorpej return (EINVAL);
294 1.9 thorpej
295 1.9 thorpej first = 1;
296 1.9 thorpej seg = 0;
297 1.9 thorpej error = 0;
298 1.9 thorpej for (m = m0; m != NULL && error == 0; m = m->m_next) {
299 1.53 thorpej if (m->m_len == 0)
300 1.53 thorpej continue;
301 1.53 thorpej /* XXX Could be better about coalescing. */
302 1.53 thorpej /* XXX Doesn't check boundaries. */
303 1.53 thorpej switch (m->m_flags & (M_EXT|M_EXT_CLUSTER)) {
304 1.53 thorpej case M_EXT|M_EXT_CLUSTER:
305 1.53 thorpej /* XXX KDASSERT */
306 1.53 thorpej KASSERT(m->m_ext.ext_paddr != M_PADDR_INVALID);
307 1.53 thorpej lastaddr = m->m_ext.ext_paddr +
308 1.53 thorpej (m->m_data - m->m_ext.ext_buf);
309 1.53 thorpej have_addr:
310 1.53 thorpej if (first == 0 &&
311 1.53 thorpej ++seg >= map->_dm_segcnt) {
312 1.53 thorpej error = EFBIG;
313 1.53 thorpej break;
314 1.53 thorpej }
315 1.53 thorpej
316 1.53 thorpej /*
317 1.53 thorpej * If we're beyond the current DMA window, indicate
318 1.53 thorpej * that and try to fall back into SGMAPs.
319 1.53 thorpej */
320 1.53 thorpej if (t->_wsize != 0 && lastaddr >= t->_wsize) {
321 1.53 thorpej error = EINVAL;
322 1.53 thorpej break;
323 1.53 thorpej }
324 1.53 thorpej lastaddr |= t->_wbase;
325 1.53 thorpej
326 1.53 thorpej map->dm_segs[seg].ds_addr = lastaddr;
327 1.53 thorpej map->dm_segs[seg].ds_len = m->m_len;
328 1.53 thorpej lastaddr += m->m_len;
329 1.53 thorpej break;
330 1.53 thorpej
331 1.53 thorpej case 0:
332 1.53 thorpej lastaddr = m->m_paddr + M_BUFOFFSET(m) +
333 1.53 thorpej (m->m_data - M_BUFADDR(m));
334 1.53 thorpej goto have_addr;
335 1.53 thorpej
336 1.53 thorpej default:
337 1.53 thorpej error = _bus_dmamap_load_buffer_direct(t, map,
338 1.53 thorpej m->m_data, m->m_len, NULL, flags, &lastaddr,
339 1.53 thorpej &seg, first);
340 1.53 thorpej }
341 1.9 thorpej first = 0;
342 1.9 thorpej }
343 1.10 thorpej if (error == 0) {
344 1.10 thorpej map->dm_mapsize = m0->m_pkthdr.len;
345 1.9 thorpej map->dm_nsegs = seg + 1;
346 1.49 thorpej map->_dm_window = t;
347 1.19 thorpej } else if (t->_next_window != NULL) {
348 1.19 thorpej /*
349 1.19 thorpej * Give the next window a chance.
350 1.19 thorpej */
351 1.19 thorpej error = bus_dmamap_load_mbuf(t->_next_window, map, m0, flags);
352 1.10 thorpej }
353 1.9 thorpej return (error);
354 1.2 thorpej }
355 1.2 thorpej
356 1.2 thorpej /*
357 1.42 thorpej * Like _bus_dmamap_load_direct(), but for uios.
358 1.2 thorpej */
359 1.2 thorpej int
360 1.41 thorpej _bus_dmamap_load_uio_direct(bus_dma_tag_t t, bus_dmamap_t map,
361 1.41 thorpej struct uio *uio, int flags)
362 1.2 thorpej {
363 1.25 thorpej paddr_t lastaddr;
364 1.24 thorpej int seg, i, error, first;
365 1.24 thorpej bus_size_t minlen, resid;
366 1.24 thorpej struct proc *p = NULL;
367 1.24 thorpej struct iovec *iov;
368 1.24 thorpej caddr_t addr;
369 1.24 thorpej
370 1.24 thorpej /*
371 1.24 thorpej * Make sure that on error condition we return "no valid mappings."
372 1.24 thorpej */
373 1.24 thorpej map->dm_mapsize = 0;
374 1.24 thorpej map->dm_nsegs = 0;
375 1.57 matt KASSERT(map->dm_maxsegsz <= map->_dm_maxmaxsegsz);
376 1.59 mhitch KASSERT((map->_dm_flags & (BUS_DMA_READ|BUS_DMA_WRITE)) == 0);
377 1.24 thorpej
378 1.24 thorpej resid = uio->uio_resid;
379 1.24 thorpej iov = uio->uio_iov;
380 1.24 thorpej
381 1.24 thorpej if (uio->uio_segflg == UIO_USERSPACE) {
382 1.55 fvdl p = uio->uio_procp;
383 1.24 thorpej #ifdef DIAGNOSTIC
384 1.24 thorpej if (p == NULL)
385 1.43 thorpej panic("_bus_dmamap_load_uio_direct: "
386 1.43 thorpej "USERSPACE but no proc");
387 1.24 thorpej #endif
388 1.24 thorpej }
389 1.24 thorpej
390 1.24 thorpej first = 1;
391 1.24 thorpej seg = 0;
392 1.24 thorpej error = 0;
393 1.24 thorpej for (i = 0; i < uio->uio_iovcnt && resid != 0 && error == 0; i++) {
394 1.24 thorpej /*
395 1.24 thorpej * Now at the first iovec to load. Load each iovec
396 1.24 thorpej * until we have exhausted the residual count.
397 1.24 thorpej */
398 1.27 thorpej minlen = resid < iov[i].iov_len ? resid : iov[i].iov_len;
399 1.27 thorpej addr = (caddr_t)iov[i].iov_base;
400 1.24 thorpej
401 1.43 thorpej error = _bus_dmamap_load_buffer_direct(t, map,
402 1.26 thorpej addr, minlen, p, flags, &lastaddr, &seg, first);
403 1.24 thorpej first = 0;
404 1.24 thorpej
405 1.24 thorpej resid -= minlen;
406 1.24 thorpej }
407 1.24 thorpej if (error == 0) {
408 1.24 thorpej map->dm_mapsize = uio->uio_resid;
409 1.24 thorpej map->dm_nsegs = seg + 1;
410 1.49 thorpej map->_dm_window = t;
411 1.24 thorpej } else if (t->_next_window != NULL) {
412 1.24 thorpej /*
413 1.24 thorpej * Give the next window a chance.
414 1.24 thorpej */
415 1.24 thorpej error = bus_dmamap_load_uio(t->_next_window, map, uio, flags);
416 1.24 thorpej }
417 1.24 thorpej return (error);
418 1.2 thorpej }
419 1.2 thorpej
420 1.2 thorpej /*
421 1.42 thorpej * Like _bus_dmamap_load_direct(), but for raw memory.
422 1.2 thorpej */
423 1.2 thorpej int
424 1.41 thorpej _bus_dmamap_load_raw_direct(bus_dma_tag_t t, bus_dmamap_t map,
425 1.41 thorpej bus_dma_segment_t *segs, int nsegs, bus_size_t size, int flags)
426 1.2 thorpej {
427 1.2 thorpej
428 1.18 thorpej panic("_bus_dmamap_load_raw_direct: not implemented");
429 1.2 thorpej }
430 1.2 thorpej
431 1.2 thorpej /*
432 1.2 thorpej * Common function for unloading a DMA map. May be called by
433 1.2 thorpej * chipset-specific DMA map unload functions.
434 1.2 thorpej */
435 1.2 thorpej void
436 1.41 thorpej _bus_dmamap_unload(bus_dma_tag_t t, bus_dmamap_t map)
437 1.2 thorpej {
438 1.2 thorpej
439 1.2 thorpej /*
440 1.2 thorpej * No resources to free; just mark the mappings as
441 1.2 thorpej * invalid.
442 1.2 thorpej */
443 1.57 matt map->dm_maxsegsz = map->_dm_maxmaxsegsz;
444 1.10 thorpej map->dm_mapsize = 0;
445 1.2 thorpej map->dm_nsegs = 0;
446 1.49 thorpej map->_dm_window = NULL;
447 1.59 mhitch map->_dm_flags &= ~(BUS_DMA_READ|BUS_DMA_WRITE);
448 1.2 thorpej }
449 1.2 thorpej
450 1.2 thorpej /*
451 1.2 thorpej * Common function for DMA map synchronization. May be called
452 1.2 thorpej * by chipset-specific DMA map synchronization functions.
453 1.2 thorpej */
454 1.2 thorpej void
455 1.41 thorpej _bus_dmamap_sync(bus_dma_tag_t t, bus_dmamap_t map, bus_addr_t offset,
456 1.41 thorpej bus_size_t len, int ops)
457 1.2 thorpej {
458 1.2 thorpej
459 1.13 thorpej /*
460 1.13 thorpej * Flush the store buffer.
461 1.13 thorpej */
462 1.13 thorpej alpha_mb();
463 1.2 thorpej }
464 1.2 thorpej
465 1.2 thorpej /*
466 1.2 thorpej * Common function for DMA-safe memory allocation. May be called
467 1.2 thorpej * by bus-specific DMA memory allocation functions.
468 1.2 thorpej */
469 1.2 thorpej int
470 1.41 thorpej _bus_dmamem_alloc(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment,
471 1.41 thorpej bus_size_t boundary, bus_dma_segment_t *segs, int nsegs, int *rsegs,
472 1.41 thorpej int flags)
473 1.2 thorpej {
474 1.34 thorpej
475 1.34 thorpej return (_bus_dmamem_alloc_range(t, size, alignment, boundary,
476 1.34 thorpej segs, nsegs, rsegs, flags, 0, trunc_page(avail_end)));
477 1.34 thorpej }
478 1.34 thorpej
479 1.34 thorpej /*
480 1.34 thorpej * Allocate physical memory from the given physical address range.
481 1.34 thorpej * Called by DMA-safe memory allocation methods.
482 1.34 thorpej */
483 1.34 thorpej int
484 1.41 thorpej _bus_dmamem_alloc_range(bus_dma_tag_t t, bus_size_t size, bus_size_t alignment,
485 1.41 thorpej bus_size_t boundary, bus_dma_segment_t *segs, int nsegs, int *rsegs,
486 1.41 thorpej int flags, paddr_t low, paddr_t high)
487 1.34 thorpej {
488 1.34 thorpej paddr_t curaddr, lastaddr;
489 1.46 chs struct vm_page *m;
490 1.2 thorpej struct pglist mlist;
491 1.2 thorpej int curseg, error;
492 1.2 thorpej
493 1.2 thorpej /* Always round the size. */
494 1.2 thorpej size = round_page(size);
495 1.2 thorpej
496 1.2 thorpej /*
497 1.2 thorpej * Allocate pages from the VM system.
498 1.2 thorpej */
499 1.34 thorpej error = uvm_pglistalloc(size, low, high, alignment, boundary,
500 1.16 thorpej &mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
501 1.2 thorpej if (error)
502 1.2 thorpej return (error);
503 1.2 thorpej
504 1.2 thorpej /*
505 1.2 thorpej * Compute the location, size, and number of segments actually
506 1.2 thorpej * returned by the VM code.
507 1.2 thorpej */
508 1.2 thorpej m = mlist.tqh_first;
509 1.2 thorpej curseg = 0;
510 1.2 thorpej lastaddr = segs[curseg].ds_addr = VM_PAGE_TO_PHYS(m);
511 1.2 thorpej segs[curseg].ds_len = PAGE_SIZE;
512 1.2 thorpej m = m->pageq.tqe_next;
513 1.2 thorpej
514 1.2 thorpej for (; m != NULL; m = m->pageq.tqe_next) {
515 1.2 thorpej curaddr = VM_PAGE_TO_PHYS(m);
516 1.2 thorpej #ifdef DIAGNOSTIC
517 1.7 thorpej if (curaddr < avail_start || curaddr >= high) {
518 1.44 soren printf("uvm_pglistalloc returned non-sensical"
519 1.2 thorpej " address 0x%lx\n", curaddr);
520 1.2 thorpej panic("_bus_dmamem_alloc");
521 1.2 thorpej }
522 1.2 thorpej #endif
523 1.2 thorpej if (curaddr == (lastaddr + PAGE_SIZE))
524 1.2 thorpej segs[curseg].ds_len += PAGE_SIZE;
525 1.2 thorpej else {
526 1.2 thorpej curseg++;
527 1.2 thorpej segs[curseg].ds_addr = curaddr;
528 1.2 thorpej segs[curseg].ds_len = PAGE_SIZE;
529 1.2 thorpej }
530 1.2 thorpej lastaddr = curaddr;
531 1.2 thorpej }
532 1.2 thorpej
533 1.2 thorpej *rsegs = curseg + 1;
534 1.2 thorpej
535 1.2 thorpej return (0);
536 1.2 thorpej }
537 1.2 thorpej
538 1.2 thorpej /*
539 1.2 thorpej * Common function for freeing DMA-safe memory. May be called by
540 1.2 thorpej * bus-specific DMA memory free functions.
541 1.2 thorpej */
542 1.2 thorpej void
543 1.41 thorpej _bus_dmamem_free(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs)
544 1.2 thorpej {
545 1.46 chs struct vm_page *m;
546 1.2 thorpej bus_addr_t addr;
547 1.2 thorpej struct pglist mlist;
548 1.2 thorpej int curseg;
549 1.2 thorpej
550 1.2 thorpej /*
551 1.2 thorpej * Build a list of pages to free back to the VM system.
552 1.2 thorpej */
553 1.2 thorpej TAILQ_INIT(&mlist);
554 1.2 thorpej for (curseg = 0; curseg < nsegs; curseg++) {
555 1.2 thorpej for (addr = segs[curseg].ds_addr;
556 1.2 thorpej addr < (segs[curseg].ds_addr + segs[curseg].ds_len);
557 1.2 thorpej addr += PAGE_SIZE) {
558 1.2 thorpej m = PHYS_TO_VM_PAGE(addr);
559 1.2 thorpej TAILQ_INSERT_TAIL(&mlist, m, pageq);
560 1.2 thorpej }
561 1.2 thorpej }
562 1.2 thorpej
563 1.16 thorpej uvm_pglistfree(&mlist);
564 1.2 thorpej }
565 1.2 thorpej
566 1.2 thorpej /*
567 1.2 thorpej * Common function for mapping DMA-safe memory. May be called by
568 1.2 thorpej * bus-specific DMA memory map functions.
569 1.2 thorpej */
570 1.2 thorpej int
571 1.41 thorpej _bus_dmamem_map(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
572 1.41 thorpej size_t size, caddr_t *kvap, int flags)
573 1.2 thorpej {
574 1.25 thorpej vaddr_t va;
575 1.2 thorpej bus_addr_t addr;
576 1.16 thorpej int curseg;
577 1.60 yamt const uvm_flag_t kmflags =
578 1.60 yamt (flags & BUS_DMA_NOWAIT) != 0 ? UVM_KMF_NOWAIT : 0;
579 1.2 thorpej
580 1.8 thorpej /*
581 1.8 thorpej * If we're only mapping 1 segment, use K0SEG, to avoid
582 1.8 thorpej * TLB thrashing.
583 1.8 thorpej */
584 1.8 thorpej if (nsegs == 1) {
585 1.8 thorpej *kvap = (caddr_t)ALPHA_PHYS_TO_K0SEG(segs[0].ds_addr);
586 1.8 thorpej return (0);
587 1.8 thorpej }
588 1.8 thorpej
589 1.2 thorpej size = round_page(size);
590 1.3 thorpej
591 1.60 yamt va = uvm_km_alloc(kernel_map, size, 0, UVM_KMF_VAONLY | kmflags);
592 1.3 thorpej
593 1.2 thorpej if (va == 0)
594 1.2 thorpej return (ENOMEM);
595 1.2 thorpej
596 1.2 thorpej *kvap = (caddr_t)va;
597 1.2 thorpej
598 1.2 thorpej for (curseg = 0; curseg < nsegs; curseg++) {
599 1.2 thorpej for (addr = segs[curseg].ds_addr;
600 1.2 thorpej addr < (segs[curseg].ds_addr + segs[curseg].ds_len);
601 1.52 thorpej addr += PAGE_SIZE, va += PAGE_SIZE, size -= PAGE_SIZE) {
602 1.2 thorpej if (size == 0)
603 1.2 thorpej panic("_bus_dmamem_map: size botch");
604 1.2 thorpej pmap_enter(pmap_kernel(), va, addr,
605 1.33 thorpej VM_PROT_READ | VM_PROT_WRITE,
606 1.33 thorpej PMAP_WIRED | VM_PROT_READ | VM_PROT_WRITE);
607 1.2 thorpej }
608 1.2 thorpej }
609 1.48 chris pmap_update(pmap_kernel());
610 1.2 thorpej
611 1.2 thorpej return (0);
612 1.2 thorpej }
613 1.2 thorpej
614 1.2 thorpej /*
615 1.2 thorpej * Common function for unmapping DMA-safe memory. May be called by
616 1.2 thorpej * bus-specific DMA memory unmapping functions.
617 1.2 thorpej */
618 1.2 thorpej void
619 1.41 thorpej _bus_dmamem_unmap(bus_dma_tag_t t, caddr_t kva, size_t size)
620 1.2 thorpej {
621 1.2 thorpej
622 1.2 thorpej #ifdef DIAGNOSTIC
623 1.2 thorpej if ((u_long)kva & PGOFSET)
624 1.2 thorpej panic("_bus_dmamem_unmap");
625 1.2 thorpej #endif
626 1.8 thorpej
627 1.8 thorpej /*
628 1.8 thorpej * Nothing to do if we mapped it with K0SEG.
629 1.8 thorpej */
630 1.8 thorpej if (kva >= (caddr_t)ALPHA_K0SEG_BASE &&
631 1.8 thorpej kva <= (caddr_t)ALPHA_K0SEG_END)
632 1.8 thorpej return;
633 1.2 thorpej
634 1.2 thorpej size = round_page(size);
635 1.58 yamt pmap_remove(pmap_kernel(), (vaddr_t)kva, (vaddr_t)kva + size);
636 1.58 yamt pmap_update(pmap_kernel());
637 1.58 yamt uvm_km_free(kernel_map, (vaddr_t)kva, size, UVM_KMF_VAONLY);
638 1.2 thorpej }
639 1.2 thorpej
640 1.2 thorpej /*
641 1.2 thorpej * Common functin for mmap(2)'ing DMA-safe memory. May be called by
642 1.2 thorpej * bus-specific DMA mmap(2)'ing functions.
643 1.2 thorpej */
644 1.37 simonb paddr_t
645 1.41 thorpej _bus_dmamem_mmap(bus_dma_tag_t t, bus_dma_segment_t *segs, int nsegs,
646 1.41 thorpej off_t off, int prot, int flags)
647 1.2 thorpej {
648 1.6 thorpej int i;
649 1.2 thorpej
650 1.6 thorpej for (i = 0; i < nsegs; i++) {
651 1.6 thorpej #ifdef DIAGNOSTIC
652 1.6 thorpej if (off & PGOFSET)
653 1.6 thorpej panic("_bus_dmamem_mmap: offset unaligned");
654 1.6 thorpej if (segs[i].ds_addr & PGOFSET)
655 1.6 thorpej panic("_bus_dmamem_mmap: segment unaligned");
656 1.6 thorpej if (segs[i].ds_len & PGOFSET)
657 1.6 thorpej panic("_bus_dmamem_mmap: segment size not multiple"
658 1.6 thorpej " of page size");
659 1.6 thorpej #endif
660 1.6 thorpej if (off >= segs[i].ds_len) {
661 1.6 thorpej off -= segs[i].ds_len;
662 1.6 thorpej continue;
663 1.6 thorpej }
664 1.6 thorpej
665 1.6 thorpej return (alpha_btop((caddr_t)segs[i].ds_addr + off));
666 1.6 thorpej }
667 1.6 thorpej
668 1.6 thorpej /* Page not found. */
669 1.6 thorpej return (-1);
670 1.2 thorpej }
671