]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - lib/dma-debug.c
Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6
[mirror_ubuntu-artful-kernel.git] / lib / dma-debug.c
CommitLineData
f2f45e5f
JR
1/*
2 * Copyright (C) 2008 Advanced Micro Devices, Inc.
3 *
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
5 *
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.
9 *
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.
14 *
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
18 */
19
68db0cf1 20#include <linux/sched/task_stack.h>
972aa45c 21#include <linux/scatterlist.h>
2d62ece1 22#include <linux/dma-mapping.h>
29930025 23#include <linux/sched/task.h>
6c132d1b 24#include <linux/stacktrace.h>
f2f45e5f 25#include <linux/dma-debug.h>
30dfa90c 26#include <linux/spinlock.h>
b4a0f533 27#include <linux/vmalloc.h>
788dcfa6 28#include <linux/debugfs.h>
8a6fc708 29#include <linux/uaccess.h>
23a7bfae 30#include <linux/export.h>
2d62ece1 31#include <linux/device.h>
f2f45e5f 32#include <linux/types.h>
2d62ece1 33#include <linux/sched.h>
8a6fc708 34#include <linux/ctype.h>
f2f45e5f 35#include <linux/list.h>
6bf07871 36#include <linux/slab.h>
f2f45e5f 37
2e34bde1
JR
38#include <asm/sections.h>
39
30dfa90c
JR
40#define HASH_SIZE 1024ULL
41#define HASH_FN_SHIFT 13
42#define HASH_FN_MASK (HASH_SIZE - 1)
43
f2f45e5f
JR
44enum {
45 dma_debug_single,
46 dma_debug_page,
47 dma_debug_sg,
48 dma_debug_coherent,
0e74b34d 49 dma_debug_resource,
f2f45e5f
JR
50};
51
6c9c6d63
SK
52enum map_err_types {
53 MAP_ERR_CHECK_NOT_APPLICABLE,
54 MAP_ERR_NOT_CHECKED,
55 MAP_ERR_CHECKED,
56};
57
6c132d1b
DW
58#define DMA_DEBUG_STACKTRACE_ENTRIES 5
59
0abdd7a8
DW
60/**
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
73 */
f2f45e5f
JR
74struct dma_debug_entry {
75 struct list_head list;
76 struct device *dev;
77 int type;
0abdd7a8
DW
78 unsigned long pfn;
79 size_t offset;
f2f45e5f
JR
80 u64 dev_addr;
81 u64 size;
82 int direction;
83 int sg_call_ents;
84 int sg_mapped_ents;
6c9c6d63 85 enum map_err_types map_err_type;
6c132d1b
DW
86#ifdef CONFIG_STACKTRACE
87 struct stack_trace stacktrace;
88 unsigned long st_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
89#endif
f2f45e5f
JR
90};
91
c6a21d0b
NH
92typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
93
30dfa90c
JR
94struct hash_bucket {
95 struct list_head list;
96 spinlock_t lock;
2d62ece1 97} ____cacheline_aligned_in_smp;
30dfa90c
JR
98
99/* Hash list to save the allocated dma addresses */
100static struct hash_bucket dma_entry_hash[HASH_SIZE];
3b1e79ed
JR
101/* List of pre-allocated dma_debug_entry's */
102static LIST_HEAD(free_entries);
103/* Lock for the list above */
104static DEFINE_SPINLOCK(free_entries_lock);
105
106/* Global disable flag - will be set in case of an error */
621a5f7a 107static bool global_disable __read_mostly;
3b1e79ed 108
2ce8e7ed
FF
109/* Early initialization disable flag, set at the end of dma_debug_init */
110static bool dma_debug_initialized __read_mostly;
111
01ce18b3
FF
112static inline bool dma_debug_disabled(void)
113{
2ce8e7ed 114 return global_disable || !dma_debug_initialized;
01ce18b3
FF
115}
116
788dcfa6
JR
117/* Global error count */
118static u32 error_count;
119
120/* Global error show enable*/
121static u32 show_all_errors __read_mostly;
122/* Number of errors to show */
123static u32 show_num_errors = 1;
124
3b1e79ed
JR
125static u32 num_free_entries;
126static u32 min_free_entries;
e6a1a89d 127static u32 nr_total_entries;
30dfa90c 128
59d3daaf
JR
129/* number of preallocated entries requested by kernel cmdline */
130static u32 req_entries;
131
788dcfa6
JR
132/* debugfs dentry's for the stuff above */
133static struct dentry *dma_debug_dent __read_mostly;
134static struct dentry *global_disable_dent __read_mostly;
135static struct dentry *error_count_dent __read_mostly;
136static struct dentry *show_all_errors_dent __read_mostly;
137static struct dentry *show_num_errors_dent __read_mostly;
138static struct dentry *num_free_entries_dent __read_mostly;
139static struct dentry *min_free_entries_dent __read_mostly;
8a6fc708 140static struct dentry *filter_dent __read_mostly;
788dcfa6 141
2e507d84
JR
142/* per-driver filter related state */
143
144#define NAME_MAX_LEN 64
145
146static char current_driver_name[NAME_MAX_LEN] __read_mostly;
147static struct device_driver *current_driver __read_mostly;
148
149static DEFINE_RWLOCK(driver_name_lock);
788dcfa6 150
6c9c6d63
SK
151static 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",
155};
156
0e74b34d
NS
157static const char *type2name[5] = { "single", "page",
158 "scather-gather", "coherent",
159 "resource" };
2d62ece1
JR
160
161static const char *dir2name[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
162 "DMA_FROM_DEVICE", "DMA_NONE" };
163
164/*
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:
169 *
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.
176 */
6c132d1b
DW
177static inline void dump_entry_trace(struct dma_debug_entry *entry)
178{
179#ifdef CONFIG_STACKTRACE
180 if (entry) {
e7ed70ee 181 pr_warning("Mapped at:\n");
6c132d1b
DW
182 print_stack_trace(&entry->stacktrace, 0);
183 }
184#endif
185}
186
2e507d84
JR
187static bool driver_filter(struct device *dev)
188{
0bf84128
JR
189 struct device_driver *drv;
190 unsigned long flags;
191 bool ret;
192
2e507d84
JR
193 /* driver filter off */
194 if (likely(!current_driver_name[0]))
195 return true;
196
197 /* driver filter on and initialized */
ec9c96ef 198 if (current_driver && dev && dev->driver == current_driver)
2e507d84
JR
199 return true;
200
ec9c96ef
KM
201 /* driver filter on, but we can't filter on a NULL device... */
202 if (!dev)
203 return false;
204
0bf84128
JR
205 if (current_driver || !current_driver_name[0])
206 return false;
2e507d84 207
0bf84128 208 /* driver filter on but not yet initialized */
f3ff9247 209 drv = dev->driver;
0bf84128
JR
210 if (!drv)
211 return false;
212
213 /* lock to protect against change of current_driver_name */
214 read_lock_irqsave(&driver_name_lock, flags);
215
216 ret = false;
217 if (drv->name &&
218 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
219 current_driver = drv;
220 ret = true;
2e507d84
JR
221 }
222
0bf84128 223 read_unlock_irqrestore(&driver_name_lock, flags);
0bf84128
JR
224
225 return ret;
2e507d84
JR
226}
227
ec9c96ef
KM
228#define err_printk(dev, entry, format, arg...) do { \
229 error_count += 1; \
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); \
236 } \
237 if (!show_all_errors && show_num_errors > 0) \
238 show_num_errors -= 1; \
2d62ece1
JR
239 } while (0);
240
30dfa90c
JR
241/*
242 * Hash related functions
243 *
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.
246 */
247static int hash_fn(struct dma_debug_entry *entry)
248{
249 /*
250 * Hash function is based on the dma address.
251 * We use bits 20-27 here as the index into the hash
252 */
253 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
254}
255
256/*
257 * Request exclusive access to a hash bucket for a given dma_debug_entry.
258 */
259static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
260 unsigned long *flags)
d5dfc80f 261 __acquires(&dma_entry_hash[idx].lock)
30dfa90c
JR
262{
263 int idx = hash_fn(entry);
264 unsigned long __flags;
265
266 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
267 *flags = __flags;
268 return &dma_entry_hash[idx];
269}
270
271/*
272 * Give up exclusive access to the hash bucket
273 */
274static void put_hash_bucket(struct hash_bucket *bucket,
275 unsigned long *flags)
d5dfc80f 276 __releases(&bucket->lock)
30dfa90c
JR
277{
278 unsigned long __flags = *flags;
279
280 spin_unlock_irqrestore(&bucket->lock, __flags);
281}
282
c6a21d0b
NH
283static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
284{
91ec37cc 285 return ((a->dev_addr == b->dev_addr) &&
c6a21d0b
NH
286 (a->dev == b->dev)) ? true : false;
287}
288
289static bool containing_match(struct dma_debug_entry *a,
290 struct dma_debug_entry *b)
291{
292 if (a->dev != b->dev)
293 return false;
294
295 if ((b->dev_addr <= a->dev_addr) &&
296 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
297 return true;
298
299 return false;
300}
301
30dfa90c
JR
302/*
303 * Search a given entry in the hash bucket list
304 */
c6a21d0b
NH
305static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
306 struct dma_debug_entry *ref,
307 match_fn match)
30dfa90c 308{
7caf6a49 309 struct dma_debug_entry *entry, *ret = NULL;
fe73fbe1 310 int matches = 0, match_lvl, last_lvl = -1;
30dfa90c
JR
311
312 list_for_each_entry(entry, &bucket->list, list) {
c6a21d0b 313 if (!match(ref, entry))
7caf6a49
JR
314 continue;
315
316 /*
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
af901ca1 321 * positives being reported. Therefore we implement a
7caf6a49
JR
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.
325 */
326 matches += 1;
327 match_lvl = 0;
e5e8c5b9
JR
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;
7caf6a49 332
e5e8c5b9 333 if (match_lvl == 4) {
7caf6a49 334 /* perfect-fit - return the result */
30dfa90c 335 return entry;
7caf6a49
JR
336 } else if (match_lvl > last_lvl) {
337 /*
338 * We found an entry that fits better then the
fe73fbe1 339 * previous one or it is the 1st match.
7caf6a49
JR
340 */
341 last_lvl = match_lvl;
342 ret = entry;
343 }
30dfa90c
JR
344 }
345
7caf6a49
JR
346 /*
347 * If we have multiple matches but no perfect-fit, just return
348 * NULL.
349 */
350 ret = (matches == 1) ? ret : NULL;
351
352 return ret;
30dfa90c
JR
353}
354
c6a21d0b
NH
355static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
356 struct dma_debug_entry *ref)
357{
358 return __hash_bucket_find(bucket, ref, exact_match);
359}
360
361static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
362 struct dma_debug_entry *ref,
363 unsigned long *flags)
364{
365
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;
369
370 while (range <= max_range) {
a7a2c02a 371 entry = __hash_bucket_find(*bucket, ref, containing_match);
c6a21d0b
NH
372
373 if (entry)
374 return entry;
375
376 /*
377 * Nothing found, go back a hash bucket
378 */
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);
383 }
384
385 return NULL;
386}
387
30dfa90c
JR
388/*
389 * Add an entry to a hash bucket
390 */
391static void hash_bucket_add(struct hash_bucket *bucket,
392 struct dma_debug_entry *entry)
393{
394 list_add_tail(&entry->list, &bucket->list);
395}
396
397/*
398 * Remove entry from a hash bucket list
399 */
400static void hash_bucket_del(struct dma_debug_entry *entry)
401{
402 list_del(&entry->list);
403}
404
0abdd7a8
DW
405static unsigned long long phys_addr(struct dma_debug_entry *entry)
406{
0e74b34d
NS
407 if (entry->type == dma_debug_resource)
408 return __pfn_to_phys(entry->pfn) + entry->offset;
409
0abdd7a8
DW
410 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
411}
412
ac26c18b
DW
413/*
414 * Dump mapping entries for debugging purposes
415 */
416void debug_dma_dump_mappings(struct device *dev)
417{
418 int idx;
419
420 for (idx = 0; idx < HASH_SIZE; idx++) {
421 struct hash_bucket *bucket = &dma_entry_hash[idx];
422 struct dma_debug_entry *entry;
423 unsigned long flags;
424
425 spin_lock_irqsave(&bucket->lock, flags);
426
427 list_for_each_entry(entry, &bucket->list, list) {
428 if (!dev || dev == entry->dev) {
429 dev_info(entry->dev,
0abdd7a8 430 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
ac26c18b 431 type2name[entry->type], idx,
0abdd7a8 432 phys_addr(entry), entry->pfn,
ac26c18b 433 entry->dev_addr, entry->size,
6c9c6d63
SK
434 dir2name[entry->direction],
435 maperr2str[entry->map_err_type]);
ac26c18b
DW
436 }
437 }
438
439 spin_unlock_irqrestore(&bucket->lock, flags);
440 }
441}
442EXPORT_SYMBOL(debug_dma_dump_mappings);
443
0abdd7a8 444/*
3b7a6418
DW
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
0abdd7a8 449 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
3b7a6418 450 * the entry already exists at insertion time add a tag as a reference
0abdd7a8 451 * count for the overlapping mappings. For now, the overlap tracking
3b7a6418
DW
452 * just ensures that 'unmaps' balance 'maps' before marking the
453 * cacheline idle, but we should also be flagging overlaps as an API
454 * violation.
0abdd7a8
DW
455 *
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
3b7a6418
DW
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.
0abdd7a8
DW
463 *
464 * At any time debug_dma_assert_idle() can be called to trigger a
3b7a6418 465 * warning if any cachelines in the given page are in the active set.
0abdd7a8 466 */
3b7a6418 467static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT);
0abdd7a8 468static DEFINE_SPINLOCK(radix_lock);
3b7a6418
DW
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)
0abdd7a8 472
3b7a6418
DW
473static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
474{
475 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
476 (entry->offset >> L1_CACHE_SHIFT);
477}
478
479static int active_cacheline_read_overlap(phys_addr_t cln)
0abdd7a8
DW
480{
481 int overlap = 0, i;
482
483 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
3b7a6418 484 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
0abdd7a8
DW
485 overlap |= 1 << i;
486 return overlap;
487}
488
3b7a6418 489static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
0abdd7a8
DW
490{
491 int i;
492
3b7a6418 493 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
59f2e7df 494 return overlap;
0abdd7a8
DW
495
496 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
497 if (overlap & 1 << i)
3b7a6418 498 radix_tree_tag_set(&dma_active_cacheline, cln, i);
0abdd7a8 499 else
3b7a6418 500 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
0abdd7a8
DW
501
502 return overlap;
503}
504
3b7a6418 505static void active_cacheline_inc_overlap(phys_addr_t cln)
0abdd7a8 506{
3b7a6418 507 int overlap = active_cacheline_read_overlap(cln);
0abdd7a8 508
3b7a6418 509 overlap = active_cacheline_set_overlap(cln, ++overlap);
0abdd7a8
DW
510
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
3b7a6418 514 * debug_dma_assert_idle() as the cacheline may be marked idle
0abdd7a8
DW
515 * prematurely.
516 */
3b7a6418
DW
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);
0abdd7a8
DW
520}
521
3b7a6418 522static int active_cacheline_dec_overlap(phys_addr_t cln)
0abdd7a8 523{
3b7a6418 524 int overlap = active_cacheline_read_overlap(cln);
0abdd7a8 525
3b7a6418 526 return active_cacheline_set_overlap(cln, --overlap);
0abdd7a8
DW
527}
528
3b7a6418 529static int active_cacheline_insert(struct dma_debug_entry *entry)
0abdd7a8 530{
3b7a6418 531 phys_addr_t cln = to_cacheline_number(entry);
0abdd7a8
DW
532 unsigned long flags;
533 int rc;
534
3b7a6418
DW
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.
538 */
539 if (entry->direction == DMA_TO_DEVICE)
540 return 0;
541
0abdd7a8 542 spin_lock_irqsave(&radix_lock, flags);
3b7a6418 543 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
0abdd7a8 544 if (rc == -EEXIST)
3b7a6418 545 active_cacheline_inc_overlap(cln);
0abdd7a8
DW
546 spin_unlock_irqrestore(&radix_lock, flags);
547
548 return rc;
549}
550
3b7a6418 551static void active_cacheline_remove(struct dma_debug_entry *entry)
0abdd7a8 552{
3b7a6418 553 phys_addr_t cln = to_cacheline_number(entry);
0abdd7a8
DW
554 unsigned long flags;
555
3b7a6418
DW
556 /* ...mirror the insert case */
557 if (entry->direction == DMA_TO_DEVICE)
558 return;
559
0abdd7a8 560 spin_lock_irqsave(&radix_lock, flags);
59f2e7df 561 /* since we are counting overlaps the final put of the
3b7a6418
DW
562 * cacheline will occur when the overlap count is 0.
563 * active_cacheline_dec_overlap() returns -1 in that case
59f2e7df 564 */
3b7a6418
DW
565 if (active_cacheline_dec_overlap(cln) < 0)
566 radix_tree_delete(&dma_active_cacheline, cln);
0abdd7a8
DW
567 spin_unlock_irqrestore(&radix_lock, flags);
568}
569
570/**
571 * debug_dma_assert_idle() - assert that a page is not undergoing dma
3b7a6418 572 * @page: page to lookup in the dma_active_cacheline tree
0abdd7a8
DW
573 *
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
576 * corruption.
577 */
578void debug_dma_assert_idle(struct page *page)
579{
3b7a6418
DW
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;
0abdd7a8 584 unsigned long flags;
3b7a6418 585 phys_addr_t cln;
0abdd7a8 586
c9d120b0
HE
587 if (dma_debug_disabled())
588 return;
589
0abdd7a8
DW
590 if (!page)
591 return;
592
3b7a6418 593 cln = (phys_addr_t) page_to_pfn(page) << CACHELINE_PER_PAGE_SHIFT;
0abdd7a8 594 spin_lock_irqsave(&radix_lock, flags);
3b7a6418
DW
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]);
599
600 if (ent_cln == cln) {
601 entry = ents[i];
602 break;
603 } else if (ent_cln >= cln + CACHELINES_PER_PAGE)
604 break;
605 }
0abdd7a8
DW
606 spin_unlock_irqrestore(&radix_lock, flags);
607
608 if (!entry)
609 return;
610
3b7a6418 611 cln = to_cacheline_number(entry);
0abdd7a8 612 err_printk(entry->dev, entry,
3b7a6418
DW
613 "DMA-API: cpu touching an active dma mapped cacheline [cln=%pa]\n",
614 &cln);
0abdd7a8
DW
615}
616
30dfa90c
JR
617/*
618 * Wrapper function for adding an entry to the hash.
619 * This function takes care of locking itself.
620 */
621static void add_dma_entry(struct dma_debug_entry *entry)
622{
623 struct hash_bucket *bucket;
624 unsigned long flags;
0abdd7a8 625 int rc;
30dfa90c
JR
626
627 bucket = get_hash_bucket(entry, &flags);
628 hash_bucket_add(bucket, entry);
629 put_hash_bucket(bucket, &flags);
0abdd7a8 630
3b7a6418 631 rc = active_cacheline_insert(entry);
0abdd7a8 632 if (rc == -ENOMEM) {
3b7a6418 633 pr_err("DMA-API: cacheline tracking ENOMEM, dma-debug disabled\n");
0abdd7a8
DW
634 global_disable = true;
635 }
636
637 /* TODO: report -EEXIST errors here as overlapping mappings are
638 * not supported by the DMA API
639 */
30dfa90c
JR
640}
641
e6a1a89d
FT
642static struct dma_debug_entry *__dma_entry_alloc(void)
643{
644 struct dma_debug_entry *entry;
645
646 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
647 list_del(&entry->list);
648 memset(entry, 0, sizeof(*entry));
649
650 num_free_entries -= 1;
651 if (num_free_entries < min_free_entries)
652 min_free_entries = num_free_entries;
653
654 return entry;
655}
656
3b1e79ed
JR
657/* struct dma_entry allocator
658 *
659 * The next two functions implement the allocator for
660 * struct dma_debug_entries.
661 */
662static struct dma_debug_entry *dma_entry_alloc(void)
663{
29cdd4e4 664 struct dma_debug_entry *entry;
3b1e79ed
JR
665 unsigned long flags;
666
667 spin_lock_irqsave(&free_entries_lock, flags);
668
669 if (list_empty(&free_entries)) {
3b1e79ed 670 global_disable = true;
29cdd4e4 671 spin_unlock_irqrestore(&free_entries_lock, flags);
3017cd63 672 pr_err("DMA-API: debugging out of memory - disabling\n");
29cdd4e4 673 return NULL;
3b1e79ed
JR
674 }
675
e6a1a89d 676 entry = __dma_entry_alloc();
3b1e79ed 677
29cdd4e4
JK
678 spin_unlock_irqrestore(&free_entries_lock, flags);
679
6c132d1b
DW
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);
685#endif
3b1e79ed 686
3b1e79ed
JR
687 return entry;
688}
689
690static void dma_entry_free(struct dma_debug_entry *entry)
691{
692 unsigned long flags;
693
3b7a6418 694 active_cacheline_remove(entry);
0abdd7a8 695
3b1e79ed
JR
696 /*
697 * add to beginning of the list - this way the entries are
698 * more likely cache hot when they are reallocated.
699 */
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);
704}
705
e6a1a89d
FT
706int dma_debug_resize_entries(u32 num_entries)
707{
708 int i, delta, ret = 0;
709 unsigned long flags;
710 struct dma_debug_entry *entry;
711 LIST_HEAD(tmp);
712
713 spin_lock_irqsave(&free_entries_lock, flags);
714
715 if (nr_total_entries < num_entries) {
716 delta = num_entries - nr_total_entries;
717
718 spin_unlock_irqrestore(&free_entries_lock, flags);
719
720 for (i = 0; i < delta; i++) {
721 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
722 if (!entry)
723 break;
724
725 list_add_tail(&entry->list, &tmp);
726 }
727
728 spin_lock_irqsave(&free_entries_lock, flags);
729
730 list_splice(&tmp, &free_entries);
731 nr_total_entries += i;
732 num_free_entries += i;
733 } else {
734 delta = nr_total_entries - num_entries;
735
736 for (i = 0; i < delta && !list_empty(&free_entries); i++) {
737 entry = __dma_entry_alloc();
738 kfree(entry);
739 }
740
741 nr_total_entries -= i;
742 }
743
744 if (nr_total_entries != num_entries)
745 ret = 1;
746
747 spin_unlock_irqrestore(&free_entries_lock, flags);
748
749 return ret;
750}
751EXPORT_SYMBOL(dma_debug_resize_entries);
752
6bf07871
JR
753/*
754 * DMA-API debugging init code
755 *
756 * The init code does two things:
757 * 1. Initialize core data structures
758 * 2. Preallocate a given number of dma_debug_entry structs
759 */
760
761static int prealloc_memory(u32 num_entries)
762{
763 struct dma_debug_entry *entry, *next_entry;
764 int i;
765
766 for (i = 0; i < num_entries; ++i) {
767 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
768 if (!entry)
769 goto out_err;
770
771 list_add_tail(&entry->list, &free_entries);
772 }
773
774 num_free_entries = num_entries;
775 min_free_entries = num_entries;
776
e7ed70ee 777 pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
6bf07871
JR
778
779 return 0;
780
781out_err:
782
783 list_for_each_entry_safe(entry, next_entry, &free_entries, list) {
784 list_del(&entry->list);
785 kfree(entry);
786 }
787
788 return -ENOMEM;
789}
790
8a6fc708
JR
791static ssize_t filter_read(struct file *file, char __user *user_buf,
792 size_t count, loff_t *ppos)
793{
8a6fc708 794 char buf[NAME_MAX_LEN + 1];
c17e2cf7 795 unsigned long flags;
8a6fc708
JR
796 int len;
797
798 if (!current_driver_name[0])
799 return 0;
800
801 /*
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.
805 */
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);
809
810 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
811}
812
813static ssize_t filter_write(struct file *file, const char __user *userbuf,
814 size_t count, loff_t *ppos)
815{
8a6fc708 816 char buf[NAME_MAX_LEN];
c17e2cf7
JR
817 unsigned long flags;
818 size_t len;
8a6fc708
JR
819 int i;
820
821 /*
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
826 */
e7ed70ee 827 len = min(count, (size_t)(NAME_MAX_LEN - 1));
8a6fc708
JR
828 if (copy_from_user(buf, userbuf, len))
829 return -EFAULT;
830
831 buf[len] = 0;
832
833 write_lock_irqsave(&driver_name_lock, flags);
834
31232509
JR
835 /*
836 * Now handle the string we got from userspace very carefully.
8a6fc708
JR
837 * The rules are:
838 * - only use the first token we got
839 * - token delimiter is everything looking like a space
840 * character (' ', '\n', '\t' ...)
841 *
842 */
843 if (!isalnum(buf[0])) {
844 /*
31232509 845 * If the first character userspace gave us is not
8a6fc708
JR
846 * alphanumerical then assume the filter should be
847 * switched off.
848 */
849 if (current_driver_name[0])
e7ed70ee 850 pr_info("DMA-API: switching off dma-debug driver filter\n");
8a6fc708
JR
851 current_driver_name[0] = 0;
852 current_driver = NULL;
853 goto out_unlock;
854 }
855
856 /*
857 * Now parse out the first token and use it as the name for the
858 * driver to filter for.
859 */
39a37ce1 860 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
8a6fc708
JR
861 current_driver_name[i] = buf[i];
862 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
863 break;
864 }
865 current_driver_name[i] = 0;
866 current_driver = NULL;
867
e7ed70ee
JR
868 pr_info("DMA-API: enable driver filter for driver [%s]\n",
869 current_driver_name);
8a6fc708
JR
870
871out_unlock:
872 write_unlock_irqrestore(&driver_name_lock, flags);
873
874 return count;
875}
876
aeb583d0 877static const struct file_operations filter_fops = {
8a6fc708
JR
878 .read = filter_read,
879 .write = filter_write,
6038f373 880 .llseek = default_llseek,
8a6fc708
JR
881};
882
788dcfa6
JR
883static int dma_debug_fs_init(void)
884{
885 dma_debug_dent = debugfs_create_dir("dma-api", NULL);
886 if (!dma_debug_dent) {
e7ed70ee 887 pr_err("DMA-API: can not create debugfs directory\n");
788dcfa6
JR
888 return -ENOMEM;
889 }
890
891 global_disable_dent = debugfs_create_bool("disabled", 0444,
892 dma_debug_dent,
68ee6d22 893 &global_disable);
788dcfa6
JR
894 if (!global_disable_dent)
895 goto out_err;
896
897 error_count_dent = debugfs_create_u32("error_count", 0444,
898 dma_debug_dent, &error_count);
899 if (!error_count_dent)
900 goto out_err;
901
902 show_all_errors_dent = debugfs_create_u32("all_errors", 0644,
903 dma_debug_dent,
904 &show_all_errors);
905 if (!show_all_errors_dent)
906 goto out_err;
907
908 show_num_errors_dent = debugfs_create_u32("num_errors", 0644,
909 dma_debug_dent,
910 &show_num_errors);
911 if (!show_num_errors_dent)
912 goto out_err;
913
914 num_free_entries_dent = debugfs_create_u32("num_free_entries", 0444,
915 dma_debug_dent,
916 &num_free_entries);
917 if (!num_free_entries_dent)
918 goto out_err;
919
920 min_free_entries_dent = debugfs_create_u32("min_free_entries", 0444,
921 dma_debug_dent,
922 &min_free_entries);
923 if (!min_free_entries_dent)
924 goto out_err;
925
8a6fc708
JR
926 filter_dent = debugfs_create_file("driver_filter", 0644,
927 dma_debug_dent, NULL, &filter_fops);
928 if (!filter_dent)
929 goto out_err;
930
788dcfa6
JR
931 return 0;
932
933out_err:
934 debugfs_remove_recursive(dma_debug_dent);
935
936 return -ENOMEM;
937}
938
ba4b87ad 939static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
ed888aef
JR
940{
941 struct dma_debug_entry *entry;
942 unsigned long flags;
943 int count = 0, i;
944
945 for (i = 0; i < HASH_SIZE; ++i) {
6a5cd60b 946 spin_lock_irqsave(&dma_entry_hash[i].lock, flags);
ed888aef 947 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
ba4b87ad 948 if (entry->dev == dev) {
ed888aef 949 count += 1;
ba4b87ad
SG
950 *out_entry = entry;
951 }
ed888aef 952 }
6a5cd60b 953 spin_unlock_irqrestore(&dma_entry_hash[i].lock, flags);
ed888aef
JR
954 }
955
956 return count;
957}
958
a8fe9ea2 959static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
ed888aef
JR
960{
961 struct device *dev = data;
ba4b87ad 962 struct dma_debug_entry *uninitialized_var(entry);
ed888aef
JR
963 int count;
964
01ce18b3 965 if (dma_debug_disabled())
a8fe9ea2 966 return 0;
ed888aef
JR
967
968 switch (action) {
969 case BUS_NOTIFY_UNBOUND_DRIVER:
ba4b87ad 970 count = device_dma_allocations(dev, &entry);
ed888aef
JR
971 if (count == 0)
972 break;
ba4b87ad 973 err_printk(dev, entry, "DMA-API: device driver has pending "
ed888aef 974 "DMA allocations while released from device "
ba4b87ad
SG
975 "[count=%d]\n"
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]);
ed888aef
JR
981 break;
982 default:
983 break;
984 }
985
986 return 0;
987}
988
41531c8f
JR
989void dma_debug_add_bus(struct bus_type *bus)
990{
ed888aef
JR
991 struct notifier_block *nb;
992
01ce18b3 993 if (dma_debug_disabled())
f797d988
SR
994 return;
995
ed888aef
JR
996 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
997 if (nb == NULL) {
e7ed70ee 998 pr_err("dma_debug_add_bus: out of memory\n");
ed888aef
JR
999 return;
1000 }
1001
1002 nb->notifier_call = dma_debug_device_change;
1003
1004 bus_register_notifier(bus, nb);
41531c8f 1005}
788dcfa6 1006
6bf07871
JR
1007/*
1008 * Let the architectures decide how many entries should be preallocated.
1009 */
1010void dma_debug_init(u32 num_entries)
1011{
1012 int i;
1013
2ce8e7ed
FF
1014 /* Do not use dma_debug_initialized here, since we really want to be
1015 * called to set dma_debug_initialized
1016 */
1017 if (global_disable)
6bf07871
JR
1018 return;
1019
1020 for (i = 0; i < HASH_SIZE; ++i) {
1021 INIT_LIST_HEAD(&dma_entry_hash[i].list);
b0a5b83e 1022 spin_lock_init(&dma_entry_hash[i].lock);
6bf07871
JR
1023 }
1024
788dcfa6 1025 if (dma_debug_fs_init() != 0) {
e7ed70ee 1026 pr_err("DMA-API: error creating debugfs entries - disabling\n");
788dcfa6
JR
1027 global_disable = true;
1028
1029 return;
1030 }
1031
59d3daaf
JR
1032 if (req_entries)
1033 num_entries = req_entries;
1034
6bf07871 1035 if (prealloc_memory(num_entries) != 0) {
e7ed70ee 1036 pr_err("DMA-API: debugging out of memory error - disabled\n");
6bf07871
JR
1037 global_disable = true;
1038
1039 return;
1040 }
1041
e6a1a89d
FT
1042 nr_total_entries = num_free_entries;
1043
2ce8e7ed
FF
1044 dma_debug_initialized = true;
1045
e7ed70ee 1046 pr_info("DMA-API: debugging enabled by kernel config\n");
6bf07871
JR
1047}
1048
59d3daaf
JR
1049static __init int dma_debug_cmdline(char *str)
1050{
1051 if (!str)
1052 return -EINVAL;
1053
1054 if (strncmp(str, "off", 3) == 0) {
e7ed70ee 1055 pr_info("DMA-API: debugging disabled on kernel command line\n");
59d3daaf
JR
1056 global_disable = true;
1057 }
1058
1059 return 0;
1060}
1061
1062static __init int dma_debug_entries_cmdline(char *str)
1063{
1064 int res;
1065
1066 if (!str)
1067 return -EINVAL;
1068
1069 res = get_option(&str, &req_entries);
1070
1071 if (!res)
1072 req_entries = 0;
1073
1074 return 0;
1075}
1076
1077__setup("dma_debug=", dma_debug_cmdline);
1078__setup("dma_debug_entries=", dma_debug_entries_cmdline);
1079
2d62ece1
JR
1080static void check_unmap(struct dma_debug_entry *ref)
1081{
1082 struct dma_debug_entry *entry;
1083 struct hash_bucket *bucket;
1084 unsigned long flags;
1085
2d62ece1 1086 bucket = get_hash_bucket(ref, &flags);
c6a21d0b 1087 entry = bucket_find_exact(bucket, ref);
2d62ece1
JR
1088
1089 if (!entry) {
8d640a51
AD
1090 /* must drop lock before calling dma_mapping_error */
1091 put_hash_bucket(bucket, &flags);
1092
bfe0fb0f
SK
1093 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
1094 err_printk(ref->dev, NULL,
8d640a51
AD
1095 "DMA-API: device driver tries to free an "
1096 "invalid DMA memory address\n");
1097 } else {
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);
bfe0fb0f 1103 }
8d640a51 1104 return;
2d62ece1
JR
1105 }
1106
1107 if (ref->size != entry->size) {
6c132d1b 1108 err_printk(ref->dev, entry, "DMA-API: device driver frees "
2d62ece1
JR
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);
1113 }
1114
1115 if (ref->type != entry->type) {
6c132d1b 1116 err_printk(ref->dev, entry, "DMA-API: device driver frees "
2d62ece1
JR
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) &&
0abdd7a8 1123 (phys_addr(ref) != phys_addr(entry))) {
6c132d1b 1124 err_printk(ref->dev, entry, "DMA-API: device driver frees "
2d62ece1
JR
1125 "DMA memory with different CPU address "
1126 "[device address=0x%016llx] [size=%llu bytes] "
59a40e70
JR
1127 "[cpu alloc address=0x%016llx] "
1128 "[cpu free address=0x%016llx]",
2d62ece1 1129 ref->dev_addr, ref->size,
0abdd7a8
DW
1130 phys_addr(entry),
1131 phys_addr(ref));
2d62ece1
JR
1132 }
1133
1134 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1135 ref->sg_call_ents != entry->sg_call_ents) {
6c132d1b 1136 err_printk(ref->dev, entry, "DMA-API: device driver frees "
2d62ece1
JR
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);
1140 }
1141
1142 /*
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
1145 */
1146 if (ref->direction != entry->direction) {
6c132d1b 1147 err_printk(ref->dev, entry, "DMA-API: device driver frees "
2d62ece1
JR
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]);
1154 }
1155
a5759b2b
MC
1156 /*
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.
1160 */
6c9c6d63
SK
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] "
1165 "[mapped as %s]",
1166 ref->dev_addr, ref->size,
1167 type2name[entry->type]);
1168 }
1169
2d62ece1
JR
1170 hash_bucket_del(entry);
1171 dma_entry_free(entry);
1172
2d62ece1
JR
1173 put_hash_bucket(bucket, &flags);
1174}
1175
b4a0f533
AL
1176static void check_for_stack(struct device *dev,
1177 struct page *page, size_t offset)
2d62ece1 1178{
b4a0f533
AL
1179 void *addr;
1180 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1181
1182 if (!stack_vm_area) {
1183 /* Stack is direct-mapped. */
1184 if (PageHighMem(page))
1185 return;
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);
1189 } else {
1190 /* Stack is vmalloced. */
1191 int i;
1192
1193 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1194 if (page != stack_vm_area->pages[i])
1195 continue;
1196
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);
1199 break;
1200 }
1201 }
2d62ece1
JR
1202}
1203
f39d1b97 1204static inline bool overlap(void *addr, unsigned long len, void *start, void *end)
2e34bde1 1205{
f39d1b97
IM
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;
2e34bde1 1210
f39d1b97 1211 return !(b1 <= a2 || a1 >= b2);
2e34bde1
JR
1212}
1213
f39d1b97 1214static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
2e34bde1 1215{
ea535e41 1216 if (overlap(addr, len, _stext, _etext) ||
f39d1b97
IM
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);
2e34bde1
JR
1219}
1220
aa010efb
JR
1221static void check_sync(struct device *dev,
1222 struct dma_debug_entry *ref,
1223 bool to_cpu)
2d62ece1 1224{
2d62ece1
JR
1225 struct dma_debug_entry *entry;
1226 struct hash_bucket *bucket;
1227 unsigned long flags;
1228
aa010efb 1229 bucket = get_hash_bucket(ref, &flags);
2d62ece1 1230
c6a21d0b 1231 entry = bucket_find_contain(&bucket, ref, &flags);
2d62ece1
JR
1232
1233 if (!entry) {
6c132d1b 1234 err_printk(dev, NULL, "DMA-API: device driver tries "
2d62ece1
JR
1235 "to sync DMA memory it has not allocated "
1236 "[device address=0x%016llx] [size=%llu bytes]\n",
aa010efb 1237 (unsigned long long)ref->dev_addr, ref->size);
2d62ece1
JR
1238 goto out;
1239 }
1240
aa010efb 1241 if (ref->size > entry->size) {
6c132d1b 1242 err_printk(dev, entry, "DMA-API: device driver syncs"
2d62ece1
JR
1243 " DMA memory outside allocated range "
1244 "[device address=0x%016llx] "
aa010efb
JR
1245 "[allocation size=%llu bytes] "
1246 "[sync offset+size=%llu]\n",
1247 entry->dev_addr, entry->size,
1248 ref->size);
2d62ece1
JR
1249 }
1250
42d53b4f
KH
1251 if (entry->direction == DMA_BIDIRECTIONAL)
1252 goto out;
1253
aa010efb 1254 if (ref->direction != entry->direction) {
6c132d1b 1255 err_printk(dev, entry, "DMA-API: device driver syncs "
2d62ece1
JR
1256 "DMA memory with different direction "
1257 "[device address=0x%016llx] [size=%llu bytes] "
1258 "[mapped with %s] [synced with %s]\n",
aa010efb 1259 (unsigned long long)ref->dev_addr, entry->size,
2d62ece1 1260 dir2name[entry->direction],
aa010efb 1261 dir2name[ref->direction]);
2d62ece1
JR
1262 }
1263
2d62ece1 1264 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
aa010efb 1265 !(ref->direction == DMA_TO_DEVICE))
6c132d1b 1266 err_printk(dev, entry, "DMA-API: device driver syncs "
2d62ece1
JR
1267 "device read-only DMA memory for cpu "
1268 "[device address=0x%016llx] [size=%llu bytes] "
1269 "[mapped with %s] [synced with %s]\n",
aa010efb 1270 (unsigned long long)ref->dev_addr, entry->size,
2d62ece1 1271 dir2name[entry->direction],
aa010efb 1272 dir2name[ref->direction]);
2d62ece1
JR
1273
1274 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
aa010efb 1275 !(ref->direction == DMA_FROM_DEVICE))
6c132d1b 1276 err_printk(dev, entry, "DMA-API: device driver syncs "
2d62ece1
JR
1277 "device write-only DMA memory to device "
1278 "[device address=0x%016llx] [size=%llu bytes] "
1279 "[mapped with %s] [synced with %s]\n",
aa010efb 1280 (unsigned long long)ref->dev_addr, entry->size,
2d62ece1 1281 dir2name[entry->direction],
aa010efb 1282 dir2name[ref->direction]);
2d62ece1 1283
7f830642
RM
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);
1290 }
1291
2d62ece1
JR
1292out:
1293 put_hash_bucket(bucket, &flags);
2d62ece1
JR
1294}
1295
f62bc980
JR
1296void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1297 size_t size, int direction, dma_addr_t dma_addr,
1298 bool map_single)
1299{
1300 struct dma_debug_entry *entry;
1301
01ce18b3 1302 if (unlikely(dma_debug_disabled()))
f62bc980
JR
1303 return;
1304
bfe0fb0f 1305 if (dma_mapping_error(dev, dma_addr))
f62bc980
JR
1306 return;
1307
1308 entry = dma_entry_alloc();
1309 if (!entry)
1310 return;
1311
1312 entry->dev = dev;
1313 entry->type = dma_debug_page;
0abdd7a8
DW
1314 entry->pfn = page_to_pfn(page);
1315 entry->offset = offset,
f62bc980
JR
1316 entry->dev_addr = dma_addr;
1317 entry->size = size;
1318 entry->direction = direction;
6c9c6d63 1319 entry->map_err_type = MAP_ERR_NOT_CHECKED;
f62bc980 1320
9537a48e 1321 if (map_single)
f62bc980 1322 entry->type = dma_debug_single;
9537a48e 1323
b4a0f533
AL
1324 check_for_stack(dev, page, offset);
1325
9537a48e 1326 if (!PageHighMem(page)) {
f39d1b97
IM
1327 void *addr = page_address(page) + offset;
1328
2e34bde1 1329 check_for_illegal_area(dev, addr, size);
f62bc980
JR
1330 }
1331
1332 add_dma_entry(entry);
1333}
1334EXPORT_SYMBOL(debug_dma_map_page);
1335
6c9c6d63
SK
1336void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1337{
1338 struct dma_debug_entry ref;
1339 struct dma_debug_entry *entry;
1340 struct hash_bucket *bucket;
1341 unsigned long flags;
1342
01ce18b3 1343 if (unlikely(dma_debug_disabled()))
6c9c6d63
SK
1344 return;
1345
1346 ref.dev = dev;
1347 ref.dev_addr = dma_addr;
1348 bucket = get_hash_bucket(&ref, &flags);
6c9c6d63 1349
96e7d7a1
AD
1350 list_for_each_entry(entry, &bucket->list, list) {
1351 if (!exact_match(&ref, entry))
1352 continue;
1353
1354 /*
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.
1363 */
1364 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1365 entry->map_err_type = MAP_ERR_CHECKED;
1366 break;
1367 }
1368 }
6c9c6d63 1369
6c9c6d63
SK
1370 put_hash_bucket(bucket, &flags);
1371}
1372EXPORT_SYMBOL(debug_dma_mapping_error);
1373
f62bc980
JR
1374void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
1375 size_t size, int direction, bool map_single)
1376{
1377 struct dma_debug_entry ref = {
1378 .type = dma_debug_page,
1379 .dev = dev,
1380 .dev_addr = addr,
1381 .size = size,
1382 .direction = direction,
1383 };
1384
01ce18b3 1385 if (unlikely(dma_debug_disabled()))
f62bc980
JR
1386 return;
1387
1388 if (map_single)
1389 ref.type = dma_debug_single;
1390
1391 check_unmap(&ref);
1392}
1393EXPORT_SYMBOL(debug_dma_unmap_page);
1394
972aa45c
JR
1395void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1396 int nents, int mapped_ents, int direction)
1397{
1398 struct dma_debug_entry *entry;
1399 struct scatterlist *s;
1400 int i;
1401
01ce18b3 1402 if (unlikely(dma_debug_disabled()))
972aa45c
JR
1403 return;
1404
1405 for_each_sg(sg, s, mapped_ents, i) {
1406 entry = dma_entry_alloc();
1407 if (!entry)
1408 return;
1409
1410 entry->type = dma_debug_sg;
1411 entry->dev = dev;
0abdd7a8
DW
1412 entry->pfn = page_to_pfn(sg_page(s));
1413 entry->offset = s->offset,
884d0597 1414 entry->size = sg_dma_len(s);
15aedea4 1415 entry->dev_addr = sg_dma_address(s);
972aa45c
JR
1416 entry->direction = direction;
1417 entry->sg_call_ents = nents;
1418 entry->sg_mapped_ents = mapped_ents;
1419
b4a0f533
AL
1420 check_for_stack(dev, sg_page(s), s->offset);
1421
9537a48e 1422 if (!PageHighMem(sg_page(s))) {
884d0597 1423 check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s));
9537a48e 1424 }
972aa45c
JR
1425
1426 add_dma_entry(entry);
1427 }
1428}
1429EXPORT_SYMBOL(debug_dma_map_sg);
1430
aa010efb
JR
1431static int get_nr_mapped_entries(struct device *dev,
1432 struct dma_debug_entry *ref)
88f3907f 1433{
aa010efb 1434 struct dma_debug_entry *entry;
88f3907f
FT
1435 struct hash_bucket *bucket;
1436 unsigned long flags;
c17e2cf7 1437 int mapped_ents;
88f3907f 1438
aa010efb 1439 bucket = get_hash_bucket(ref, &flags);
c6a21d0b 1440 entry = bucket_find_exact(bucket, ref);
c17e2cf7 1441 mapped_ents = 0;
88f3907f 1442
88f3907f
FT
1443 if (entry)
1444 mapped_ents = entry->sg_mapped_ents;
1445 put_hash_bucket(bucket, &flags);
1446
1447 return mapped_ents;
1448}
1449
972aa45c
JR
1450void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1451 int nelems, int dir)
1452{
972aa45c
JR
1453 struct scatterlist *s;
1454 int mapped_ents = 0, i;
972aa45c 1455
01ce18b3 1456 if (unlikely(dma_debug_disabled()))
972aa45c
JR
1457 return;
1458
1459 for_each_sg(sglist, s, nelems, i) {
1460
1461 struct dma_debug_entry ref = {
1462 .type = dma_debug_sg,
1463 .dev = dev,
0abdd7a8
DW
1464 .pfn = page_to_pfn(sg_page(s)),
1465 .offset = s->offset,
15aedea4 1466 .dev_addr = sg_dma_address(s),
884d0597 1467 .size = sg_dma_len(s),
972aa45c 1468 .direction = dir,
e5e8c5b9 1469 .sg_call_ents = nelems,
972aa45c
JR
1470 };
1471
1472 if (mapped_ents && i >= mapped_ents)
1473 break;
1474
e5e8c5b9 1475 if (!i)
aa010efb 1476 mapped_ents = get_nr_mapped_entries(dev, &ref);
972aa45c
JR
1477
1478 check_unmap(&ref);
1479 }
1480}
1481EXPORT_SYMBOL(debug_dma_unmap_sg);
1482
6bfd4498
JR
1483void debug_dma_alloc_coherent(struct device *dev, size_t size,
1484 dma_addr_t dma_addr, void *virt)
1485{
1486 struct dma_debug_entry *entry;
1487
01ce18b3 1488 if (unlikely(dma_debug_disabled()))
6bfd4498
JR
1489 return;
1490
1491 if (unlikely(virt == NULL))
1492 return;
1493
1494 entry = dma_entry_alloc();
1495 if (!entry)
1496 return;
1497
1498 entry->type = dma_debug_coherent;
1499 entry->dev = dev;
0abdd7a8 1500 entry->pfn = page_to_pfn(virt_to_page(virt));
e57d0552 1501 entry->offset = offset_in_page(virt);
6bfd4498
JR
1502 entry->size = size;
1503 entry->dev_addr = dma_addr;
1504 entry->direction = DMA_BIDIRECTIONAL;
1505
1506 add_dma_entry(entry);
1507}
1508EXPORT_SYMBOL(debug_dma_alloc_coherent);
1509
1510void debug_dma_free_coherent(struct device *dev, size_t size,
1511 void *virt, dma_addr_t addr)
1512{
1513 struct dma_debug_entry ref = {
1514 .type = dma_debug_coherent,
1515 .dev = dev,
0abdd7a8 1516 .pfn = page_to_pfn(virt_to_page(virt)),
e57d0552 1517 .offset = offset_in_page(virt),
6bfd4498
JR
1518 .dev_addr = addr,
1519 .size = size,
1520 .direction = DMA_BIDIRECTIONAL,
1521 };
1522
01ce18b3 1523 if (unlikely(dma_debug_disabled()))
6bfd4498
JR
1524 return;
1525
1526 check_unmap(&ref);
1527}
1528EXPORT_SYMBOL(debug_dma_free_coherent);
1529
0e74b34d
NS
1530void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1531 int direction, dma_addr_t dma_addr)
1532{
1533 struct dma_debug_entry *entry;
1534
1535 if (unlikely(dma_debug_disabled()))
1536 return;
1537
1538 entry = dma_entry_alloc();
1539 if (!entry)
1540 return;
1541
1542 entry->type = dma_debug_resource;
1543 entry->dev = dev;
2e0cc304 1544 entry->pfn = PHYS_PFN(addr);
0e74b34d
NS
1545 entry->offset = offset_in_page(addr);
1546 entry->size = size;
1547 entry->dev_addr = dma_addr;
1548 entry->direction = direction;
1549 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1550
1551 add_dma_entry(entry);
1552}
1553EXPORT_SYMBOL(debug_dma_map_resource);
1554
1555void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1556 size_t size, int direction)
1557{
1558 struct dma_debug_entry ref = {
1559 .type = dma_debug_resource,
1560 .dev = dev,
1561 .dev_addr = dma_addr,
1562 .size = size,
1563 .direction = direction,
1564 };
1565
1566 if (unlikely(dma_debug_disabled()))
1567 return;
1568
1569 check_unmap(&ref);
1570}
1571EXPORT_SYMBOL(debug_dma_unmap_resource);
1572
b9d2317e
JR
1573void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1574 size_t size, int direction)
1575{
aa010efb
JR
1576 struct dma_debug_entry ref;
1577
01ce18b3 1578 if (unlikely(dma_debug_disabled()))
b9d2317e
JR
1579 return;
1580
aa010efb
JR
1581 ref.type = dma_debug_single;
1582 ref.dev = dev;
1583 ref.dev_addr = dma_handle;
1584 ref.size = size;
1585 ref.direction = direction;
1586 ref.sg_call_ents = 0;
1587
1588 check_sync(dev, &ref, true);
b9d2317e
JR
1589}
1590EXPORT_SYMBOL(debug_dma_sync_single_for_cpu);
1591
1592void debug_dma_sync_single_for_device(struct device *dev,
1593 dma_addr_t dma_handle, size_t size,
1594 int direction)
1595{
aa010efb
JR
1596 struct dma_debug_entry ref;
1597
01ce18b3 1598 if (unlikely(dma_debug_disabled()))
b9d2317e
JR
1599 return;
1600
aa010efb
JR
1601 ref.type = dma_debug_single;
1602 ref.dev = dev;
1603 ref.dev_addr = dma_handle;
1604 ref.size = size;
1605 ref.direction = direction;
1606 ref.sg_call_ents = 0;
1607
1608 check_sync(dev, &ref, false);
b9d2317e
JR
1609}
1610EXPORT_SYMBOL(debug_dma_sync_single_for_device);
1611
948408ba
JR
1612void debug_dma_sync_single_range_for_cpu(struct device *dev,
1613 dma_addr_t dma_handle,
1614 unsigned long offset, size_t size,
1615 int direction)
1616{
aa010efb
JR
1617 struct dma_debug_entry ref;
1618
01ce18b3 1619 if (unlikely(dma_debug_disabled()))
948408ba
JR
1620 return;
1621
aa010efb
JR
1622 ref.type = dma_debug_single;
1623 ref.dev = dev;
1624 ref.dev_addr = dma_handle;
1625 ref.size = offset + size;
1626 ref.direction = direction;
1627 ref.sg_call_ents = 0;
1628
1629 check_sync(dev, &ref, true);
948408ba
JR
1630}
1631EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu);
1632
1633void debug_dma_sync_single_range_for_device(struct device *dev,
1634 dma_addr_t dma_handle,
1635 unsigned long offset,
1636 size_t size, int direction)
1637{
aa010efb
JR
1638 struct dma_debug_entry ref;
1639
01ce18b3 1640 if (unlikely(dma_debug_disabled()))
948408ba
JR
1641 return;
1642
aa010efb
JR
1643 ref.type = dma_debug_single;
1644 ref.dev = dev;
1645 ref.dev_addr = dma_handle;
1646 ref.size = offset + size;
1647 ref.direction = direction;
1648 ref.sg_call_ents = 0;
1649
1650 check_sync(dev, &ref, false);
948408ba
JR
1651}
1652EXPORT_SYMBOL(debug_dma_sync_single_range_for_device);
1653
a31fba5d
JR
1654void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1655 int nelems, int direction)
1656{
1657 struct scatterlist *s;
88f3907f 1658 int mapped_ents = 0, i;
a31fba5d 1659
01ce18b3 1660 if (unlikely(dma_debug_disabled()))
a31fba5d
JR
1661 return;
1662
1663 for_each_sg(sg, s, nelems, i) {
aa010efb
JR
1664
1665 struct dma_debug_entry ref = {
1666 .type = dma_debug_sg,
1667 .dev = dev,
0abdd7a8
DW
1668 .pfn = page_to_pfn(sg_page(s)),
1669 .offset = s->offset,
aa010efb
JR
1670 .dev_addr = sg_dma_address(s),
1671 .size = sg_dma_len(s),
1672 .direction = direction,
1673 .sg_call_ents = nelems,
1674 };
1675
88f3907f 1676 if (!i)
aa010efb 1677 mapped_ents = get_nr_mapped_entries(dev, &ref);
88f3907f
FT
1678
1679 if (i >= mapped_ents)
1680 break;
1681
aa010efb 1682 check_sync(dev, &ref, true);
a31fba5d
JR
1683 }
1684}
1685EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu);
1686
1687void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1688 int nelems, int direction)
1689{
1690 struct scatterlist *s;
88f3907f 1691 int mapped_ents = 0, i;
a31fba5d 1692
01ce18b3 1693 if (unlikely(dma_debug_disabled()))
a31fba5d
JR
1694 return;
1695
1696 for_each_sg(sg, s, nelems, i) {
aa010efb
JR
1697
1698 struct dma_debug_entry ref = {
1699 .type = dma_debug_sg,
1700 .dev = dev,
0abdd7a8
DW
1701 .pfn = page_to_pfn(sg_page(s)),
1702 .offset = s->offset,
aa010efb
JR
1703 .dev_addr = sg_dma_address(s),
1704 .size = sg_dma_len(s),
1705 .direction = direction,
1706 .sg_call_ents = nelems,
1707 };
88f3907f 1708 if (!i)
aa010efb 1709 mapped_ents = get_nr_mapped_entries(dev, &ref);
88f3907f
FT
1710
1711 if (i >= mapped_ents)
1712 break;
1713
aa010efb 1714 check_sync(dev, &ref, false);
a31fba5d
JR
1715 }
1716}
1717EXPORT_SYMBOL(debug_dma_sync_sg_for_device);
1718
1745de5e
JR
1719static int __init dma_debug_driver_setup(char *str)
1720{
1721 int i;
1722
1723 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1724 current_driver_name[i] = *str;
1725 if (*str == 0)
1726 break;
1727 }
1728
1729 if (current_driver_name[0])
e7ed70ee
JR
1730 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1731 current_driver_name);
1745de5e
JR
1732
1733
1734 return 1;
1735}
1736__setup("dma_debug_driver=", dma_debug_driver_setup);