blob: 942adf13418d058cee2260d2e0322fcc545a0988 [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>
Ingo Molnar29930022017-02-08 18:51:36 +010022#include <linux/sched/task.h>
David Woodhouse6c132d12009-01-19 16:52:39 +010023#include <linux/stacktrace.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010024#include <linux/dma-debug.h>
Joerg Roedel30dfa902009-01-09 12:34:49 +010025#include <linux/spinlock.h>
Andy Lutomirskib4a0f532016-08-11 02:35:22 -070026#include <linux/vmalloc.h>
Joerg Roedel788dcfa2009-01-09 13:13:27 +010027#include <linux/debugfs.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020028#include <linux/uaccess.h>
Paul Gortmaker23a7bfa2011-07-01 16:23:59 -040029#include <linux/export.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010030#include <linux/device.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010031#include <linux/types.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010032#include <linux/sched.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020033#include <linux/ctype.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010034#include <linux/list.h>
Joerg Roedel6bf07872009-01-09 12:54:42 +010035#include <linux/slab.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010036
Joerg Roedel2e34bde2009-03-16 16:51:55 +010037#include <asm/sections.h>
38
Joerg Roedel30dfa902009-01-09 12:34:49 +010039#define HASH_SIZE 1024ULL
40#define HASH_FN_SHIFT 13
41#define HASH_FN_MASK (HASH_SIZE - 1)
42
Joerg Roedelf2f45e52009-01-09 12:19:52 +010043enum {
44 dma_debug_single,
45 dma_debug_page,
46 dma_debug_sg,
47 dma_debug_coherent,
Niklas Söderlund0e74b342016-08-10 13:22:15 +020048 dma_debug_resource,
Joerg Roedelf2f45e52009-01-09 12:19:52 +010049};
50
Shuah Khan6c9c6d62012-10-08 11:08:06 -060051enum map_err_types {
52 MAP_ERR_CHECK_NOT_APPLICABLE,
53 MAP_ERR_NOT_CHECKED,
54 MAP_ERR_CHECKED,
55};
56
David Woodhouse6c132d12009-01-19 16:52:39 +010057#define DMA_DEBUG_STACKTRACE_ENTRIES 5
58
Dan Williams0abdd7a2014-01-21 15:48:12 -080059/**
60 * struct dma_debug_entry - track a dma_map* or dma_alloc_coherent mapping
61 * @list: node on pre-allocated free_entries list
62 * @dev: 'dev' argument to dma_map_{page|single|sg} or dma_alloc_coherent
63 * @type: single, page, sg, coherent
64 * @pfn: page frame of the start address
65 * @offset: offset of mapping relative to pfn
66 * @size: length of the mapping
67 * @direction: enum dma_data_direction
68 * @sg_call_ents: 'nents' from dma_map_sg
69 * @sg_mapped_ents: 'mapped_ents' from dma_map_sg
70 * @map_err_type: track whether dma_mapping_error() was checked
71 * @stacktrace: support backtraces when a violation is detected
72 */
Joerg Roedelf2f45e52009-01-09 12:19:52 +010073struct dma_debug_entry {
74 struct list_head list;
75 struct device *dev;
76 int type;
Dan Williams0abdd7a2014-01-21 15:48:12 -080077 unsigned long pfn;
78 size_t offset;
Joerg Roedelf2f45e52009-01-09 12:19:52 +010079 u64 dev_addr;
80 u64 size;
81 int direction;
82 int sg_call_ents;
83 int sg_mapped_ents;
Shuah Khan6c9c6d62012-10-08 11:08:06 -060084 enum map_err_types map_err_type;
David Woodhouse6c132d12009-01-19 16:52:39 +010085#ifdef CONFIG_STACKTRACE
86 struct stack_trace stacktrace;
87 unsigned long st_entries[DMA_DEBUG_STACKTRACE_ENTRIES];
88#endif
Joerg Roedelf2f45e52009-01-09 12:19:52 +010089};
90
Neil Hormanc6a21d02011-08-08 15:13:54 -040091typedef bool (*match_fn)(struct dma_debug_entry *, struct dma_debug_entry *);
92
Joerg Roedel30dfa902009-01-09 12:34:49 +010093struct hash_bucket {
94 struct list_head list;
95 spinlock_t lock;
Joerg Roedel2d62ece2009-01-09 14:10:26 +010096} ____cacheline_aligned_in_smp;
Joerg Roedel30dfa902009-01-09 12:34:49 +010097
98/* Hash list to save the allocated dma addresses */
99static struct hash_bucket dma_entry_hash[HASH_SIZE];
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100100/* List of pre-allocated dma_debug_entry's */
101static LIST_HEAD(free_entries);
102/* Lock for the list above */
103static DEFINE_SPINLOCK(free_entries_lock);
104
105/* Global disable flag - will be set in case of an error */
Viresh Kumar621a5f72015-09-26 15:04:07 -0700106static bool global_disable __read_mostly;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100107
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -0800108/* Early initialization disable flag, set at the end of dma_debug_init */
109static bool dma_debug_initialized __read_mostly;
110
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800111static inline bool dma_debug_disabled(void)
112{
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -0800113 return global_disable || !dma_debug_initialized;
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800114}
115
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100116/* Global error count */
117static u32 error_count;
118
119/* Global error show enable*/
120static u32 show_all_errors __read_mostly;
121/* Number of errors to show */
122static u32 show_num_errors = 1;
123
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100124static u32 num_free_entries;
125static u32 min_free_entries;
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900126static u32 nr_total_entries;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100127
Joerg Roedel59d3daa2009-01-09 13:01:56 +0100128/* number of preallocated entries requested by kernel cmdline */
129static u32 req_entries;
130
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100131/* debugfs dentry's for the stuff above */
132static struct dentry *dma_debug_dent __read_mostly;
133static struct dentry *global_disable_dent __read_mostly;
134static struct dentry *error_count_dent __read_mostly;
135static struct dentry *show_all_errors_dent __read_mostly;
136static struct dentry *show_num_errors_dent __read_mostly;
137static struct dentry *num_free_entries_dent __read_mostly;
138static struct dentry *min_free_entries_dent __read_mostly;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200139static struct dentry *filter_dent __read_mostly;
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100140
Joerg Roedel2e507d82009-05-22 18:24:20 +0200141/* per-driver filter related state */
142
143#define NAME_MAX_LEN 64
144
145static char current_driver_name[NAME_MAX_LEN] __read_mostly;
146static struct device_driver *current_driver __read_mostly;
147
148static DEFINE_RWLOCK(driver_name_lock);
Joerg Roedel30dfa902009-01-09 12:34:49 +0100149
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600150static const char *const maperr2str[] = {
151 [MAP_ERR_CHECK_NOT_APPLICABLE] = "dma map error check not applicable",
152 [MAP_ERR_NOT_CHECKED] = "dma map error not checked",
153 [MAP_ERR_CHECKED] = "dma map error checked",
154};
155
Niklas Söderlund0e74b342016-08-10 13:22:15 +0200156static const char *type2name[5] = { "single", "page",
157 "scather-gather", "coherent",
158 "resource" };
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100159
160static const char *dir2name[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
161 "DMA_FROM_DEVICE", "DMA_NONE" };
162
163/*
164 * The access to some variables in this macro is racy. We can't use atomic_t
165 * here because all these variables are exported to debugfs. Some of them even
166 * writeable. This is also the reason why a lock won't help much. But anyway,
167 * the races are no big deal. Here is why:
168 *
169 * error_count: the addition is racy, but the worst thing that can happen is
170 * that we don't count some errors
171 * show_num_errors: the subtraction is racy. Also no big deal because in
172 * worst case this will result in one warning more in the
173 * system log than the user configured. This variable is
174 * writeable via debugfs.
175 */
David Woodhouse6c132d12009-01-19 16:52:39 +0100176static inline void dump_entry_trace(struct dma_debug_entry *entry)
177{
178#ifdef CONFIG_STACKTRACE
179 if (entry) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200180 pr_warning("Mapped at:\n");
David Woodhouse6c132d12009-01-19 16:52:39 +0100181 print_stack_trace(&entry->stacktrace, 0);
182 }
183#endif
184}
185
Joerg Roedel2e507d82009-05-22 18:24:20 +0200186static bool driver_filter(struct device *dev)
187{
Joerg Roedel0bf84122009-06-08 15:53:46 +0200188 struct device_driver *drv;
189 unsigned long flags;
190 bool ret;
191
Joerg Roedel2e507d82009-05-22 18:24:20 +0200192 /* driver filter off */
193 if (likely(!current_driver_name[0]))
194 return true;
195
196 /* driver filter on and initialized */
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400197 if (current_driver && dev && dev->driver == current_driver)
Joerg Roedel2e507d82009-05-22 18:24:20 +0200198 return true;
199
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400200 /* driver filter on, but we can't filter on a NULL device... */
201 if (!dev)
202 return false;
203
Joerg Roedel0bf84122009-06-08 15:53:46 +0200204 if (current_driver || !current_driver_name[0])
205 return false;
206
Joerg Roedel2e507d82009-05-22 18:24:20 +0200207 /* driver filter on but not yet initialized */
Alan Sternf3ff9242012-01-24 13:35:24 -0500208 drv = dev->driver;
Joerg Roedel0bf84122009-06-08 15:53:46 +0200209 if (!drv)
210 return false;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200211
Joerg Roedel0bf84122009-06-08 15:53:46 +0200212 /* lock to protect against change of current_driver_name */
213 read_lock_irqsave(&driver_name_lock, flags);
Joerg Roedel2e507d82009-05-22 18:24:20 +0200214
Joerg Roedel0bf84122009-06-08 15:53:46 +0200215 ret = false;
216 if (drv->name &&
217 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
218 current_driver = drv;
219 ret = true;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200220 }
221
Joerg Roedel0bf84122009-06-08 15:53:46 +0200222 read_unlock_irqrestore(&driver_name_lock, flags);
Joerg Roedel0bf84122009-06-08 15:53:46 +0200223
224 return ret;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200225}
226
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400227#define err_printk(dev, entry, format, arg...) do { \
228 error_count += 1; \
229 if (driver_filter(dev) && \
230 (show_all_errors || show_num_errors > 0)) { \
231 WARN(1, "%s %s: " format, \
232 dev ? dev_driver_string(dev) : "NULL", \
233 dev ? dev_name(dev) : "NULL", ## arg); \
234 dump_entry_trace(entry); \
235 } \
236 if (!show_all_errors && show_num_errors > 0) \
237 show_num_errors -= 1; \
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100238 } while (0);
239
Joerg Roedel30dfa902009-01-09 12:34:49 +0100240/*
241 * Hash related functions
242 *
243 * Every DMA-API request is saved into a struct dma_debug_entry. To
244 * have quick access to these structs they are stored into a hash.
245 */
246static int hash_fn(struct dma_debug_entry *entry)
247{
248 /*
249 * Hash function is based on the dma address.
250 * We use bits 20-27 here as the index into the hash
251 */
252 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
253}
254
255/*
256 * Request exclusive access to a hash bucket for a given dma_debug_entry.
257 */
258static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
259 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700260 __acquires(&dma_entry_hash[idx].lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100261{
262 int idx = hash_fn(entry);
263 unsigned long __flags;
264
265 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
266 *flags = __flags;
267 return &dma_entry_hash[idx];
268}
269
270/*
271 * Give up exclusive access to the hash bucket
272 */
273static void put_hash_bucket(struct hash_bucket *bucket,
274 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700275 __releases(&bucket->lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100276{
277 unsigned long __flags = *flags;
278
279 spin_unlock_irqrestore(&bucket->lock, __flags);
280}
281
Neil Hormanc6a21d02011-08-08 15:13:54 -0400282static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
283{
Thomas Jarosch91ec37c2011-11-17 20:31:02 +0100284 return ((a->dev_addr == b->dev_addr) &&
Neil Hormanc6a21d02011-08-08 15:13:54 -0400285 (a->dev == b->dev)) ? true : false;
286}
287
288static bool containing_match(struct dma_debug_entry *a,
289 struct dma_debug_entry *b)
290{
291 if (a->dev != b->dev)
292 return false;
293
294 if ((b->dev_addr <= a->dev_addr) &&
295 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
296 return true;
297
298 return false;
299}
300
Joerg Roedel30dfa902009-01-09 12:34:49 +0100301/*
302 * Search a given entry in the hash bucket list
303 */
Neil Hormanc6a21d02011-08-08 15:13:54 -0400304static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
305 struct dma_debug_entry *ref,
306 match_fn match)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100307{
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200308 struct dma_debug_entry *entry, *ret = NULL;
Ming Leife73fbe2012-10-19 13:57:01 -0700309 int matches = 0, match_lvl, last_lvl = -1;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100310
311 list_for_each_entry(entry, &bucket->list, list) {
Neil Hormanc6a21d02011-08-08 15:13:54 -0400312 if (!match(ref, entry))
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200313 continue;
314
315 /*
316 * Some drivers map the same physical address multiple
317 * times. Without a hardware IOMMU this results in the
318 * same device addresses being put into the dma-debug
319 * hash multiple times too. This can result in false
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200320 * positives being reported. Therefore we implement a
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200321 * best-fit algorithm here which returns the entry from
322 * the hash which fits best to the reference value
323 * instead of the first-fit.
324 */
325 matches += 1;
326 match_lvl = 0;
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200327 entry->size == ref->size ? ++match_lvl : 0;
328 entry->type == ref->type ? ++match_lvl : 0;
329 entry->direction == ref->direction ? ++match_lvl : 0;
330 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200331
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200332 if (match_lvl == 4) {
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200333 /* perfect-fit - return the result */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100334 return entry;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200335 } else if (match_lvl > last_lvl) {
336 /*
337 * We found an entry that fits better then the
Ming Leife73fbe2012-10-19 13:57:01 -0700338 * previous one or it is the 1st match.
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200339 */
340 last_lvl = match_lvl;
341 ret = entry;
342 }
Joerg Roedel30dfa902009-01-09 12:34:49 +0100343 }
344
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200345 /*
346 * If we have multiple matches but no perfect-fit, just return
347 * NULL.
348 */
349 ret = (matches == 1) ? ret : NULL;
350
351 return ret;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100352}
353
Neil Hormanc6a21d02011-08-08 15:13:54 -0400354static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
355 struct dma_debug_entry *ref)
356{
357 return __hash_bucket_find(bucket, ref, exact_match);
358}
359
360static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
361 struct dma_debug_entry *ref,
362 unsigned long *flags)
363{
364
365 unsigned int max_range = dma_get_max_seg_size(ref->dev);
366 struct dma_debug_entry *entry, index = *ref;
367 unsigned int range = 0;
368
369 while (range <= max_range) {
Sebastian Otta7a2c022015-04-16 12:43:25 -0700370 entry = __hash_bucket_find(*bucket, ref, containing_match);
Neil Hormanc6a21d02011-08-08 15:13:54 -0400371
372 if (entry)
373 return entry;
374
375 /*
376 * Nothing found, go back a hash bucket
377 */
378 put_hash_bucket(*bucket, flags);
379 range += (1 << HASH_FN_SHIFT);
380 index.dev_addr -= (1 << HASH_FN_SHIFT);
381 *bucket = get_hash_bucket(&index, flags);
382 }
383
384 return NULL;
385}
386
Joerg Roedel30dfa902009-01-09 12:34:49 +0100387/*
388 * Add an entry to a hash bucket
389 */
390static void hash_bucket_add(struct hash_bucket *bucket,
391 struct dma_debug_entry *entry)
392{
393 list_add_tail(&entry->list, &bucket->list);
394}
395
396/*
397 * Remove entry from a hash bucket list
398 */
399static void hash_bucket_del(struct dma_debug_entry *entry)
400{
401 list_del(&entry->list);
402}
403
Dan Williams0abdd7a2014-01-21 15:48:12 -0800404static unsigned long long phys_addr(struct dma_debug_entry *entry)
405{
Niklas Söderlund0e74b342016-08-10 13:22:15 +0200406 if (entry->type == dma_debug_resource)
407 return __pfn_to_phys(entry->pfn) + entry->offset;
408
Dan Williams0abdd7a2014-01-21 15:48:12 -0800409 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
410}
411
Joerg Roedel30dfa902009-01-09 12:34:49 +0100412/*
David Woodhouseac26c182009-02-12 16:19:13 +0100413 * Dump mapping entries for debugging purposes
414 */
415void debug_dma_dump_mappings(struct device *dev)
416{
417 int idx;
418
419 for (idx = 0; idx < HASH_SIZE; idx++) {
420 struct hash_bucket *bucket = &dma_entry_hash[idx];
421 struct dma_debug_entry *entry;
422 unsigned long flags;
423
424 spin_lock_irqsave(&bucket->lock, flags);
425
426 list_for_each_entry(entry, &bucket->list, list) {
427 if (!dev || dev == entry->dev) {
428 dev_info(entry->dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800429 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
David Woodhouseac26c182009-02-12 16:19:13 +0100430 type2name[entry->type], idx,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800431 phys_addr(entry), entry->pfn,
David Woodhouseac26c182009-02-12 16:19:13 +0100432 entry->dev_addr, entry->size,
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600433 dir2name[entry->direction],
434 maperr2str[entry->map_err_type]);
David Woodhouseac26c182009-02-12 16:19:13 +0100435 }
436 }
437
438 spin_unlock_irqrestore(&bucket->lock, flags);
439 }
440}
441EXPORT_SYMBOL(debug_dma_dump_mappings);
442
443/*
Dan Williams3b7a6412014-03-03 15:38:21 -0800444 * For each mapping (initial cacheline in the case of
445 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
446 * scatterlist, or the cacheline specified in dma_map_single) insert
447 * into this tree using the cacheline as the key. At
Dan Williams0abdd7a2014-01-21 15:48:12 -0800448 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
Dan Williams3b7a6412014-03-03 15:38:21 -0800449 * the entry already exists at insertion time add a tag as a reference
Dan Williams0abdd7a2014-01-21 15:48:12 -0800450 * count for the overlapping mappings. For now, the overlap tracking
Dan Williams3b7a6412014-03-03 15:38:21 -0800451 * just ensures that 'unmaps' balance 'maps' before marking the
452 * cacheline idle, but we should also be flagging overlaps as an API
453 * violation.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800454 *
455 * Memory usage is mostly constrained by the maximum number of available
456 * dma-debug entries in that we need a free dma_debug_entry before
Dan Williams3b7a6412014-03-03 15:38:21 -0800457 * inserting into the tree. In the case of dma_map_page and
458 * dma_alloc_coherent there is only one dma_debug_entry and one
459 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
460 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
461 * entries into the tree.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800462 *
463 * At any time debug_dma_assert_idle() can be called to trigger a
Dan Williams3b7a6412014-03-03 15:38:21 -0800464 * warning if any cachelines in the given page are in the active set.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800465 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800466static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800467static DEFINE_SPINLOCK(radix_lock);
Dan Williams3b7a6412014-03-03 15:38:21 -0800468#define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
469#define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
470#define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800471
Dan Williams3b7a6412014-03-03 15:38:21 -0800472static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
473{
474 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
475 (entry->offset >> L1_CACHE_SHIFT);
476}
477
478static int active_cacheline_read_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800479{
480 int overlap = 0, i;
481
482 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
Dan Williams3b7a6412014-03-03 15:38:21 -0800483 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
Dan Williams0abdd7a2014-01-21 15:48:12 -0800484 overlap |= 1 << i;
485 return overlap;
486}
487
Dan Williams3b7a6412014-03-03 15:38:21 -0800488static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800489{
490 int i;
491
Dan Williams3b7a6412014-03-03 15:38:21 -0800492 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
Dan Williams59f2e7d2014-01-29 14:05:53 -0800493 return overlap;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800494
495 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
496 if (overlap & 1 << i)
Dan Williams3b7a6412014-03-03 15:38:21 -0800497 radix_tree_tag_set(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800498 else
Dan Williams3b7a6412014-03-03 15:38:21 -0800499 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800500
501 return overlap;
502}
503
Dan Williams3b7a6412014-03-03 15:38:21 -0800504static void active_cacheline_inc_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800505{
Dan Williams3b7a6412014-03-03 15:38:21 -0800506 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800507
Dan Williams3b7a6412014-03-03 15:38:21 -0800508 overlap = active_cacheline_set_overlap(cln, ++overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800509
510 /* If we overflowed the overlap counter then we're potentially
511 * leaking dma-mappings. Otherwise, if maps and unmaps are
512 * balanced then this overflow may cause false negatives in
Dan Williams3b7a6412014-03-03 15:38:21 -0800513 * debug_dma_assert_idle() as the cacheline may be marked idle
Dan Williams0abdd7a2014-01-21 15:48:12 -0800514 * prematurely.
515 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800516 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
517 "DMA-API: exceeded %d overlapping mappings of cacheline %pa\n",
518 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800519}
520
Dan Williams3b7a6412014-03-03 15:38:21 -0800521static int active_cacheline_dec_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800522{
Dan Williams3b7a6412014-03-03 15:38:21 -0800523 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800524
Dan Williams3b7a6412014-03-03 15:38:21 -0800525 return active_cacheline_set_overlap(cln, --overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800526}
527
Dan Williams3b7a6412014-03-03 15:38:21 -0800528static int active_cacheline_insert(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800529{
Dan Williams3b7a6412014-03-03 15:38:21 -0800530 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800531 unsigned long flags;
532 int rc;
533
Dan Williams3b7a6412014-03-03 15:38:21 -0800534 /* If the device is not writing memory then we don't have any
535 * concerns about the cpu consuming stale data. This mitigates
536 * legitimate usages of overlapping mappings.
537 */
538 if (entry->direction == DMA_TO_DEVICE)
539 return 0;
540
Dan Williams0abdd7a2014-01-21 15:48:12 -0800541 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800542 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800543 if (rc == -EEXIST)
Dan Williams3b7a6412014-03-03 15:38:21 -0800544 active_cacheline_inc_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800545 spin_unlock_irqrestore(&radix_lock, flags);
546
547 return rc;
548}
549
Dan Williams3b7a6412014-03-03 15:38:21 -0800550static void active_cacheline_remove(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800551{
Dan Williams3b7a6412014-03-03 15:38:21 -0800552 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800553 unsigned long flags;
554
Dan Williams3b7a6412014-03-03 15:38:21 -0800555 /* ...mirror the insert case */
556 if (entry->direction == DMA_TO_DEVICE)
557 return;
558
Dan Williams0abdd7a2014-01-21 15:48:12 -0800559 spin_lock_irqsave(&radix_lock, flags);
Dan Williams59f2e7d2014-01-29 14:05:53 -0800560 /* since we are counting overlaps the final put of the
Dan Williams3b7a6412014-03-03 15:38:21 -0800561 * cacheline will occur when the overlap count is 0.
562 * active_cacheline_dec_overlap() returns -1 in that case
Dan Williams59f2e7d2014-01-29 14:05:53 -0800563 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800564 if (active_cacheline_dec_overlap(cln) < 0)
565 radix_tree_delete(&dma_active_cacheline, cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800566 spin_unlock_irqrestore(&radix_lock, flags);
567}
568
569/**
570 * debug_dma_assert_idle() - assert that a page is not undergoing dma
Dan Williams3b7a6412014-03-03 15:38:21 -0800571 * @page: page to lookup in the dma_active_cacheline tree
Dan Williams0abdd7a2014-01-21 15:48:12 -0800572 *
573 * Place a call to this routine in cases where the cpu touching the page
574 * before the dma completes (page is dma_unmapped) will lead to data
575 * corruption.
576 */
577void debug_dma_assert_idle(struct page *page)
578{
Dan Williams3b7a6412014-03-03 15:38:21 -0800579 static struct dma_debug_entry *ents[CACHELINES_PER_PAGE];
580 struct dma_debug_entry *entry = NULL;
581 void **results = (void **) &ents;
582 unsigned int nents, i;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800583 unsigned long flags;
Dan Williams3b7a6412014-03-03 15:38:21 -0800584 phys_addr_t cln;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800585
Haggai Eranc9d120b2015-07-17 16:24:06 -0700586 if (dma_debug_disabled())
587 return;
588
Dan Williams0abdd7a2014-01-21 15:48:12 -0800589 if (!page)
590 return;
591
Dan Williams3b7a6412014-03-03 15:38:21 -0800592 cln = (phys_addr_t) page_to_pfn(page) << CACHELINE_PER_PAGE_SHIFT;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800593 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800594 nents = radix_tree_gang_lookup(&dma_active_cacheline, results, cln,
595 CACHELINES_PER_PAGE);
596 for (i = 0; i < nents; i++) {
597 phys_addr_t ent_cln = to_cacheline_number(ents[i]);
598
599 if (ent_cln == cln) {
600 entry = ents[i];
601 break;
602 } else if (ent_cln >= cln + CACHELINES_PER_PAGE)
603 break;
604 }
Dan Williams0abdd7a2014-01-21 15:48:12 -0800605 spin_unlock_irqrestore(&radix_lock, flags);
606
607 if (!entry)
608 return;
609
Dan Williams3b7a6412014-03-03 15:38:21 -0800610 cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800611 err_printk(entry->dev, entry,
Dan Williams3b7a6412014-03-03 15:38:21 -0800612 "DMA-API: cpu touching an active dma mapped cacheline [cln=%pa]\n",
613 &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800614}
615
616/*
Joerg Roedel30dfa902009-01-09 12:34:49 +0100617 * Wrapper function for adding an entry to the hash.
618 * This function takes care of locking itself.
619 */
620static void add_dma_entry(struct dma_debug_entry *entry)
621{
622 struct hash_bucket *bucket;
623 unsigned long flags;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800624 int rc;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100625
626 bucket = get_hash_bucket(entry, &flags);
627 hash_bucket_add(bucket, entry);
628 put_hash_bucket(bucket, &flags);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800629
Dan Williams3b7a6412014-03-03 15:38:21 -0800630 rc = active_cacheline_insert(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800631 if (rc == -ENOMEM) {
Dan Williams3b7a6412014-03-03 15:38:21 -0800632 pr_err("DMA-API: cacheline tracking ENOMEM, dma-debug disabled\n");
Dan Williams0abdd7a2014-01-21 15:48:12 -0800633 global_disable = true;
634 }
635
636 /* TODO: report -EEXIST errors here as overlapping mappings are
637 * not supported by the DMA API
638 */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100639}
640
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900641static struct dma_debug_entry *__dma_entry_alloc(void)
642{
643 struct dma_debug_entry *entry;
644
645 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
646 list_del(&entry->list);
647 memset(entry, 0, sizeof(*entry));
648
649 num_free_entries -= 1;
650 if (num_free_entries < min_free_entries)
651 min_free_entries = num_free_entries;
652
653 return entry;
654}
655
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100656/* struct dma_entry allocator
657 *
658 * The next two functions implement the allocator for
659 * struct dma_debug_entries.
660 */
661static struct dma_debug_entry *dma_entry_alloc(void)
662{
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200663 struct dma_debug_entry *entry;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100664 unsigned long flags;
665
666 spin_lock_irqsave(&free_entries_lock, flags);
667
668 if (list_empty(&free_entries)) {
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100669 global_disable = true;
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200670 spin_unlock_irqrestore(&free_entries_lock, flags);
Ville Syrjälä3017cd62016-05-26 15:16:25 -0700671 pr_err("DMA-API: debugging out of memory - disabling\n");
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200672 return NULL;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100673 }
674
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900675 entry = __dma_entry_alloc();
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100676
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200677 spin_unlock_irqrestore(&free_entries_lock, flags);
678
David Woodhouse6c132d12009-01-19 16:52:39 +0100679#ifdef CONFIG_STACKTRACE
680 entry->stacktrace.max_entries = DMA_DEBUG_STACKTRACE_ENTRIES;
681 entry->stacktrace.entries = entry->st_entries;
682 entry->stacktrace.skip = 2;
683 save_stack_trace(&entry->stacktrace);
684#endif
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100685
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100686 return entry;
687}
688
689static void dma_entry_free(struct dma_debug_entry *entry)
690{
691 unsigned long flags;
692
Dan Williams3b7a6412014-03-03 15:38:21 -0800693 active_cacheline_remove(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800694
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100695 /*
696 * add to beginning of the list - this way the entries are
697 * more likely cache hot when they are reallocated.
698 */
699 spin_lock_irqsave(&free_entries_lock, flags);
700 list_add(&entry->list, &free_entries);
701 num_free_entries += 1;
702 spin_unlock_irqrestore(&free_entries_lock, flags);
703}
704
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900705int dma_debug_resize_entries(u32 num_entries)
706{
707 int i, delta, ret = 0;
708 unsigned long flags;
709 struct dma_debug_entry *entry;
710 LIST_HEAD(tmp);
711
712 spin_lock_irqsave(&free_entries_lock, flags);
713
714 if (nr_total_entries < num_entries) {
715 delta = num_entries - nr_total_entries;
716
717 spin_unlock_irqrestore(&free_entries_lock, flags);
718
719 for (i = 0; i < delta; i++) {
720 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
721 if (!entry)
722 break;
723
724 list_add_tail(&entry->list, &tmp);
725 }
726
727 spin_lock_irqsave(&free_entries_lock, flags);
728
729 list_splice(&tmp, &free_entries);
730 nr_total_entries += i;
731 num_free_entries += i;
732 } else {
733 delta = nr_total_entries - num_entries;
734
735 for (i = 0; i < delta && !list_empty(&free_entries); i++) {
736 entry = __dma_entry_alloc();
737 kfree(entry);
738 }
739
740 nr_total_entries -= i;
741 }
742
743 if (nr_total_entries != num_entries)
744 ret = 1;
745
746 spin_unlock_irqrestore(&free_entries_lock, flags);
747
748 return ret;
749}
750EXPORT_SYMBOL(dma_debug_resize_entries);
751
Joerg Roedel6bf07872009-01-09 12:54:42 +0100752/*
753 * DMA-API debugging init code
754 *
755 * The init code does two things:
756 * 1. Initialize core data structures
757 * 2. Preallocate a given number of dma_debug_entry structs
758 */
759
760static int prealloc_memory(u32 num_entries)
761{
762 struct dma_debug_entry *entry, *next_entry;
763 int i;
764
765 for (i = 0; i < num_entries; ++i) {
766 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
767 if (!entry)
768 goto out_err;
769
770 list_add_tail(&entry->list, &free_entries);
771 }
772
773 num_free_entries = num_entries;
774 min_free_entries = num_entries;
775
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200776 pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
Joerg Roedel6bf07872009-01-09 12:54:42 +0100777
778 return 0;
779
780out_err:
781
782 list_for_each_entry_safe(entry, next_entry, &free_entries, list) {
783 list_del(&entry->list);
784 kfree(entry);
785 }
786
787 return -ENOMEM;
788}
789
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200790static ssize_t filter_read(struct file *file, char __user *user_buf,
791 size_t count, loff_t *ppos)
792{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200793 char buf[NAME_MAX_LEN + 1];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200794 unsigned long flags;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200795 int len;
796
797 if (!current_driver_name[0])
798 return 0;
799
800 /*
801 * We can't copy to userspace directly because current_driver_name can
802 * only be read under the driver_name_lock with irqs disabled. So
803 * create a temporary copy first.
804 */
805 read_lock_irqsave(&driver_name_lock, flags);
806 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
807 read_unlock_irqrestore(&driver_name_lock, flags);
808
809 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
810}
811
812static ssize_t filter_write(struct file *file, const char __user *userbuf,
813 size_t count, loff_t *ppos)
814{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200815 char buf[NAME_MAX_LEN];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200816 unsigned long flags;
817 size_t len;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200818 int i;
819
820 /*
821 * We can't copy from userspace directly. Access to
822 * current_driver_name is protected with a write_lock with irqs
823 * disabled. Since copy_from_user can fault and may sleep we
824 * need to copy to temporary buffer first
825 */
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200826 len = min(count, (size_t)(NAME_MAX_LEN - 1));
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200827 if (copy_from_user(buf, userbuf, len))
828 return -EFAULT;
829
830 buf[len] = 0;
831
832 write_lock_irqsave(&driver_name_lock, flags);
833
Joerg Roedel312325092009-06-08 15:07:08 +0200834 /*
835 * Now handle the string we got from userspace very carefully.
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200836 * The rules are:
837 * - only use the first token we got
838 * - token delimiter is everything looking like a space
839 * character (' ', '\n', '\t' ...)
840 *
841 */
842 if (!isalnum(buf[0])) {
843 /*
Joerg Roedel312325092009-06-08 15:07:08 +0200844 * If the first character userspace gave us is not
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200845 * alphanumerical then assume the filter should be
846 * switched off.
847 */
848 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200849 pr_info("DMA-API: switching off dma-debug driver filter\n");
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200850 current_driver_name[0] = 0;
851 current_driver = NULL;
852 goto out_unlock;
853 }
854
855 /*
856 * Now parse out the first token and use it as the name for the
857 * driver to filter for.
858 */
Dan Carpenter39a37ce2010-04-06 19:45:12 +0300859 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200860 current_driver_name[i] = buf[i];
861 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
862 break;
863 }
864 current_driver_name[i] = 0;
865 current_driver = NULL;
866
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200867 pr_info("DMA-API: enable driver filter for driver [%s]\n",
868 current_driver_name);
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200869
870out_unlock:
871 write_unlock_irqrestore(&driver_name_lock, flags);
872
873 return count;
874}
875
Thiago Farinaaeb583d2010-01-18 18:57:33 -0500876static const struct file_operations filter_fops = {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200877 .read = filter_read,
878 .write = filter_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200879 .llseek = default_llseek,
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200880};
881
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100882static int dma_debug_fs_init(void)
883{
884 dma_debug_dent = debugfs_create_dir("dma-api", NULL);
885 if (!dma_debug_dent) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200886 pr_err("DMA-API: can not create debugfs directory\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100887 return -ENOMEM;
888 }
889
890 global_disable_dent = debugfs_create_bool("disabled", 0444,
891 dma_debug_dent,
Dan Carpenter68ee6d22012-06-27 12:08:55 +0300892 &global_disable);
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100893 if (!global_disable_dent)
894 goto out_err;
895
896 error_count_dent = debugfs_create_u32("error_count", 0444,
897 dma_debug_dent, &error_count);
898 if (!error_count_dent)
899 goto out_err;
900
901 show_all_errors_dent = debugfs_create_u32("all_errors", 0644,
902 dma_debug_dent,
903 &show_all_errors);
904 if (!show_all_errors_dent)
905 goto out_err;
906
907 show_num_errors_dent = debugfs_create_u32("num_errors", 0644,
908 dma_debug_dent,
909 &show_num_errors);
910 if (!show_num_errors_dent)
911 goto out_err;
912
913 num_free_entries_dent = debugfs_create_u32("num_free_entries", 0444,
914 dma_debug_dent,
915 &num_free_entries);
916 if (!num_free_entries_dent)
917 goto out_err;
918
919 min_free_entries_dent = debugfs_create_u32("min_free_entries", 0444,
920 dma_debug_dent,
921 &min_free_entries);
922 if (!min_free_entries_dent)
923 goto out_err;
924
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200925 filter_dent = debugfs_create_file("driver_filter", 0644,
926 dma_debug_dent, NULL, &filter_fops);
927 if (!filter_dent)
928 goto out_err;
929
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100930 return 0;
931
932out_err:
933 debugfs_remove_recursive(dma_debug_dent);
934
935 return -ENOMEM;
936}
937
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400938static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200939{
940 struct dma_debug_entry *entry;
941 unsigned long flags;
942 int count = 0, i;
943
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200944 local_irq_save(flags);
945
Joerg Roedeled888ae2009-05-22 17:16:04 +0200946 for (i = 0; i < HASH_SIZE; ++i) {
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200947 spin_lock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200948 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400949 if (entry->dev == dev) {
Joerg Roedeled888ae2009-05-22 17:16:04 +0200950 count += 1;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400951 *out_entry = entry;
952 }
Joerg Roedeled888ae2009-05-22 17:16:04 +0200953 }
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200954 spin_unlock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200955 }
956
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200957 local_irq_restore(flags);
958
Joerg Roedeled888ae2009-05-22 17:16:04 +0200959 return count;
960}
961
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100962static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200963{
964 struct device *dev = data;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400965 struct dma_debug_entry *uninitialized_var(entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200966 int count;
967
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800968 if (dma_debug_disabled())
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100969 return 0;
Joerg Roedeled888ae2009-05-22 17:16:04 +0200970
971 switch (action) {
972 case BUS_NOTIFY_UNBOUND_DRIVER:
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400973 count = device_dma_allocations(dev, &entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200974 if (count == 0)
975 break;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400976 err_printk(dev, entry, "DMA-API: device driver has pending "
Joerg Roedeled888ae2009-05-22 17:16:04 +0200977 "DMA allocations while released from device "
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400978 "[count=%d]\n"
979 "One of leaked entries details: "
980 "[device address=0x%016llx] [size=%llu bytes] "
981 "[mapped with %s] [mapped as %s]\n",
982 count, entry->dev_addr, entry->size,
983 dir2name[entry->direction], type2name[entry->type]);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200984 break;
985 default:
986 break;
987 }
988
989 return 0;
990}
991
Joerg Roedel41531c82009-03-16 17:32:14 +0100992void dma_debug_add_bus(struct bus_type *bus)
993{
Joerg Roedeled888ae2009-05-22 17:16:04 +0200994 struct notifier_block *nb;
995
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800996 if (dma_debug_disabled())
Shaun Ruffellf797d982009-12-17 18:00:36 -0600997 return;
998
Joerg Roedeled888ae2009-05-22 17:16:04 +0200999 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
1000 if (nb == NULL) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001001 pr_err("dma_debug_add_bus: out of memory\n");
Joerg Roedeled888ae2009-05-22 17:16:04 +02001002 return;
1003 }
1004
1005 nb->notifier_call = dma_debug_device_change;
1006
1007 bus_register_notifier(bus, nb);
Joerg Roedel41531c82009-03-16 17:32:14 +01001008}
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001009
Joerg Roedel6bf07872009-01-09 12:54:42 +01001010/*
1011 * Let the architectures decide how many entries should be preallocated.
1012 */
1013void dma_debug_init(u32 num_entries)
1014{
1015 int i;
1016
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001017 /* Do not use dma_debug_initialized here, since we really want to be
1018 * called to set dma_debug_initialized
1019 */
1020 if (global_disable)
Joerg Roedel6bf07872009-01-09 12:54:42 +01001021 return;
1022
1023 for (i = 0; i < HASH_SIZE; ++i) {
1024 INIT_LIST_HEAD(&dma_entry_hash[i].list);
Ingo Molnarb0a5b832009-06-16 16:11:14 +02001025 spin_lock_init(&dma_entry_hash[i].lock);
Joerg Roedel6bf07872009-01-09 12:54:42 +01001026 }
1027
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001028 if (dma_debug_fs_init() != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001029 pr_err("DMA-API: error creating debugfs entries - disabling\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001030 global_disable = true;
1031
1032 return;
1033 }
1034
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001035 if (req_entries)
1036 num_entries = req_entries;
1037
Joerg Roedel6bf07872009-01-09 12:54:42 +01001038 if (prealloc_memory(num_entries) != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001039 pr_err("DMA-API: debugging out of memory error - disabled\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001040 global_disable = true;
1041
1042 return;
1043 }
1044
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +09001045 nr_total_entries = num_free_entries;
1046
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001047 dma_debug_initialized = true;
1048
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001049 pr_info("DMA-API: debugging enabled by kernel config\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001050}
1051
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001052static __init int dma_debug_cmdline(char *str)
1053{
1054 if (!str)
1055 return -EINVAL;
1056
1057 if (strncmp(str, "off", 3) == 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001058 pr_info("DMA-API: debugging disabled on kernel command line\n");
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001059 global_disable = true;
1060 }
1061
1062 return 0;
1063}
1064
1065static __init int dma_debug_entries_cmdline(char *str)
1066{
1067 int res;
1068
1069 if (!str)
1070 return -EINVAL;
1071
1072 res = get_option(&str, &req_entries);
1073
1074 if (!res)
1075 req_entries = 0;
1076
1077 return 0;
1078}
1079
1080__setup("dma_debug=", dma_debug_cmdline);
1081__setup("dma_debug_entries=", dma_debug_entries_cmdline);
1082
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001083static void check_unmap(struct dma_debug_entry *ref)
1084{
1085 struct dma_debug_entry *entry;
1086 struct hash_bucket *bucket;
1087 unsigned long flags;
1088
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001089 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001090 entry = bucket_find_exact(bucket, ref);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001091
1092 if (!entry) {
Alexander Duyck8d640a52013-03-22 15:04:48 -07001093 /* must drop lock before calling dma_mapping_error */
1094 put_hash_bucket(bucket, &flags);
1095
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001096 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
1097 err_printk(ref->dev, NULL,
Alexander Duyck8d640a52013-03-22 15:04:48 -07001098 "DMA-API: device driver tries to free an "
1099 "invalid DMA memory address\n");
1100 } else {
1101 err_printk(ref->dev, NULL,
1102 "DMA-API: device driver tries to free DMA "
1103 "memory it has not allocated [device "
1104 "address=0x%016llx] [size=%llu bytes]\n",
1105 ref->dev_addr, ref->size);
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001106 }
Alexander Duyck8d640a52013-03-22 15:04:48 -07001107 return;
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001108 }
1109
1110 if (ref->size != entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001111 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001112 "DMA memory with different size "
1113 "[device address=0x%016llx] [map size=%llu bytes] "
1114 "[unmap size=%llu bytes]\n",
1115 ref->dev_addr, entry->size, ref->size);
1116 }
1117
1118 if (ref->type != entry->type) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001119 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001120 "DMA memory with wrong function "
1121 "[device address=0x%016llx] [size=%llu bytes] "
1122 "[mapped as %s] [unmapped as %s]\n",
1123 ref->dev_addr, ref->size,
1124 type2name[entry->type], type2name[ref->type]);
1125 } else if ((entry->type == dma_debug_coherent) &&
Dan Williams0abdd7a2014-01-21 15:48:12 -08001126 (phys_addr(ref) != phys_addr(entry))) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001127 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001128 "DMA memory with different CPU address "
1129 "[device address=0x%016llx] [size=%llu bytes] "
Joerg Roedel59a40e702009-10-29 16:25:50 +01001130 "[cpu alloc address=0x%016llx] "
1131 "[cpu free address=0x%016llx]",
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001132 ref->dev_addr, ref->size,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001133 phys_addr(entry),
1134 phys_addr(ref));
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001135 }
1136
1137 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1138 ref->sg_call_ents != entry->sg_call_ents) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001139 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001140 "DMA sg list with different entry count "
1141 "[map count=%d] [unmap count=%d]\n",
1142 entry->sg_call_ents, ref->sg_call_ents);
1143 }
1144
1145 /*
1146 * This may be no bug in reality - but most implementations of the
1147 * DMA API don't handle this properly, so check for it here
1148 */
1149 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001150 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001151 "DMA memory with different direction "
1152 "[device address=0x%016llx] [size=%llu bytes] "
1153 "[mapped with %s] [unmapped with %s]\n",
1154 ref->dev_addr, ref->size,
1155 dir2name[entry->direction],
1156 dir2name[ref->direction]);
1157 }
1158
Miles Chena5759b22017-02-22 15:40:09 -08001159 /*
1160 * Drivers should use dma_mapping_error() to check the returned
1161 * addresses of dma_map_single() and dma_map_page().
1162 * If not, print this warning message. See Documentation/DMA-API.txt.
1163 */
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001164 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1165 err_printk(ref->dev, entry,
1166 "DMA-API: device driver failed to check map error"
1167 "[device address=0x%016llx] [size=%llu bytes] "
1168 "[mapped as %s]",
1169 ref->dev_addr, ref->size,
1170 type2name[entry->type]);
1171 }
1172
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001173 hash_bucket_del(entry);
1174 dma_entry_free(entry);
1175
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001176 put_hash_bucket(bucket, &flags);
1177}
1178
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001179static void check_for_stack(struct device *dev,
1180 struct page *page, size_t offset)
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001181{
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001182 void *addr;
1183 struct vm_struct *stack_vm_area = task_stack_vm_area(current);
1184
1185 if (!stack_vm_area) {
1186 /* Stack is direct-mapped. */
1187 if (PageHighMem(page))
1188 return;
1189 addr = page_address(page) + offset;
1190 if (object_is_on_stack(addr))
1191 err_printk(dev, NULL, "DMA-API: device driver maps memory from stack [addr=%p]\n", addr);
1192 } else {
1193 /* Stack is vmalloced. */
1194 int i;
1195
1196 for (i = 0; i < stack_vm_area->nr_pages; i++) {
1197 if (page != stack_vm_area->pages[i])
1198 continue;
1199
1200 addr = (u8 *)current->stack + i * PAGE_SIZE + offset;
1201 err_printk(dev, NULL, "DMA-API: device driver maps memory from stack [probable addr=%p]\n", addr);
1202 break;
1203 }
1204 }
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001205}
1206
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001207static inline bool overlap(void *addr, unsigned long len, void *start, void *end)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001208{
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001209 unsigned long a1 = (unsigned long)addr;
1210 unsigned long b1 = a1 + len;
1211 unsigned long a2 = (unsigned long)start;
1212 unsigned long b2 = (unsigned long)end;
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001213
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001214 return !(b1 <= a2 || a1 >= b2);
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001215}
1216
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001217static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001218{
Laura Abbottea535e42016-01-14 15:16:50 -08001219 if (overlap(addr, len, _stext, _etext) ||
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001220 overlap(addr, len, __start_rodata, __end_rodata))
1221 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 +01001222}
1223
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001224static void check_sync(struct device *dev,
1225 struct dma_debug_entry *ref,
1226 bool to_cpu)
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001227{
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001228 struct dma_debug_entry *entry;
1229 struct hash_bucket *bucket;
1230 unsigned long flags;
1231
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001232 bucket = get_hash_bucket(ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001233
Neil Hormanc6a21d02011-08-08 15:13:54 -04001234 entry = bucket_find_contain(&bucket, ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001235
1236 if (!entry) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001237 err_printk(dev, NULL, "DMA-API: device driver tries "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001238 "to sync DMA memory it has not allocated "
1239 "[device address=0x%016llx] [size=%llu bytes]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001240 (unsigned long long)ref->dev_addr, ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001241 goto out;
1242 }
1243
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001244 if (ref->size > entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001245 err_printk(dev, entry, "DMA-API: device driver syncs"
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001246 " DMA memory outside allocated range "
1247 "[device address=0x%016llx] "
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001248 "[allocation size=%llu bytes] "
1249 "[sync offset+size=%llu]\n",
1250 entry->dev_addr, entry->size,
1251 ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001252 }
1253
Krzysztof Halasa42d53b42010-01-08 14:42:36 -08001254 if (entry->direction == DMA_BIDIRECTIONAL)
1255 goto out;
1256
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001257 if (ref->direction != entry->direction) {
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 "DMA memory with different direction "
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
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001267 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001268 !(ref->direction == DMA_TO_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001269 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001270 "device read-only DMA memory for cpu "
1271 "[device address=0x%016llx] [size=%llu bytes] "
1272 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001273 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001274 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001275 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001276
1277 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001278 !(ref->direction == DMA_FROM_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001279 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001280 "device write-only DMA memory to device "
1281 "[device address=0x%016llx] [size=%llu bytes] "
1282 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001283 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001284 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001285 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001286
Robin Murphy7f830642015-11-06 16:32:55 -08001287 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1288 ref->sg_call_ents != entry->sg_call_ents) {
1289 err_printk(ref->dev, entry, "DMA-API: device driver syncs "
1290 "DMA sg list with different entry count "
1291 "[map count=%d] [sync count=%d]\n",
1292 entry->sg_call_ents, ref->sg_call_ents);
1293 }
1294
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001295out:
1296 put_hash_bucket(bucket, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001297}
1298
Joerg Roedelf62bc982009-01-09 14:14:49 +01001299void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1300 size_t size, int direction, dma_addr_t dma_addr,
1301 bool map_single)
1302{
1303 struct dma_debug_entry *entry;
1304
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001305 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001306 return;
1307
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001308 if (dma_mapping_error(dev, dma_addr))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001309 return;
1310
1311 entry = dma_entry_alloc();
1312 if (!entry)
1313 return;
1314
1315 entry->dev = dev;
1316 entry->type = dma_debug_page;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001317 entry->pfn = page_to_pfn(page);
1318 entry->offset = offset,
Joerg Roedelf62bc982009-01-09 14:14:49 +01001319 entry->dev_addr = dma_addr;
1320 entry->size = size;
1321 entry->direction = direction;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001322 entry->map_err_type = MAP_ERR_NOT_CHECKED;
Joerg Roedelf62bc982009-01-09 14:14:49 +01001323
Joerg Roedel9537a482009-03-23 15:35:08 +01001324 if (map_single)
Joerg Roedelf62bc982009-01-09 14:14:49 +01001325 entry->type = dma_debug_single;
Joerg Roedel9537a482009-03-23 15:35:08 +01001326
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001327 check_for_stack(dev, page, offset);
1328
Joerg Roedel9537a482009-03-23 15:35:08 +01001329 if (!PageHighMem(page)) {
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001330 void *addr = page_address(page) + offset;
1331
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001332 check_for_illegal_area(dev, addr, size);
Joerg Roedelf62bc982009-01-09 14:14:49 +01001333 }
1334
1335 add_dma_entry(entry);
1336}
1337EXPORT_SYMBOL(debug_dma_map_page);
1338
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001339void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1340{
1341 struct dma_debug_entry ref;
1342 struct dma_debug_entry *entry;
1343 struct hash_bucket *bucket;
1344 unsigned long flags;
1345
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001346 if (unlikely(dma_debug_disabled()))
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001347 return;
1348
1349 ref.dev = dev;
1350 ref.dev_addr = dma_addr;
1351 bucket = get_hash_bucket(&ref, &flags);
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001352
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001353 list_for_each_entry(entry, &bucket->list, list) {
1354 if (!exact_match(&ref, entry))
1355 continue;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001356
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001357 /*
1358 * The same physical address can be mapped multiple
1359 * times. Without a hardware IOMMU this results in the
1360 * same device addresses being put into the dma-debug
1361 * hash multiple times too. This can result in false
1362 * positives being reported. Therefore we implement a
1363 * best-fit algorithm here which updates the first entry
1364 * from the hash which fits the reference value and is
1365 * not currently listed as being checked.
1366 */
1367 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1368 entry->map_err_type = MAP_ERR_CHECKED;
1369 break;
1370 }
1371 }
1372
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001373 put_hash_bucket(bucket, &flags);
1374}
1375EXPORT_SYMBOL(debug_dma_mapping_error);
1376
Joerg Roedelf62bc982009-01-09 14:14:49 +01001377void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
1378 size_t size, int direction, bool map_single)
1379{
1380 struct dma_debug_entry ref = {
1381 .type = dma_debug_page,
1382 .dev = dev,
1383 .dev_addr = addr,
1384 .size = size,
1385 .direction = direction,
1386 };
1387
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001388 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001389 return;
1390
1391 if (map_single)
1392 ref.type = dma_debug_single;
1393
1394 check_unmap(&ref);
1395}
1396EXPORT_SYMBOL(debug_dma_unmap_page);
1397
Joerg Roedel972aa452009-01-09 14:19:54 +01001398void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1399 int nents, int mapped_ents, int direction)
1400{
1401 struct dma_debug_entry *entry;
1402 struct scatterlist *s;
1403 int i;
1404
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001405 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001406 return;
1407
1408 for_each_sg(sg, s, mapped_ents, i) {
1409 entry = dma_entry_alloc();
1410 if (!entry)
1411 return;
1412
1413 entry->type = dma_debug_sg;
1414 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001415 entry->pfn = page_to_pfn(sg_page(s));
1416 entry->offset = s->offset,
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001417 entry->size = sg_dma_len(s);
FUJITA Tomonori15aedea2009-05-27 09:43:01 +09001418 entry->dev_addr = sg_dma_address(s);
Joerg Roedel972aa452009-01-09 14:19:54 +01001419 entry->direction = direction;
1420 entry->sg_call_ents = nents;
1421 entry->sg_mapped_ents = mapped_ents;
1422
Andy Lutomirskib4a0f532016-08-11 02:35:22 -07001423 check_for_stack(dev, sg_page(s), s->offset);
1424
Joerg Roedel9537a482009-03-23 15:35:08 +01001425 if (!PageHighMem(sg_page(s))) {
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001426 check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s));
Joerg Roedel9537a482009-03-23 15:35:08 +01001427 }
Joerg Roedel972aa452009-01-09 14:19:54 +01001428
1429 add_dma_entry(entry);
1430 }
1431}
1432EXPORT_SYMBOL(debug_dma_map_sg);
1433
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001434static int get_nr_mapped_entries(struct device *dev,
1435 struct dma_debug_entry *ref)
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001436{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001437 struct dma_debug_entry *entry;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001438 struct hash_bucket *bucket;
1439 unsigned long flags;
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001440 int mapped_ents;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001441
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001442 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001443 entry = bucket_find_exact(bucket, ref);
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001444 mapped_ents = 0;
1445
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001446 if (entry)
1447 mapped_ents = entry->sg_mapped_ents;
1448 put_hash_bucket(bucket, &flags);
1449
1450 return mapped_ents;
1451}
1452
Joerg Roedel972aa452009-01-09 14:19:54 +01001453void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1454 int nelems, int dir)
1455{
Joerg Roedel972aa452009-01-09 14:19:54 +01001456 struct scatterlist *s;
1457 int mapped_ents = 0, i;
Joerg Roedel972aa452009-01-09 14:19:54 +01001458
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001459 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001460 return;
1461
1462 for_each_sg(sglist, s, nelems, i) {
1463
1464 struct dma_debug_entry ref = {
1465 .type = dma_debug_sg,
1466 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001467 .pfn = page_to_pfn(sg_page(s)),
1468 .offset = s->offset,
FUJITA Tomonori15aedea2009-05-27 09:43:01 +09001469 .dev_addr = sg_dma_address(s),
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001470 .size = sg_dma_len(s),
Joerg Roedel972aa452009-01-09 14:19:54 +01001471 .direction = dir,
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001472 .sg_call_ents = nelems,
Joerg Roedel972aa452009-01-09 14:19:54 +01001473 };
1474
1475 if (mapped_ents && i >= mapped_ents)
1476 break;
1477
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001478 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001479 mapped_ents = get_nr_mapped_entries(dev, &ref);
Joerg Roedel972aa452009-01-09 14:19:54 +01001480
1481 check_unmap(&ref);
1482 }
1483}
1484EXPORT_SYMBOL(debug_dma_unmap_sg);
1485
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001486void debug_dma_alloc_coherent(struct device *dev, size_t size,
1487 dma_addr_t dma_addr, void *virt)
1488{
1489 struct dma_debug_entry *entry;
1490
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001491 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001492 return;
1493
1494 if (unlikely(virt == NULL))
1495 return;
1496
1497 entry = dma_entry_alloc();
1498 if (!entry)
1499 return;
1500
1501 entry->type = dma_debug_coherent;
1502 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001503 entry->pfn = page_to_pfn(virt_to_page(virt));
Daniel Mentz0354aec2015-12-15 17:38:48 -08001504 entry->offset = (size_t) virt & ~PAGE_MASK;
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001505 entry->size = size;
1506 entry->dev_addr = dma_addr;
1507 entry->direction = DMA_BIDIRECTIONAL;
1508
1509 add_dma_entry(entry);
1510}
1511EXPORT_SYMBOL(debug_dma_alloc_coherent);
1512
1513void debug_dma_free_coherent(struct device *dev, size_t size,
1514 void *virt, dma_addr_t addr)
1515{
1516 struct dma_debug_entry ref = {
1517 .type = dma_debug_coherent,
1518 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001519 .pfn = page_to_pfn(virt_to_page(virt)),
Daniel Mentz0354aec2015-12-15 17:38:48 -08001520 .offset = (size_t) virt & ~PAGE_MASK,
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001521 .dev_addr = addr,
1522 .size = size,
1523 .direction = DMA_BIDIRECTIONAL,
1524 };
1525
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001526 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001527 return;
1528
1529 check_unmap(&ref);
1530}
1531EXPORT_SYMBOL(debug_dma_free_coherent);
1532
Niklas Söderlund0e74b342016-08-10 13:22:15 +02001533void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1534 int direction, dma_addr_t dma_addr)
1535{
1536 struct dma_debug_entry *entry;
1537
1538 if (unlikely(dma_debug_disabled()))
1539 return;
1540
1541 entry = dma_entry_alloc();
1542 if (!entry)
1543 return;
1544
1545 entry->type = dma_debug_resource;
1546 entry->dev = dev;
Niklas Söderlund2e0cc302016-09-29 21:59:15 +02001547 entry->pfn = PHYS_PFN(addr);
Niklas Söderlund0e74b342016-08-10 13:22:15 +02001548 entry->offset = offset_in_page(addr);
1549 entry->size = size;
1550 entry->dev_addr = dma_addr;
1551 entry->direction = direction;
1552 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1553
1554 add_dma_entry(entry);
1555}
1556EXPORT_SYMBOL(debug_dma_map_resource);
1557
1558void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1559 size_t size, int direction)
1560{
1561 struct dma_debug_entry ref = {
1562 .type = dma_debug_resource,
1563 .dev = dev,
1564 .dev_addr = dma_addr,
1565 .size = size,
1566 .direction = direction,
1567 };
1568
1569 if (unlikely(dma_debug_disabled()))
1570 return;
1571
1572 check_unmap(&ref);
1573}
1574EXPORT_SYMBOL(debug_dma_unmap_resource);
1575
Joerg Roedelb9d23172009-01-09 14:43:04 +01001576void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1577 size_t size, int direction)
1578{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001579 struct dma_debug_entry ref;
1580
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001581 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001582 return;
1583
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001584 ref.type = dma_debug_single;
1585 ref.dev = dev;
1586 ref.dev_addr = dma_handle;
1587 ref.size = size;
1588 ref.direction = direction;
1589 ref.sg_call_ents = 0;
1590
1591 check_sync(dev, &ref, true);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001592}
1593EXPORT_SYMBOL(debug_dma_sync_single_for_cpu);
1594
1595void debug_dma_sync_single_for_device(struct device *dev,
1596 dma_addr_t dma_handle, size_t size,
1597 int direction)
1598{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001599 struct dma_debug_entry ref;
1600
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001601 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001602 return;
1603
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001604 ref.type = dma_debug_single;
1605 ref.dev = dev;
1606 ref.dev_addr = dma_handle;
1607 ref.size = size;
1608 ref.direction = direction;
1609 ref.sg_call_ents = 0;
1610
1611 check_sync(dev, &ref, false);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001612}
1613EXPORT_SYMBOL(debug_dma_sync_single_for_device);
1614
Joerg Roedel948408b2009-01-09 14:55:38 +01001615void debug_dma_sync_single_range_for_cpu(struct device *dev,
1616 dma_addr_t dma_handle,
1617 unsigned long offset, size_t size,
1618 int direction)
1619{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001620 struct dma_debug_entry ref;
1621
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001622 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001623 return;
1624
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001625 ref.type = dma_debug_single;
1626 ref.dev = dev;
1627 ref.dev_addr = dma_handle;
1628 ref.size = offset + size;
1629 ref.direction = direction;
1630 ref.sg_call_ents = 0;
1631
1632 check_sync(dev, &ref, true);
Joerg Roedel948408b2009-01-09 14:55:38 +01001633}
1634EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu);
1635
1636void debug_dma_sync_single_range_for_device(struct device *dev,
1637 dma_addr_t dma_handle,
1638 unsigned long offset,
1639 size_t size, int direction)
1640{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001641 struct dma_debug_entry ref;
1642
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001643 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001644 return;
1645
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001646 ref.type = dma_debug_single;
1647 ref.dev = dev;
1648 ref.dev_addr = dma_handle;
1649 ref.size = offset + size;
1650 ref.direction = direction;
1651 ref.sg_call_ents = 0;
1652
1653 check_sync(dev, &ref, false);
Joerg Roedel948408b2009-01-09 14:55:38 +01001654}
1655EXPORT_SYMBOL(debug_dma_sync_single_range_for_device);
1656
Joerg Roedela31fba52009-01-09 15:01:12 +01001657void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1658 int nelems, int direction)
1659{
1660 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001661 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001662
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001663 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001664 return;
1665
1666 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001667
1668 struct dma_debug_entry ref = {
1669 .type = dma_debug_sg,
1670 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001671 .pfn = page_to_pfn(sg_page(s)),
1672 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001673 .dev_addr = sg_dma_address(s),
1674 .size = sg_dma_len(s),
1675 .direction = direction,
1676 .sg_call_ents = nelems,
1677 };
1678
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001679 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001680 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001681
1682 if (i >= mapped_ents)
1683 break;
1684
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001685 check_sync(dev, &ref, true);
Joerg Roedela31fba52009-01-09 15:01:12 +01001686 }
1687}
1688EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu);
1689
1690void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1691 int nelems, int direction)
1692{
1693 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001694 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001695
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001696 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001697 return;
1698
1699 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001700
1701 struct dma_debug_entry ref = {
1702 .type = dma_debug_sg,
1703 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001704 .pfn = page_to_pfn(sg_page(s)),
1705 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001706 .dev_addr = sg_dma_address(s),
1707 .size = sg_dma_len(s),
1708 .direction = direction,
1709 .sg_call_ents = nelems,
1710 };
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001711 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001712 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001713
1714 if (i >= mapped_ents)
1715 break;
1716
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001717 check_sync(dev, &ref, false);
Joerg Roedela31fba52009-01-09 15:01:12 +01001718 }
1719}
1720EXPORT_SYMBOL(debug_dma_sync_sg_for_device);
1721
Joerg Roedel1745de52009-05-22 21:49:51 +02001722static int __init dma_debug_driver_setup(char *str)
1723{
1724 int i;
1725
1726 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1727 current_driver_name[i] = *str;
1728 if (*str == 0)
1729 break;
1730 }
1731
1732 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001733 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1734 current_driver_name);
Joerg Roedel1745de52009-05-22 21:49:51 +02001735
1736
1737 return 1;
1738}
1739__setup("dma_debug_driver=", dma_debug_driver_setup);