blob: 06f02f6aecd2b7ee974497941d0c6b7302f83f1c [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>
Andy Lutomirskib4a0f532016-08-11 02:35:22 -070025#include <linux/vmalloc.h>
Joerg Roedel788dcfa2009-01-09 13:13:27 +010026#include <linux/debugfs.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020027#include <linux/uaccess.h>
Paul Gortmaker23a7bfa2011-07-01 16:23:59 -040028#include <linux/export.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010029#include <linux/device.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010030#include <linux/types.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010031#include <linux/sched.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020032#include <linux/ctype.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010033#include <linux/list.h>
Joerg Roedel6bf07872009-01-09 12:54:42 +010034#include <linux/slab.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010035
Joerg Roedel2e34bde2009-03-16 16:51:55 +010036#include <asm/sections.h>
37
Joerg Roedel30dfa902009-01-09 12:34:49 +010038#define HASH_SIZE 1024ULL
39#define HASH_FN_SHIFT 13
40#define HASH_FN_MASK (HASH_SIZE - 1)
41
Joerg Roedelf2f45e52009-01-09 12:19:52 +010042enum {
43 dma_debug_single,
44 dma_debug_page,
45 dma_debug_sg,
46 dma_debug_coherent,
47};
48
Shuah Khan6c9c6d62012-10-08 11:08:06 -060049enum map_err_types {
50 MAP_ERR_CHECK_NOT_APPLICABLE,
51 MAP_ERR_NOT_CHECKED,
52 MAP_ERR_CHECKED,
53};
54
David Woodhouse6c132d12009-01-19 16:52:39 +010055#define DMA_DEBUG_STACKTRACE_ENTRIES 5
56
Dan Williams0abdd7a2014-01-21 15:48:12 -080057/**
58 * struct dma_debug_entry - track a dma_map* or dma_alloc_coherent mapping
59 * @list: node on pre-allocated free_entries list
60 * @dev: 'dev' argument to dma_map_{page|single|sg} or dma_alloc_coherent
61 * @type: single, page, sg, coherent
62 * @pfn: page frame of the start address
63 * @offset: offset of mapping relative to pfn
64 * @size: length of the mapping
65 * @direction: enum dma_data_direction
66 * @sg_call_ents: 'nents' from dma_map_sg
67 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
68 * @map_err_type: track whether dma_mapping_error() was checked
69 * @stacktrace: support backtraces when a violation is detected
70 */
Joerg Roedelf2f45e52009-01-09 12:19:52 +010071struct dma_debug_entry {
72 struct list_head list;
73 struct device *dev;
74 int type;
Dan Williams0abdd7a2014-01-21 15:48:12 -080075 unsigned long pfn;
76 size_t offset;
Joerg Roedelf2f45e52009-01-09 12:19:52 +010077 u64 dev_addr;
78 u64 size;
79 int direction;
80 int sg_call_ents;
81 int sg_mapped_ents;
Shuah Khan6c9c6d62012-10-08 11:08:06 -060082 enum map_err_types map_err_type;
David Woodhouse6c132d12009-01-19 16:52:39 +010083#ifdef CONFIG_STACKTRACE
84 struct stack_trace stacktrace;
85 unsigned long st_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
86#endif
Joerg Roedelf2f45e52009-01-09 12:19:52 +010087};
88
Neil Hormanc6a21d02011-08-08 15:13:54 -040089typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
90
Joerg Roedel30dfa902009-01-09 12:34:49 +010091struct hash_bucket {
92 struct list_head list;
93 spinlock_t lock;
Joerg Roedel2d62ece2009-01-09 14:10:26 +010094} ____cacheline_aligned_in_smp;
Joerg Roedel30dfa902009-01-09 12:34:49 +010095
96/* Hash list to save the allocated dma addresses */
97static struct hash_bucket dma_entry_hash[HASH_SIZE];
Joerg Roedel3b1e79e2009-01-09 12:42:46 +010098/* List of pre-allocated dma_debug_entry's */
99static LIST_HEAD(free_entries);
100/* Lock for the list above */
101static DEFINE_SPINLOCK(free_entries_lock);
102
103/* Global disable flag - will be set in case of an error */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700104static bool global_disable __read_mostly;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100105
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -0800106/* Early initialization disable flag, set at the end of dma_debug_init */
107static bool dma_debug_initialized __read_mostly;
108
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800109static inline bool dma_debug_disabled(void)
110{
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -0800111 return global_disable || !dma_debug_initialized;
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800112}
113
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100114/* Global error count */
115static u32 error_count;
116
117/* Global error show enable*/
118static u32 show_all_errors __read_mostly;
119/* Number of errors to show */
120static u32 show_num_errors = 1;
121
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100122static u32 num_free_entries;
123static u32 min_free_entries;
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900124static u32 nr_total_entries;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100125
Joerg Roedel59d3daa2009-01-09 13:01:56 +0100126/* number of preallocated entries requested by kernel cmdline */
127static u32 req_entries;
128
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100129/* debugfs dentry's for the stuff above */
130static struct dentry *dma_debug_dent __read_mostly;
131static struct dentry *global_disable_dent __read_mostly;
132static struct dentry *error_count_dent __read_mostly;
133static struct dentry *show_all_errors_dent __read_mostly;
134static struct dentry *show_num_errors_dent __read_mostly;
135static struct dentry *num_free_entries_dent __read_mostly;
136static struct dentry *min_free_entries_dent __read_mostly;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200137static struct dentry *filter_dent __read_mostly;
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100138
Joerg Roedel2e507d82009-05-22 18:24:20 +0200139/* per-driver filter related state */
140
141#define NAME_MAX_LEN 64
142
143static char current_driver_name[NAME_MAX_LEN] __read_mostly;
144static struct device_driver *current_driver __read_mostly;
145
146static DEFINE_RWLOCK(driver_name_lock);
Joerg Roedel30dfa902009-01-09 12:34:49 +0100147
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600148static const char *const maperr2str[] = {
149 [MAP_ERR_CHECK_NOT_APPLICABLE] = "dma map error check not applicable",
150 [MAP_ERR_NOT_CHECKED] = "dma map error not checked",
151 [MAP_ERR_CHECKED] = "dma map error checked",
152};
153
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100154static const char *type2name[4] = { "single", "page",
155 "scather-gather", "coherent" };
156
157static const char *dir2name[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
158 "DMA_FROM_DEVICE", "DMA_NONE" };
159
160/*
161 * The access to some variables in this macro is racy. We can't use atomic_t
162 * here because all these variables are exported to debugfs. Some of them even
163 * writeable. This is also the reason why a lock won't help much. But anyway,
164 * the races are no big deal. Here is why:
165 *
166 * error_count: the addition is racy, but the worst thing that can happen is
167 * that we don't count some errors
168 * show_num_errors: the subtraction is racy. Also no big deal because in
169 * worst case this will result in one warning more in the
170 * system log than the user configured. This variable is
171 * writeable via debugfs.
172 */
David Woodhouse6c132d12009-01-19 16:52:39 +0100173static inline void dump_entry_trace(struct dma_debug_entry *entry)
174{
175#ifdef CONFIG_STACKTRACE
176 if (entry) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200177 pr_warning("Mapped at:\n");
David Woodhouse6c132d12009-01-19 16:52:39 +0100178 print_stack_trace(&entry->stacktrace, 0);
179 }
180#endif
181}
182
Joerg Roedel2e507d82009-05-22 18:24:20 +0200183static bool driver_filter(struct device *dev)
184{
Joerg Roedel0bf84122009-06-08 15:53:46 +0200185 struct device_driver *drv;
186 unsigned long flags;
187 bool ret;
188
Joerg Roedel2e507d82009-05-22 18:24:20 +0200189 /* driver filter off */
190 if (likely(!current_driver_name[0]))
191 return true;
192
193 /* driver filter on and initialized */
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400194 if (current_driver && dev && dev->driver == current_driver)
Joerg Roedel2e507d82009-05-22 18:24:20 +0200195 return true;
196
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400197 /* driver filter on, but we can't filter on a NULL device... */
198 if (!dev)
199 return false;
200
Joerg Roedel0bf84122009-06-08 15:53:46 +0200201 if (current_driver || !current_driver_name[0])
202 return false;
203
Joerg Roedel2e507d82009-05-22 18:24:20 +0200204 /* driver filter on but not yet initialized */
Alan Sternf3ff9242012-01-24 13:35:24 -0500205 drv = dev->driver;
Joerg Roedel0bf84122009-06-08 15:53:46 +0200206 if (!drv)
207 return false;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200208
Joerg Roedel0bf84122009-06-08 15:53:46 +0200209 /* lock to protect against change of current_driver_name */
210 read_lock_irqsave(&driver_name_lock, flags);
Joerg Roedel2e507d82009-05-22 18:24:20 +0200211
Joerg Roedel0bf84122009-06-08 15:53:46 +0200212 ret = false;
213 if (drv->name &&
214 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
215 current_driver = drv;
216 ret = true;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200217 }
218
Joerg Roedel0bf84122009-06-08 15:53:46 +0200219 read_unlock_irqrestore(&driver_name_lock, flags);
Joerg Roedel0bf84122009-06-08 15:53:46 +0200220
221 return ret;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200222}
223
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400224#define err_printk(dev, entry, format, arg...) do { \
225 error_count += 1; \
226 if (driver_filter(dev) && \
227 (show_all_errors || show_num_errors > 0)) { \
228 WARN(1, "%s %s: " format, \
229 dev ? dev_driver_string(dev) : "NULL", \
230 dev ? dev_name(dev) : "NULL", ## arg); \
231 dump_entry_trace(entry); \
232 } \
233 if (!show_all_errors && show_num_errors > 0) \
234 show_num_errors -= 1; \
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100235 } while (0);
236
Joerg Roedel30dfa902009-01-09 12:34:49 +0100237/*
238 * Hash related functions
239 *
240 * Every DMA-API request is saved into a struct dma_debug_entry. To
241 * have quick access to these structs they are stored into a hash.
242 */
243static int hash_fn(struct dma_debug_entry *entry)
244{
245 /*
246 * Hash function is based on the dma address.
247 * We use bits 20-27 here as the index into the hash
248 */
249 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
250}
251
252/*
253 * Request exclusive access to a hash bucket for a given dma_debug_entry.
254 */
255static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
256 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700257 __acquires(&dma_entry_hash[idx].lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100258{
259 int idx = hash_fn(entry);
260 unsigned long __flags;
261
262 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
263 *flags = __flags;
264 return &dma_entry_hash[idx];
265}
266
267/*
268 * Give up exclusive access to the hash bucket
269 */
270static void put_hash_bucket(struct hash_bucket *bucket,
271 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700272 __releases(&bucket->lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100273{
274 unsigned long __flags = *flags;
275
276 spin_unlock_irqrestore(&bucket->lock, __flags);
277}
278
Neil Hormanc6a21d02011-08-08 15:13:54 -0400279static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
280{
Thomas Jarosch91ec37c2011-11-17 20:31:02 +0100281 return ((a->dev_addr == b->dev_addr) &&
Neil Hormanc6a21d02011-08-08 15:13:54 -0400282 (a->dev == b->dev)) ? true : false;
283}
284
285static bool containing_match(struct dma_debug_entry *a,
286 struct dma_debug_entry *b)
287{
288 if (a->dev != b->dev)
289 return false;
290
291 if ((b->dev_addr <= a->dev_addr) &&
292 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
293 return true;
294
295 return false;
296}
297
Joerg Roedel30dfa902009-01-09 12:34:49 +0100298/*
299 * Search a given entry in the hash bucket list
300 */
Neil Hormanc6a21d02011-08-08 15:13:54 -0400301static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
302 struct dma_debug_entry *ref,
303 match_fn match)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100304{
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200305 struct dma_debug_entry *entry, *ret = NULL;
Ming Leife73fbe2012-10-19 13:57:01 -0700306 int matches = 0, match_lvl, last_lvl = -1;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100307
308 list_for_each_entry(entry, &bucket->list, list) {
Neil Hormanc6a21d02011-08-08 15:13:54 -0400309 if (!match(ref, entry))
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200310 continue;
311
312 /*
313 * Some drivers map the same physical address multiple
314 * times. Without a hardware IOMMU this results in the
315 * same device addresses being put into the dma-debug
316 * hash multiple times too. This can result in false
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200317 * positives being reported. Therefore we implement a
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200318 * best-fit algorithm here which returns the entry from
319 * the hash which fits best to the reference value
320 * instead of the first-fit.
321 */
322 matches += 1;
323 match_lvl = 0;
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200324 entry->size == ref->size ? ++match_lvl : 0;
325 entry->type == ref->type ? ++match_lvl : 0;
326 entry->direction == ref->direction ? ++match_lvl : 0;
327 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200328
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200329 if (match_lvl == 4) {
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200330 /* perfect-fit - return the result */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100331 return entry;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200332 } else if (match_lvl > last_lvl) {
333 /*
334 * We found an entry that fits better then the
Ming Leife73fbe2012-10-19 13:57:01 -0700335 * previous one or it is the 1st match.
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200336 */
337 last_lvl = match_lvl;
338 ret = entry;
339 }
Joerg Roedel30dfa902009-01-09 12:34:49 +0100340 }
341
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200342 /*
343 * If we have multiple matches but no perfect-fit, just return
344 * NULL.
345 */
346 ret = (matches == 1) ? ret : NULL;
347
348 return ret;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100349}
350
Neil Hormanc6a21d02011-08-08 15:13:54 -0400351static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
352 struct dma_debug_entry *ref)
353{
354 return __hash_bucket_find(bucket, ref, exact_match);
355}
356
357static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
358 struct dma_debug_entry *ref,
359 unsigned long *flags)
360{
361
362 unsigned int max_range = dma_get_max_seg_size(ref->dev);
363 struct dma_debug_entry *entry, index = *ref;
364 unsigned int range = 0;
365
366 while (range <= max_range) {
Sebastian Otta7a2c022015-04-16 12:43:25 -0700367 entry = __hash_bucket_find(*bucket, ref, containing_match);
Neil Hormanc6a21d02011-08-08 15:13:54 -0400368
369 if (entry)
370 return entry;
371
372 /*
373 * Nothing found, go back a hash bucket
374 */
375 put_hash_bucket(*bucket, flags);
376 range += (1 << HASH_FN_SHIFT);
377 index.dev_addr -= (1 << HASH_FN_SHIFT);
378 *bucket = get_hash_bucket(&index, flags);
379 }
380
381 return NULL;
382}
383
Joerg Roedel30dfa902009-01-09 12:34:49 +0100384/*
385 * Add an entry to a hash bucket
386 */
387static void hash_bucket_add(struct hash_bucket *bucket,
388 struct dma_debug_entry *entry)
389{
390 list_add_tail(&entry->list, &bucket->list);
391}
392
393/*
394 * Remove entry from a hash bucket list
395 */
396static void hash_bucket_del(struct dma_debug_entry *entry)
397{
398 list_del(&entry->list);
399}
400
Dan Williams0abdd7a2014-01-21 15:48:12 -0800401static unsigned long long phys_addr(struct dma_debug_entry *entry)
402{
403 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
404}
405
Joerg Roedel30dfa902009-01-09 12:34:49 +0100406/*
David Woodhouseac26c182009-02-12 16:19:13 +0100407 * Dump mapping entries for debugging purposes
408 */
409void debug_dma_dump_mappings(struct device *dev)
410{
411 int idx;
412
413 for (idx = 0; idx < HASH_SIZE; idx++) {
414 struct hash_bucket *bucket = &dma_entry_hash[idx];
415 struct dma_debug_entry *entry;
416 unsigned long flags;
417
418 spin_lock_irqsave(&bucket->lock, flags);
419
420 list_for_each_entry(entry, &bucket->list, list) {
421 if (!dev || dev == entry->dev) {
422 dev_info(entry->dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800423 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
David Woodhouseac26c182009-02-12 16:19:13 +0100424 type2name[entry->type], idx,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800425 phys_addr(entry), entry->pfn,
David Woodhouseac26c182009-02-12 16:19:13 +0100426 entry->dev_addr, entry->size,
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600427 dir2name[entry->direction],
428 maperr2str[entry->map_err_type]);
David Woodhouseac26c182009-02-12 16:19:13 +0100429 }
430 }
431
432 spin_unlock_irqrestore(&bucket->lock, flags);
433 }
434}
435EXPORT_SYMBOL(debug_dma_dump_mappings);
436
437/*
Dan Williams3b7a6412014-03-03 15:38:21 -0800438 * For each mapping (initial cacheline in the case of
439 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
440 * scatterlist, or the cacheline specified in dma_map_single) insert
441 * into this tree using the cacheline as the key. At
Dan Williams0abdd7a2014-01-21 15:48:12 -0800442 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
Dan Williams3b7a6412014-03-03 15:38:21 -0800443 * the entry already exists at insertion time add a tag as a reference
Dan Williams0abdd7a2014-01-21 15:48:12 -0800444 * count for the overlapping mappings. For now, the overlap tracking
Dan Williams3b7a6412014-03-03 15:38:21 -0800445 * just ensures that 'unmaps' balance 'maps' before marking the
446 * cacheline idle, but we should also be flagging overlaps as an API
447 * violation.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800448 *
449 * Memory usage is mostly constrained by the maximum number of available
450 * dma-debug entries in that we need a free dma_debug_entry before
Dan Williams3b7a6412014-03-03 15:38:21 -0800451 * inserting into the tree. In the case of dma_map_page and
452 * dma_alloc_coherent there is only one dma_debug_entry and one
453 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
454 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
455 * entries into the tree.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800456 *
457 * At any time debug_dma_assert_idle() can be called to trigger a
Dan Williams3b7a6412014-03-03 15:38:21 -0800458 * warning if any cachelines in the given page are in the active set.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800459 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800460static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800461static DEFINE_SPINLOCK(radix_lock);
Dan Williams3b7a6412014-03-03 15:38:21 -0800462#define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
463#define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
464#define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800465
Dan Williams3b7a6412014-03-03 15:38:21 -0800466static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
467{
468 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
469 (entry->offset >> L1_CACHE_SHIFT);
470}
471
472static int active_cacheline_read_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800473{
474 int overlap = 0, i;
475
476 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
Dan Williams3b7a6412014-03-03 15:38:21 -0800477 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
Dan Williams0abdd7a2014-01-21 15:48:12 -0800478 overlap |= 1 << i;
479 return overlap;
480}
481
Dan Williams3b7a6412014-03-03 15:38:21 -0800482static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800483{
484 int i;
485
Dan Williams3b7a6412014-03-03 15:38:21 -0800486 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
Dan Williams59f2e7d2014-01-29 14:05:53 -0800487 return overlap;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800488
489 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
490 if (overlap & 1 << i)
Dan Williams3b7a6412014-03-03 15:38:21 -0800491 radix_tree_tag_set(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800492 else
Dan Williams3b7a6412014-03-03 15:38:21 -0800493 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800494
495 return overlap;
496}
497
Dan Williams3b7a6412014-03-03 15:38:21 -0800498static void active_cacheline_inc_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800499{
Dan Williams3b7a6412014-03-03 15:38:21 -0800500 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800501
Dan Williams3b7a6412014-03-03 15:38:21 -0800502 overlap = active_cacheline_set_overlap(cln, ++overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800503
504 /* If we overflowed the overlap counter then we're potentially
505 * leaking dma-mappings. Otherwise, if maps and unmaps are
506 * balanced then this overflow may cause false negatives in
Dan Williams3b7a6412014-03-03 15:38:21 -0800507 * debug_dma_assert_idle() as the cacheline may be marked idle
Dan Williams0abdd7a2014-01-21 15:48:12 -0800508 * prematurely.
509 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800510 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
511 "DMA-API: exceeded %d overlapping mappings of cacheline %pa\n",
512 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800513}
514
Dan Williams3b7a6412014-03-03 15:38:21 -0800515static int active_cacheline_dec_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800516{
Dan Williams3b7a6412014-03-03 15:38:21 -0800517 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800518
Dan Williams3b7a6412014-03-03 15:38:21 -0800519 return active_cacheline_set_overlap(cln, --overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800520}
521
Dan Williams3b7a6412014-03-03 15:38:21 -0800522static int active_cacheline_insert(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800523{
Dan Williams3b7a6412014-03-03 15:38:21 -0800524 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800525 unsigned long flags;
526 int rc;
527
Dan Williams3b7a6412014-03-03 15:38:21 -0800528 /* If the device is not writing memory then we don't have any
529 * concerns about the cpu consuming stale data. This mitigates
530 * legitimate usages of overlapping mappings.
531 */
532 if (entry->direction == DMA_TO_DEVICE)
533 return 0;
534
Dan Williams0abdd7a2014-01-21 15:48:12 -0800535 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800536 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800537 if (rc == -EEXIST)
Dan Williams3b7a6412014-03-03 15:38:21 -0800538 active_cacheline_inc_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800539 spin_unlock_irqrestore(&radix_lock, flags);
540
541 return rc;
542}
543
Dan Williams3b7a6412014-03-03 15:38:21 -0800544static void active_cacheline_remove(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800545{
Dan Williams3b7a6412014-03-03 15:38:21 -0800546 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800547 unsigned long flags;
548
Dan Williams3b7a6412014-03-03 15:38:21 -0800549 /* ...mirror the insert case */
550 if (entry->direction == DMA_TO_DEVICE)
551 return;
552
Dan Williams0abdd7a2014-01-21 15:48:12 -0800553 spin_lock_irqsave(&radix_lock, flags);
Dan Williams59f2e7d2014-01-29 14:05:53 -0800554 /* since we are counting overlaps the final put of the
Dan Williams3b7a6412014-03-03 15:38:21 -0800555 * cacheline will occur when the overlap count is 0.
556 * active_cacheline_dec_overlap() returns -1 in that case
Dan Williams59f2e7d2014-01-29 14:05:53 -0800557 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800558 if (active_cacheline_dec_overlap(cln) < 0)
559 radix_tree_delete(&dma_active_cacheline, cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800560 spin_unlock_irqrestore(&radix_lock, flags);
561}
562
563/**
564 * debug_dma_assert_idle() - assert that a page is not undergoing dma
Dan Williams3b7a6412014-03-03 15:38:21 -0800565 * @page: page to lookup in the dma_active_cacheline tree
Dan Williams0abdd7a2014-01-21 15:48:12 -0800566 *
567 * Place a call to this routine in cases where the cpu touching the page
568 * before the dma completes (page is dma_unmapped) will lead to data
569 * corruption.
570 */
571void debug_dma_assert_idle(struct page *page)
572{
Dan Williams3b7a6412014-03-03 15:38:21 -0800573 static struct dma_debug_entry *ents[CACHELINES_PER_PAGE];
574 struct dma_debug_entry *entry = NULL;
575 void **results = (void **) &ents;
576 unsigned int nents, i;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800577 unsigned long flags;
Dan Williams3b7a6412014-03-03 15:38:21 -0800578 phys_addr_t cln;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800579
Haggai Eranc9d120b2015-07-17 16:24:06 -0700580 if (dma_debug_disabled())
581 return;
582
Dan Williams0abdd7a2014-01-21 15:48:12 -0800583 if (!page)
584 return;
585
Dan Williams3b7a6412014-03-03 15:38:21 -0800586 cln = (phys_addr_t) page_to_pfn(page) << CACHELINE_PER_PAGE_SHIFT;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800587 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800588 nents = radix_tree_gang_lookup(&dma_active_cacheline, results, cln,
589 CACHELINES_PER_PAGE);
590 for (i = 0; i < nents; i++) {
591 phys_addr_t ent_cln = to_cacheline_number(ents[i]);
592
593 if (ent_cln == cln) {
594 entry = ents[i];
595 break;
596 } else if (ent_cln >= cln + CACHELINES_PER_PAGE)
597 break;
598 }
Dan Williams0abdd7a2014-01-21 15:48:12 -0800599 spin_unlock_irqrestore(&radix_lock, flags);
600
601 if (!entry)
602 return;
603
Dan Williams3b7a6412014-03-03 15:38:21 -0800604 cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800605 err_printk(entry->dev, entry,
Dan Williams3b7a6412014-03-03 15:38:21 -0800606 "DMA-API: cpu touching an active dma mapped cacheline [cln=%pa]\n",
607 &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800608}
609
610/*
Joerg Roedel30dfa902009-01-09 12:34:49 +0100611 * Wrapper function for adding an entry to the hash.
612 * This function takes care of locking itself.
613 */
614static void add_dma_entry(struct dma_debug_entry *entry)
615{
616 struct hash_bucket *bucket;
617 unsigned long flags;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800618 int rc;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100619
620 bucket = get_hash_bucket(entry, &flags);
621 hash_bucket_add(bucket, entry);
622 put_hash_bucket(bucket, &flags);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800623
Dan Williams3b7a6412014-03-03 15:38:21 -0800624 rc = active_cacheline_insert(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800625 if (rc == -ENOMEM) {
Dan Williams3b7a6412014-03-03 15:38:21 -0800626 pr_err("DMA-API: cacheline tracking ENOMEM, dma-debug disabled\n");
Dan Williams0abdd7a2014-01-21 15:48:12 -0800627 global_disable = true;
628 }
629
630 /* TODO: report -EEXIST errors here as overlapping mappings are
631 * not supported by the DMA API
632 */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100633}
634
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900635static struct dma_debug_entry *__dma_entry_alloc(void)
636{
637 struct dma_debug_entry *entry;
638
639 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
640 list_del(&entry->list);
641 memset(entry, 0, sizeof(*entry));
642
643 num_free_entries -= 1;
644 if (num_free_entries < min_free_entries)
645 min_free_entries = num_free_entries;
646
647 return entry;
648}
649
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100650/* struct dma_entry allocator
651 *
652 * The next two functions implement the allocator for
653 * struct dma_debug_entries.
654 */
655static struct dma_debug_entry *dma_entry_alloc(void)
656{
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200657 struct dma_debug_entry *entry;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100658 unsigned long flags;
659
660 spin_lock_irqsave(&free_entries_lock, flags);
661
662 if (list_empty(&free_entries)) {
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100663 global_disable = true;
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200664 spin_unlock_irqrestore(&free_entries_lock, flags);
Ville Syrjälä3017cd62016-05-26 15:16:25 -0700665 pr_err("DMA-API: debugging out of memory - disabling\n");
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200666 return NULL;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100667 }
668
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900669 entry = __dma_entry_alloc();
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100670
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200671 spin_unlock_irqrestore(&free_entries_lock, flags);
672
David Woodhouse6c132d12009-01-19 16:52:39 +0100673#ifdef CONFIG_STACKTRACE
674 entry->stacktrace.max_entries = DMA_DEBUG_STACKTRACE_ENTRIES;
675 entry->stacktrace.entries = entry->st_entries;
676 entry->stacktrace.skip = 2;
677 save_stack_trace(&entry->stacktrace);
678#endif
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100679
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100680 return entry;
681}
682
683static void dma_entry_free(struct dma_debug_entry *entry)
684{
685 unsigned long flags;
686
Dan Williams3b7a6412014-03-03 15:38:21 -0800687 active_cacheline_remove(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800688
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100689 /*
690 * add to beginning of the list - this way the entries are
691 * more likely cache hot when they are reallocated.
692 */
693 spin_lock_irqsave(&free_entries_lock, flags);
694 list_add(&entry->list, &free_entries);
695 num_free_entries += 1;
696 spin_unlock_irqrestore(&free_entries_lock, flags);
697}
698
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900699int dma_debug_resize_entries(u32 num_entries)
700{
701 int i, delta, ret = 0;
702 unsigned long flags;
703 struct dma_debug_entry *entry;
704 LIST_HEAD(tmp);
705
706 spin_lock_irqsave(&free_entries_lock, flags);
707
708 if (nr_total_entries < num_entries) {
709 delta = num_entries - nr_total_entries;
710
711 spin_unlock_irqrestore(&free_entries_lock, flags);
712
713 for (i = 0; i < delta; i++) {
714 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
715 if (!entry)
716 break;
717
718 list_add_tail(&entry->list, &tmp);
719 }
720
721 spin_lock_irqsave(&free_entries_lock, flags);
722
723 list_splice(&tmp, &free_entries);
724 nr_total_entries += i;
725 num_free_entries += i;
726 } else {
727 delta = nr_total_entries - num_entries;
728
729 for (i = 0; i < delta && !list_empty(&free_entries); i++) {
730 entry = __dma_entry_alloc();
731 kfree(entry);
732 }
733
734 nr_total_entries -= i;
735 }
736
737 if (nr_total_entries != num_entries)
738 ret = 1;
739
740 spin_unlock_irqrestore(&free_entries_lock, flags);
741
742 return ret;
743}
744EXPORT_SYMBOL(dma_debug_resize_entries);
745
Joerg Roedel6bf07872009-01-09 12:54:42 +0100746/*
747 * DMA-API debugging init code
748 *
749 * The init code does two things:
750 * 1. Initialize core data structures
751 * 2. Preallocate a given number of dma_debug_entry structs
752 */
753
754static int prealloc_memory(u32 num_entries)
755{
756 struct dma_debug_entry *entry, *next_entry;
757 int i;
758
759 for (i = 0; i < num_entries; ++i) {
760 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
761 if (!entry)
762 goto out_err;
763
764 list_add_tail(&entry->list, &free_entries);
765 }
766
767 num_free_entries = num_entries;
768 min_free_entries = num_entries;
769
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200770 pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
Joerg Roedel6bf07872009-01-09 12:54:42 +0100771
772 return 0;
773
774out_err:
775
776 list_for_each_entry_safe(entry, next_entry, &free_entries, list) {
777 list_del(&entry->list);
778 kfree(entry);
779 }
780
781 return -ENOMEM;
782}
783
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200784static ssize_t filter_read(struct file *file, char __user *user_buf,
785 size_t count, loff_t *ppos)
786{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200787 char buf[NAME_MAX_LEN + 1];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200788 unsigned long flags;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200789 int len;
790
791 if (!current_driver_name[0])
792 return 0;
793
794 /*
795 * We can't copy to userspace directly because current_driver_name can
796 * only be read under the driver_name_lock with irqs disabled. So
797 * create a temporary copy first.
798 */
799 read_lock_irqsave(&driver_name_lock, flags);
800 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
801 read_unlock_irqrestore(&driver_name_lock, flags);
802
803 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
804}
805
806static ssize_t filter_write(struct file *file, const char __user *userbuf,
807 size_t count, loff_t *ppos)
808{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200809 char buf[NAME_MAX_LEN];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200810 unsigned long flags;
811 size_t len;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200812 int i;
813
814 /*
815 * We can't copy from userspace directly. Access to
816 * current_driver_name is protected with a write_lock with irqs
817 * disabled. Since copy_from_user can fault and may sleep we
818 * need to copy to temporary buffer first
819 */
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200820 len = min(count, (size_t)(NAME_MAX_LEN - 1));
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200821 if (copy_from_user(buf, userbuf, len))
822 return -EFAULT;
823
824 buf[len] = 0;
825
826 write_lock_irqsave(&driver_name_lock, flags);
827
Joerg Roedel312325092009-06-08 15:07:08 +0200828 /*
829 * Now handle the string we got from userspace very carefully.
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200830 * The rules are:
831 * - only use the first token we got
832 * - token delimiter is everything looking like a space
833 * character (' ', '\n', '\t' ...)
834 *
835 */
836 if (!isalnum(buf[0])) {
837 /*
Joerg Roedel312325092009-06-08 15:07:08 +0200838 * If the first character userspace gave us is not
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200839 * alphanumerical then assume the filter should be
840 * switched off.
841 */
842 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200843 pr_info("DMA-API: switching off dma-debug driver filter\n");
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200844 current_driver_name[0] = 0;
845 current_driver = NULL;
846 goto out_unlock;
847 }
848
849 /*
850 * Now parse out the first token and use it as the name for the
851 * driver to filter for.
852 */
Dan Carpenter39a37ce2010-04-06 19:45:12 +0300853 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200854 current_driver_name[i] = buf[i];
855 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
856 break;
857 }
858 current_driver_name[i] = 0;
859 current_driver = NULL;
860
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200861 pr_info("DMA-API: enable driver filter for driver [%s]\n",
862 current_driver_name);
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200863
864out_unlock:
865 write_unlock_irqrestore(&driver_name_lock, flags);
866
867 return count;
868}
869
Thiago Farinaaeb583d2010-01-18 18:57:33 -0500870static const struct file_operations filter_fops = {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200871 .read = filter_read,
872 .write = filter_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200873 .llseek = default_llseek,
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200874};
875
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100876static int dma_debug_fs_init(void)
877{
878 dma_debug_dent = debugfs_create_dir("dma-api", NULL);
879 if (!dma_debug_dent) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200880 pr_err("DMA-API: can not create debugfs directory\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100881 return -ENOMEM;
882 }
883
884 global_disable_dent = debugfs_create_bool("disabled", 0444,
885 dma_debug_dent,
Dan Carpenter68ee6d22012-06-27 12:08:55 +0300886 &global_disable);
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100887 if (!global_disable_dent)
888 goto out_err;
889
890 error_count_dent = debugfs_create_u32("error_count", 0444,
891 dma_debug_dent, &error_count);
892 if (!error_count_dent)
893 goto out_err;
894
895 show_all_errors_dent = debugfs_create_u32("all_errors", 0644,
896 dma_debug_dent,
897 &show_all_errors);
898 if (!show_all_errors_dent)
899 goto out_err;
900
901 show_num_errors_dent = debugfs_create_u32("num_errors", 0644,
902 dma_debug_dent,
903 &show_num_errors);
904 if (!show_num_errors_dent)
905 goto out_err;
906
907 num_free_entries_dent = debugfs_create_u32("num_free_entries", 0444,
908 dma_debug_dent,
909 &num_free_entries);
910 if (!num_free_entries_dent)
911 goto out_err;
912
913 min_free_entries_dent = debugfs_create_u32("min_free_entries", 0444,
914 dma_debug_dent,
915 &min_free_entries);
916 if (!min_free_entries_dent)
917 goto out_err;
918
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200919 filter_dent = debugfs_create_file("driver_filter", 0644,
920 dma_debug_dent, NULL, &filter_fops);
921 if (!filter_dent)
922 goto out_err;
923
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100924 return 0;
925
926out_err:
927 debugfs_remove_recursive(dma_debug_dent);
928
929 return -ENOMEM;
930}
931
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400932static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200933{
934 struct dma_debug_entry *entry;
935 unsigned long flags;
936 int count = 0, i;
937
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200938 local_irq_save(flags);
939
Joerg Roedeled888ae2009-05-22 17:16:04 +0200940 for (i = 0; i < HASH_SIZE; ++i) {
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200941 spin_lock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200942 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400943 if (entry->dev == dev) {
Joerg Roedeled888ae2009-05-22 17:16:04 +0200944 count += 1;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400945 *out_entry = entry;
946 }
Joerg Roedeled888ae2009-05-22 17:16:04 +0200947 }
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200948 spin_unlock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200949 }
950
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200951 local_irq_restore(flags);
952
Joerg Roedeled888ae2009-05-22 17:16:04 +0200953 return count;
954}
955
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100956static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200957{
958 struct device *dev = data;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400959 struct dma_debug_entry *uninitialized_var(entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200960 int count;
961
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800962 if (dma_debug_disabled())
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100963 return 0;
Joerg Roedeled888ae2009-05-22 17:16:04 +0200964
965 switch (action) {
966 case BUS_NOTIFY_UNBOUND_DRIVER:
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400967 count = device_dma_allocations(dev, &entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200968 if (count == 0)
969 break;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400970 err_printk(dev, entry, "DMA-API: device driver has pending "
Joerg Roedeled888ae2009-05-22 17:16:04 +0200971 "DMA allocations while released from device "
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400972 "[count=%d]\n"
973 "One of leaked entries details: "
974 "[device address=0x%016llx] [size=%llu bytes] "
975 "[mapped with %s] [mapped as %s]\n",
976 count, entry->dev_addr, entry->size,
977 dir2name[entry->direction], type2name[entry->type]);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200978 break;
979 default:
980 break;
981 }
982
983 return 0;
984}
985
Joerg Roedel41531c82009-03-16 17:32:14 +0100986void dma_debug_add_bus(struct bus_type *bus)
987{
Joerg Roedeled888ae2009-05-22 17:16:04 +0200988 struct notifier_block *nb;
989
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800990 if (dma_debug_disabled())
Shaun Ruffellf797d982009-12-17 18:00:36 -0600991 return;
992
Joerg Roedeled888ae2009-05-22 17:16:04 +0200993 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
994 if (nb == NULL) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200995 pr_err("dma_debug_add_bus: out of memory\n");
Joerg Roedeled888ae2009-05-22 17:16:04 +0200996 return;
997 }
998
999 nb->notifier_call = dma_debug_device_change;
1000
1001 bus_register_notifier(bus, nb);
Joerg Roedel41531c82009-03-16 17:32:14 +01001002}
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001003
Joerg Roedel6bf07872009-01-09 12:54:42 +01001004/*
1005 * Let the architectures decide how many entries should be preallocated.
1006 */
1007void dma_debug_init(u32 num_entries)
1008{
1009 int i;
1010
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001011 /* Do not use dma_debug_initialized here, since we really want to be
1012 * called to set dma_debug_initialized
1013 */
1014 if (global_disable)
Joerg Roedel6bf07872009-01-09 12:54:42 +01001015 return;
1016
1017 for (i = 0; i < HASH_SIZE; ++i) {
1018 INIT_LIST_HEAD(&dma_entry_hash[i].list);
Ingo Molnarb0a5b832009-06-16 16:11:14 +02001019 spin_lock_init(&dma_entry_hash[i].lock);
Joerg Roedel6bf07872009-01-09 12:54:42 +01001020 }
1021
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001022 if (dma_debug_fs_init() != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001023 pr_err("DMA-API: error creating debugfs entries - disabling\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001024 global_disable = true;
1025
1026 return;
1027 }
1028
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001029 if (req_entries)
1030 num_entries = req_entries;
1031
Joerg Roedel6bf07872009-01-09 12:54:42 +01001032 if (prealloc_memory(num_entries) != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001033 pr_err("DMA-API: debugging out of memory error - disabled\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001034 global_disable = true;
1035
1036 return;
1037 }
1038
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +09001039 nr_total_entries = num_free_entries;
1040
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001041 dma_debug_initialized = true;
1042
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001043 pr_info("DMA-API: debugging enabled by kernel config\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001044}
1045
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001046static __init int dma_debug_cmdline(char *str)
1047{
1048 if (!str)
1049 return -EINVAL;
1050
1051 if (strncmp(str, "off", 3) == 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001052 pr_info("DMA-API: debugging disabled on kernel command line\n");
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001053 global_disable = true;
1054 }
1055
1056 return 0;
1057}
1058
1059static __init int dma_debug_entries_cmdline(char *str)
1060{
1061 int res;
1062
1063 if (!str)
1064 return -EINVAL;
1065
1066 res = get_option(&str, &req_entries);
1067
1068 if (!res)
1069 req_entries = 0;
1070
1071 return 0;
1072}
1073
1074__setup("dma_debug=", dma_debug_cmdline);
1075__setup("dma_debug_entries=", dma_debug_entries_cmdline);
1076
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001077static void check_unmap(struct dma_debug_entry *ref)
1078{
1079 struct dma_debug_entry *entry;
1080 struct hash_bucket *bucket;
1081 unsigned long flags;
1082
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001083 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001084 entry = bucket_find_exact(bucket, ref);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001085
1086 if (!entry) {
Alexander Duyck8d640a52013-03-22 15:04:48 -07001087 /* must drop lock before calling dma_mapping_error */
1088 put_hash_bucket(bucket, &flags);
1089
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001090 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
1091 err_printk(ref->dev, NULL,
Alexander Duyck8d640a52013-03-22 15:04:48 -07001092 "DMA-API: device driver tries to free an "
1093 "invalid DMA memory address\n");
1094 } else {
1095 err_printk(ref->dev, NULL,
1096 "DMA-API: device driver tries to free DMA "
1097 "memory it has not allocated [device "
1098 "address=0x%016llx] [size=%llu bytes]\n",
1099 ref->dev_addr, ref->size);
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001100 }
Alexander Duyck8d640a52013-03-22 15:04:48 -07001101 return;
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001102 }
1103
1104 if (ref->size != entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001105 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001106 "DMA memory with different size "
1107 "[device address=0x%016llx] [map size=%llu bytes] "
1108 "[unmap size=%llu bytes]\n",
1109 ref->dev_addr, entry->size, ref->size);
1110 }
1111
1112 if (ref->type != entry->type) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001113 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001114 "DMA memory with wrong function "
1115 "[device address=0x%016llx] [size=%llu bytes] "
1116 "[mapped as %s] [unmapped as %s]\n",
1117 ref->dev_addr, ref->size,
1118 type2name[entry->type], type2name[ref->type]);
1119 } else if ((entry->type == dma_debug_coherent) &&
Dan Williams0abdd7a2014-01-21 15:48:12 -08001120 (phys_addr(ref) != phys_addr(entry))) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001121 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001122 "DMA memory with different CPU address "
1123 "[device address=0x%016llx] [size=%llu bytes] "
Joerg Roedel59a40e702009-10-29 16:25:50 +01001124 "[cpu alloc address=0x%016llx] "
1125 "[cpu free address=0x%016llx]",
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001126 ref->dev_addr, ref->size,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001127 phys_addr(entry),
1128 phys_addr(ref));
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001129 }
1130
1131 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1132 ref->sg_call_ents != entry->sg_call_ents) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001133 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001134 "DMA sg list with different entry count "
1135 "[map count=%d] [unmap count=%d]\n",
1136 entry->sg_call_ents, ref->sg_call_ents);
1137 }
1138
1139 /*
1140 * This may be no bug in reality - but most implementations of the
1141 * DMA API don't handle this properly, so check for it here
1142 */
1143 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001144 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001145 "DMA memory with different direction "
1146 "[device address=0x%016llx] [size=%llu bytes] "
1147 "[mapped with %s] [unmapped with %s]\n",
1148 ref->dev_addr, ref->size,
1149 dir2name[entry->direction],
1150 dir2name[ref->direction]);
1151 }
1152
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001153 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1154 err_printk(ref->dev, entry,
1155 "DMA-API: device driver failed to check map error"
1156 "[device address=0x%016llx] [size=%llu bytes] "
1157 "[mapped as %s]",
1158 ref->dev_addr, ref->size,
1159 type2name[entry->type]);
1160 }
1161
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001162 hash_bucket_del(entry);
1163 dma_entry_free(entry);
1164
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001165 put_hash_bucket(bucket, &flags);
1166}
1167
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001168static void check_for_stack(struct device *dev,
1169 struct page *page, size_t offset)
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001170{
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001171 void *addr;
1172 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1173
1174 if (!stack_vm_area) {
1175 /* Stack is direct-mapped. */
1176 if (PageHighMem(page))
1177 return;
1178 addr = page_address(page) + offset;
1179 if (object_is_on_stack(addr))
1180 err_printk(dev, NULL, "DMA-API: device driver maps memory from stack [addr=%p]\n", addr);
1181 } else {
1182 /* Stack is vmalloced. */
1183 int i;
1184
1185 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1186 if (page != stack_vm_area->pages[i])
1187 continue;
1188
1189 addr = (u8 *)current->stack + i * PAGE_SIZE + offset;
1190 err_printk(dev, NULL, "DMA-API: device driver maps memory from stack [probable addr=%p]\n", addr);
1191 break;
1192 }
1193 }
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001194}
1195
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001196static inline bool overlap(void *addr, unsigned long len, void *start, void *end)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001197{
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001198 unsigned long a1 = (unsigned long)addr;
1199 unsigned long b1 = a1 + len;
1200 unsigned long a2 = (unsigned long)start;
1201 unsigned long b2 = (unsigned long)end;
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001202
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001203 return !(b1 <= a2 || a1 >= b2);
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001204}
1205
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001206static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001207{
Laura Abbottea535e42016-01-14 15:16:50 -08001208 if (overlap(addr, len, _stext, _etext) ||
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001209 overlap(addr, len, __start_rodata, __end_rodata))
1210 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 +01001211}
1212
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001213static void check_sync(struct device *dev,
1214 struct dma_debug_entry *ref,
1215 bool to_cpu)
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001216{
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001217 struct dma_debug_entry *entry;
1218 struct hash_bucket *bucket;
1219 unsigned long flags;
1220
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001221 bucket = get_hash_bucket(ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001222
Neil Hormanc6a21d02011-08-08 15:13:54 -04001223 entry = bucket_find_contain(&bucket, ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001224
1225 if (!entry) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001226 err_printk(dev, NULL, "DMA-API: device driver tries "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001227 "to sync DMA memory it has not allocated "
1228 "[device address=0x%016llx] [size=%llu bytes]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001229 (unsigned long long)ref->dev_addr, ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001230 goto out;
1231 }
1232
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001233 if (ref->size > entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001234 err_printk(dev, entry, "DMA-API: device driver syncs"
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001235 " DMA memory outside allocated range "
1236 "[device address=0x%016llx] "
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001237 "[allocation size=%llu bytes] "
1238 "[sync offset+size=%llu]\n",
1239 entry->dev_addr, entry->size,
1240 ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001241 }
1242
Krzysztof Halasa42d53b42010-01-08 14:42:36 -08001243 if (entry->direction == DMA_BIDIRECTIONAL)
1244 goto out;
1245
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001246 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001247 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001248 "DMA memory with different direction "
1249 "[device address=0x%016llx] [size=%llu bytes] "
1250 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001251 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001252 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001253 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001254 }
1255
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001256 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001257 !(ref->direction == DMA_TO_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001258 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001259 "device read-only DMA memory for cpu "
1260 "[device address=0x%016llx] [size=%llu bytes] "
1261 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001262 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001263 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001264 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001265
1266 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001267 !(ref->direction == DMA_FROM_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001268 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001269 "device write-only DMA memory to device "
1270 "[device address=0x%016llx] [size=%llu bytes] "
1271 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001272 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001273 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001274 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001275
Robin Murphy7f830642015-11-06 16:32:55 -08001276 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1277 ref->sg_call_ents != entry->sg_call_ents) {
1278 err_printk(ref->dev, entry, "DMA-API: device driver syncs "
1279 "DMA sg list with different entry count "
1280 "[map count=%d] [sync count=%d]\n",
1281 entry->sg_call_ents, ref->sg_call_ents);
1282 }
1283
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001284out:
1285 put_hash_bucket(bucket, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001286}
1287
Joerg Roedelf62bc982009-01-09 14:14:49 +01001288void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1289 size_t size, int direction, dma_addr_t dma_addr,
1290 bool map_single)
1291{
1292 struct dma_debug_entry *entry;
1293
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001294 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001295 return;
1296
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001297 if (dma_mapping_error(dev, dma_addr))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001298 return;
1299
1300 entry = dma_entry_alloc();
1301 if (!entry)
1302 return;
1303
1304 entry->dev = dev;
1305 entry->type = dma_debug_page;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001306 entry->pfn = page_to_pfn(page);
1307 entry->offset = offset,
Joerg Roedelf62bc982009-01-09 14:14:49 +01001308 entry->dev_addr = dma_addr;
1309 entry->size = size;
1310 entry->direction = direction;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001311 entry->map_err_type = MAP_ERR_NOT_CHECKED;
Joerg Roedelf62bc982009-01-09 14:14:49 +01001312
Joerg Roedel9537a482009-03-23 15:35:08 +01001313 if (map_single)
Joerg Roedelf62bc982009-01-09 14:14:49 +01001314 entry->type = dma_debug_single;
Joerg Roedel9537a482009-03-23 15:35:08 +01001315
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001316 check_for_stack(dev, page, offset);
1317
Joerg Roedel9537a482009-03-23 15:35:08 +01001318 if (!PageHighMem(page)) {
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001319 void *addr = page_address(page) + offset;
1320
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001321 check_for_illegal_area(dev, addr, size);
Joerg Roedelf62bc982009-01-09 14:14:49 +01001322 }
1323
1324 add_dma_entry(entry);
1325}
1326EXPORT_SYMBOL(debug_dma_map_page);
1327
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001328void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1329{
1330 struct dma_debug_entry ref;
1331 struct dma_debug_entry *entry;
1332 struct hash_bucket *bucket;
1333 unsigned long flags;
1334
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001335 if (unlikely(dma_debug_disabled()))
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001336 return;
1337
1338 ref.dev = dev;
1339 ref.dev_addr = dma_addr;
1340 bucket = get_hash_bucket(&ref, &flags);
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001341
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001342 list_for_each_entry(entry, &bucket->list, list) {
1343 if (!exact_match(&ref, entry))
1344 continue;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001345
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001346 /*
1347 * The same physical address can be mapped multiple
1348 * times. Without a hardware IOMMU this results in the
1349 * same device addresses being put into the dma-debug
1350 * hash multiple times too. This can result in false
1351 * positives being reported. Therefore we implement a
1352 * best-fit algorithm here which updates the first entry
1353 * from the hash which fits the reference value and is
1354 * not currently listed as being checked.
1355 */
1356 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1357 entry->map_err_type = MAP_ERR_CHECKED;
1358 break;
1359 }
1360 }
1361
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001362 put_hash_bucket(bucket, &flags);
1363}
1364EXPORT_SYMBOL(debug_dma_mapping_error);
1365
Joerg Roedelf62bc982009-01-09 14:14:49 +01001366void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
1367 size_t size, int direction, bool map_single)
1368{
1369 struct dma_debug_entry ref = {
1370 .type = dma_debug_page,
1371 .dev = dev,
1372 .dev_addr = addr,
1373 .size = size,
1374 .direction = direction,
1375 };
1376
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001377 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001378 return;
1379
1380 if (map_single)
1381 ref.type = dma_debug_single;
1382
1383 check_unmap(&ref);
1384}
1385EXPORT_SYMBOL(debug_dma_unmap_page);
1386
Joerg Roedel972aa452009-01-09 14:19:54 +01001387void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1388 int nents, int mapped_ents, int direction)
1389{
1390 struct dma_debug_entry *entry;
1391 struct scatterlist *s;
1392 int i;
1393
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001394 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001395 return;
1396
1397 for_each_sg(sg, s, mapped_ents, i) {
1398 entry = dma_entry_alloc();
1399 if (!entry)
1400 return;
1401
1402 entry->type = dma_debug_sg;
1403 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001404 entry->pfn = page_to_pfn(sg_page(s));
1405 entry->offset = s->offset,
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001406 entry->size = sg_dma_len(s);
FUJITA Tomonori15aedea42009-05-27 09:43:01 +09001407 entry->dev_addr = sg_dma_address(s);
Joerg Roedel972aa452009-01-09 14:19:54 +01001408 entry->direction = direction;
1409 entry->sg_call_ents = nents;
1410 entry->sg_mapped_ents = mapped_ents;
1411
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001412 check_for_stack(dev, sg_page(s), s->offset);
1413
Joerg Roedel9537a482009-03-23 15:35:08 +01001414 if (!PageHighMem(sg_page(s))) {
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001415 check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s));
Joerg Roedel9537a482009-03-23 15:35:08 +01001416 }
Joerg Roedel972aa452009-01-09 14:19:54 +01001417
1418 add_dma_entry(entry);
1419 }
1420}
1421EXPORT_SYMBOL(debug_dma_map_sg);
1422
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001423static int get_nr_mapped_entries(struct device *dev,
1424 struct dma_debug_entry *ref)
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001425{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001426 struct dma_debug_entry *entry;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001427 struct hash_bucket *bucket;
1428 unsigned long flags;
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001429 int mapped_ents;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001430
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001431 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001432 entry = bucket_find_exact(bucket, ref);
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001433 mapped_ents = 0;
1434
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001435 if (entry)
1436 mapped_ents = entry->sg_mapped_ents;
1437 put_hash_bucket(bucket, &flags);
1438
1439 return mapped_ents;
1440}
1441
Joerg Roedel972aa452009-01-09 14:19:54 +01001442void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1443 int nelems, int dir)
1444{
Joerg Roedel972aa452009-01-09 14:19:54 +01001445 struct scatterlist *s;
1446 int mapped_ents = 0, i;
Joerg Roedel972aa452009-01-09 14:19:54 +01001447
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001448 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001449 return;
1450
1451 for_each_sg(sglist, s, nelems, i) {
1452
1453 struct dma_debug_entry ref = {
1454 .type = dma_debug_sg,
1455 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001456 .pfn = page_to_pfn(sg_page(s)),
1457 .offset = s->offset,
FUJITA Tomonori15aedea42009-05-27 09:43:01 +09001458 .dev_addr = sg_dma_address(s),
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001459 .size = sg_dma_len(s),
Joerg Roedel972aa452009-01-09 14:19:54 +01001460 .direction = dir,
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001461 .sg_call_ents = nelems,
Joerg Roedel972aa452009-01-09 14:19:54 +01001462 };
1463
1464 if (mapped_ents && i >= mapped_ents)
1465 break;
1466
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001467 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001468 mapped_ents = get_nr_mapped_entries(dev, &ref);
Joerg Roedel972aa452009-01-09 14:19:54 +01001469
1470 check_unmap(&ref);
1471 }
1472}
1473EXPORT_SYMBOL(debug_dma_unmap_sg);
1474
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001475void debug_dma_alloc_coherent(struct device *dev, size_t size,
1476 dma_addr_t dma_addr, void *virt)
1477{
1478 struct dma_debug_entry *entry;
1479
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001480 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001481 return;
1482
1483 if (unlikely(virt == NULL))
1484 return;
1485
1486 entry = dma_entry_alloc();
1487 if (!entry)
1488 return;
1489
1490 entry->type = dma_debug_coherent;
1491 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001492 entry->pfn = page_to_pfn(virt_to_page(virt));
Daniel Mentz0354aec2015-12-15 17:38:48 -08001493 entry->offset = (size_t) virt & ~PAGE_MASK;
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001494 entry->size = size;
1495 entry->dev_addr = dma_addr;
1496 entry->direction = DMA_BIDIRECTIONAL;
1497
1498 add_dma_entry(entry);
1499}
1500EXPORT_SYMBOL(debug_dma_alloc_coherent);
1501
1502void debug_dma_free_coherent(struct device *dev, size_t size,
1503 void *virt, dma_addr_t addr)
1504{
1505 struct dma_debug_entry ref = {
1506 .type = dma_debug_coherent,
1507 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001508 .pfn = page_to_pfn(virt_to_page(virt)),
Daniel Mentz0354aec2015-12-15 17:38:48 -08001509 .offset = (size_t) virt & ~PAGE_MASK,
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001510 .dev_addr = addr,
1511 .size = size,
1512 .direction = DMA_BIDIRECTIONAL,
1513 };
1514
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001515 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001516 return;
1517
1518 check_unmap(&ref);
1519}
1520EXPORT_SYMBOL(debug_dma_free_coherent);
1521
Joerg Roedelb9d23172009-01-09 14:43:04 +01001522void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1523 size_t size, int direction)
1524{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001525 struct dma_debug_entry ref;
1526
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001527 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001528 return;
1529
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001530 ref.type = dma_debug_single;
1531 ref.dev = dev;
1532 ref.dev_addr = dma_handle;
1533 ref.size = size;
1534 ref.direction = direction;
1535 ref.sg_call_ents = 0;
1536
1537 check_sync(dev, &ref, true);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001538}
1539EXPORT_SYMBOL(debug_dma_sync_single_for_cpu);
1540
1541void debug_dma_sync_single_for_device(struct device *dev,
1542 dma_addr_t dma_handle, size_t size,
1543 int direction)
1544{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001545 struct dma_debug_entry ref;
1546
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001547 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001548 return;
1549
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001550 ref.type = dma_debug_single;
1551 ref.dev = dev;
1552 ref.dev_addr = dma_handle;
1553 ref.size = size;
1554 ref.direction = direction;
1555 ref.sg_call_ents = 0;
1556
1557 check_sync(dev, &ref, false);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001558}
1559EXPORT_SYMBOL(debug_dma_sync_single_for_device);
1560
Joerg Roedel948408b2009-01-09 14:55:38 +01001561void debug_dma_sync_single_range_for_cpu(struct device *dev,
1562 dma_addr_t dma_handle,
1563 unsigned long offset, size_t size,
1564 int direction)
1565{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001566 struct dma_debug_entry ref;
1567
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001568 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001569 return;
1570
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001571 ref.type = dma_debug_single;
1572 ref.dev = dev;
1573 ref.dev_addr = dma_handle;
1574 ref.size = offset + size;
1575 ref.direction = direction;
1576 ref.sg_call_ents = 0;
1577
1578 check_sync(dev, &ref, true);
Joerg Roedel948408b2009-01-09 14:55:38 +01001579}
1580EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu);
1581
1582void debug_dma_sync_single_range_for_device(struct device *dev,
1583 dma_addr_t dma_handle,
1584 unsigned long offset,
1585 size_t size, int direction)
1586{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001587 struct dma_debug_entry ref;
1588
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001589 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001590 return;
1591
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001592 ref.type = dma_debug_single;
1593 ref.dev = dev;
1594 ref.dev_addr = dma_handle;
1595 ref.size = offset + size;
1596 ref.direction = direction;
1597 ref.sg_call_ents = 0;
1598
1599 check_sync(dev, &ref, false);
Joerg Roedel948408b2009-01-09 14:55:38 +01001600}
1601EXPORT_SYMBOL(debug_dma_sync_single_range_for_device);
1602
Joerg Roedela31fba52009-01-09 15:01:12 +01001603void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1604 int nelems, int direction)
1605{
1606 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001607 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001608
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001609 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001610 return;
1611
1612 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001613
1614 struct dma_debug_entry ref = {
1615 .type = dma_debug_sg,
1616 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001617 .pfn = page_to_pfn(sg_page(s)),
1618 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001619 .dev_addr = sg_dma_address(s),
1620 .size = sg_dma_len(s),
1621 .direction = direction,
1622 .sg_call_ents = nelems,
1623 };
1624
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001625 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001626 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001627
1628 if (i >= mapped_ents)
1629 break;
1630
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001631 check_sync(dev, &ref, true);
Joerg Roedela31fba52009-01-09 15:01:12 +01001632 }
1633}
1634EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu);
1635
1636void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1637 int nelems, int direction)
1638{
1639 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001640 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001641
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001642 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001643 return;
1644
1645 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001646
1647 struct dma_debug_entry ref = {
1648 .type = dma_debug_sg,
1649 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001650 .pfn = page_to_pfn(sg_page(s)),
1651 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001652 .dev_addr = sg_dma_address(s),
1653 .size = sg_dma_len(s),
1654 .direction = direction,
1655 .sg_call_ents = nelems,
1656 };
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001657 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001658 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001659
1660 if (i >= mapped_ents)
1661 break;
1662
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001663 check_sync(dev, &ref, false);
Joerg Roedela31fba52009-01-09 15:01:12 +01001664 }
1665}
1666EXPORT_SYMBOL(debug_dma_sync_sg_for_device);
1667
Joerg Roedel1745de52009-05-22 21:49:51 +02001668static int __init dma_debug_driver_setup(char *str)
1669{
1670 int i;
1671
1672 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1673 current_driver_name[i] = *str;
1674 if (*str == 0)
1675 break;
1676 }
1677
1678 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001679 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1680 current_driver_name);
Joerg Roedel1745de52009-05-22 21:49:51 +02001681
1682
1683 return 1;
1684}
1685__setup("dma_debug_driver=", dma_debug_driver_setup);