bus_dma.c revision 1.20 1 1.20 matt /* $NetBSD: bus_dma.c,v 1.20 1998/05/29 15:25:07 matt 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.16 thorpej #include "opt_uvm.h"
41 1.17 thorpej #include "opt_pmap_new.h"
42 1.16 thorpej
43 1.2 thorpej #include <sys/cdefs.h> /* RCS ID & Copyright macro defns */
44 1.2 thorpej
45 1.20 matt __KERNEL_RCSID(0, "$NetBSD: bus_dma.c,v 1.20 1998/05/29 15:25:07 matt Exp $");
46 1.2 thorpej
47 1.2 thorpej #include <sys/param.h>
48 1.2 thorpej #include <sys/systm.h>
49 1.2 thorpej #include <sys/kernel.h>
50 1.2 thorpej #include <sys/device.h>
51 1.2 thorpej #include <sys/malloc.h>
52 1.2 thorpej #include <sys/proc.h>
53 1.9 thorpej #include <sys/mbuf.h>
54 1.2 thorpej
55 1.2 thorpej #include <vm/vm.h>
56 1.2 thorpej #include <vm/vm_kern.h>
57 1.16 thorpej #if defined(UVM)
58 1.16 thorpej #include <uvm/uvm_extern.h>
59 1.16 thorpej #endif
60 1.2 thorpej
61 1.2 thorpej #define _ALPHA_BUS_DMA_PRIVATE
62 1.2 thorpej #include <machine/bus.h>
63 1.3 thorpej #include <machine/intr.h>
64 1.2 thorpej
65 1.9 thorpej int _bus_dmamap_load_buffer_direct_common __P((bus_dmamap_t,
66 1.9 thorpej void *, bus_size_t, struct proc *, int, bus_addr_t,
67 1.19 thorpej bus_size_t, vm_offset_t *, int *, int));
68 1.9 thorpej
69 1.2 thorpej /*
70 1.2 thorpej * Common function for DMA map creation. May be called by bus-specific
71 1.2 thorpej * DMA map creation functions.
72 1.2 thorpej */
73 1.2 thorpej int
74 1.2 thorpej _bus_dmamap_create(t, size, nsegments, maxsegsz, boundary, flags, dmamp)
75 1.2 thorpej bus_dma_tag_t t;
76 1.2 thorpej bus_size_t size;
77 1.2 thorpej int nsegments;
78 1.2 thorpej bus_size_t maxsegsz;
79 1.2 thorpej bus_size_t boundary;
80 1.2 thorpej int flags;
81 1.2 thorpej bus_dmamap_t *dmamp;
82 1.2 thorpej {
83 1.2 thorpej struct alpha_bus_dmamap *map;
84 1.2 thorpej void *mapstore;
85 1.2 thorpej size_t mapsize;
86 1.2 thorpej
87 1.2 thorpej /*
88 1.2 thorpej * Allcoate and initialize the DMA map. The end of the map
89 1.2 thorpej * is a variable-sized array of segments, so we allocate enough
90 1.2 thorpej * room for them in one shot.
91 1.2 thorpej *
92 1.2 thorpej * Note we don't preserve the WAITOK or NOWAIT flags. Preservation
93 1.2 thorpej * of ALLOCNOW notifes others that we've reserved these resources,
94 1.2 thorpej * and they are not to be freed.
95 1.2 thorpej *
96 1.2 thorpej * The bus_dmamap_t includes one bus_dma_segment_t, hence
97 1.2 thorpej * the (nsegments - 1).
98 1.2 thorpej */
99 1.2 thorpej mapsize = sizeof(struct alpha_bus_dmamap) +
100 1.2 thorpej (sizeof(bus_dma_segment_t) * (nsegments - 1));
101 1.14 thorpej if ((mapstore = malloc(mapsize, M_DMAMAP,
102 1.2 thorpej (flags & BUS_DMA_NOWAIT) ? M_NOWAIT : M_WAITOK)) == NULL)
103 1.2 thorpej return (ENOMEM);
104 1.2 thorpej
105 1.2 thorpej bzero(mapstore, mapsize);
106 1.2 thorpej map = (struct alpha_bus_dmamap *)mapstore;
107 1.2 thorpej map->_dm_size = size;
108 1.2 thorpej map->_dm_segcnt = nsegments;
109 1.2 thorpej map->_dm_maxsegsz = maxsegsz;
110 1.2 thorpej map->_dm_boundary = boundary;
111 1.2 thorpej map->_dm_flags = flags & ~(BUS_DMA_WAITOK|BUS_DMA_NOWAIT);
112 1.10 thorpej map->dm_mapsize = 0; /* no valid mappings */
113 1.10 thorpej map->dm_nsegs = 0;
114 1.2 thorpej
115 1.2 thorpej *dmamp = map;
116 1.2 thorpej return (0);
117 1.2 thorpej }
118 1.2 thorpej
119 1.2 thorpej /*
120 1.2 thorpej * Common function for DMA map destruction. May be called by bus-specific
121 1.2 thorpej * DMA map destruction functions.
122 1.2 thorpej */
123 1.2 thorpej void
124 1.2 thorpej _bus_dmamap_destroy(t, map)
125 1.2 thorpej bus_dma_tag_t t;
126 1.2 thorpej bus_dmamap_t map;
127 1.2 thorpej {
128 1.2 thorpej
129 1.14 thorpej free(map, M_DMAMAP);
130 1.2 thorpej }
131 1.2 thorpej
132 1.2 thorpej /*
133 1.9 thorpej * Utility function to load a linear buffer. lastaddrp holds state
134 1.9 thorpej * between invocations (for multiple-buffer loads). segp contains
135 1.9 thorpej * the starting segment on entrance, and the ending segment on exit.
136 1.9 thorpej * first indicates if this is the first invocation of this function.
137 1.2 thorpej */
138 1.2 thorpej int
139 1.9 thorpej _bus_dmamap_load_buffer_direct_common(map, buf, buflen, p, flags, wbase,
140 1.19 thorpej wsize, lastaddrp, segp, first)
141 1.2 thorpej bus_dmamap_t map;
142 1.2 thorpej void *buf;
143 1.2 thorpej bus_size_t buflen;
144 1.2 thorpej struct proc *p;
145 1.2 thorpej int flags;
146 1.2 thorpej bus_addr_t wbase;
147 1.19 thorpej bus_size_t wsize;
148 1.9 thorpej vm_offset_t *lastaddrp;
149 1.9 thorpej int *segp;
150 1.9 thorpej int first;
151 1.2 thorpej {
152 1.2 thorpej bus_size_t sgsize;
153 1.20 matt vm_offset_t curaddr, lastaddr, baddr, bmask;
154 1.2 thorpej vm_offset_t vaddr = (vm_offset_t)buf;
155 1.9 thorpej int seg;
156 1.2 thorpej
157 1.9 thorpej lastaddr = *lastaddrp;
158 1.20 matt if (map->_dm_boundary > 0)
159 1.20 matt bmask = ~(map->_dm_boundary - 1);
160 1.20 matt else
161 1.20 matt bmask = 0;
162 1.2 thorpej
163 1.20 matt for (seg = *segp; buflen > 0 ; ) {
164 1.2 thorpej /*
165 1.2 thorpej * Get the physical address for this segment.
166 1.2 thorpej */
167 1.2 thorpej if (p != NULL)
168 1.5 thorpej curaddr = pmap_extract(p->p_vmspace->vm_map.pmap,
169 1.5 thorpej vaddr);
170 1.2 thorpej else
171 1.2 thorpej curaddr = vtophys(vaddr);
172 1.2 thorpej
173 1.19 thorpej /*
174 1.19 thorpej * If we're beyond the current DMA window, indicate
175 1.19 thorpej * that and try to fall back into SGMAPs.
176 1.19 thorpej */
177 1.19 thorpej if (wsize != 0 && curaddr >= wsize)
178 1.19 thorpej return (EINVAL);
179 1.19 thorpej
180 1.2 thorpej curaddr |= wbase;
181 1.2 thorpej
182 1.2 thorpej /*
183 1.2 thorpej * Compute the segment size, and adjust counts.
184 1.2 thorpej */
185 1.2 thorpej sgsize = NBPG - ((u_long)vaddr & PGOFSET);
186 1.2 thorpej if (buflen < sgsize)
187 1.2 thorpej sgsize = buflen;
188 1.20 matt /*
189 1.20 matt * Make sure we don't cross any boundaries
190 1.20 matt */
191 1.20 matt if (bmask) {
192 1.20 matt baddr = (curaddr + map->_dm_boundary) & bmask;
193 1.20 matt if (baddr - curaddr < sgsize)
194 1.20 matt sgsize = baddr - curaddr;
195 1.20 matt }
196 1.2 thorpej
197 1.2 thorpej /*
198 1.2 thorpej * Insert chunk into a segment, coalescing with
199 1.2 thorpej * the previous segment if possible.
200 1.2 thorpej */
201 1.2 thorpej if (first) {
202 1.2 thorpej map->dm_segs[seg].ds_addr = curaddr;
203 1.2 thorpej map->dm_segs[seg].ds_len = sgsize;
204 1.2 thorpej first = 0;
205 1.2 thorpej } else {
206 1.2 thorpej if (curaddr == lastaddr &&
207 1.2 thorpej (map->dm_segs[seg].ds_len + sgsize) <=
208 1.20 matt map->_dm_maxsegsz &&
209 1.20 matt (map->_dm_boundary == 0 ||
210 1.20 matt (map->dm_segs[seg].ds_addr & bmask) ==
211 1.20 matt ((curaddr + sgsize - 1) & bmask)))
212 1.2 thorpej map->dm_segs[seg].ds_len += sgsize;
213 1.2 thorpej else {
214 1.20 matt if (++seg >= map->_dm_segcnt)
215 1.20 matt break;
216 1.2 thorpej map->dm_segs[seg].ds_addr = curaddr;
217 1.2 thorpej map->dm_segs[seg].ds_len = sgsize;
218 1.2 thorpej }
219 1.2 thorpej }
220 1.2 thorpej
221 1.2 thorpej lastaddr = curaddr + sgsize;
222 1.2 thorpej vaddr += sgsize;
223 1.2 thorpej buflen -= sgsize;
224 1.2 thorpej }
225 1.2 thorpej
226 1.9 thorpej *segp = seg;
227 1.9 thorpej *lastaddrp = lastaddr;
228 1.9 thorpej
229 1.2 thorpej /*
230 1.2 thorpej * Did we fit?
231 1.2 thorpej */
232 1.2 thorpej if (buflen != 0) {
233 1.2 thorpej /*
234 1.19 thorpej * If there is a chained window, we will automatically
235 1.19 thorpej * fall back to it.
236 1.2 thorpej */
237 1.2 thorpej return (EFBIG); /* XXX better return value here? */
238 1.2 thorpej }
239 1.19 thorpej
240 1.9 thorpej return (0);
241 1.9 thorpej }
242 1.9 thorpej
243 1.9 thorpej /*
244 1.9 thorpej * Common function for loading a direct-mapped DMA map with a linear
245 1.9 thorpej * buffer. Called by bus-specific DMA map load functions with the
246 1.9 thorpej * OR value appropriate for indicating "direct-mapped" for that
247 1.9 thorpej * chipset.
248 1.9 thorpej */
249 1.9 thorpej int
250 1.18 thorpej _bus_dmamap_load_direct(t, map, buf, buflen, p, flags)
251 1.9 thorpej bus_dma_tag_t t;
252 1.9 thorpej bus_dmamap_t map;
253 1.9 thorpej void *buf;
254 1.9 thorpej bus_size_t buflen;
255 1.9 thorpej struct proc *p;
256 1.9 thorpej int flags;
257 1.9 thorpej {
258 1.9 thorpej vm_offset_t lastaddr;
259 1.9 thorpej int seg, error;
260 1.9 thorpej
261 1.9 thorpej /*
262 1.9 thorpej * Make sure that on error condition we return "no valid mappings".
263 1.9 thorpej */
264 1.10 thorpej map->dm_mapsize = 0;
265 1.9 thorpej map->dm_nsegs = 0;
266 1.2 thorpej
267 1.9 thorpej if (buflen > map->_dm_size)
268 1.9 thorpej return (EINVAL);
269 1.9 thorpej
270 1.9 thorpej seg = 0;
271 1.9 thorpej error = _bus_dmamap_load_buffer_direct_common(map, buf, buflen,
272 1.19 thorpej p, flags, t->_wbase, t->_wsize, &lastaddr, &seg, 1);
273 1.10 thorpej if (error == 0) {
274 1.10 thorpej map->dm_mapsize = buflen;
275 1.9 thorpej map->dm_nsegs = seg + 1;
276 1.19 thorpej } else if (t->_next_window != NULL) {
277 1.19 thorpej /*
278 1.19 thorpej * Give the next window a chance.
279 1.19 thorpej */
280 1.19 thorpej error = bus_dmamap_load(t->_next_window, map, buf, buflen,
281 1.19 thorpej p, flags);
282 1.10 thorpej }
283 1.9 thorpej return (error);
284 1.2 thorpej }
285 1.2 thorpej
286 1.2 thorpej /*
287 1.2 thorpej * Like _bus_dmamap_load_direct_common(), but for mbufs.
288 1.2 thorpej */
289 1.2 thorpej int
290 1.18 thorpej _bus_dmamap_load_mbuf_direct(t, map, m0, flags)
291 1.2 thorpej bus_dma_tag_t t;
292 1.2 thorpej bus_dmamap_t map;
293 1.9 thorpej struct mbuf *m0;
294 1.2 thorpej int flags;
295 1.2 thorpej {
296 1.9 thorpej vm_offset_t lastaddr;
297 1.9 thorpej int seg, error, first;
298 1.9 thorpej struct mbuf *m;
299 1.9 thorpej
300 1.9 thorpej /*
301 1.9 thorpej * Make sure that on error condition we return "no valid mappings."
302 1.9 thorpej */
303 1.10 thorpej map->dm_mapsize = 0;
304 1.9 thorpej map->dm_nsegs = 0;
305 1.9 thorpej
306 1.9 thorpej #ifdef DIAGNOSTIC
307 1.9 thorpej if ((m0->m_flags & M_PKTHDR) == 0)
308 1.9 thorpej panic("_bus_dmamap_load_mbuf_direct_common: no packet header");
309 1.9 thorpej #endif
310 1.2 thorpej
311 1.9 thorpej if (m0->m_pkthdr.len > map->_dm_size)
312 1.9 thorpej return (EINVAL);
313 1.9 thorpej
314 1.9 thorpej first = 1;
315 1.9 thorpej seg = 0;
316 1.9 thorpej error = 0;
317 1.9 thorpej for (m = m0; m != NULL && error == 0; m = m->m_next) {
318 1.9 thorpej error = _bus_dmamap_load_buffer_direct_common(map,
319 1.19 thorpej m->m_data, m->m_len, NULL, flags, t->_wbase, t->_wsize,
320 1.19 thorpej &lastaddr, &seg, first);
321 1.9 thorpej first = 0;
322 1.9 thorpej }
323 1.10 thorpej if (error == 0) {
324 1.10 thorpej map->dm_mapsize = m0->m_pkthdr.len;
325 1.9 thorpej map->dm_nsegs = seg + 1;
326 1.19 thorpej } else if (t->_next_window != NULL) {
327 1.19 thorpej /*
328 1.19 thorpej * Give the next window a chance.
329 1.19 thorpej */
330 1.19 thorpej error = bus_dmamap_load_mbuf(t->_next_window, map, m0, flags);
331 1.10 thorpej }
332 1.9 thorpej return (error);
333 1.2 thorpej }
334 1.2 thorpej
335 1.2 thorpej /*
336 1.2 thorpej * Like _bus_dmamap_load_direct_common(), but for uios.
337 1.2 thorpej */
338 1.2 thorpej int
339 1.18 thorpej _bus_dmamap_load_uio_direct(t, map, uio, flags)
340 1.2 thorpej bus_dma_tag_t t;
341 1.2 thorpej bus_dmamap_t map;
342 1.2 thorpej struct uio *uio;
343 1.2 thorpej int flags;
344 1.2 thorpej {
345 1.2 thorpej
346 1.18 thorpej panic("_bus_dmamap_load_uio_direct: not implemented");
347 1.2 thorpej }
348 1.2 thorpej
349 1.2 thorpej /*
350 1.2 thorpej * Like _bus_dmamap_load_direct_common(), but for raw memory.
351 1.2 thorpej */
352 1.2 thorpej int
353 1.18 thorpej _bus_dmamap_load_raw_direct(t, map, segs, nsegs, size, flags)
354 1.2 thorpej bus_dma_tag_t t;
355 1.2 thorpej bus_dmamap_t map;
356 1.2 thorpej bus_dma_segment_t *segs;
357 1.2 thorpej int nsegs;
358 1.2 thorpej bus_size_t size;
359 1.2 thorpej int flags;
360 1.2 thorpej {
361 1.2 thorpej
362 1.18 thorpej panic("_bus_dmamap_load_raw_direct: not implemented");
363 1.2 thorpej }
364 1.2 thorpej
365 1.2 thorpej /*
366 1.2 thorpej * Common function for unloading a DMA map. May be called by
367 1.2 thorpej * chipset-specific DMA map unload functions.
368 1.2 thorpej */
369 1.2 thorpej void
370 1.2 thorpej _bus_dmamap_unload(t, map)
371 1.2 thorpej bus_dma_tag_t t;
372 1.2 thorpej bus_dmamap_t map;
373 1.2 thorpej {
374 1.2 thorpej
375 1.2 thorpej /*
376 1.2 thorpej * No resources to free; just mark the mappings as
377 1.2 thorpej * invalid.
378 1.2 thorpej */
379 1.10 thorpej map->dm_mapsize = 0;
380 1.2 thorpej map->dm_nsegs = 0;
381 1.2 thorpej }
382 1.2 thorpej
383 1.2 thorpej /*
384 1.2 thorpej * Common function for DMA map synchronization. May be called
385 1.2 thorpej * by chipset-specific DMA map synchronization functions.
386 1.2 thorpej */
387 1.2 thorpej void
388 1.12 thorpej _bus_dmamap_sync(t, map, offset, len, ops)
389 1.2 thorpej bus_dma_tag_t t;
390 1.2 thorpej bus_dmamap_t map;
391 1.12 thorpej bus_addr_t offset;
392 1.12 thorpej bus_size_t len;
393 1.11 thorpej int ops;
394 1.2 thorpej {
395 1.2 thorpej
396 1.13 thorpej /*
397 1.13 thorpej * Flush the store buffer.
398 1.13 thorpej */
399 1.13 thorpej alpha_mb();
400 1.2 thorpej }
401 1.2 thorpej
402 1.2 thorpej /*
403 1.2 thorpej * Common function for DMA-safe memory allocation. May be called
404 1.2 thorpej * by bus-specific DMA memory allocation functions.
405 1.2 thorpej */
406 1.2 thorpej int
407 1.2 thorpej _bus_dmamem_alloc(t, size, alignment, boundary, segs, nsegs, rsegs, flags)
408 1.2 thorpej bus_dma_tag_t t;
409 1.2 thorpej bus_size_t size, alignment, boundary;
410 1.2 thorpej bus_dma_segment_t *segs;
411 1.2 thorpej int nsegs;
412 1.2 thorpej int *rsegs;
413 1.2 thorpej int flags;
414 1.2 thorpej {
415 1.7 thorpej extern vm_offset_t avail_start, avail_end;
416 1.2 thorpej vm_offset_t curaddr, lastaddr, high;
417 1.2 thorpej vm_page_t m;
418 1.2 thorpej struct pglist mlist;
419 1.2 thorpej int curseg, error;
420 1.2 thorpej
421 1.2 thorpej /* Always round the size. */
422 1.2 thorpej size = round_page(size);
423 1.2 thorpej
424 1.7 thorpej high = avail_end - PAGE_SIZE;
425 1.2 thorpej
426 1.2 thorpej /*
427 1.2 thorpej * Allocate pages from the VM system.
428 1.2 thorpej */
429 1.2 thorpej TAILQ_INIT(&mlist);
430 1.16 thorpej #if defined(UVM)
431 1.16 thorpej error = uvm_pglistalloc(size, avail_start, high, alignment, boundary,
432 1.16 thorpej &mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
433 1.16 thorpej #else
434 1.7 thorpej error = vm_page_alloc_memory(size, avail_start, high,
435 1.2 thorpej alignment, boundary, &mlist, nsegs, (flags & BUS_DMA_NOWAIT) == 0);
436 1.16 thorpej #endif
437 1.2 thorpej if (error)
438 1.2 thorpej return (error);
439 1.2 thorpej
440 1.2 thorpej /*
441 1.2 thorpej * Compute the location, size, and number of segments actually
442 1.2 thorpej * returned by the VM code.
443 1.2 thorpej */
444 1.2 thorpej m = mlist.tqh_first;
445 1.2 thorpej curseg = 0;
446 1.2 thorpej lastaddr = segs[curseg].ds_addr = VM_PAGE_TO_PHYS(m);
447 1.2 thorpej segs[curseg].ds_len = PAGE_SIZE;
448 1.2 thorpej m = m->pageq.tqe_next;
449 1.2 thorpej
450 1.2 thorpej for (; m != NULL; m = m->pageq.tqe_next) {
451 1.2 thorpej curaddr = VM_PAGE_TO_PHYS(m);
452 1.2 thorpej #ifdef DIAGNOSTIC
453 1.7 thorpej if (curaddr < avail_start || curaddr >= high) {
454 1.2 thorpej printf("vm_page_alloc_memory returned non-sensical"
455 1.2 thorpej " address 0x%lx\n", curaddr);
456 1.2 thorpej panic("_bus_dmamem_alloc");
457 1.2 thorpej }
458 1.2 thorpej #endif
459 1.2 thorpej if (curaddr == (lastaddr + PAGE_SIZE))
460 1.2 thorpej segs[curseg].ds_len += PAGE_SIZE;
461 1.2 thorpej else {
462 1.2 thorpej curseg++;
463 1.2 thorpej segs[curseg].ds_addr = curaddr;
464 1.2 thorpej segs[curseg].ds_len = PAGE_SIZE;
465 1.2 thorpej }
466 1.2 thorpej lastaddr = curaddr;
467 1.2 thorpej }
468 1.2 thorpej
469 1.2 thorpej *rsegs = curseg + 1;
470 1.2 thorpej
471 1.2 thorpej return (0);
472 1.2 thorpej }
473 1.2 thorpej
474 1.2 thorpej /*
475 1.2 thorpej * Common function for freeing DMA-safe memory. May be called by
476 1.2 thorpej * bus-specific DMA memory free functions.
477 1.2 thorpej */
478 1.2 thorpej void
479 1.2 thorpej _bus_dmamem_free(t, segs, nsegs)
480 1.2 thorpej bus_dma_tag_t t;
481 1.2 thorpej bus_dma_segment_t *segs;
482 1.2 thorpej int nsegs;
483 1.2 thorpej {
484 1.2 thorpej vm_page_t m;
485 1.2 thorpej bus_addr_t addr;
486 1.2 thorpej struct pglist mlist;
487 1.2 thorpej int curseg;
488 1.2 thorpej
489 1.2 thorpej /*
490 1.2 thorpej * Build a list of pages to free back to the VM system.
491 1.2 thorpej */
492 1.2 thorpej TAILQ_INIT(&mlist);
493 1.2 thorpej for (curseg = 0; curseg < nsegs; curseg++) {
494 1.2 thorpej for (addr = segs[curseg].ds_addr;
495 1.2 thorpej addr < (segs[curseg].ds_addr + segs[curseg].ds_len);
496 1.2 thorpej addr += PAGE_SIZE) {
497 1.2 thorpej m = PHYS_TO_VM_PAGE(addr);
498 1.2 thorpej TAILQ_INSERT_TAIL(&mlist, m, pageq);
499 1.2 thorpej }
500 1.2 thorpej }
501 1.2 thorpej
502 1.16 thorpej #if defined(UVM)
503 1.16 thorpej uvm_pglistfree(&mlist);
504 1.16 thorpej #else
505 1.2 thorpej vm_page_free_memory(&mlist);
506 1.16 thorpej #endif
507 1.2 thorpej }
508 1.2 thorpej
509 1.2 thorpej /*
510 1.2 thorpej * Common function for mapping DMA-safe memory. May be called by
511 1.2 thorpej * bus-specific DMA memory map functions.
512 1.2 thorpej */
513 1.2 thorpej int
514 1.2 thorpej _bus_dmamem_map(t, segs, nsegs, size, kvap, flags)
515 1.2 thorpej bus_dma_tag_t t;
516 1.2 thorpej bus_dma_segment_t *segs;
517 1.2 thorpej int nsegs;
518 1.2 thorpej size_t size;
519 1.2 thorpej caddr_t *kvap;
520 1.2 thorpej int flags;
521 1.2 thorpej {
522 1.2 thorpej vm_offset_t va;
523 1.2 thorpej bus_addr_t addr;
524 1.16 thorpej int curseg;
525 1.2 thorpej
526 1.8 thorpej /*
527 1.8 thorpej * If we're only mapping 1 segment, use K0SEG, to avoid
528 1.8 thorpej * TLB thrashing.
529 1.8 thorpej */
530 1.8 thorpej if (nsegs == 1) {
531 1.8 thorpej *kvap = (caddr_t)ALPHA_PHYS_TO_K0SEG(segs[0].ds_addr);
532 1.8 thorpej return (0);
533 1.8 thorpej }
534 1.8 thorpej
535 1.2 thorpej size = round_page(size);
536 1.3 thorpej
537 1.16 thorpej #if defined(UVM)
538 1.16 thorpej va = uvm_km_valloc(kernel_map, size);
539 1.16 thorpej #else
540 1.15 thorpej va = kmem_alloc_pageable(kernel_map, size);
541 1.16 thorpej #endif
542 1.3 thorpej
543 1.2 thorpej if (va == 0)
544 1.2 thorpej return (ENOMEM);
545 1.2 thorpej
546 1.2 thorpej *kvap = (caddr_t)va;
547 1.2 thorpej
548 1.2 thorpej for (curseg = 0; curseg < nsegs; curseg++) {
549 1.2 thorpej for (addr = segs[curseg].ds_addr;
550 1.2 thorpej addr < (segs[curseg].ds_addr + segs[curseg].ds_len);
551 1.2 thorpej addr += NBPG, va += NBPG, size -= NBPG) {
552 1.2 thorpej if (size == 0)
553 1.2 thorpej panic("_bus_dmamem_map: size botch");
554 1.17 thorpej #if defined(PMAP_NEW)
555 1.17 thorpej pmap_kenter_pa(va, addr, VM_PROT_READ | VM_PROT_WRITE);
556 1.17 thorpej #else
557 1.2 thorpej pmap_enter(pmap_kernel(), va, addr,
558 1.2 thorpej VM_PROT_READ | VM_PROT_WRITE, TRUE);
559 1.17 thorpej #endif
560 1.2 thorpej }
561 1.2 thorpej }
562 1.2 thorpej
563 1.2 thorpej return (0);
564 1.2 thorpej }
565 1.2 thorpej
566 1.2 thorpej /*
567 1.2 thorpej * Common function for unmapping DMA-safe memory. May be called by
568 1.2 thorpej * bus-specific DMA memory unmapping functions.
569 1.2 thorpej */
570 1.2 thorpej void
571 1.2 thorpej _bus_dmamem_unmap(t, kva, size)
572 1.2 thorpej bus_dma_tag_t t;
573 1.2 thorpej caddr_t kva;
574 1.2 thorpej size_t size;
575 1.2 thorpej {
576 1.2 thorpej
577 1.2 thorpej #ifdef DIAGNOSTIC
578 1.2 thorpej if ((u_long)kva & PGOFSET)
579 1.2 thorpej panic("_bus_dmamem_unmap");
580 1.2 thorpej #endif
581 1.8 thorpej
582 1.8 thorpej /*
583 1.8 thorpej * Nothing to do if we mapped it with K0SEG.
584 1.8 thorpej */
585 1.8 thorpej if (kva >= (caddr_t)ALPHA_K0SEG_BASE &&
586 1.8 thorpej kva <= (caddr_t)ALPHA_K0SEG_END)
587 1.8 thorpej return;
588 1.2 thorpej
589 1.2 thorpej size = round_page(size);
590 1.16 thorpej #if defined(UVM)
591 1.16 thorpej uvm_km_free(kernel_map, (vm_offset_t)kva, size);
592 1.16 thorpej #else
593 1.15 thorpej kmem_free(kernel_map, (vm_offset_t)kva, size);
594 1.16 thorpej #endif
595 1.2 thorpej }
596 1.2 thorpej
597 1.2 thorpej /*
598 1.2 thorpej * Common functin for mmap(2)'ing DMA-safe memory. May be called by
599 1.2 thorpej * bus-specific DMA mmap(2)'ing functions.
600 1.2 thorpej */
601 1.2 thorpej int
602 1.2 thorpej _bus_dmamem_mmap(t, segs, nsegs, off, prot, flags)
603 1.2 thorpej bus_dma_tag_t t;
604 1.2 thorpej bus_dma_segment_t *segs;
605 1.2 thorpej int nsegs, off, prot, flags;
606 1.2 thorpej {
607 1.6 thorpej int i;
608 1.2 thorpej
609 1.6 thorpej for (i = 0; i < nsegs; i++) {
610 1.6 thorpej #ifdef DIAGNOSTIC
611 1.6 thorpej if (off & PGOFSET)
612 1.6 thorpej panic("_bus_dmamem_mmap: offset unaligned");
613 1.6 thorpej if (segs[i].ds_addr & PGOFSET)
614 1.6 thorpej panic("_bus_dmamem_mmap: segment unaligned");
615 1.6 thorpej if (segs[i].ds_len & PGOFSET)
616 1.6 thorpej panic("_bus_dmamem_mmap: segment size not multiple"
617 1.6 thorpej " of page size");
618 1.6 thorpej #endif
619 1.6 thorpej if (off >= segs[i].ds_len) {
620 1.6 thorpej off -= segs[i].ds_len;
621 1.6 thorpej continue;
622 1.6 thorpej }
623 1.6 thorpej
624 1.6 thorpej return (alpha_btop((caddr_t)segs[i].ds_addr + off));
625 1.6 thorpej }
626 1.6 thorpej
627 1.6 thorpej /* Page not found. */
628 1.6 thorpej return (-1);
629 1.2 thorpej }
630