blob: cf906201aecfcece0a10b008a84ab6a08b6ba992 [file] [log] [blame]
Joerg Roedelf2f45e52009-01-09 12:19:52 +01001/*
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
Joerg Roedel972aa452009-01-09 14:19:54 +010020#include <linux/scatterlist.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010021#include <linux/dma-mapping.h>
David Woodhouse6c132d12009-01-19 16:52:39 +010022#include <linux/stacktrace.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010023#include <linux/dma-debug.h>
Joerg Roedel30dfa902009-01-09 12:34:49 +010024#include <linux/spinlock.h>
Joerg Roedel788dcfa2009-01-09 13:13:27 +010025#include <linux/debugfs.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020026#include <linux/uaccess.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010027#include <linux/device.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010028#include <linux/types.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010029#include <linux/sched.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020030#include <linux/ctype.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010031#include <linux/list.h>
Joerg Roedel6bf07872009-01-09 12:54:42 +010032#include <linux/slab.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010033
Joerg Roedel2e34bde2009-03-16 16:51:55 +010034#include <asm/sections.h>
35
Joerg Roedel30dfa902009-01-09 12:34:49 +010036#define HASH_SIZE 1024ULL
37#define HASH_FN_SHIFT 13
38#define HASH_FN_MASK (HASH_SIZE - 1)
39
Joerg Roedelf2f45e52009-01-09 12:19:52 +010040enum {
41 dma_debug_single,
42 dma_debug_page,
43 dma_debug_sg,
44 dma_debug_coherent,
45};
46
David Woodhouse6c132d12009-01-19 16:52:39 +010047#define DMA_DEBUG_STACKTRACE_ENTRIES 5
48
Joerg Roedelf2f45e52009-01-09 12:19:52 +010049struct dma_debug_entry {
50 struct list_head list;
51 struct device *dev;
52 int type;
53 phys_addr_t paddr;
54 u64 dev_addr;
55 u64 size;
56 int direction;
57 int sg_call_ents;
58 int sg_mapped_ents;
David Woodhouse6c132d12009-01-19 16:52:39 +010059#ifdef CONFIG_STACKTRACE
60 struct stack_trace stacktrace;
61 unsigned long st_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
62#endif
Joerg Roedelf2f45e52009-01-09 12:19:52 +010063};
64
Joerg Roedel30dfa902009-01-09 12:34:49 +010065struct hash_bucket {
66 struct list_head list;
67 spinlock_t lock;
Joerg Roedel2d62ece2009-01-09 14:10:26 +010068} ____cacheline_aligned_in_smp;
Joerg Roedel30dfa902009-01-09 12:34:49 +010069
70/* Hash list to save the allocated dma addresses */
71static struct hash_bucket dma_entry_hash[HASH_SIZE];
Joerg Roedel3b1e79e2009-01-09 12:42:46 +010072/* List of pre-allocated dma_debug_entry's */
73static LIST_HEAD(free_entries);
74/* Lock for the list above */
75static DEFINE_SPINLOCK(free_entries_lock);
76
77/* Global disable flag - will be set in case of an error */
78static bool global_disable __read_mostly;
79
Joerg Roedel788dcfa2009-01-09 13:13:27 +010080/* Global error count */
81static u32 error_count;
82
83/* Global error show enable*/
84static u32 show_all_errors __read_mostly;
85/* Number of errors to show */
86static u32 show_num_errors = 1;
87
Joerg Roedel3b1e79e2009-01-09 12:42:46 +010088static u32 num_free_entries;
89static u32 min_free_entries;
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +090090static u32 nr_total_entries;
Joerg Roedel30dfa902009-01-09 12:34:49 +010091
Joerg Roedel59d3daa2009-01-09 13:01:56 +010092/* number of preallocated entries requested by kernel cmdline */
93static u32 req_entries;
94
Joerg Roedel788dcfa2009-01-09 13:13:27 +010095/* debugfs dentry's for the stuff above */
96static struct dentry *dma_debug_dent __read_mostly;
97static struct dentry *global_disable_dent __read_mostly;
98static struct dentry *error_count_dent __read_mostly;
99static struct dentry *show_all_errors_dent __read_mostly;
100static struct dentry *show_num_errors_dent __read_mostly;
101static struct dentry *num_free_entries_dent __read_mostly;
102static struct dentry *min_free_entries_dent __read_mostly;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200103static struct dentry *filter_dent __read_mostly;
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100104
Joerg Roedel2e507d82009-05-22 18:24:20 +0200105/* per-driver filter related state */
106
107#define NAME_MAX_LEN 64
108
109static char current_driver_name[NAME_MAX_LEN] __read_mostly;
110static struct device_driver *current_driver __read_mostly;
111
112static DEFINE_RWLOCK(driver_name_lock);
Joerg Roedel30dfa902009-01-09 12:34:49 +0100113
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100114static const char *type2name[4] = { "single", "page",
115 "scather-gather", "coherent" };
116
117static const char *dir2name[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
118 "DMA_FROM_DEVICE", "DMA_NONE" };
119
Joerg Roedeled888ae2009-05-22 17:16:04 +0200120/* little merge helper - remove it after the merge window */
121#ifndef BUS_NOTIFY_UNBOUND_DRIVER
122#define BUS_NOTIFY_UNBOUND_DRIVER 0x0005
123#endif
124
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100125/*
126 * The access to some variables in this macro is racy. We can't use atomic_t
127 * here because all these variables are exported to debugfs. Some of them even
128 * writeable. This is also the reason why a lock won't help much. But anyway,
129 * the races are no big deal. Here is why:
130 *
131 * error_count: the addition is racy, but the worst thing that can happen is
132 * that we don't count some errors
133 * show_num_errors: the subtraction is racy. Also no big deal because in
134 * worst case this will result in one warning more in the
135 * system log than the user configured. This variable is
136 * writeable via debugfs.
137 */
David Woodhouse6c132d12009-01-19 16:52:39 +0100138static inline void dump_entry_trace(struct dma_debug_entry *entry)
139{
140#ifdef CONFIG_STACKTRACE
141 if (entry) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200142 pr_warning("Mapped at:\n");
David Woodhouse6c132d12009-01-19 16:52:39 +0100143 print_stack_trace(&entry->stacktrace, 0);
144 }
145#endif
146}
147
Joerg Roedel2e507d82009-05-22 18:24:20 +0200148static bool driver_filter(struct device *dev)
149{
Joerg Roedel0bf84122009-06-08 15:53:46 +0200150 struct device_driver *drv;
151 unsigned long flags;
152 bool ret;
153
Joerg Roedel2e507d82009-05-22 18:24:20 +0200154 /* driver filter off */
155 if (likely(!current_driver_name[0]))
156 return true;
157
158 /* driver filter on and initialized */
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400159 if (current_driver && dev && dev->driver == current_driver)
Joerg Roedel2e507d82009-05-22 18:24:20 +0200160 return true;
161
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400162 /* driver filter on, but we can't filter on a NULL device... */
163 if (!dev)
164 return false;
165
Joerg Roedel0bf84122009-06-08 15:53:46 +0200166 if (current_driver || !current_driver_name[0])
167 return false;
168
Joerg Roedel2e507d82009-05-22 18:24:20 +0200169 /* driver filter on but not yet initialized */
Joerg Roedel0bf84122009-06-08 15:53:46 +0200170 drv = get_driver(dev->driver);
171 if (!drv)
172 return false;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200173
Joerg Roedel0bf84122009-06-08 15:53:46 +0200174 /* lock to protect against change of current_driver_name */
175 read_lock_irqsave(&driver_name_lock, flags);
Joerg Roedel2e507d82009-05-22 18:24:20 +0200176
Joerg Roedel0bf84122009-06-08 15:53:46 +0200177 ret = false;
178 if (drv->name &&
179 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
180 current_driver = drv;
181 ret = true;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200182 }
183
Joerg Roedel0bf84122009-06-08 15:53:46 +0200184 read_unlock_irqrestore(&driver_name_lock, flags);
185 put_driver(drv);
186
187 return ret;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200188}
189
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400190#define err_printk(dev, entry, format, arg...) do { \
191 error_count += 1; \
192 if (driver_filter(dev) && \
193 (show_all_errors || show_num_errors > 0)) { \
194 WARN(1, "%s %s: " format, \
195 dev ? dev_driver_string(dev) : "NULL", \
196 dev ? dev_name(dev) : "NULL", ## arg); \
197 dump_entry_trace(entry); \
198 } \
199 if (!show_all_errors && show_num_errors > 0) \
200 show_num_errors -= 1; \
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100201 } while (0);
202
Joerg Roedel30dfa902009-01-09 12:34:49 +0100203/*
204 * Hash related functions
205 *
206 * Every DMA-API request is saved into a struct dma_debug_entry. To
207 * have quick access to these structs they are stored into a hash.
208 */
209static int hash_fn(struct dma_debug_entry *entry)
210{
211 /*
212 * Hash function is based on the dma address.
213 * We use bits 20-27 here as the index into the hash
214 */
215 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
216}
217
218/*
219 * Request exclusive access to a hash bucket for a given dma_debug_entry.
220 */
221static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
222 unsigned long *flags)
223{
224 int idx = hash_fn(entry);
225 unsigned long __flags;
226
227 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
228 *flags = __flags;
229 return &dma_entry_hash[idx];
230}
231
232/*
233 * Give up exclusive access to the hash bucket
234 */
235static void put_hash_bucket(struct hash_bucket *bucket,
236 unsigned long *flags)
237{
238 unsigned long __flags = *flags;
239
240 spin_unlock_irqrestore(&bucket->lock, __flags);
241}
242
243/*
244 * Search a given entry in the hash bucket list
245 */
246static struct dma_debug_entry *hash_bucket_find(struct hash_bucket *bucket,
247 struct dma_debug_entry *ref)
248{
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200249 struct dma_debug_entry *entry, *ret = NULL;
250 int matches = 0, match_lvl, last_lvl = 0;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100251
252 list_for_each_entry(entry, &bucket->list, list) {
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200253 if ((entry->dev_addr != ref->dev_addr) ||
254 (entry->dev != ref->dev))
255 continue;
256
257 /*
258 * Some drivers map the same physical address multiple
259 * times. Without a hardware IOMMU this results in the
260 * same device addresses being put into the dma-debug
261 * hash multiple times too. This can result in false
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200262 * positives being reported. Therefore we implement a
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200263 * best-fit algorithm here which returns the entry from
264 * the hash which fits best to the reference value
265 * instead of the first-fit.
266 */
267 matches += 1;
268 match_lvl = 0;
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200269 entry->size == ref->size ? ++match_lvl : 0;
270 entry->type == ref->type ? ++match_lvl : 0;
271 entry->direction == ref->direction ? ++match_lvl : 0;
272 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200273
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200274 if (match_lvl == 4) {
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200275 /* perfect-fit - return the result */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100276 return entry;
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200277 } else if (match_lvl > last_lvl) {
278 /*
279 * We found an entry that fits better then the
280 * previous one
281 */
282 last_lvl = match_lvl;
283 ret = entry;
284 }
Joerg Roedel30dfa902009-01-09 12:34:49 +0100285 }
286
Joerg Roedel7caf6a492009-06-05 12:01:35 +0200287 /*
288 * If we have multiple matches but no perfect-fit, just return
289 * NULL.
290 */
291 ret = (matches == 1) ? ret : NULL;
292
293 return ret;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100294}
295
296/*
297 * Add an entry to a hash bucket
298 */
299static void hash_bucket_add(struct hash_bucket *bucket,
300 struct dma_debug_entry *entry)
301{
302 list_add_tail(&entry->list, &bucket->list);
303}
304
305/*
306 * Remove entry from a hash bucket list
307 */
308static void hash_bucket_del(struct dma_debug_entry *entry)
309{
310 list_del(&entry->list);
311}
312
313/*
David Woodhouseac26c182009-02-12 16:19:13 +0100314 * Dump mapping entries for debugging purposes
315 */
316void debug_dma_dump_mappings(struct device *dev)
317{
318 int idx;
319
320 for (idx = 0; idx < HASH_SIZE; idx++) {
321 struct hash_bucket *bucket = &dma_entry_hash[idx];
322 struct dma_debug_entry *entry;
323 unsigned long flags;
324
325 spin_lock_irqsave(&bucket->lock, flags);
326
327 list_for_each_entry(entry, &bucket->list, list) {
328 if (!dev || dev == entry->dev) {
329 dev_info(entry->dev,
330 "%s idx %d P=%Lx D=%Lx L=%Lx %s\n",
331 type2name[entry->type], idx,
332 (unsigned long long)entry->paddr,
333 entry->dev_addr, entry->size,
334 dir2name[entry->direction]);
335 }
336 }
337
338 spin_unlock_irqrestore(&bucket->lock, flags);
339 }
340}
341EXPORT_SYMBOL(debug_dma_dump_mappings);
342
343/*
Joerg Roedel30dfa902009-01-09 12:34:49 +0100344 * Wrapper function for adding an entry to the hash.
345 * This function takes care of locking itself.
346 */
347static void add_dma_entry(struct dma_debug_entry *entry)
348{
349 struct hash_bucket *bucket;
350 unsigned long flags;
351
352 bucket = get_hash_bucket(entry, &flags);
353 hash_bucket_add(bucket, entry);
354 put_hash_bucket(bucket, &flags);
355}
356
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900357static struct dma_debug_entry *__dma_entry_alloc(void)
358{
359 struct dma_debug_entry *entry;
360
361 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
362 list_del(&entry->list);
363 memset(entry, 0, sizeof(*entry));
364
365 num_free_entries -= 1;
366 if (num_free_entries < min_free_entries)
367 min_free_entries = num_free_entries;
368
369 return entry;
370}
371
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100372/* struct dma_entry allocator
373 *
374 * The next two functions implement the allocator for
375 * struct dma_debug_entries.
376 */
377static struct dma_debug_entry *dma_entry_alloc(void)
378{
379 struct dma_debug_entry *entry = NULL;
380 unsigned long flags;
381
382 spin_lock_irqsave(&free_entries_lock, flags);
383
384 if (list_empty(&free_entries)) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200385 pr_err("DMA-API: debugging out of memory - disabling\n");
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100386 global_disable = true;
387 goto out;
388 }
389
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900390 entry = __dma_entry_alloc();
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100391
David Woodhouse6c132d12009-01-19 16:52:39 +0100392#ifdef CONFIG_STACKTRACE
393 entry->stacktrace.max_entries = DMA_DEBUG_STACKTRACE_ENTRIES;
394 entry->stacktrace.entries = entry->st_entries;
395 entry->stacktrace.skip = 2;
396 save_stack_trace(&entry->stacktrace);
397#endif
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100398
399out:
400 spin_unlock_irqrestore(&free_entries_lock, flags);
401
402 return entry;
403}
404
405static void dma_entry_free(struct dma_debug_entry *entry)
406{
407 unsigned long flags;
408
409 /*
410 * add to beginning of the list - this way the entries are
411 * more likely cache hot when they are reallocated.
412 */
413 spin_lock_irqsave(&free_entries_lock, flags);
414 list_add(&entry->list, &free_entries);
415 num_free_entries += 1;
416 spin_unlock_irqrestore(&free_entries_lock, flags);
417}
418
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900419int dma_debug_resize_entries(u32 num_entries)
420{
421 int i, delta, ret = 0;
422 unsigned long flags;
423 struct dma_debug_entry *entry;
424 LIST_HEAD(tmp);
425
426 spin_lock_irqsave(&free_entries_lock, flags);
427
428 if (nr_total_entries < num_entries) {
429 delta = num_entries - nr_total_entries;
430
431 spin_unlock_irqrestore(&free_entries_lock, flags);
432
433 for (i = 0; i < delta; i++) {
434 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
435 if (!entry)
436 break;
437
438 list_add_tail(&entry->list, &tmp);
439 }
440
441 spin_lock_irqsave(&free_entries_lock, flags);
442
443 list_splice(&tmp, &free_entries);
444 nr_total_entries += i;
445 num_free_entries += i;
446 } else {
447 delta = nr_total_entries - num_entries;
448
449 for (i = 0; i < delta && !list_empty(&free_entries); i++) {
450 entry = __dma_entry_alloc();
451 kfree(entry);
452 }
453
454 nr_total_entries -= i;
455 }
456
457 if (nr_total_entries != num_entries)
458 ret = 1;
459
460 spin_unlock_irqrestore(&free_entries_lock, flags);
461
462 return ret;
463}
464EXPORT_SYMBOL(dma_debug_resize_entries);
465
Joerg Roedel6bf07872009-01-09 12:54:42 +0100466/*
467 * DMA-API debugging init code
468 *
469 * The init code does two things:
470 * 1. Initialize core data structures
471 * 2. Preallocate a given number of dma_debug_entry structs
472 */
473
474static int prealloc_memory(u32 num_entries)
475{
476 struct dma_debug_entry *entry, *next_entry;
477 int i;
478
479 for (i = 0; i < num_entries; ++i) {
480 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
481 if (!entry)
482 goto out_err;
483
484 list_add_tail(&entry->list, &free_entries);
485 }
486
487 num_free_entries = num_entries;
488 min_free_entries = num_entries;
489
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200490 pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
Joerg Roedel6bf07872009-01-09 12:54:42 +0100491
492 return 0;
493
494out_err:
495
496 list_for_each_entry_safe(entry, next_entry, &free_entries, list) {
497 list_del(&entry->list);
498 kfree(entry);
499 }
500
501 return -ENOMEM;
502}
503
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200504static ssize_t filter_read(struct file *file, char __user *user_buf,
505 size_t count, loff_t *ppos)
506{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200507 char buf[NAME_MAX_LEN + 1];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200508 unsigned long flags;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200509 int len;
510
511 if (!current_driver_name[0])
512 return 0;
513
514 /*
515 * We can't copy to userspace directly because current_driver_name can
516 * only be read under the driver_name_lock with irqs disabled. So
517 * create a temporary copy first.
518 */
519 read_lock_irqsave(&driver_name_lock, flags);
520 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
521 read_unlock_irqrestore(&driver_name_lock, flags);
522
523 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
524}
525
526static ssize_t filter_write(struct file *file, const char __user *userbuf,
527 size_t count, loff_t *ppos)
528{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200529 char buf[NAME_MAX_LEN];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200530 unsigned long flags;
531 size_t len;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200532 int i;
533
534 /*
535 * We can't copy from userspace directly. Access to
536 * current_driver_name is protected with a write_lock with irqs
537 * disabled. Since copy_from_user can fault and may sleep we
538 * need to copy to temporary buffer first
539 */
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200540 len = min(count, (size_t)(NAME_MAX_LEN - 1));
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200541 if (copy_from_user(buf, userbuf, len))
542 return -EFAULT;
543
544 buf[len] = 0;
545
546 write_lock_irqsave(&driver_name_lock, flags);
547
Joerg Roedel312325092009-06-08 15:07:08 +0200548 /*
549 * Now handle the string we got from userspace very carefully.
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200550 * The rules are:
551 * - only use the first token we got
552 * - token delimiter is everything looking like a space
553 * character (' ', '\n', '\t' ...)
554 *
555 */
556 if (!isalnum(buf[0])) {
557 /*
Joerg Roedel312325092009-06-08 15:07:08 +0200558 * If the first character userspace gave us is not
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200559 * alphanumerical then assume the filter should be
560 * switched off.
561 */
562 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200563 pr_info("DMA-API: switching off dma-debug driver filter\n");
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200564 current_driver_name[0] = 0;
565 current_driver = NULL;
566 goto out_unlock;
567 }
568
569 /*
570 * Now parse out the first token and use it as the name for the
571 * driver to filter for.
572 */
573 for (i = 0; i < NAME_MAX_LEN; ++i) {
574 current_driver_name[i] = buf[i];
575 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
576 break;
577 }
578 current_driver_name[i] = 0;
579 current_driver = NULL;
580
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200581 pr_info("DMA-API: enable driver filter for driver [%s]\n",
582 current_driver_name);
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200583
584out_unlock:
585 write_unlock_irqrestore(&driver_name_lock, flags);
586
587 return count;
588}
589
590const struct file_operations filter_fops = {
591 .read = filter_read,
592 .write = filter_write,
593};
594
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100595static int dma_debug_fs_init(void)
596{
597 dma_debug_dent = debugfs_create_dir("dma-api", NULL);
598 if (!dma_debug_dent) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200599 pr_err("DMA-API: can not create debugfs directory\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100600 return -ENOMEM;
601 }
602
603 global_disable_dent = debugfs_create_bool("disabled", 0444,
604 dma_debug_dent,
605 (u32 *)&global_disable);
606 if (!global_disable_dent)
607 goto out_err;
608
609 error_count_dent = debugfs_create_u32("error_count", 0444,
610 dma_debug_dent, &error_count);
611 if (!error_count_dent)
612 goto out_err;
613
614 show_all_errors_dent = debugfs_create_u32("all_errors", 0644,
615 dma_debug_dent,
616 &show_all_errors);
617 if (!show_all_errors_dent)
618 goto out_err;
619
620 show_num_errors_dent = debugfs_create_u32("num_errors", 0644,
621 dma_debug_dent,
622 &show_num_errors);
623 if (!show_num_errors_dent)
624 goto out_err;
625
626 num_free_entries_dent = debugfs_create_u32("num_free_entries", 0444,
627 dma_debug_dent,
628 &num_free_entries);
629 if (!num_free_entries_dent)
630 goto out_err;
631
632 min_free_entries_dent = debugfs_create_u32("min_free_entries", 0444,
633 dma_debug_dent,
634 &min_free_entries);
635 if (!min_free_entries_dent)
636 goto out_err;
637
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200638 filter_dent = debugfs_create_file("driver_filter", 0644,
639 dma_debug_dent, NULL, &filter_fops);
640 if (!filter_dent)
641 goto out_err;
642
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100643 return 0;
644
645out_err:
646 debugfs_remove_recursive(dma_debug_dent);
647
648 return -ENOMEM;
649}
650
Joerg Roedeled888ae2009-05-22 17:16:04 +0200651static int device_dma_allocations(struct device *dev)
652{
653 struct dma_debug_entry *entry;
654 unsigned long flags;
655 int count = 0, i;
656
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200657 local_irq_save(flags);
658
Joerg Roedeled888ae2009-05-22 17:16:04 +0200659 for (i = 0; i < HASH_SIZE; ++i) {
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200660 spin_lock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200661 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
662 if (entry->dev == dev)
663 count += 1;
664 }
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200665 spin_unlock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200666 }
667
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200668 local_irq_restore(flags);
669
Joerg Roedeled888ae2009-05-22 17:16:04 +0200670 return count;
671}
672
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100673static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200674{
675 struct device *dev = data;
676 int count;
677
Shaun Ruffellf797d982009-12-17 18:00:36 -0600678 if (global_disable)
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100679 return 0;
Joerg Roedeled888ae2009-05-22 17:16:04 +0200680
681 switch (action) {
682 case BUS_NOTIFY_UNBOUND_DRIVER:
683 count = device_dma_allocations(dev);
684 if (count == 0)
685 break;
686 err_printk(dev, NULL, "DMA-API: device driver has pending "
687 "DMA allocations while released from device "
688 "[count=%d]\n", count);
689 break;
690 default:
691 break;
692 }
693
694 return 0;
695}
696
Joerg Roedel41531c82009-03-16 17:32:14 +0100697void dma_debug_add_bus(struct bus_type *bus)
698{
Joerg Roedeled888ae2009-05-22 17:16:04 +0200699 struct notifier_block *nb;
700
Shaun Ruffellf797d982009-12-17 18:00:36 -0600701 if (global_disable)
702 return;
703
Joerg Roedeled888ae2009-05-22 17:16:04 +0200704 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
705 if (nb == NULL) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200706 pr_err("dma_debug_add_bus: out of memory\n");
Joerg Roedeled888ae2009-05-22 17:16:04 +0200707 return;
708 }
709
710 nb->notifier_call = dma_debug_device_change;
711
712 bus_register_notifier(bus, nb);
Joerg Roedel41531c82009-03-16 17:32:14 +0100713}
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100714
Joerg Roedel6bf07872009-01-09 12:54:42 +0100715/*
716 * Let the architectures decide how many entries should be preallocated.
717 */
718void dma_debug_init(u32 num_entries)
719{
720 int i;
721
722 if (global_disable)
723 return;
724
725 for (i = 0; i < HASH_SIZE; ++i) {
726 INIT_LIST_HEAD(&dma_entry_hash[i].list);
Ingo Molnarb0a5b832009-06-16 16:11:14 +0200727 spin_lock_init(&dma_entry_hash[i].lock);
Joerg Roedel6bf07872009-01-09 12:54:42 +0100728 }
729
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100730 if (dma_debug_fs_init() != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200731 pr_err("DMA-API: error creating debugfs entries - disabling\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100732 global_disable = true;
733
734 return;
735 }
736
Joerg Roedel59d3daa2009-01-09 13:01:56 +0100737 if (req_entries)
738 num_entries = req_entries;
739
Joerg Roedel6bf07872009-01-09 12:54:42 +0100740 if (prealloc_memory(num_entries) != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200741 pr_err("DMA-API: debugging out of memory error - disabled\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +0100742 global_disable = true;
743
744 return;
745 }
746
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900747 nr_total_entries = num_free_entries;
748
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200749 pr_info("DMA-API: debugging enabled by kernel config\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +0100750}
751
Joerg Roedel59d3daa2009-01-09 13:01:56 +0100752static __init int dma_debug_cmdline(char *str)
753{
754 if (!str)
755 return -EINVAL;
756
757 if (strncmp(str, "off", 3) == 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200758 pr_info("DMA-API: debugging disabled on kernel command line\n");
Joerg Roedel59d3daa2009-01-09 13:01:56 +0100759 global_disable = true;
760 }
761
762 return 0;
763}
764
765static __init int dma_debug_entries_cmdline(char *str)
766{
767 int res;
768
769 if (!str)
770 return -EINVAL;
771
772 res = get_option(&str, &req_entries);
773
774 if (!res)
775 req_entries = 0;
776
777 return 0;
778}
779
780__setup("dma_debug=", dma_debug_cmdline);
781__setup("dma_debug_entries=", dma_debug_entries_cmdline);
782
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100783static void check_unmap(struct dma_debug_entry *ref)
784{
785 struct dma_debug_entry *entry;
786 struct hash_bucket *bucket;
787 unsigned long flags;
788
FUJITA Tomonori35d40952009-03-19 10:39:31 +0900789 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
790 err_printk(ref->dev, NULL, "DMA-API: device driver tries "
791 "to free an invalid DMA memory address\n");
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100792 return;
FUJITA Tomonori35d40952009-03-19 10:39:31 +0900793 }
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100794
795 bucket = get_hash_bucket(ref, &flags);
796 entry = hash_bucket_find(bucket, ref);
797
798 if (!entry) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100799 err_printk(ref->dev, NULL, "DMA-API: device driver tries "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100800 "to free DMA memory it has not allocated "
801 "[device address=0x%016llx] [size=%llu bytes]\n",
802 ref->dev_addr, ref->size);
803 goto out;
804 }
805
806 if (ref->size != entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100807 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100808 "DMA memory with different size "
809 "[device address=0x%016llx] [map size=%llu bytes] "
810 "[unmap size=%llu bytes]\n",
811 ref->dev_addr, entry->size, ref->size);
812 }
813
814 if (ref->type != entry->type) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100815 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100816 "DMA memory with wrong function "
817 "[device address=0x%016llx] [size=%llu bytes] "
818 "[mapped as %s] [unmapped as %s]\n",
819 ref->dev_addr, ref->size,
820 type2name[entry->type], type2name[ref->type]);
821 } else if ((entry->type == dma_debug_coherent) &&
822 (ref->paddr != entry->paddr)) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100823 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100824 "DMA memory with different CPU address "
825 "[device address=0x%016llx] [size=%llu bytes] "
Joerg Roedel59a40e702009-10-29 16:25:50 +0100826 "[cpu alloc address=0x%016llx] "
827 "[cpu free address=0x%016llx]",
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100828 ref->dev_addr, ref->size,
Joerg Roedel59a40e702009-10-29 16:25:50 +0100829 (unsigned long long)entry->paddr,
830 (unsigned long long)ref->paddr);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100831 }
832
833 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
834 ref->sg_call_ents != entry->sg_call_ents) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100835 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100836 "DMA sg list with different entry count "
837 "[map count=%d] [unmap count=%d]\n",
838 entry->sg_call_ents, ref->sg_call_ents);
839 }
840
841 /*
842 * This may be no bug in reality - but most implementations of the
843 * DMA API don't handle this properly, so check for it here
844 */
845 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100846 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100847 "DMA memory with different direction "
848 "[device address=0x%016llx] [size=%llu bytes] "
849 "[mapped with %s] [unmapped with %s]\n",
850 ref->dev_addr, ref->size,
851 dir2name[entry->direction],
852 dir2name[ref->direction]);
853 }
854
855 hash_bucket_del(entry);
856 dma_entry_free(entry);
857
858out:
859 put_hash_bucket(bucket, &flags);
860}
861
862static void check_for_stack(struct device *dev, void *addr)
863{
864 if (object_is_on_stack(addr))
David Woodhouse6c132d12009-01-19 16:52:39 +0100865 err_printk(dev, NULL, "DMA-API: device driver maps memory from"
866 "stack [addr=%p]\n", addr);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100867}
868
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200869static inline bool overlap(void *addr, unsigned long len, void *start, void *end)
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100870{
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200871 unsigned long a1 = (unsigned long)addr;
872 unsigned long b1 = a1 + len;
873 unsigned long a2 = (unsigned long)start;
874 unsigned long b2 = (unsigned long)end;
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100875
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200876 return !(b1 <= a2 || a1 >= b2);
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100877}
878
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200879static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100880{
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200881 if (overlap(addr, len, _text, _etext) ||
882 overlap(addr, len, __start_rodata, __end_rodata))
883 err_printk(dev, NULL, "DMA-API: device driver maps memory from kernel text or rodata [addr=%p] [len=%lu]\n", addr, len);
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100884}
885
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200886static void check_sync(struct device *dev,
887 struct dma_debug_entry *ref,
888 bool to_cpu)
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100889{
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100890 struct dma_debug_entry *entry;
891 struct hash_bucket *bucket;
892 unsigned long flags;
893
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200894 bucket = get_hash_bucket(ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100895
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200896 entry = hash_bucket_find(bucket, ref);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100897
898 if (!entry) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100899 err_printk(dev, NULL, "DMA-API: device driver tries "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100900 "to sync DMA memory it has not allocated "
901 "[device address=0x%016llx] [size=%llu bytes]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200902 (unsigned long long)ref->dev_addr, ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100903 goto out;
904 }
905
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200906 if (ref->size > entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100907 err_printk(dev, entry, "DMA-API: device driver syncs"
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100908 " DMA memory outside allocated range "
909 "[device address=0x%016llx] "
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200910 "[allocation size=%llu bytes] "
911 "[sync offset+size=%llu]\n",
912 entry->dev_addr, entry->size,
913 ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100914 }
915
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200916 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +0100917 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100918 "DMA memory with different direction "
919 "[device address=0x%016llx] [size=%llu bytes] "
920 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200921 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100922 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200923 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100924 }
925
926 if (entry->direction == DMA_BIDIRECTIONAL)
927 goto out;
928
929 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200930 !(ref->direction == DMA_TO_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +0100931 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100932 "device read-only DMA memory for cpu "
933 "[device address=0x%016llx] [size=%llu bytes] "
934 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200935 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100936 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200937 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100938
939 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200940 !(ref->direction == DMA_FROM_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +0100941 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100942 "device write-only DMA memory to device "
943 "[device address=0x%016llx] [size=%llu bytes] "
944 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200945 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100946 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +0200947 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100948
949out:
950 put_hash_bucket(bucket, &flags);
951
952}
953
Joerg Roedelf62bc982009-01-09 14:14:49 +0100954void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
955 size_t size, int direction, dma_addr_t dma_addr,
956 bool map_single)
957{
958 struct dma_debug_entry *entry;
959
960 if (unlikely(global_disable))
961 return;
962
963 if (unlikely(dma_mapping_error(dev, dma_addr)))
964 return;
965
966 entry = dma_entry_alloc();
967 if (!entry)
968 return;
969
970 entry->dev = dev;
971 entry->type = dma_debug_page;
972 entry->paddr = page_to_phys(page) + offset;
973 entry->dev_addr = dma_addr;
974 entry->size = size;
975 entry->direction = direction;
976
Joerg Roedel9537a482009-03-23 15:35:08 +0100977 if (map_single)
Joerg Roedelf62bc982009-01-09 14:14:49 +0100978 entry->type = dma_debug_single;
Joerg Roedel9537a482009-03-23 15:35:08 +0100979
980 if (!PageHighMem(page)) {
Ingo Molnarf39d1b92009-07-10 21:38:02 +0200981 void *addr = page_address(page) + offset;
982
Joerg Roedel2e34bde2009-03-16 16:51:55 +0100983 check_for_stack(dev, addr);
984 check_for_illegal_area(dev, addr, size);
Joerg Roedelf62bc982009-01-09 14:14:49 +0100985 }
986
987 add_dma_entry(entry);
988}
989EXPORT_SYMBOL(debug_dma_map_page);
990
991void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
992 size_t size, int direction, bool map_single)
993{
994 struct dma_debug_entry ref = {
995 .type = dma_debug_page,
996 .dev = dev,
997 .dev_addr = addr,
998 .size = size,
999 .direction = direction,
1000 };
1001
1002 if (unlikely(global_disable))
1003 return;
1004
1005 if (map_single)
1006 ref.type = dma_debug_single;
1007
1008 check_unmap(&ref);
1009}
1010EXPORT_SYMBOL(debug_dma_unmap_page);
1011
Joerg Roedel972aa452009-01-09 14:19:54 +01001012void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1013 int nents, int mapped_ents, int direction)
1014{
1015 struct dma_debug_entry *entry;
1016 struct scatterlist *s;
1017 int i;
1018
1019 if (unlikely(global_disable))
1020 return;
1021
1022 for_each_sg(sg, s, mapped_ents, i) {
1023 entry = dma_entry_alloc();
1024 if (!entry)
1025 return;
1026
1027 entry->type = dma_debug_sg;
1028 entry->dev = dev;
1029 entry->paddr = sg_phys(s);
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001030 entry->size = sg_dma_len(s);
FUJITA Tomonori15aedea2009-05-27 09:43:01 +09001031 entry->dev_addr = sg_dma_address(s);
Joerg Roedel972aa452009-01-09 14:19:54 +01001032 entry->direction = direction;
1033 entry->sg_call_ents = nents;
1034 entry->sg_mapped_ents = mapped_ents;
1035
Joerg Roedel9537a482009-03-23 15:35:08 +01001036 if (!PageHighMem(sg_page(s))) {
1037 check_for_stack(dev, sg_virt(s));
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001038 check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s));
Joerg Roedel9537a482009-03-23 15:35:08 +01001039 }
Joerg Roedel972aa452009-01-09 14:19:54 +01001040
1041 add_dma_entry(entry);
1042 }
1043}
1044EXPORT_SYMBOL(debug_dma_map_sg);
1045
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001046static int get_nr_mapped_entries(struct device *dev,
1047 struct dma_debug_entry *ref)
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001048{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001049 struct dma_debug_entry *entry;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001050 struct hash_bucket *bucket;
1051 unsigned long flags;
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001052 int mapped_ents;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001053
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001054 bucket = get_hash_bucket(ref, &flags);
1055 entry = hash_bucket_find(bucket, ref);
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001056 mapped_ents = 0;
1057
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001058 if (entry)
1059 mapped_ents = entry->sg_mapped_ents;
1060 put_hash_bucket(bucket, &flags);
1061
1062 return mapped_ents;
1063}
1064
Joerg Roedel972aa452009-01-09 14:19:54 +01001065void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1066 int nelems, int dir)
1067{
Joerg Roedel972aa452009-01-09 14:19:54 +01001068 struct scatterlist *s;
1069 int mapped_ents = 0, i;
Joerg Roedel972aa452009-01-09 14:19:54 +01001070
1071 if (unlikely(global_disable))
1072 return;
1073
1074 for_each_sg(sglist, s, nelems, i) {
1075
1076 struct dma_debug_entry ref = {
1077 .type = dma_debug_sg,
1078 .dev = dev,
1079 .paddr = sg_phys(s),
FUJITA Tomonori15aedea2009-05-27 09:43:01 +09001080 .dev_addr = sg_dma_address(s),
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001081 .size = sg_dma_len(s),
Joerg Roedel972aa452009-01-09 14:19:54 +01001082 .direction = dir,
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001083 .sg_call_ents = nelems,
Joerg Roedel972aa452009-01-09 14:19:54 +01001084 };
1085
1086 if (mapped_ents && i >= mapped_ents)
1087 break;
1088
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001089 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001090 mapped_ents = get_nr_mapped_entries(dev, &ref);
Joerg Roedel972aa452009-01-09 14:19:54 +01001091
1092 check_unmap(&ref);
1093 }
1094}
1095EXPORT_SYMBOL(debug_dma_unmap_sg);
1096
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001097void debug_dma_alloc_coherent(struct device *dev, size_t size,
1098 dma_addr_t dma_addr, void *virt)
1099{
1100 struct dma_debug_entry *entry;
1101
1102 if (unlikely(global_disable))
1103 return;
1104
1105 if (unlikely(virt == NULL))
1106 return;
1107
1108 entry = dma_entry_alloc();
1109 if (!entry)
1110 return;
1111
1112 entry->type = dma_debug_coherent;
1113 entry->dev = dev;
1114 entry->paddr = virt_to_phys(virt);
1115 entry->size = size;
1116 entry->dev_addr = dma_addr;
1117 entry->direction = DMA_BIDIRECTIONAL;
1118
1119 add_dma_entry(entry);
1120}
1121EXPORT_SYMBOL(debug_dma_alloc_coherent);
1122
1123void debug_dma_free_coherent(struct device *dev, size_t size,
1124 void *virt, dma_addr_t addr)
1125{
1126 struct dma_debug_entry ref = {
1127 .type = dma_debug_coherent,
1128 .dev = dev,
1129 .paddr = virt_to_phys(virt),
1130 .dev_addr = addr,
1131 .size = size,
1132 .direction = DMA_BIDIRECTIONAL,
1133 };
1134
1135 if (unlikely(global_disable))
1136 return;
1137
1138 check_unmap(&ref);
1139}
1140EXPORT_SYMBOL(debug_dma_free_coherent);
1141
Joerg Roedelb9d23172009-01-09 14:43:04 +01001142void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1143 size_t size, int direction)
1144{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001145 struct dma_debug_entry ref;
1146
Joerg Roedelb9d23172009-01-09 14:43:04 +01001147 if (unlikely(global_disable))
1148 return;
1149
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001150 ref.type = dma_debug_single;
1151 ref.dev = dev;
1152 ref.dev_addr = dma_handle;
1153 ref.size = size;
1154 ref.direction = direction;
1155 ref.sg_call_ents = 0;
1156
1157 check_sync(dev, &ref, true);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001158}
1159EXPORT_SYMBOL(debug_dma_sync_single_for_cpu);
1160
1161void debug_dma_sync_single_for_device(struct device *dev,
1162 dma_addr_t dma_handle, size_t size,
1163 int direction)
1164{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001165 struct dma_debug_entry ref;
1166
Joerg Roedelb9d23172009-01-09 14:43:04 +01001167 if (unlikely(global_disable))
1168 return;
1169
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001170 ref.type = dma_debug_single;
1171 ref.dev = dev;
1172 ref.dev_addr = dma_handle;
1173 ref.size = size;
1174 ref.direction = direction;
1175 ref.sg_call_ents = 0;
1176
1177 check_sync(dev, &ref, false);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001178}
1179EXPORT_SYMBOL(debug_dma_sync_single_for_device);
1180
Joerg Roedel948408b2009-01-09 14:55:38 +01001181void debug_dma_sync_single_range_for_cpu(struct device *dev,
1182 dma_addr_t dma_handle,
1183 unsigned long offset, size_t size,
1184 int direction)
1185{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001186 struct dma_debug_entry ref;
1187
Joerg Roedel948408b2009-01-09 14:55:38 +01001188 if (unlikely(global_disable))
1189 return;
1190
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001191 ref.type = dma_debug_single;
1192 ref.dev = dev;
1193 ref.dev_addr = dma_handle;
1194 ref.size = offset + size;
1195 ref.direction = direction;
1196 ref.sg_call_ents = 0;
1197
1198 check_sync(dev, &ref, true);
Joerg Roedel948408b2009-01-09 14:55:38 +01001199}
1200EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu);
1201
1202void debug_dma_sync_single_range_for_device(struct device *dev,
1203 dma_addr_t dma_handle,
1204 unsigned long offset,
1205 size_t size, int direction)
1206{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001207 struct dma_debug_entry ref;
1208
Joerg Roedel948408b2009-01-09 14:55:38 +01001209 if (unlikely(global_disable))
1210 return;
1211
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001212 ref.type = dma_debug_single;
1213 ref.dev = dev;
1214 ref.dev_addr = dma_handle;
1215 ref.size = offset + size;
1216 ref.direction = direction;
1217 ref.sg_call_ents = 0;
1218
1219 check_sync(dev, &ref, false);
Joerg Roedel948408b2009-01-09 14:55:38 +01001220}
1221EXPORT_SYMBOL(debug_dma_sync_single_range_for_device);
1222
Joerg Roedela31fba52009-01-09 15:01:12 +01001223void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1224 int nelems, int direction)
1225{
1226 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001227 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001228
1229 if (unlikely(global_disable))
1230 return;
1231
1232 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001233
1234 struct dma_debug_entry ref = {
1235 .type = dma_debug_sg,
1236 .dev = dev,
1237 .paddr = sg_phys(s),
1238 .dev_addr = sg_dma_address(s),
1239 .size = sg_dma_len(s),
1240 .direction = direction,
1241 .sg_call_ents = nelems,
1242 };
1243
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001244 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001245 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001246
1247 if (i >= mapped_ents)
1248 break;
1249
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001250 check_sync(dev, &ref, true);
Joerg Roedela31fba52009-01-09 15:01:12 +01001251 }
1252}
1253EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu);
1254
1255void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1256 int nelems, int direction)
1257{
1258 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001259 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001260
1261 if (unlikely(global_disable))
1262 return;
1263
1264 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001265
1266 struct dma_debug_entry ref = {
1267 .type = dma_debug_sg,
1268 .dev = dev,
1269 .paddr = sg_phys(s),
1270 .dev_addr = sg_dma_address(s),
1271 .size = sg_dma_len(s),
1272 .direction = direction,
1273 .sg_call_ents = nelems,
1274 };
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001275 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001276 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001277
1278 if (i >= mapped_ents)
1279 break;
1280
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001281 check_sync(dev, &ref, false);
Joerg Roedela31fba52009-01-09 15:01:12 +01001282 }
1283}
1284EXPORT_SYMBOL(debug_dma_sync_sg_for_device);
1285
Joerg Roedel1745de52009-05-22 21:49:51 +02001286static int __init dma_debug_driver_setup(char *str)
1287{
1288 int i;
1289
1290 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1291 current_driver_name[i] = *str;
1292 if (*str == 0)
1293 break;
1294 }
1295
1296 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001297 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1298 current_driver_name);
Joerg Roedel1745de52009-05-22 21:49:51 +02001299
1300
1301 return 1;
1302}
1303__setup("dma_debug_driver=", dma_debug_driver_setup);