]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ia64/ia64/busdma_machdep.c
This commit was generated by cvs2svn to compensate for changes in r169942,
[FreeBSD/FreeBSD.git] / sys / ia64 / ia64 / busdma_machdep.c
1 /*-
2  * Copyright (c) 1997 Justin T. Gibbs.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions, and the following disclaimer,
10  *    without modification, immediately at the beginning of the file.
11  * 2. The name of the author may not be used to endorse or promote products
12  *    derived from this software without specific prior written permission.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
18  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
29
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/kernel.h>
33 #include <sys/malloc.h>
34 #include <sys/mbuf.h>
35 #include <sys/lock.h>
36 #include <sys/mutex.h>
37 #include <sys/bus.h>
38 #include <sys/interrupt.h>
39 #include <sys/proc.h>
40 #include <sys/uio.h>
41 #include <sys/sysctl.h>
42
43 #include <vm/vm.h>
44 #include <vm/vm_page.h>
45 #include <vm/vm_map.h>
46
47 #include <machine/atomic.h>
48 #include <machine/bus.h>
49 #include <machine/md_var.h>
50
51 #define MAX_BPAGES 256
52
53 struct bus_dma_tag {
54         bus_dma_tag_t     parent;
55         bus_size_t        alignment;
56         bus_size_t        boundary;
57         bus_addr_t        lowaddr;
58         bus_addr_t        highaddr;
59         bus_dma_filter_t *filter;
60         void             *filterarg;
61         bus_size_t        maxsize;
62         u_int             nsegments;
63         bus_size_t        maxsegsz;
64         int               flags;
65         int               ref_count;
66         int               map_count;
67         bus_dma_lock_t   *lockfunc;
68         void             *lockfuncarg;
69         bus_dma_segment_t *segments;
70 };
71
72 struct bounce_page {
73         vm_offset_t     vaddr;          /* kva of bounce buffer */
74         bus_addr_t      busaddr;        /* Physical address */
75         vm_offset_t     datavaddr;      /* kva of client data */
76         bus_size_t      datacount;      /* client data count */
77         STAILQ_ENTRY(bounce_page) links;
78 };
79
80 int busdma_swi_pending;
81
82 static struct mtx bounce_lock;
83 static STAILQ_HEAD(bp_list, bounce_page) bounce_page_list;
84 static int free_bpages;
85 static int reserved_bpages;
86 static int active_bpages;
87 static int total_bpages;
88 static int total_bounced;
89 static int total_deferred;
90
91 SYSCTL_NODE(_hw, OID_AUTO, busdma, CTLFLAG_RD, 0, "Busdma parameters");
92 SYSCTL_INT(_hw_busdma, OID_AUTO, free_bpages, CTLFLAG_RD, &free_bpages, 0,
93            "Free bounce pages");
94 SYSCTL_INT(_hw_busdma, OID_AUTO, reserved_bpages, CTLFLAG_RD, &reserved_bpages,
95            0, "Reserved bounce pages");
96 SYSCTL_INT(_hw_busdma, OID_AUTO, active_bpages, CTLFLAG_RD, &active_bpages, 0,
97            "Active bounce pages");
98 SYSCTL_INT(_hw_busdma, OID_AUTO, total_bpages, CTLFLAG_RD, &total_bpages, 0,
99            "Total bounce pages");
100 SYSCTL_INT(_hw_busdma, OID_AUTO, total_bounced, CTLFLAG_RD, &total_bounced, 0,
101            "Total bounce requests");
102 SYSCTL_INT(_hw_busdma, OID_AUTO, total_deferred, CTLFLAG_RD, &total_deferred, 0,
103            "Total bounce requests that were deferred");
104
105 struct bus_dmamap {
106         struct bp_list         bpages;
107         int                    pagesneeded;
108         int                    pagesreserved;
109         bus_dma_tag_t          dmat;
110         void                  *buf;             /* unmapped buffer pointer */
111         bus_size_t             buflen;          /* unmapped buffer length */
112         bus_dmamap_callback_t *callback;
113         void                  *callback_arg;
114         STAILQ_ENTRY(bus_dmamap) links;
115 };
116
117 static STAILQ_HEAD(, bus_dmamap) bounce_map_waitinglist;
118 static STAILQ_HEAD(, bus_dmamap) bounce_map_callbacklist;
119 static struct bus_dmamap nobounce_dmamap;
120
121 static void init_bounce_pages(void *dummy);
122 static int alloc_bounce_pages(bus_dma_tag_t dmat, u_int numpages);
123 static int reserve_bounce_pages(bus_dma_tag_t dmat, bus_dmamap_t map,
124                                 int commit);
125 static bus_addr_t add_bounce_page(bus_dma_tag_t dmat, bus_dmamap_t map,
126                                    vm_offset_t vaddr, bus_size_t size);
127 static void free_bounce_page(bus_dma_tag_t dmat, struct bounce_page *bpage);
128 static __inline int run_filter(bus_dma_tag_t dmat, bus_addr_t paddr,
129                                bus_size_t len);
130
131 /*
132  * Return true if a match is made.
133  *
134  * To find a match walk the chain of bus_dma_tag_t's looking for 'paddr'.
135  *
136  * If paddr is within the bounds of the dma tag then call the filter callback
137  * to check for a match, if there is no filter callback then assume a match.
138  */
139 static __inline int
140 run_filter(bus_dma_tag_t dmat, bus_addr_t paddr, bus_size_t len)
141 {
142         bus_size_t bndy;
143         int retval;
144
145         retval = 0;
146         bndy = dmat->boundary;
147
148         do {
149                 if (((paddr > dmat->lowaddr && paddr <= dmat->highaddr)
150                  || ((paddr & (dmat->alignment - 1)) != 0)
151                  || ((paddr & bndy) != ((paddr + len) & bndy)))
152                  && (dmat->filter == NULL
153                   || (*dmat->filter)(dmat->filterarg, paddr) != 0))
154                         retval = 1;
155
156                 dmat = dmat->parent;            
157         } while (retval == 0 && dmat != NULL);
158         return (retval);
159 }
160
161 /*
162  * Convenience function for manipulating driver locks from busdma (during
163  * busdma_swi, for example).  Drivers that don't provide their own locks
164  * should specify &Giant to dmat->lockfuncarg.  Drivers that use their own
165  * non-mutex locking scheme don't have to use this at all.
166  */
167 void
168 busdma_lock_mutex(void *arg, bus_dma_lock_op_t op)
169 {
170         struct mtx *dmtx;
171
172         dmtx = (struct mtx *)arg;
173         switch (op) {
174         case BUS_DMA_LOCK:
175                 mtx_lock(dmtx);
176                 break;
177         case BUS_DMA_UNLOCK:
178                 mtx_unlock(dmtx);
179                 break;
180         default:
181                 panic("Unknown operation 0x%x for busdma_lock_mutex!", op);
182         }
183 }
184
185 /*
186  * dflt_lock should never get called.  It gets put into the dma tag when
187  * lockfunc == NULL, which is only valid if the maps that are associated
188  * with the tag are meant to never be defered.
189  * XXX Should have a way to identify which driver is responsible here.
190  */
191 static void
192 dflt_lock(void *arg, bus_dma_lock_op_t op)
193 {
194         panic("driver error: busdma dflt_lock called");
195 }
196
197 #define BUS_DMA_MIN_ALLOC_COMP BUS_DMA_BUS4
198 /*
199  * Allocate a device specific dma_tag.
200  */
201 int
202 bus_dma_tag_create(bus_dma_tag_t parent, bus_size_t alignment,
203                    bus_size_t boundary, bus_addr_t lowaddr,
204                    bus_addr_t highaddr, bus_dma_filter_t *filter,
205                    void *filterarg, bus_size_t maxsize, int nsegments,
206                    bus_size_t maxsegsz, int flags, bus_dma_lock_t *lockfunc,
207                    void *lockfuncarg, bus_dma_tag_t *dmat)
208 {
209         bus_dma_tag_t newtag;
210         int error = 0;
211
212         /* Basic sanity checking */
213         if (boundary != 0 && boundary < maxsegsz)
214                 maxsegsz = boundary;
215
216         /* Return a NULL tag on failure */
217         *dmat = NULL;
218
219         newtag = (bus_dma_tag_t)malloc(sizeof(*newtag), M_DEVBUF, M_NOWAIT);
220         if (newtag == NULL)
221                 return (ENOMEM);
222
223         newtag->parent = parent;
224         newtag->alignment = alignment;
225         newtag->boundary = boundary;
226         newtag->lowaddr = trunc_page(lowaddr) + (PAGE_SIZE - 1);
227         newtag->highaddr = trunc_page(highaddr) + (PAGE_SIZE - 1);
228         newtag->filter = filter;
229         newtag->filterarg = filterarg;
230         newtag->maxsize = maxsize;
231         newtag->nsegments = nsegments;
232         newtag->maxsegsz = maxsegsz;
233         newtag->flags = flags;
234         newtag->ref_count = 1; /* Count ourself */
235         newtag->map_count = 0;
236         if (lockfunc != NULL) {
237                 newtag->lockfunc = lockfunc;
238                 newtag->lockfuncarg = lockfuncarg;
239         } else {
240                 newtag->lockfunc = dflt_lock;
241                 newtag->lockfuncarg = NULL;
242         }
243         newtag->segments = NULL;
244
245         /* Take into account any restrictions imposed by our parent tag */
246         if (parent != NULL) {
247                 newtag->lowaddr = MIN(parent->lowaddr, newtag->lowaddr);
248                 newtag->highaddr = MAX(parent->highaddr, newtag->highaddr);
249                 if (newtag->boundary == 0)
250                         newtag->boundary = parent->boundary;
251                 else if (parent->boundary != 0)
252                         newtag->boundary = MIN(parent->boundary,
253                                                newtag->boundary);
254                 if (newtag->filter == NULL) {
255                         /*
256                          * Short circuit looking at our parent directly
257                          * since we have encapsulated all of its information
258                          */
259                         newtag->filter = parent->filter;
260                         newtag->filterarg = parent->filterarg;
261                         newtag->parent = parent->parent;
262                 }
263                 if (newtag->parent != NULL)
264                         atomic_add_int(&parent->ref_count, 1);
265         }
266
267         if (newtag->lowaddr < ptoa(Maxmem) && (flags & BUS_DMA_ALLOCNOW) != 0) {
268                 /* Must bounce */
269
270                 if (ptoa(total_bpages) < maxsize) {
271                         int pages;
272
273                         pages = atop(maxsize) - total_bpages;
274
275                         /* Add pages to our bounce pool */
276                         if (alloc_bounce_pages(newtag, pages) < pages)
277                                 error = ENOMEM;
278                 }
279                 /* Performed initial allocation */
280                 newtag->flags |= BUS_DMA_MIN_ALLOC_COMP;
281         }
282         
283         if (error != 0) {
284                 free(newtag, M_DEVBUF);
285         } else {
286                 *dmat = newtag;
287         }
288         return (error);
289 }
290
291 int
292 bus_dma_tag_destroy(bus_dma_tag_t dmat)
293 {
294         if (dmat != NULL) {
295
296                 if (dmat->map_count != 0)
297                         return (EBUSY);
298
299                 while (dmat != NULL) {
300                         bus_dma_tag_t parent;
301
302                         parent = dmat->parent;
303                         atomic_subtract_int(&dmat->ref_count, 1);
304                         if (dmat->ref_count == 0) {
305                                 if (dmat->segments != NULL)
306                                         free(dmat->segments, M_DEVBUF);
307                                 free(dmat, M_DEVBUF);
308                                 /*
309                                  * Last reference count, so
310                                  * release our reference
311                                  * count on our parent.
312                                  */
313                                 dmat = parent;
314                         } else
315                                 dmat = NULL;
316                 }
317         }
318         return (0);
319 }
320
321 /*
322  * Allocate a handle for mapping from kva/uva/physical
323  * address space into bus device space.
324  */
325 int
326 bus_dmamap_create(bus_dma_tag_t dmat, int flags, bus_dmamap_t *mapp)
327 {
328         int error;
329
330         error = 0;
331
332         if (dmat->segments == NULL) {
333                 dmat->segments = (bus_dma_segment_t *)malloc(
334                     sizeof(bus_dma_segment_t) * dmat->nsegments, M_DEVBUF,
335                     M_NOWAIT);
336                 if (dmat->segments == NULL)
337                         return (ENOMEM);
338         }
339
340         /*
341          * Bouncing might be required if the driver asks for an active
342          * exclusion region, a data alignment that is stricter than 1, and/or
343          * an active address boundary.
344          */
345         if (dmat->lowaddr < ptoa(Maxmem)) {
346                 /* Must bounce */
347                 int maxpages;
348
349                 *mapp = (bus_dmamap_t)malloc(sizeof(**mapp), M_DEVBUF,
350                                              M_NOWAIT | M_ZERO);
351                 if (*mapp == NULL)
352                         return (ENOMEM);
353
354                 /* Initialize the new map */
355                 STAILQ_INIT(&((*mapp)->bpages));
356
357                 /*
358                  * Attempt to add pages to our pool on a per-instance
359                  * basis up to a sane limit.
360                  */
361                 maxpages = MIN(MAX_BPAGES, Maxmem - atop(dmat->lowaddr));
362                 if ((dmat->flags & BUS_DMA_MIN_ALLOC_COMP) == 0
363                  || (dmat->map_count > 0 && total_bpages < maxpages)) {
364                         int pages;
365
366                         pages = MAX(atop(dmat->maxsize), 1);
367                         pages = MIN(maxpages - total_bpages, pages);
368                         if (alloc_bounce_pages(dmat, pages) < pages)
369                                 error = ENOMEM;
370
371                         if ((dmat->flags & BUS_DMA_MIN_ALLOC_COMP) == 0) {
372                                 if (error == 0)
373                                         dmat->flags |= BUS_DMA_MIN_ALLOC_COMP;
374                         } else {
375                                 error = 0;
376                         }
377                 }
378         } else {
379                 *mapp = NULL;
380         }
381         if (error == 0)
382                 dmat->map_count++;
383         return (error);
384 }
385
386 /*
387  * Destroy a handle for mapping from kva/uva/physical
388  * address space into bus device space.
389  */
390 int
391 bus_dmamap_destroy(bus_dma_tag_t dmat, bus_dmamap_t map)
392 {
393
394         if (map != NULL && map != &nobounce_dmamap) {
395                 if (STAILQ_FIRST(&map->bpages) != NULL)
396                         return (EBUSY);
397                 free(map, M_DEVBUF);
398         }
399         dmat->map_count--;
400         return (0);
401 }
402
403
404 /*
405  * Allocate a piece of memory that can be efficiently mapped into
406  * bus device space based on the constraints lited in the dma tag.
407  * A dmamap to for use with dmamap_load is also allocated.
408  */
409 int
410 bus_dmamem_alloc(bus_dma_tag_t dmat, void** vaddr, int flags,
411                  bus_dmamap_t *mapp)
412 {
413         int mflags;
414
415         if (flags & BUS_DMA_NOWAIT)
416                 mflags = M_NOWAIT;
417         else
418                 mflags = M_WAITOK;
419         if (flags & BUS_DMA_ZERO)
420                 mflags |= M_ZERO;
421
422         /* If we succeed, no mapping/bouncing will be required */
423         *mapp = NULL;
424
425         if (dmat->segments == NULL) {
426                 dmat->segments = (bus_dma_segment_t *)malloc(
427                     sizeof(bus_dma_segment_t) * dmat->nsegments, M_DEVBUF,
428                     M_NOWAIT);
429                 if (dmat->segments == NULL)
430                         return (ENOMEM);
431         }
432
433         /* 
434          * XXX:
435          * (dmat->alignment < dmat->maxsize) is just a quick hack; the exact
436          * alignment guarantees of malloc need to be nailed down, and the
437          * code below should be rewritten to take that into account.
438          *
439          * In the meantime, we'll warn the user if malloc gets it wrong.
440          */
441         if ((dmat->maxsize <= PAGE_SIZE) &&
442            (dmat->alignment < dmat->maxsize) &&
443             dmat->lowaddr >= ptoa(Maxmem)) {
444                 *vaddr = malloc(dmat->maxsize, M_DEVBUF, mflags);
445         } else {
446                 /*
447                  * XXX Use Contigmalloc until it is merged into this facility
448                  *     and handles multi-seg allocations.  Nobody is doing
449                  *     multi-seg allocations yet though.
450                  * XXX Certain AGP hardware does.
451                  */
452                 *vaddr = contigmalloc(dmat->maxsize, M_DEVBUF, mflags,
453                     0ul, dmat->lowaddr, dmat->alignment? dmat->alignment : 1ul,
454                     dmat->boundary);
455         }
456         if (*vaddr == NULL)
457                 return (ENOMEM);
458         else if ((uintptr_t)*vaddr & (dmat->alignment - 1))
459                 printf("bus_dmamem_alloc failed to align memory properly.\n");
460         return (0);
461 }
462
463 /*
464  * Free a piece of memory and it's allociated dmamap, that was allocated
465  * via bus_dmamem_alloc.  Make the same choice for free/contigfree.
466  */
467 void
468 bus_dmamem_free(bus_dma_tag_t dmat, void *vaddr, bus_dmamap_t map)
469 {
470         /*
471          * dmamem does not need to be bounced, so the map should be
472          * NULL
473          */
474         if (map != NULL)
475                 panic("bus_dmamem_free: Invalid map freed\n");
476         if ((dmat->maxsize <= PAGE_SIZE) &&
477            (dmat->alignment < dmat->maxsize) &&
478             dmat->lowaddr >= ptoa(Maxmem))
479                 free(vaddr, M_DEVBUF);
480         else {
481                 contigfree(vaddr, dmat->maxsize, M_DEVBUF);
482         }
483 }
484
485 /*
486  * Utility function to load a linear buffer.  lastaddrp holds state
487  * between invocations (for multiple-buffer loads).  segp contains
488  * the starting segment on entrace, and the ending segment on exit.
489  * first indicates if this is the first invocation of this function.
490  */
491 static int
492 _bus_dmamap_load_buffer(bus_dma_tag_t dmat,
493                         bus_dmamap_t map,
494                         void *buf, bus_size_t buflen,
495                         struct thread *td,
496                         int flags,
497                         bus_addr_t *lastaddrp,
498                         bus_dma_segment_t *segs,
499                         int *segp,
500                         int first)
501 {
502         bus_size_t sgsize;
503         bus_addr_t curaddr, lastaddr, baddr, bmask;
504         vm_offset_t vaddr;
505         bus_addr_t paddr;
506         int needbounce = 0;
507         int seg;
508         pmap_t pmap;
509
510         if (map == NULL)
511                 map = &nobounce_dmamap;
512
513         if (td != NULL)
514                 pmap = vmspace_pmap(td->td_proc->p_vmspace);
515         else
516                 pmap = NULL;
517
518         if ((dmat->lowaddr < ptoa(Maxmem) || dmat->boundary > 0 ||
519             dmat->alignment > 1) && map != &nobounce_dmamap &&
520             map->pagesneeded == 0) {
521                 vm_offset_t vendaddr;
522
523                 /*
524                  * Count the number of bounce pages
525                  * needed in order to complete this transfer
526                  */
527                 vaddr = trunc_page((vm_offset_t)buf);
528                 vendaddr = (vm_offset_t)buf + buflen;
529
530                 while (vaddr < vendaddr) {
531                         paddr = pmap_kextract(vaddr);
532                         if (run_filter(dmat, paddr, 0) != 0) {
533                                 needbounce = 1;
534                                 map->pagesneeded++;
535                         }
536                         vaddr += PAGE_SIZE;
537                 }
538         }
539
540         vaddr = (vm_offset_t)buf;
541
542         /* Reserve Necessary Bounce Pages */
543         if (map->pagesneeded != 0) {
544                 mtx_lock(&bounce_lock);
545                 if (flags & BUS_DMA_NOWAIT) {
546                         if (reserve_bounce_pages(dmat, map, 0) != 0) {
547                                 mtx_unlock(&bounce_lock);
548                                 return (ENOMEM);
549                         }
550                 } else {
551                         if (reserve_bounce_pages(dmat, map, 1) != 0) {
552                                 /* Queue us for resources */
553                                 map->dmat = dmat;
554                                 map->buf = buf;
555                                 map->buflen = buflen;
556                                 STAILQ_INSERT_TAIL(&bounce_map_waitinglist,
557                                     map, links);
558                                 mtx_unlock(&bounce_lock);
559                                 return (EINPROGRESS);
560                         }
561                 }
562                 mtx_unlock(&bounce_lock);
563         }
564
565         lastaddr = *lastaddrp;
566         bmask = ~(dmat->boundary - 1);
567
568         for (seg = *segp; buflen > 0 ; ) {
569                 /*
570                  * Get the physical address for this segment.
571                  */
572                 if (pmap)
573                         curaddr = pmap_extract(pmap, vaddr);
574                 else
575                         curaddr = pmap_kextract(vaddr);
576
577                 /*
578                  * Compute the segment size, and adjust counts.
579                  */
580                 sgsize = PAGE_SIZE - ((u_long)curaddr & PAGE_MASK);
581                 if (buflen < sgsize)
582                         sgsize = buflen;
583
584                 /*
585                  * Make sure we don't cross any boundaries.
586                  */
587                 if (dmat->boundary > 0) {
588                         baddr = (curaddr + dmat->boundary) & bmask;
589                         if (sgsize > (baddr - curaddr))
590                                 sgsize = (baddr - curaddr);
591                 }
592
593                 if (map->pagesneeded != 0 && run_filter(dmat, curaddr, sgsize))
594                         curaddr = add_bounce_page(dmat, map, vaddr, sgsize);
595
596                 /*
597                  * Insert chunk into a segment, coalescing with
598                  * previous segment if possible.
599                  */
600                 if (first) {
601                         segs[seg].ds_addr = curaddr;
602                         segs[seg].ds_len = sgsize;
603                         first = 0;
604                 } else {
605                         if (!needbounce && curaddr == lastaddr &&
606                             (segs[seg].ds_len + sgsize) <= dmat->maxsegsz &&
607                             (dmat->boundary == 0 ||
608                              (segs[seg].ds_addr & bmask) == (curaddr & bmask)))
609                                 segs[seg].ds_len += sgsize;
610                         else {
611                                 if (++seg >= dmat->nsegments)
612                                         break;
613                                 segs[seg].ds_addr = curaddr;
614                                 segs[seg].ds_len = sgsize;
615                         }
616                 }
617
618                 lastaddr = curaddr + sgsize;
619                 vaddr += sgsize;
620                 buflen -= sgsize;
621         }
622
623         *segp = seg;
624         *lastaddrp = lastaddr;
625
626         /*
627          * Did we fit?
628          */
629         return (buflen != 0 ? EFBIG : 0); /* XXX better return value here? */
630 }
631
632 /*
633  * Map the buffer buf into bus space using the dmamap map.
634  */
635 int
636 bus_dmamap_load(bus_dma_tag_t dmat, bus_dmamap_t map, void *buf,
637                 bus_size_t buflen, bus_dmamap_callback_t *callback,
638                 void *callback_arg, int flags)
639 {
640         bus_addr_t              lastaddr = 0;
641         int                     error, nsegs = 0;
642
643         if (map != NULL) {
644                 flags |= BUS_DMA_WAITOK;
645                 map->callback = callback;
646                 map->callback_arg = callback_arg;
647         }
648
649         error = _bus_dmamap_load_buffer(dmat, map, buf, buflen, NULL, flags,
650             &lastaddr, dmat->segments, &nsegs, 1);
651
652         if (error == EINPROGRESS)
653                 return (error);
654
655         if (error)
656                 (*callback)(callback_arg, dmat->segments, 0, error);
657         else
658                 (*callback)(callback_arg, dmat->segments, nsegs + 1, 0);
659
660         return (0);
661 }
662
663 /*
664  * Like _bus_dmamap_load(), but for mbufs.
665  */
666 int
667 bus_dmamap_load_mbuf(bus_dma_tag_t dmat, bus_dmamap_t map,
668                      struct mbuf *m0,
669                      bus_dmamap_callback2_t *callback, void *callback_arg,
670                      int flags)
671 {
672         int nsegs, error;
673
674         M_ASSERTPKTHDR(m0);
675
676         flags |= BUS_DMA_NOWAIT;
677         nsegs = 0;
678         error = 0;
679         if (m0->m_pkthdr.len <= dmat->maxsize) {
680                 int first = 1;
681                 bus_addr_t lastaddr = 0;
682                 struct mbuf *m;
683
684                 for (m = m0; m != NULL && error == 0; m = m->m_next) {
685                         if (m->m_len > 0) {
686                                 error = _bus_dmamap_load_buffer(dmat, map,
687                                                 m->m_data, m->m_len,
688                                                 NULL, flags, &lastaddr,
689                                                 dmat->segments, &nsegs, first);
690                                 first = 0;
691                         }
692                 }
693         } else {
694                 error = EINVAL;
695         }
696
697         if (error) {
698                 /* force "no valid mappings" in callback */
699                 (*callback)(callback_arg, dmat->segments, 0, 0, error);
700         } else {
701                 (*callback)(callback_arg, dmat->segments, nsegs + 1,
702                     m0->m_pkthdr.len, error);
703         }
704         return (error);
705 }
706
707 int
708 bus_dmamap_load_mbuf_sg(bus_dma_tag_t dmat, bus_dmamap_t map,
709                         struct mbuf *m0, bus_dma_segment_t *segs,
710                         int *nsegs, int flags)
711 {
712         int error;
713
714         M_ASSERTPKTHDR(m0);
715
716         flags |= BUS_DMA_NOWAIT;
717         *nsegs = 0;
718         error = 0;
719         if (m0->m_pkthdr.len <= dmat->maxsize) {
720                 int first = 1;
721                 bus_addr_t lastaddr = 0;
722                 struct mbuf *m;
723
724                 for (m = m0; m != NULL && error == 0; m = m->m_next) {
725                         if (m->m_len > 0) {
726                                 error = _bus_dmamap_load_buffer(dmat, map,
727                                                 m->m_data, m->m_len,
728                                                 NULL, flags, &lastaddr,
729                                                 segs, nsegs, first);
730                                 first = 0;
731                         }
732                 }
733                 ++*nsegs;
734         } else {
735                 error = EINVAL;
736         }
737
738         return (error);
739 }
740
741 /*
742  * Like _bus_dmamap_load(), but for uios.
743  */
744 int
745 bus_dmamap_load_uio(bus_dma_tag_t dmat, bus_dmamap_t map,
746                     struct uio *uio,
747                     bus_dmamap_callback2_t *callback, void *callback_arg,
748                     int flags)
749 {
750         bus_addr_t lastaddr;
751         int nsegs, error, first, i;
752         bus_size_t resid;
753         struct iovec *iov;
754         struct thread *td = NULL;
755
756         flags |= BUS_DMA_NOWAIT;
757         resid = uio->uio_resid;
758         iov = uio->uio_iov;
759
760         if (uio->uio_segflg == UIO_USERSPACE) {
761                 td = uio->uio_td;
762                 KASSERT(td != NULL,
763                         ("bus_dmamap_load_uio: USERSPACE but no proc"));
764         }
765
766         nsegs = 0;
767         error = 0;
768         first = 1;
769         for (i = 0; i < uio->uio_iovcnt && resid != 0 && !error; i++) {
770                 /*
771                  * Now at the first iovec to load.  Load each iovec
772                  * until we have exhausted the residual count.
773                  */
774                 bus_size_t minlen =
775                         resid < iov[i].iov_len ? resid : iov[i].iov_len;
776                 caddr_t addr = (caddr_t) iov[i].iov_base;
777
778                 if (minlen > 0) {
779                         error = _bus_dmamap_load_buffer(dmat, map, addr,
780                             minlen, td, flags, &lastaddr, dmat->segments,
781                             &nsegs, first);
782                         first = 0;
783
784                         resid -= minlen;
785                 }
786         }
787
788         if (error) {
789                 /* force "no valid mappings" in callback */
790                 (*callback)(callback_arg, dmat->segments, 0, 0, error);
791         } else {
792                 (*callback)(callback_arg, dmat->segments, nsegs + 1,
793                     uio->uio_resid, error);
794         }
795         return (error);
796 }
797
798 /*
799  * Release the mapping held by map.
800  */
801 void
802 _bus_dmamap_unload(bus_dma_tag_t dmat, bus_dmamap_t map)
803 {
804         struct bounce_page *bpage;
805
806         while ((bpage = STAILQ_FIRST(&map->bpages)) != NULL) {
807                 STAILQ_REMOVE_HEAD(&map->bpages, links);
808                 free_bounce_page(dmat, bpage);
809         }
810 }
811
812 void
813 _bus_dmamap_sync(bus_dma_tag_t dmat, bus_dmamap_t map, bus_dmasync_op_t op)
814 {
815         struct bounce_page *bpage;
816
817         if ((bpage = STAILQ_FIRST(&map->bpages)) != NULL) {
818                 /*
819                  * Handle data bouncing.  We might also
820                  * want to add support for invalidating
821                  * the caches on broken hardware
822                  */
823
824                 if (op & BUS_DMASYNC_PREWRITE) {
825                         while (bpage != NULL) {
826                                 bcopy((void *)bpage->datavaddr,
827                                       (void *)bpage->vaddr,
828                                       bpage->datacount);
829                                 bpage = STAILQ_NEXT(bpage, links);
830                         }
831                         total_bounced++;
832                 }
833
834                 if (op & BUS_DMASYNC_POSTREAD) {
835                         while (bpage != NULL) {
836                                 bcopy((void *)bpage->vaddr,
837                                       (void *)bpage->datavaddr,
838                                       bpage->datacount);
839                                 bpage = STAILQ_NEXT(bpage, links);
840                         }
841                         total_bounced++;
842                 }
843         }
844 }
845
846 static void
847 init_bounce_pages(void *dummy __unused)
848 {
849
850         free_bpages = 0;
851         reserved_bpages = 0;
852         active_bpages = 0;
853         total_bpages = 0;
854         STAILQ_INIT(&bounce_page_list);
855         STAILQ_INIT(&bounce_map_waitinglist);
856         STAILQ_INIT(&bounce_map_callbacklist);
857         mtx_init(&bounce_lock, "bounce pages lock", NULL, MTX_DEF);
858 }
859 SYSINIT(bpages, SI_SUB_LOCK, SI_ORDER_ANY, init_bounce_pages, NULL);
860
861 static int
862 alloc_bounce_pages(bus_dma_tag_t dmat, u_int numpages)
863 {
864         int count;
865
866         count = 0;
867         while (numpages > 0) {
868                 struct bounce_page *bpage;
869
870                 bpage = (struct bounce_page *)malloc(sizeof(*bpage), M_DEVBUF,
871                                                      M_NOWAIT | M_ZERO);
872
873                 if (bpage == NULL)
874                         break;
875                 bpage->vaddr = (vm_offset_t)contigmalloc(PAGE_SIZE, M_DEVBUF,
876                                                          M_NOWAIT, 0ul,
877                                                          dmat->lowaddr,
878                                                          PAGE_SIZE,
879                                                          dmat->boundary);
880                 if (bpage->vaddr == 0) {
881                         free(bpage, M_DEVBUF);
882                         break;
883                 }
884                 bpage->busaddr = pmap_kextract(bpage->vaddr);
885                 mtx_lock(&bounce_lock);
886                 STAILQ_INSERT_TAIL(&bounce_page_list, bpage, links);
887                 total_bpages++;
888                 free_bpages++;
889                 mtx_unlock(&bounce_lock);
890                 count++;
891                 numpages--;
892         }
893         return (count);
894 }
895
896 static int
897 reserve_bounce_pages(bus_dma_tag_t dmat, bus_dmamap_t map, int commit)
898 {
899         int pages;
900
901         mtx_assert(&bounce_lock, MA_OWNED);
902         pages = MIN(free_bpages, map->pagesneeded - map->pagesreserved);
903         if (commit == 0 && map->pagesneeded > (map->pagesreserved + pages))
904                 return (map->pagesneeded - (map->pagesreserved + pages));
905         free_bpages -= pages;
906         reserved_bpages += pages;
907         map->pagesreserved += pages;
908         pages = map->pagesneeded - map->pagesreserved;
909
910         return (pages);
911 }
912
913 static bus_addr_t
914 add_bounce_page(bus_dma_tag_t dmat, bus_dmamap_t map, vm_offset_t vaddr,
915                 bus_size_t size)
916 {
917         struct bounce_page *bpage;
918
919         KASSERT(map != NULL && map != &nobounce_dmamap,
920             ("add_bounce_page: bad map %p", map));
921
922         if (map->pagesneeded == 0)
923                 panic("add_bounce_page: map doesn't need any pages");
924         map->pagesneeded--;
925
926         if (map->pagesreserved == 0)
927                 panic("add_bounce_page: map doesn't need any pages");
928         map->pagesreserved--;
929
930         mtx_lock(&bounce_lock);
931         bpage = STAILQ_FIRST(&bounce_page_list);
932         if (bpage == NULL)
933                 panic("add_bounce_page: free page list is empty");
934
935         STAILQ_REMOVE_HEAD(&bounce_page_list, links);
936         reserved_bpages--;
937         active_bpages++;
938         mtx_unlock(&bounce_lock);
939
940         bpage->datavaddr = vaddr;
941         bpage->datacount = size;
942         STAILQ_INSERT_TAIL(&(map->bpages), bpage, links);
943         return (bpage->busaddr);
944 }
945
946 static void
947 free_bounce_page(bus_dma_tag_t dmat, struct bounce_page *bpage)
948 {
949         struct bus_dmamap *map;
950
951         bpage->datavaddr = 0;
952         bpage->datacount = 0;
953
954         mtx_lock(&bounce_lock);
955         STAILQ_INSERT_HEAD(&bounce_page_list, bpage, links);
956         free_bpages++;
957         active_bpages--;
958         if ((map = STAILQ_FIRST(&bounce_map_waitinglist)) != NULL) {
959                 if (reserve_bounce_pages(map->dmat, map, 1) == 0) {
960                         STAILQ_REMOVE_HEAD(&bounce_map_waitinglist, links);
961                         STAILQ_INSERT_TAIL(&bounce_map_callbacklist,
962                                            map, links);
963                         busdma_swi_pending = 1;
964                         total_deferred++;
965                         swi_sched(vm_ih, 0);
966                 }
967         }
968         mtx_unlock(&bounce_lock);
969 }
970
971 void
972 busdma_swi(void)
973 {
974         bus_dma_tag_t dmat;
975         struct bus_dmamap *map;
976
977         mtx_lock(&bounce_lock);
978         while ((map = STAILQ_FIRST(&bounce_map_callbacklist)) != NULL) {
979                 STAILQ_REMOVE_HEAD(&bounce_map_callbacklist, links);
980                 mtx_unlock(&bounce_lock);
981                 dmat = map->dmat;
982                 (dmat->lockfunc)(dmat->lockfuncarg, BUS_DMA_LOCK);
983                 bus_dmamap_load(map->dmat, map, map->buf, map->buflen,
984                                 map->callback, map->callback_arg, /*flags*/0);
985                 (dmat->lockfunc)(dmat->lockfuncarg, BUS_DMA_UNLOCK);
986                 mtx_lock(&bounce_lock);
987         }
988         mtx_unlock(&bounce_lock);
989 }