2 * Copyright (C) 2008 Advanced Micro Devices, Inc.
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 #include <linux/sched/task_stack.h>
21 #include <linux/scatterlist.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/sched/task.h>
24 #include <linux/stacktrace.h>
25 #include <linux/dma-debug.h>
26 #include <linux/spinlock.h>
27 #include <linux/vmalloc.h>
28 #include <linux/debugfs.h>
29 #include <linux/uaccess.h>
30 #include <linux/export.h>
31 #include <linux/device.h>
32 #include <linux/types.h>
33 #include <linux/sched.h>
34 #include <linux/ctype.h>
35 #include <linux/list.h>
36 #include <linux/slab.h>
38 #include <asm/sections.h>
40 #define HASH_SIZE 1024ULL
41 #define HASH_FN_SHIFT 13
42 #define HASH_FN_MASK (HASH_SIZE - 1)
53 MAP_ERR_CHECK_NOT_APPLICABLE
,
58 #define DMA_DEBUG_STACKTRACE_ENTRIES 5
61 * struct dma_debug_entry - track a dma_map* or dma_alloc_coherent mapping
62 * @list: node on pre-allocated free_entries list
63 * @dev: 'dev' argument to dma_map_{page|single|sg} or dma_alloc_coherent
64 * @type: single, page, sg, coherent
65 * @pfn: page frame of the start address
66 * @offset: offset of mapping relative to pfn
67 * @size: length of the mapping
68 * @direction: enum dma_data_direction
69 * @sg_call_ents: 'nents' from dma_map_sg
70 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
71 * @map_err_type: track whether dma_mapping_error() was checked
72 * @stacktrace: support backtraces when a violation is detected
74 struct dma_debug_entry
{
75 struct list_head list
;
85 enum map_err_types map_err_type
;
86 #ifdef CONFIG_STACKTRACE
87 struct stack_trace stacktrace
;
88 unsigned long st_entries
[DMA_DEBUG_STACKTRACE_ENTRIES
];
92 typedef bool (*match_fn
)(struct dma_debug_entry
*, struct dma_debug_entry
*);
95 struct list_head list
;
97 } ____cacheline_aligned_in_smp
;
99 /* Hash list to save the allocated dma addresses */
100 static struct hash_bucket dma_entry_hash
[HASH_SIZE
];
101 /* List of pre-allocated dma_debug_entry's */
102 static LIST_HEAD(free_entries
);
103 /* Lock for the list above */
104 static DEFINE_SPINLOCK(free_entries_lock
);
106 /* Global disable flag - will be set in case of an error */
107 static bool global_disable __read_mostly
;
109 /* Early initialization disable flag, set at the end of dma_debug_init */
110 static bool dma_debug_initialized __read_mostly
;
112 static inline bool dma_debug_disabled(void)
114 return global_disable
|| !dma_debug_initialized
;
117 /* Global error count */
118 static u32 error_count
;
120 /* Global error show enable*/
121 static u32 show_all_errors __read_mostly
;
122 /* Number of errors to show */
123 static u32 show_num_errors
= 1;
125 static u32 num_free_entries
;
126 static u32 min_free_entries
;
127 static u32 nr_total_entries
;
129 /* number of preallocated entries requested by kernel cmdline */
130 static u32 req_entries
;
132 /* debugfs dentry's for the stuff above */
133 static struct dentry
*dma_debug_dent __read_mostly
;
134 static struct dentry
*global_disable_dent __read_mostly
;
135 static struct dentry
*error_count_dent __read_mostly
;
136 static struct dentry
*show_all_errors_dent __read_mostly
;
137 static struct dentry
*show_num_errors_dent __read_mostly
;
138 static struct dentry
*num_free_entries_dent __read_mostly
;
139 static struct dentry
*min_free_entries_dent __read_mostly
;
140 static struct dentry
*filter_dent __read_mostly
;
142 /* per-driver filter related state */
144 #define NAME_MAX_LEN 64
146 static char current_driver_name
[NAME_MAX_LEN
] __read_mostly
;
147 static struct device_driver
*current_driver __read_mostly
;
149 static DEFINE_RWLOCK(driver_name_lock
);
151 static const char *const maperr2str
[] = {
152 [MAP_ERR_CHECK_NOT_APPLICABLE
] = "dma map error check not applicable",
153 [MAP_ERR_NOT_CHECKED
] = "dma map error not checked",
154 [MAP_ERR_CHECKED
] = "dma map error checked",
157 static const char *type2name
[5] = { "single", "page",
158 "scather-gather", "coherent",
161 static const char *dir2name
[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
162 "DMA_FROM_DEVICE", "DMA_NONE" };
165 * The access to some variables in this macro is racy. We can't use atomic_t
166 * here because all these variables are exported to debugfs. Some of them even
167 * writeable. This is also the reason why a lock won't help much. But anyway,
168 * the races are no big deal. Here is why:
170 * error_count: the addition is racy, but the worst thing that can happen is
171 * that we don't count some errors
172 * show_num_errors: the subtraction is racy. Also no big deal because in
173 * worst case this will result in one warning more in the
174 * system log than the user configured. This variable is
175 * writeable via debugfs.
177 static inline void dump_entry_trace(struct dma_debug_entry
*entry
)
179 #ifdef CONFIG_STACKTRACE
181 pr_warning("Mapped at:\n");
182 print_stack_trace(&entry
->stacktrace
, 0);
187 static bool driver_filter(struct device
*dev
)
189 struct device_driver
*drv
;
193 /* driver filter off */
194 if (likely(!current_driver_name
[0]))
197 /* driver filter on and initialized */
198 if (current_driver
&& dev
&& dev
->driver
== current_driver
)
201 /* driver filter on, but we can't filter on a NULL device... */
205 if (current_driver
|| !current_driver_name
[0])
208 /* driver filter on but not yet initialized */
213 /* lock to protect against change of current_driver_name */
214 read_lock_irqsave(&driver_name_lock
, flags
);
218 strncmp(current_driver_name
, drv
->name
, NAME_MAX_LEN
- 1) == 0) {
219 current_driver
= drv
;
223 read_unlock_irqrestore(&driver_name_lock
, flags
);
228 #define err_printk(dev, entry, format, arg...) do { \
230 if (driver_filter(dev) && \
231 (show_all_errors || show_num_errors > 0)) { \
232 WARN(1, "%s %s: " format, \
233 dev ? dev_driver_string(dev) : "NULL", \
234 dev ? dev_name(dev) : "NULL", ## arg); \
235 dump_entry_trace(entry); \
237 if (!show_all_errors && show_num_errors > 0) \
238 show_num_errors -= 1; \
242 * Hash related functions
244 * Every DMA-API request is saved into a struct dma_debug_entry. To
245 * have quick access to these structs they are stored into a hash.
247 static int hash_fn(struct dma_debug_entry
*entry
)
250 * Hash function is based on the dma address.
251 * We use bits 20-27 here as the index into the hash
253 return (entry
->dev_addr
>> HASH_FN_SHIFT
) & HASH_FN_MASK
;
257 * Request exclusive access to a hash bucket for a given dma_debug_entry.
259 static struct hash_bucket
*get_hash_bucket(struct dma_debug_entry
*entry
,
260 unsigned long *flags
)
261 __acquires(&dma_entry_hash
[idx
].lock
)
263 int idx
= hash_fn(entry
);
264 unsigned long __flags
;
266 spin_lock_irqsave(&dma_entry_hash
[idx
].lock
, __flags
);
268 return &dma_entry_hash
[idx
];
272 * Give up exclusive access to the hash bucket
274 static void put_hash_bucket(struct hash_bucket
*bucket
,
275 unsigned long *flags
)
276 __releases(&bucket
->lock
)
278 unsigned long __flags
= *flags
;
280 spin_unlock_irqrestore(&bucket
->lock
, __flags
);
283 static bool exact_match(struct dma_debug_entry
*a
, struct dma_debug_entry
*b
)
285 return ((a
->dev_addr
== b
->dev_addr
) &&
286 (a
->dev
== b
->dev
)) ? true : false;
289 static bool containing_match(struct dma_debug_entry
*a
,
290 struct dma_debug_entry
*b
)
292 if (a
->dev
!= b
->dev
)
295 if ((b
->dev_addr
<= a
->dev_addr
) &&
296 ((b
->dev_addr
+ b
->size
) >= (a
->dev_addr
+ a
->size
)))
303 * Search a given entry in the hash bucket list
305 static struct dma_debug_entry
*__hash_bucket_find(struct hash_bucket
*bucket
,
306 struct dma_debug_entry
*ref
,
309 struct dma_debug_entry
*entry
, *ret
= NULL
;
310 int matches
= 0, match_lvl
, last_lvl
= -1;
312 list_for_each_entry(entry
, &bucket
->list
, list
) {
313 if (!match(ref
, entry
))
317 * Some drivers map the same physical address multiple
318 * times. Without a hardware IOMMU this results in the
319 * same device addresses being put into the dma-debug
320 * hash multiple times too. This can result in false
321 * positives being reported. Therefore we implement a
322 * best-fit algorithm here which returns the entry from
323 * the hash which fits best to the reference value
324 * instead of the first-fit.
328 entry
->size
== ref
->size
? ++match_lvl
: 0;
329 entry
->type
== ref
->type
? ++match_lvl
: 0;
330 entry
->direction
== ref
->direction
? ++match_lvl
: 0;
331 entry
->sg_call_ents
== ref
->sg_call_ents
? ++match_lvl
: 0;
333 if (match_lvl
== 4) {
334 /* perfect-fit - return the result */
336 } else if (match_lvl
> last_lvl
) {
338 * We found an entry that fits better then the
339 * previous one or it is the 1st match.
341 last_lvl
= match_lvl
;
347 * If we have multiple matches but no perfect-fit, just return
350 ret
= (matches
== 1) ? ret
: NULL
;
355 static struct dma_debug_entry
*bucket_find_exact(struct hash_bucket
*bucket
,
356 struct dma_debug_entry
*ref
)
358 return __hash_bucket_find(bucket
, ref
, exact_match
);
361 static struct dma_debug_entry
*bucket_find_contain(struct hash_bucket
**bucket
,
362 struct dma_debug_entry
*ref
,
363 unsigned long *flags
)
366 unsigned int max_range
= dma_get_max_seg_size(ref
->dev
);
367 struct dma_debug_entry
*entry
, index
= *ref
;
368 unsigned int range
= 0;
370 while (range
<= max_range
) {
371 entry
= __hash_bucket_find(*bucket
, ref
, containing_match
);
377 * Nothing found, go back a hash bucket
379 put_hash_bucket(*bucket
, flags
);
380 range
+= (1 << HASH_FN_SHIFT
);
381 index
.dev_addr
-= (1 << HASH_FN_SHIFT
);
382 *bucket
= get_hash_bucket(&index
, flags
);
389 * Add an entry to a hash bucket
391 static void hash_bucket_add(struct hash_bucket
*bucket
,
392 struct dma_debug_entry
*entry
)
394 list_add_tail(&entry
->list
, &bucket
->list
);
398 * Remove entry from a hash bucket list
400 static void hash_bucket_del(struct dma_debug_entry
*entry
)
402 list_del(&entry
->list
);
405 static unsigned long long phys_addr(struct dma_debug_entry
*entry
)
407 if (entry
->type
== dma_debug_resource
)
408 return __pfn_to_phys(entry
->pfn
) + entry
->offset
;
410 return page_to_phys(pfn_to_page(entry
->pfn
)) + entry
->offset
;
414 * Dump mapping entries for debugging purposes
416 void debug_dma_dump_mappings(struct device
*dev
)
420 for (idx
= 0; idx
< HASH_SIZE
; idx
++) {
421 struct hash_bucket
*bucket
= &dma_entry_hash
[idx
];
422 struct dma_debug_entry
*entry
;
425 spin_lock_irqsave(&bucket
->lock
, flags
);
427 list_for_each_entry(entry
, &bucket
->list
, list
) {
428 if (!dev
|| dev
== entry
->dev
) {
430 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
431 type2name
[entry
->type
], idx
,
432 phys_addr(entry
), entry
->pfn
,
433 entry
->dev_addr
, entry
->size
,
434 dir2name
[entry
->direction
],
435 maperr2str
[entry
->map_err_type
]);
439 spin_unlock_irqrestore(&bucket
->lock
, flags
);
442 EXPORT_SYMBOL(debug_dma_dump_mappings
);
445 * For each mapping (initial cacheline in the case of
446 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
447 * scatterlist, or the cacheline specified in dma_map_single) insert
448 * into this tree using the cacheline as the key. At
449 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
450 * the entry already exists at insertion time add a tag as a reference
451 * count for the overlapping mappings. For now, the overlap tracking
452 * just ensures that 'unmaps' balance 'maps' before marking the
453 * cacheline idle, but we should also be flagging overlaps as an API
456 * Memory usage is mostly constrained by the maximum number of available
457 * dma-debug entries in that we need a free dma_debug_entry before
458 * inserting into the tree. In the case of dma_map_page and
459 * dma_alloc_coherent there is only one dma_debug_entry and one
460 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
461 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
462 * entries into the tree.
464 * At any time debug_dma_assert_idle() can be called to trigger a
465 * warning if any cachelines in the given page are in the active set.
467 static RADIX_TREE(dma_active_cacheline
, GFP_NOWAIT
);
468 static DEFINE_SPINLOCK(radix_lock
);
469 #define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
470 #define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
471 #define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
473 static phys_addr_t
to_cacheline_number(struct dma_debug_entry
*entry
)
475 return (entry
->pfn
<< CACHELINE_PER_PAGE_SHIFT
) +
476 (entry
->offset
>> L1_CACHE_SHIFT
);
479 static int active_cacheline_read_overlap(phys_addr_t cln
)
483 for (i
= RADIX_TREE_MAX_TAGS
- 1; i
>= 0; i
--)
484 if (radix_tree_tag_get(&dma_active_cacheline
, cln
, i
))
489 static int active_cacheline_set_overlap(phys_addr_t cln
, int overlap
)
493 if (overlap
> ACTIVE_CACHELINE_MAX_OVERLAP
|| overlap
< 0)
496 for (i
= RADIX_TREE_MAX_TAGS
- 1; i
>= 0; i
--)
497 if (overlap
& 1 << i
)
498 radix_tree_tag_set(&dma_active_cacheline
, cln
, i
);
500 radix_tree_tag_clear(&dma_active_cacheline
, cln
, i
);
505 static void active_cacheline_inc_overlap(phys_addr_t cln
)
507 int overlap
= active_cacheline_read_overlap(cln
);
509 overlap
= active_cacheline_set_overlap(cln
, ++overlap
);
511 /* If we overflowed the overlap counter then we're potentially
512 * leaking dma-mappings. Otherwise, if maps and unmaps are
513 * balanced then this overflow may cause false negatives in
514 * debug_dma_assert_idle() as the cacheline may be marked idle
517 WARN_ONCE(overlap
> ACTIVE_CACHELINE_MAX_OVERLAP
,
518 "DMA-API: exceeded %d overlapping mappings of cacheline %pa\n",
519 ACTIVE_CACHELINE_MAX_OVERLAP
, &cln
);
522 static int active_cacheline_dec_overlap(phys_addr_t cln
)
524 int overlap
= active_cacheline_read_overlap(cln
);
526 return active_cacheline_set_overlap(cln
, --overlap
);
529 static int active_cacheline_insert(struct dma_debug_entry
*entry
)
531 phys_addr_t cln
= to_cacheline_number(entry
);
535 /* If the device is not writing memory then we don't have any
536 * concerns about the cpu consuming stale data. This mitigates
537 * legitimate usages of overlapping mappings.
539 if (entry
->direction
== DMA_TO_DEVICE
)
542 spin_lock_irqsave(&radix_lock
, flags
);
543 rc
= radix_tree_insert(&dma_active_cacheline
, cln
, entry
);
545 active_cacheline_inc_overlap(cln
);
546 spin_unlock_irqrestore(&radix_lock
, flags
);
551 static void active_cacheline_remove(struct dma_debug_entry
*entry
)
553 phys_addr_t cln
= to_cacheline_number(entry
);
556 /* ...mirror the insert case */
557 if (entry
->direction
== DMA_TO_DEVICE
)
560 spin_lock_irqsave(&radix_lock
, flags
);
561 /* since we are counting overlaps the final put of the
562 * cacheline will occur when the overlap count is 0.
563 * active_cacheline_dec_overlap() returns -1 in that case
565 if (active_cacheline_dec_overlap(cln
) < 0)
566 radix_tree_delete(&dma_active_cacheline
, cln
);
567 spin_unlock_irqrestore(&radix_lock
, flags
);
571 * debug_dma_assert_idle() - assert that a page is not undergoing dma
572 * @page: page to lookup in the dma_active_cacheline tree
574 * Place a call to this routine in cases where the cpu touching the page
575 * before the dma completes (page is dma_unmapped) will lead to data
578 void debug_dma_assert_idle(struct page
*page
)
580 static struct dma_debug_entry
*ents
[CACHELINES_PER_PAGE
];
581 struct dma_debug_entry
*entry
= NULL
;
582 void **results
= (void **) &ents
;
583 unsigned int nents
, i
;
587 if (dma_debug_disabled())
593 cln
= (phys_addr_t
) page_to_pfn(page
) << CACHELINE_PER_PAGE_SHIFT
;
594 spin_lock_irqsave(&radix_lock
, flags
);
595 nents
= radix_tree_gang_lookup(&dma_active_cacheline
, results
, cln
,
596 CACHELINES_PER_PAGE
);
597 for (i
= 0; i
< nents
; i
++) {
598 phys_addr_t ent_cln
= to_cacheline_number(ents
[i
]);
600 if (ent_cln
== cln
) {
603 } else if (ent_cln
>= cln
+ CACHELINES_PER_PAGE
)
606 spin_unlock_irqrestore(&radix_lock
, flags
);
611 cln
= to_cacheline_number(entry
);
612 err_printk(entry
->dev
, entry
,
613 "DMA-API: cpu touching an active dma mapped cacheline [cln=%pa]\n",
618 * Wrapper function for adding an entry to the hash.
619 * This function takes care of locking itself.
621 static void add_dma_entry(struct dma_debug_entry
*entry
)
623 struct hash_bucket
*bucket
;
627 bucket
= get_hash_bucket(entry
, &flags
);
628 hash_bucket_add(bucket
, entry
);
629 put_hash_bucket(bucket
, &flags
);
631 rc
= active_cacheline_insert(entry
);
633 pr_err("DMA-API: cacheline tracking ENOMEM, dma-debug disabled\n");
634 global_disable
= true;
637 /* TODO: report -EEXIST errors here as overlapping mappings are
638 * not supported by the DMA API
642 static struct dma_debug_entry
*__dma_entry_alloc(void)
644 struct dma_debug_entry
*entry
;
646 entry
= list_entry(free_entries
.next
, struct dma_debug_entry
, list
);
647 list_del(&entry
->list
);
648 memset(entry
, 0, sizeof(*entry
));
650 num_free_entries
-= 1;
651 if (num_free_entries
< min_free_entries
)
652 min_free_entries
= num_free_entries
;
657 /* struct dma_entry allocator
659 * The next two functions implement the allocator for
660 * struct dma_debug_entries.
662 static struct dma_debug_entry
*dma_entry_alloc(void)
664 struct dma_debug_entry
*entry
;
667 spin_lock_irqsave(&free_entries_lock
, flags
);
669 if (list_empty(&free_entries
)) {
670 global_disable
= true;
671 spin_unlock_irqrestore(&free_entries_lock
, flags
);
672 pr_err("DMA-API: debugging out of memory - disabling\n");
676 entry
= __dma_entry_alloc();
678 spin_unlock_irqrestore(&free_entries_lock
, flags
);
680 #ifdef CONFIG_STACKTRACE
681 entry
->stacktrace
.max_entries
= DMA_DEBUG_STACKTRACE_ENTRIES
;
682 entry
->stacktrace
.entries
= entry
->st_entries
;
683 entry
->stacktrace
.skip
= 2;
684 save_stack_trace(&entry
->stacktrace
);
690 static void dma_entry_free(struct dma_debug_entry
*entry
)
694 active_cacheline_remove(entry
);
697 * add to beginning of the list - this way the entries are
698 * more likely cache hot when they are reallocated.
700 spin_lock_irqsave(&free_entries_lock
, flags
);
701 list_add(&entry
->list
, &free_entries
);
702 num_free_entries
+= 1;
703 spin_unlock_irqrestore(&free_entries_lock
, flags
);
706 int dma_debug_resize_entries(u32 num_entries
)
708 int i
, delta
, ret
= 0;
710 struct dma_debug_entry
*entry
;
713 spin_lock_irqsave(&free_entries_lock
, flags
);
715 if (nr_total_entries
< num_entries
) {
716 delta
= num_entries
- nr_total_entries
;
718 spin_unlock_irqrestore(&free_entries_lock
, flags
);
720 for (i
= 0; i
< delta
; i
++) {
721 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
725 list_add_tail(&entry
->list
, &tmp
);
728 spin_lock_irqsave(&free_entries_lock
, flags
);
730 list_splice(&tmp
, &free_entries
);
731 nr_total_entries
+= i
;
732 num_free_entries
+= i
;
734 delta
= nr_total_entries
- num_entries
;
736 for (i
= 0; i
< delta
&& !list_empty(&free_entries
); i
++) {
737 entry
= __dma_entry_alloc();
741 nr_total_entries
-= i
;
744 if (nr_total_entries
!= num_entries
)
747 spin_unlock_irqrestore(&free_entries_lock
, flags
);
751 EXPORT_SYMBOL(dma_debug_resize_entries
);
754 * DMA-API debugging init code
756 * The init code does two things:
757 * 1. Initialize core data structures
758 * 2. Preallocate a given number of dma_debug_entry structs
761 static int prealloc_memory(u32 num_entries
)
763 struct dma_debug_entry
*entry
, *next_entry
;
766 for (i
= 0; i
< num_entries
; ++i
) {
767 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
771 list_add_tail(&entry
->list
, &free_entries
);
774 num_free_entries
= num_entries
;
775 min_free_entries
= num_entries
;
777 pr_info("DMA-API: preallocated %d debug entries\n", num_entries
);
783 list_for_each_entry_safe(entry
, next_entry
, &free_entries
, list
) {
784 list_del(&entry
->list
);
791 static ssize_t
filter_read(struct file
*file
, char __user
*user_buf
,
792 size_t count
, loff_t
*ppos
)
794 char buf
[NAME_MAX_LEN
+ 1];
798 if (!current_driver_name
[0])
802 * We can't copy to userspace directly because current_driver_name can
803 * only be read under the driver_name_lock with irqs disabled. So
804 * create a temporary copy first.
806 read_lock_irqsave(&driver_name_lock
, flags
);
807 len
= scnprintf(buf
, NAME_MAX_LEN
+ 1, "%s\n", current_driver_name
);
808 read_unlock_irqrestore(&driver_name_lock
, flags
);
810 return simple_read_from_buffer(user_buf
, count
, ppos
, buf
, len
);
813 static ssize_t
filter_write(struct file
*file
, const char __user
*userbuf
,
814 size_t count
, loff_t
*ppos
)
816 char buf
[NAME_MAX_LEN
];
822 * We can't copy from userspace directly. Access to
823 * current_driver_name is protected with a write_lock with irqs
824 * disabled. Since copy_from_user can fault and may sleep we
825 * need to copy to temporary buffer first
827 len
= min(count
, (size_t)(NAME_MAX_LEN
- 1));
828 if (copy_from_user(buf
, userbuf
, len
))
833 write_lock_irqsave(&driver_name_lock
, flags
);
836 * Now handle the string we got from userspace very carefully.
838 * - only use the first token we got
839 * - token delimiter is everything looking like a space
840 * character (' ', '\n', '\t' ...)
843 if (!isalnum(buf
[0])) {
845 * If the first character userspace gave us is not
846 * alphanumerical then assume the filter should be
849 if (current_driver_name
[0])
850 pr_info("DMA-API: switching off dma-debug driver filter\n");
851 current_driver_name
[0] = 0;
852 current_driver
= NULL
;
857 * Now parse out the first token and use it as the name for the
858 * driver to filter for.
860 for (i
= 0; i
< NAME_MAX_LEN
- 1; ++i
) {
861 current_driver_name
[i
] = buf
[i
];
862 if (isspace(buf
[i
]) || buf
[i
] == ' ' || buf
[i
] == 0)
865 current_driver_name
[i
] = 0;
866 current_driver
= NULL
;
868 pr_info("DMA-API: enable driver filter for driver [%s]\n",
869 current_driver_name
);
872 write_unlock_irqrestore(&driver_name_lock
, flags
);
877 static const struct file_operations filter_fops
= {
879 .write
= filter_write
,
880 .llseek
= default_llseek
,
883 static int dma_debug_fs_init(void)
885 dma_debug_dent
= debugfs_create_dir("dma-api", NULL
);
886 if (!dma_debug_dent
) {
887 pr_err("DMA-API: can not create debugfs directory\n");
891 global_disable_dent
= debugfs_create_bool("disabled", 0444,
894 if (!global_disable_dent
)
897 error_count_dent
= debugfs_create_u32("error_count", 0444,
898 dma_debug_dent
, &error_count
);
899 if (!error_count_dent
)
902 show_all_errors_dent
= debugfs_create_u32("all_errors", 0644,
905 if (!show_all_errors_dent
)
908 show_num_errors_dent
= debugfs_create_u32("num_errors", 0644,
911 if (!show_num_errors_dent
)
914 num_free_entries_dent
= debugfs_create_u32("num_free_entries", 0444,
917 if (!num_free_entries_dent
)
920 min_free_entries_dent
= debugfs_create_u32("min_free_entries", 0444,
923 if (!min_free_entries_dent
)
926 filter_dent
= debugfs_create_file("driver_filter", 0644,
927 dma_debug_dent
, NULL
, &filter_fops
);
934 debugfs_remove_recursive(dma_debug_dent
);
939 static int device_dma_allocations(struct device
*dev
, struct dma_debug_entry
**out_entry
)
941 struct dma_debug_entry
*entry
;
945 for (i
= 0; i
< HASH_SIZE
; ++i
) {
946 spin_lock_irqsave(&dma_entry_hash
[i
].lock
, flags
);
947 list_for_each_entry(entry
, &dma_entry_hash
[i
].list
, list
) {
948 if (entry
->dev
== dev
) {
953 spin_unlock_irqrestore(&dma_entry_hash
[i
].lock
, flags
);
959 static int dma_debug_device_change(struct notifier_block
*nb
, unsigned long action
, void *data
)
961 struct device
*dev
= data
;
962 struct dma_debug_entry
*uninitialized_var(entry
);
965 if (dma_debug_disabled())
969 case BUS_NOTIFY_UNBOUND_DRIVER
:
970 count
= device_dma_allocations(dev
, &entry
);
973 err_printk(dev
, entry
, "DMA-API: device driver has pending "
974 "DMA allocations while released from device "
976 "One of leaked entries details: "
977 "[device address=0x%016llx] [size=%llu bytes] "
978 "[mapped with %s] [mapped as %s]\n",
979 count
, entry
->dev_addr
, entry
->size
,
980 dir2name
[entry
->direction
], type2name
[entry
->type
]);
989 void dma_debug_add_bus(struct bus_type
*bus
)
991 struct notifier_block
*nb
;
993 if (dma_debug_disabled())
996 nb
= kzalloc(sizeof(struct notifier_block
), GFP_KERNEL
);
998 pr_err("dma_debug_add_bus: out of memory\n");
1002 nb
->notifier_call
= dma_debug_device_change
;
1004 bus_register_notifier(bus
, nb
);
1008 * Let the architectures decide how many entries should be preallocated.
1010 void dma_debug_init(u32 num_entries
)
1014 /* Do not use dma_debug_initialized here, since we really want to be
1015 * called to set dma_debug_initialized
1020 for (i
= 0; i
< HASH_SIZE
; ++i
) {
1021 INIT_LIST_HEAD(&dma_entry_hash
[i
].list
);
1022 spin_lock_init(&dma_entry_hash
[i
].lock
);
1025 if (dma_debug_fs_init() != 0) {
1026 pr_err("DMA-API: error creating debugfs entries - disabling\n");
1027 global_disable
= true;
1033 num_entries
= req_entries
;
1035 if (prealloc_memory(num_entries
) != 0) {
1036 pr_err("DMA-API: debugging out of memory error - disabled\n");
1037 global_disable
= true;
1042 nr_total_entries
= num_free_entries
;
1044 dma_debug_initialized
= true;
1046 pr_info("DMA-API: debugging enabled by kernel config\n");
1049 static __init
int dma_debug_cmdline(char *str
)
1054 if (strncmp(str
, "off", 3) == 0) {
1055 pr_info("DMA-API: debugging disabled on kernel command line\n");
1056 global_disable
= true;
1062 static __init
int dma_debug_entries_cmdline(char *str
)
1069 res
= get_option(&str
, &req_entries
);
1077 __setup("dma_debug=", dma_debug_cmdline
);
1078 __setup("dma_debug_entries=", dma_debug_entries_cmdline
);
1080 static void check_unmap(struct dma_debug_entry
*ref
)
1082 struct dma_debug_entry
*entry
;
1083 struct hash_bucket
*bucket
;
1084 unsigned long flags
;
1086 bucket
= get_hash_bucket(ref
, &flags
);
1087 entry
= bucket_find_exact(bucket
, ref
);
1090 /* must drop lock before calling dma_mapping_error */
1091 put_hash_bucket(bucket
, &flags
);
1093 if (dma_mapping_error(ref
->dev
, ref
->dev_addr
)) {
1094 err_printk(ref
->dev
, NULL
,
1095 "DMA-API: device driver tries to free an "
1096 "invalid DMA memory address\n");
1098 err_printk(ref
->dev
, NULL
,
1099 "DMA-API: device driver tries to free DMA "
1100 "memory it has not allocated [device "
1101 "address=0x%016llx] [size=%llu bytes]\n",
1102 ref
->dev_addr
, ref
->size
);
1107 if (ref
->size
!= entry
->size
) {
1108 err_printk(ref
->dev
, entry
, "DMA-API: device driver frees "
1109 "DMA memory with different size "
1110 "[device address=0x%016llx] [map size=%llu bytes] "
1111 "[unmap size=%llu bytes]\n",
1112 ref
->dev_addr
, entry
->size
, ref
->size
);
1115 if (ref
->type
!= entry
->type
) {
1116 err_printk(ref
->dev
, entry
, "DMA-API: device driver frees "
1117 "DMA memory with wrong function "
1118 "[device address=0x%016llx] [size=%llu bytes] "
1119 "[mapped as %s] [unmapped as %s]\n",
1120 ref
->dev_addr
, ref
->size
,
1121 type2name
[entry
->type
], type2name
[ref
->type
]);
1122 } else if ((entry
->type
== dma_debug_coherent
) &&
1123 (phys_addr(ref
) != phys_addr(entry
))) {
1124 err_printk(ref
->dev
, entry
, "DMA-API: device driver frees "
1125 "DMA memory with different CPU address "
1126 "[device address=0x%016llx] [size=%llu bytes] "
1127 "[cpu alloc address=0x%016llx] "
1128 "[cpu free address=0x%016llx]",
1129 ref
->dev_addr
, ref
->size
,
1134 if (ref
->sg_call_ents
&& ref
->type
== dma_debug_sg
&&
1135 ref
->sg_call_ents
!= entry
->sg_call_ents
) {
1136 err_printk(ref
->dev
, entry
, "DMA-API: device driver frees "
1137 "DMA sg list with different entry count "
1138 "[map count=%d] [unmap count=%d]\n",
1139 entry
->sg_call_ents
, ref
->sg_call_ents
);
1143 * This may be no bug in reality - but most implementations of the
1144 * DMA API don't handle this properly, so check for it here
1146 if (ref
->direction
!= entry
->direction
) {
1147 err_printk(ref
->dev
, entry
, "DMA-API: device driver frees "
1148 "DMA memory with different direction "
1149 "[device address=0x%016llx] [size=%llu bytes] "
1150 "[mapped with %s] [unmapped with %s]\n",
1151 ref
->dev_addr
, ref
->size
,
1152 dir2name
[entry
->direction
],
1153 dir2name
[ref
->direction
]);
1157 * Drivers should use dma_mapping_error() to check the returned
1158 * addresses of dma_map_single() and dma_map_page().
1159 * If not, print this warning message. See Documentation/DMA-API.txt.
1161 if (entry
->map_err_type
== MAP_ERR_NOT_CHECKED
) {
1162 err_printk(ref
->dev
, entry
,
1163 "DMA-API: device driver failed to check map error"
1164 "[device address=0x%016llx] [size=%llu bytes] "
1166 ref
->dev_addr
, ref
->size
,
1167 type2name
[entry
->type
]);
1170 hash_bucket_del(entry
);
1171 dma_entry_free(entry
);
1173 put_hash_bucket(bucket
, &flags
);
1176 static void check_for_stack(struct device
*dev
,
1177 struct page
*page
, size_t offset
)
1180 struct vm_struct
*stack_vm_area
= task_stack_vm_area(current
);
1182 if (!stack_vm_area
) {
1183 /* Stack is direct-mapped. */
1184 if (PageHighMem(page
))
1186 addr
= page_address(page
) + offset
;
1187 if (object_is_on_stack(addr
))
1188 err_printk(dev
, NULL
, "DMA-API: device driver maps memory from stack [addr=%p]\n", addr
);
1190 /* Stack is vmalloced. */
1193 for (i
= 0; i
< stack_vm_area
->nr_pages
; i
++) {
1194 if (page
!= stack_vm_area
->pages
[i
])
1197 addr
= (u8
*)current
->stack
+ i
* PAGE_SIZE
+ offset
;
1198 err_printk(dev
, NULL
, "DMA-API: device driver maps memory from stack [probable addr=%p]\n", addr
);
1204 static inline bool overlap(void *addr
, unsigned long len
, void *start
, void *end
)
1206 unsigned long a1
= (unsigned long)addr
;
1207 unsigned long b1
= a1
+ len
;
1208 unsigned long a2
= (unsigned long)start
;
1209 unsigned long b2
= (unsigned long)end
;
1211 return !(b1
<= a2
|| a1
>= b2
);
1214 static void check_for_illegal_area(struct device
*dev
, void *addr
, unsigned long len
)
1216 if (overlap(addr
, len
, _stext
, _etext
) ||
1217 overlap(addr
, len
, __start_rodata
, __end_rodata
))
1218 err_printk(dev
, NULL
, "DMA-API: device driver maps memory from kernel text or rodata [addr=%p] [len=%lu]\n", addr
, len
);
1221 static void check_sync(struct device
*dev
,
1222 struct dma_debug_entry
*ref
,
1225 struct dma_debug_entry
*entry
;
1226 struct hash_bucket
*bucket
;
1227 unsigned long flags
;
1229 bucket
= get_hash_bucket(ref
, &flags
);
1231 entry
= bucket_find_contain(&bucket
, ref
, &flags
);
1234 err_printk(dev
, NULL
, "DMA-API: device driver tries "
1235 "to sync DMA memory it has not allocated "
1236 "[device address=0x%016llx] [size=%llu bytes]\n",
1237 (unsigned long long)ref
->dev_addr
, ref
->size
);
1241 if (ref
->size
> entry
->size
) {
1242 err_printk(dev
, entry
, "DMA-API: device driver syncs"
1243 " DMA memory outside allocated range "
1244 "[device address=0x%016llx] "
1245 "[allocation size=%llu bytes] "
1246 "[sync offset+size=%llu]\n",
1247 entry
->dev_addr
, entry
->size
,
1251 if (entry
->direction
== DMA_BIDIRECTIONAL
)
1254 if (ref
->direction
!= entry
->direction
) {
1255 err_printk(dev
, entry
, "DMA-API: device driver syncs "
1256 "DMA memory with different direction "
1257 "[device address=0x%016llx] [size=%llu bytes] "
1258 "[mapped with %s] [synced with %s]\n",
1259 (unsigned long long)ref
->dev_addr
, entry
->size
,
1260 dir2name
[entry
->direction
],
1261 dir2name
[ref
->direction
]);
1264 if (to_cpu
&& !(entry
->direction
== DMA_FROM_DEVICE
) &&
1265 !(ref
->direction
== DMA_TO_DEVICE
))
1266 err_printk(dev
, entry
, "DMA-API: device driver syncs "
1267 "device read-only DMA memory for cpu "
1268 "[device address=0x%016llx] [size=%llu bytes] "
1269 "[mapped with %s] [synced with %s]\n",
1270 (unsigned long long)ref
->dev_addr
, entry
->size
,
1271 dir2name
[entry
->direction
],
1272 dir2name
[ref
->direction
]);
1274 if (!to_cpu
&& !(entry
->direction
== DMA_TO_DEVICE
) &&
1275 !(ref
->direction
== DMA_FROM_DEVICE
))
1276 err_printk(dev
, entry
, "DMA-API: device driver syncs "
1277 "device write-only DMA memory to device "
1278 "[device address=0x%016llx] [size=%llu bytes] "
1279 "[mapped with %s] [synced with %s]\n",
1280 (unsigned long long)ref
->dev_addr
, entry
->size
,
1281 dir2name
[entry
->direction
],
1282 dir2name
[ref
->direction
]);
1284 if (ref
->sg_call_ents
&& ref
->type
== dma_debug_sg
&&
1285 ref
->sg_call_ents
!= entry
->sg_call_ents
) {
1286 err_printk(ref
->dev
, entry
, "DMA-API: device driver syncs "
1287 "DMA sg list with different entry count "
1288 "[map count=%d] [sync count=%d]\n",
1289 entry
->sg_call_ents
, ref
->sg_call_ents
);
1293 put_hash_bucket(bucket
, &flags
);
1296 void debug_dma_map_page(struct device
*dev
, struct page
*page
, size_t offset
,
1297 size_t size
, int direction
, dma_addr_t dma_addr
,
1300 struct dma_debug_entry
*entry
;
1302 if (unlikely(dma_debug_disabled()))
1305 if (dma_mapping_error(dev
, dma_addr
))
1308 entry
= dma_entry_alloc();
1313 entry
->type
= dma_debug_page
;
1314 entry
->pfn
= page_to_pfn(page
);
1315 entry
->offset
= offset
,
1316 entry
->dev_addr
= dma_addr
;
1318 entry
->direction
= direction
;
1319 entry
->map_err_type
= MAP_ERR_NOT_CHECKED
;
1322 entry
->type
= dma_debug_single
;
1324 check_for_stack(dev
, page
, offset
);
1326 if (!PageHighMem(page
)) {
1327 void *addr
= page_address(page
) + offset
;
1329 check_for_illegal_area(dev
, addr
, size
);
1332 add_dma_entry(entry
);
1334 EXPORT_SYMBOL(debug_dma_map_page
);
1336 void debug_dma_mapping_error(struct device
*dev
, dma_addr_t dma_addr
)
1338 struct dma_debug_entry ref
;
1339 struct dma_debug_entry
*entry
;
1340 struct hash_bucket
*bucket
;
1341 unsigned long flags
;
1343 if (unlikely(dma_debug_disabled()))
1347 ref
.dev_addr
= dma_addr
;
1348 bucket
= get_hash_bucket(&ref
, &flags
);
1350 list_for_each_entry(entry
, &bucket
->list
, list
) {
1351 if (!exact_match(&ref
, entry
))
1355 * The same physical address can be mapped multiple
1356 * times. Without a hardware IOMMU this results in the
1357 * same device addresses being put into the dma-debug
1358 * hash multiple times too. This can result in false
1359 * positives being reported. Therefore we implement a
1360 * best-fit algorithm here which updates the first entry
1361 * from the hash which fits the reference value and is
1362 * not currently listed as being checked.
1364 if (entry
->map_err_type
== MAP_ERR_NOT_CHECKED
) {
1365 entry
->map_err_type
= MAP_ERR_CHECKED
;
1370 put_hash_bucket(bucket
, &flags
);
1372 EXPORT_SYMBOL(debug_dma_mapping_error
);
1374 void debug_dma_unmap_page(struct device
*dev
, dma_addr_t addr
,
1375 size_t size
, int direction
, bool map_single
)
1377 struct dma_debug_entry ref
= {
1378 .type
= dma_debug_page
,
1382 .direction
= direction
,
1385 if (unlikely(dma_debug_disabled()))
1389 ref
.type
= dma_debug_single
;
1393 EXPORT_SYMBOL(debug_dma_unmap_page
);
1395 void debug_dma_map_sg(struct device
*dev
, struct scatterlist
*sg
,
1396 int nents
, int mapped_ents
, int direction
)
1398 struct dma_debug_entry
*entry
;
1399 struct scatterlist
*s
;
1402 if (unlikely(dma_debug_disabled()))
1405 for_each_sg(sg
, s
, mapped_ents
, i
) {
1406 entry
= dma_entry_alloc();
1410 entry
->type
= dma_debug_sg
;
1412 entry
->pfn
= page_to_pfn(sg_page(s
));
1413 entry
->offset
= s
->offset
,
1414 entry
->size
= sg_dma_len(s
);
1415 entry
->dev_addr
= sg_dma_address(s
);
1416 entry
->direction
= direction
;
1417 entry
->sg_call_ents
= nents
;
1418 entry
->sg_mapped_ents
= mapped_ents
;
1420 check_for_stack(dev
, sg_page(s
), s
->offset
);
1422 if (!PageHighMem(sg_page(s
))) {
1423 check_for_illegal_area(dev
, sg_virt(s
), sg_dma_len(s
));
1426 add_dma_entry(entry
);
1429 EXPORT_SYMBOL(debug_dma_map_sg
);
1431 static int get_nr_mapped_entries(struct device
*dev
,
1432 struct dma_debug_entry
*ref
)
1434 struct dma_debug_entry
*entry
;
1435 struct hash_bucket
*bucket
;
1436 unsigned long flags
;
1439 bucket
= get_hash_bucket(ref
, &flags
);
1440 entry
= bucket_find_exact(bucket
, ref
);
1444 mapped_ents
= entry
->sg_mapped_ents
;
1445 put_hash_bucket(bucket
, &flags
);
1450 void debug_dma_unmap_sg(struct device
*dev
, struct scatterlist
*sglist
,
1451 int nelems
, int dir
)
1453 struct scatterlist
*s
;
1454 int mapped_ents
= 0, i
;
1456 if (unlikely(dma_debug_disabled()))
1459 for_each_sg(sglist
, s
, nelems
, i
) {
1461 struct dma_debug_entry ref
= {
1462 .type
= dma_debug_sg
,
1464 .pfn
= page_to_pfn(sg_page(s
)),
1465 .offset
= s
->offset
,
1466 .dev_addr
= sg_dma_address(s
),
1467 .size
= sg_dma_len(s
),
1469 .sg_call_ents
= nelems
,
1472 if (mapped_ents
&& i
>= mapped_ents
)
1476 mapped_ents
= get_nr_mapped_entries(dev
, &ref
);
1481 EXPORT_SYMBOL(debug_dma_unmap_sg
);
1483 void debug_dma_alloc_coherent(struct device
*dev
, size_t size
,
1484 dma_addr_t dma_addr
, void *virt
)
1486 struct dma_debug_entry
*entry
;
1488 if (unlikely(dma_debug_disabled()))
1491 if (unlikely(virt
== NULL
))
1494 entry
= dma_entry_alloc();
1498 /* handle vmalloc and linear addresses */
1499 if (!is_vmalloc_addr(virt
) && !virt_to_page(virt
))
1502 entry
->type
= dma_debug_coherent
;
1504 entry
->offset
= offset_in_page(virt
);
1506 entry
->dev_addr
= dma_addr
;
1507 entry
->direction
= DMA_BIDIRECTIONAL
;
1509 if (is_vmalloc_addr(virt
))
1510 entry
->pfn
= vmalloc_to_pfn(virt
);
1512 entry
->pfn
= page_to_pfn(virt_to_page(virt
));
1514 add_dma_entry(entry
);
1516 EXPORT_SYMBOL(debug_dma_alloc_coherent
);
1518 void debug_dma_free_coherent(struct device
*dev
, size_t size
,
1519 void *virt
, dma_addr_t addr
)
1521 struct dma_debug_entry ref
= {
1522 .type
= dma_debug_coherent
,
1524 .offset
= offset_in_page(virt
),
1527 .direction
= DMA_BIDIRECTIONAL
,
1530 /* handle vmalloc and linear addresses */
1531 if (!is_vmalloc_addr(virt
) && !virt_to_page(virt
))
1534 if (is_vmalloc_addr(virt
))
1535 ref
.pfn
= vmalloc_to_pfn(virt
);
1537 ref
.pfn
= page_to_pfn(virt_to_page(virt
));
1539 if (unlikely(dma_debug_disabled()))
1544 EXPORT_SYMBOL(debug_dma_free_coherent
);
1546 void debug_dma_map_resource(struct device
*dev
, phys_addr_t addr
, size_t size
,
1547 int direction
, dma_addr_t dma_addr
)
1549 struct dma_debug_entry
*entry
;
1551 if (unlikely(dma_debug_disabled()))
1554 entry
= dma_entry_alloc();
1558 entry
->type
= dma_debug_resource
;
1560 entry
->pfn
= PHYS_PFN(addr
);
1561 entry
->offset
= offset_in_page(addr
);
1563 entry
->dev_addr
= dma_addr
;
1564 entry
->direction
= direction
;
1565 entry
->map_err_type
= MAP_ERR_NOT_CHECKED
;
1567 add_dma_entry(entry
);
1569 EXPORT_SYMBOL(debug_dma_map_resource
);
1571 void debug_dma_unmap_resource(struct device
*dev
, dma_addr_t dma_addr
,
1572 size_t size
, int direction
)
1574 struct dma_debug_entry ref
= {
1575 .type
= dma_debug_resource
,
1577 .dev_addr
= dma_addr
,
1579 .direction
= direction
,
1582 if (unlikely(dma_debug_disabled()))
1587 EXPORT_SYMBOL(debug_dma_unmap_resource
);
1589 void debug_dma_sync_single_for_cpu(struct device
*dev
, dma_addr_t dma_handle
,
1590 size_t size
, int direction
)
1592 struct dma_debug_entry ref
;
1594 if (unlikely(dma_debug_disabled()))
1597 ref
.type
= dma_debug_single
;
1599 ref
.dev_addr
= dma_handle
;
1601 ref
.direction
= direction
;
1602 ref
.sg_call_ents
= 0;
1604 check_sync(dev
, &ref
, true);
1606 EXPORT_SYMBOL(debug_dma_sync_single_for_cpu
);
1608 void debug_dma_sync_single_for_device(struct device
*dev
,
1609 dma_addr_t dma_handle
, size_t size
,
1612 struct dma_debug_entry ref
;
1614 if (unlikely(dma_debug_disabled()))
1617 ref
.type
= dma_debug_single
;
1619 ref
.dev_addr
= dma_handle
;
1621 ref
.direction
= direction
;
1622 ref
.sg_call_ents
= 0;
1624 check_sync(dev
, &ref
, false);
1626 EXPORT_SYMBOL(debug_dma_sync_single_for_device
);
1628 void debug_dma_sync_single_range_for_cpu(struct device
*dev
,
1629 dma_addr_t dma_handle
,
1630 unsigned long offset
, size_t size
,
1633 struct dma_debug_entry ref
;
1635 if (unlikely(dma_debug_disabled()))
1638 ref
.type
= dma_debug_single
;
1640 ref
.dev_addr
= dma_handle
;
1641 ref
.size
= offset
+ size
;
1642 ref
.direction
= direction
;
1643 ref
.sg_call_ents
= 0;
1645 check_sync(dev
, &ref
, true);
1647 EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu
);
1649 void debug_dma_sync_single_range_for_device(struct device
*dev
,
1650 dma_addr_t dma_handle
,
1651 unsigned long offset
,
1652 size_t size
, int direction
)
1654 struct dma_debug_entry ref
;
1656 if (unlikely(dma_debug_disabled()))
1659 ref
.type
= dma_debug_single
;
1661 ref
.dev_addr
= dma_handle
;
1662 ref
.size
= offset
+ size
;
1663 ref
.direction
= direction
;
1664 ref
.sg_call_ents
= 0;
1666 check_sync(dev
, &ref
, false);
1668 EXPORT_SYMBOL(debug_dma_sync_single_range_for_device
);
1670 void debug_dma_sync_sg_for_cpu(struct device
*dev
, struct scatterlist
*sg
,
1671 int nelems
, int direction
)
1673 struct scatterlist
*s
;
1674 int mapped_ents
= 0, i
;
1676 if (unlikely(dma_debug_disabled()))
1679 for_each_sg(sg
, s
, nelems
, i
) {
1681 struct dma_debug_entry ref
= {
1682 .type
= dma_debug_sg
,
1684 .pfn
= page_to_pfn(sg_page(s
)),
1685 .offset
= s
->offset
,
1686 .dev_addr
= sg_dma_address(s
),
1687 .size
= sg_dma_len(s
),
1688 .direction
= direction
,
1689 .sg_call_ents
= nelems
,
1693 mapped_ents
= get_nr_mapped_entries(dev
, &ref
);
1695 if (i
>= mapped_ents
)
1698 check_sync(dev
, &ref
, true);
1701 EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu
);
1703 void debug_dma_sync_sg_for_device(struct device
*dev
, struct scatterlist
*sg
,
1704 int nelems
, int direction
)
1706 struct scatterlist
*s
;
1707 int mapped_ents
= 0, i
;
1709 if (unlikely(dma_debug_disabled()))
1712 for_each_sg(sg
, s
, nelems
, i
) {
1714 struct dma_debug_entry ref
= {
1715 .type
= dma_debug_sg
,
1717 .pfn
= page_to_pfn(sg_page(s
)),
1718 .offset
= s
->offset
,
1719 .dev_addr
= sg_dma_address(s
),
1720 .size
= sg_dma_len(s
),
1721 .direction
= direction
,
1722 .sg_call_ents
= nelems
,
1725 mapped_ents
= get_nr_mapped_entries(dev
, &ref
);
1727 if (i
>= mapped_ents
)
1730 check_sync(dev
, &ref
, false);
1733 EXPORT_SYMBOL(debug_dma_sync_sg_for_device
);
1735 static int __init
dma_debug_driver_setup(char *str
)
1739 for (i
= 0; i
< NAME_MAX_LEN
- 1; ++i
, ++str
) {
1740 current_driver_name
[i
] = *str
;
1745 if (current_driver_name
[0])
1746 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1747 current_driver_name
);
1752 __setup("dma_debug_driver=", dma_debug_driver_setup
);