blob: 2ba086b0d3e73fd66fba555ef1d00a59348d7694 [file] [log] [blame]
Joerg Roedelf2f45e52009-01-09 12:19:52 +01001/*
2 * Copyright (C) 2008 Advanced Micro Devices, Inc.
3 *
4 * Author: Joerg Roedel <joerg.roedel@amd.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
Joerg Roedel972aa452009-01-09 14:19:54 +010020#include <linux/scatterlist.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010021#include <linux/dma-mapping.h>
David Woodhouse6c132d12009-01-19 16:52:39 +010022#include <linux/stacktrace.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010023#include <linux/dma-debug.h>
Joerg Roedel30dfa902009-01-09 12:34:49 +010024#include <linux/spinlock.h>
Joerg Roedel788dcfa2009-01-09 13:13:27 +010025#include <linux/debugfs.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020026#include <linux/uaccess.h>
Paul Gortmaker23a7bfa2011-07-01 16:23:59 -040027#include <linux/export.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010028#include <linux/device.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010029#include <linux/types.h>
Joerg Roedel2d62ece2009-01-09 14:10:26 +010030#include <linux/sched.h>
Joerg Roedel8a6fc702009-05-22 21:23:13 +020031#include <linux/ctype.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010032#include <linux/list.h>
Joerg Roedel6bf07872009-01-09 12:54:42 +010033#include <linux/slab.h>
Joerg Roedelf2f45e52009-01-09 12:19:52 +010034
Joerg Roedel2e34bde2009-03-16 16:51:55 +010035#include <asm/sections.h>
36
Joerg Roedel30dfa902009-01-09 12:34:49 +010037#define HASH_SIZE 1024ULL
38#define HASH_FN_SHIFT 13
39#define HASH_FN_MASK (HASH_SIZE - 1)
40
Joerg Roedelf2f45e52009-01-09 12:19:52 +010041enum {
42 dma_debug_single,
43 dma_debug_page,
44 dma_debug_sg,
45 dma_debug_coherent,
Niklas Söderlund0e74b342016-08-10 13:22:15 +020046 dma_debug_resource,
Joerg Roedelf2f45e52009-01-09 12:19:52 +010047};
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
Niklas Söderlund0e74b342016-08-10 13:22:15 +0200154static const char *type2name[5] = { "single", "page",
155 "scather-gather", "coherent",
156 "resource" };
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100157
158static const char *dir2name[4] = { "DMA_BIDIRECTIONAL", "DMA_TO_DEVICE",
159 "DMA_FROM_DEVICE", "DMA_NONE" };
160
161/*
162 * The access to some variables in this macro is racy. We can't use atomic_t
163 * here because all these variables are exported to debugfs. Some of them even
164 * writeable. This is also the reason why a lock won't help much. But anyway,
165 * the races are no big deal. Here is why:
166 *
167 * error_count: the addition is racy, but the worst thing that can happen is
168 * that we don't count some errors
169 * show_num_errors: the subtraction is racy. Also no big deal because in
170 * worst case this will result in one warning more in the
171 * system log than the user configured. This variable is
172 * writeable via debugfs.
173 */
David Woodhouse6c132d12009-01-19 16:52:39 +0100174static inline void dump_entry_trace(struct dma_debug_entry *entry)
175{
176#ifdef CONFIG_STACKTRACE
177 if (entry) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200178 pr_warning("Mapped at:\n");
David Woodhouse6c132d12009-01-19 16:52:39 +0100179 print_stack_trace(&entry->stacktrace, 0);
180 }
181#endif
182}
183
Joerg Roedel2e507d82009-05-22 18:24:20 +0200184static bool driver_filter(struct device *dev)
185{
Joerg Roedel0bf84122009-06-08 15:53:46 +0200186 struct device_driver *drv;
187 unsigned long flags;
188 bool ret;
189
Joerg Roedel2e507d82009-05-22 18:24:20 +0200190 /* driver filter off */
191 if (likely(!current_driver_name[0]))
192 return true;
193
194 /* driver filter on and initialized */
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400195 if (current_driver && dev && dev->driver == current_driver)
Joerg Roedel2e507d82009-05-22 18:24:20 +0200196 return true;
197
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400198 /* driver filter on, but we can't filter on a NULL device... */
199 if (!dev)
200 return false;
201
Joerg Roedel0bf84122009-06-08 15:53:46 +0200202 if (current_driver || !current_driver_name[0])
203 return false;
204
Joerg Roedel2e507d82009-05-22 18:24:20 +0200205 /* driver filter on but not yet initialized */
Alan Sternf3ff9242012-01-24 13:35:24 -0500206 drv = dev->driver;
Joerg Roedel0bf84122009-06-08 15:53:46 +0200207 if (!drv)
208 return false;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200209
Joerg Roedel0bf84122009-06-08 15:53:46 +0200210 /* lock to protect against change of current_driver_name */
211 read_lock_irqsave(&driver_name_lock, flags);
Joerg Roedel2e507d82009-05-22 18:24:20 +0200212
Joerg Roedel0bf84122009-06-08 15:53:46 +0200213 ret = false;
214 if (drv->name &&
215 strncmp(current_driver_name, drv->name, NAME_MAX_LEN - 1) == 0) {
216 current_driver = drv;
217 ret = true;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200218 }
219
Joerg Roedel0bf84122009-06-08 15:53:46 +0200220 read_unlock_irqrestore(&driver_name_lock, flags);
Joerg Roedel0bf84122009-06-08 15:53:46 +0200221
222 return ret;
Joerg Roedel2e507d82009-05-22 18:24:20 +0200223}
224
Kyle McMartinec9c96e2009-08-19 21:17:08 -0400225#define err_printk(dev, entry, format, arg...) do { \
226 error_count += 1; \
227 if (driver_filter(dev) && \
228 (show_all_errors || show_num_errors > 0)) { \
229 WARN(1, "%s %s: " format, \
230 dev ? dev_driver_string(dev) : "NULL", \
231 dev ? dev_name(dev) : "NULL", ## arg); \
232 dump_entry_trace(entry); \
233 } \
234 if (!show_all_errors && show_num_errors > 0) \
235 show_num_errors -= 1; \
Joerg Roedel2d62ece2009-01-09 14:10:26 +0100236 } while (0);
237
Joerg Roedel30dfa902009-01-09 12:34:49 +0100238/*
239 * Hash related functions
240 *
241 * Every DMA-API request is saved into a struct dma_debug_entry. To
242 * have quick access to these structs they are stored into a hash.
243 */
244static int hash_fn(struct dma_debug_entry *entry)
245{
246 /*
247 * Hash function is based on the dma address.
248 * We use bits 20-27 here as the index into the hash
249 */
250 return (entry->dev_addr >> HASH_FN_SHIFT) & HASH_FN_MASK;
251}
252
253/*
254 * Request exclusive access to a hash bucket for a given dma_debug_entry.
255 */
256static struct hash_bucket *get_hash_bucket(struct dma_debug_entry *entry,
257 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700258 __acquires(&dma_entry_hash[idx].lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100259{
260 int idx = hash_fn(entry);
261 unsigned long __flags;
262
263 spin_lock_irqsave(&dma_entry_hash[idx].lock, __flags);
264 *flags = __flags;
265 return &dma_entry_hash[idx];
266}
267
268/*
269 * Give up exclusive access to the hash bucket
270 */
271static void put_hash_bucket(struct hash_bucket *bucket,
272 unsigned long *flags)
Stephen Boydd5dfc802016-07-26 15:21:08 -0700273 __releases(&bucket->lock)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100274{
275 unsigned long __flags = *flags;
276
277 spin_unlock_irqrestore(&bucket->lock, __flags);
278}
279
Neil Hormanc6a21d02011-08-08 15:13:54 -0400280static bool exact_match(struct dma_debug_entry *a, struct dma_debug_entry *b)
281{
Thomas Jarosch91ec37c2011-11-17 20:31:02 +0100282 return ((a->dev_addr == b->dev_addr) &&
Neil Hormanc6a21d02011-08-08 15:13:54 -0400283 (a->dev == b->dev)) ? true : false;
284}
285
286static bool containing_match(struct dma_debug_entry *a,
287 struct dma_debug_entry *b)
288{
289 if (a->dev != b->dev)
290 return false;
291
292 if ((b->dev_addr <= a->dev_addr) &&
293 ((b->dev_addr + b->size) >= (a->dev_addr + a->size)))
294 return true;
295
296 return false;
297}
298
Joerg Roedel30dfa902009-01-09 12:34:49 +0100299/*
300 * Search a given entry in the hash bucket list
301 */
Neil Hormanc6a21d02011-08-08 15:13:54 -0400302static struct dma_debug_entry *__hash_bucket_find(struct hash_bucket *bucket,
303 struct dma_debug_entry *ref,
304 match_fn match)
Joerg Roedel30dfa902009-01-09 12:34:49 +0100305{
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200306 struct dma_debug_entry *entry, *ret = NULL;
Ming Leife73fbe2012-10-19 13:57:01 -0700307 int matches = 0, match_lvl, last_lvl = -1;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100308
309 list_for_each_entry(entry, &bucket->list, list) {
Neil Hormanc6a21d02011-08-08 15:13:54 -0400310 if (!match(ref, entry))
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200311 continue;
312
313 /*
314 * Some drivers map the same physical address multiple
315 * times. Without a hardware IOMMU this results in the
316 * same device addresses being put into the dma-debug
317 * hash multiple times too. This can result in false
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200318 * positives being reported. Therefore we implement a
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200319 * best-fit algorithm here which returns the entry from
320 * the hash which fits best to the reference value
321 * instead of the first-fit.
322 */
323 matches += 1;
324 match_lvl = 0;
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200325 entry->size == ref->size ? ++match_lvl : 0;
326 entry->type == ref->type ? ++match_lvl : 0;
327 entry->direction == ref->direction ? ++match_lvl : 0;
328 entry->sg_call_ents == ref->sg_call_ents ? ++match_lvl : 0;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200329
Joerg Roedele5e8c5b2009-06-11 10:03:42 +0200330 if (match_lvl == 4) {
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200331 /* perfect-fit - return the result */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100332 return entry;
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200333 } else if (match_lvl > last_lvl) {
334 /*
335 * We found an entry that fits better then the
Ming Leife73fbe2012-10-19 13:57:01 -0700336 * previous one or it is the 1st match.
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200337 */
338 last_lvl = match_lvl;
339 ret = entry;
340 }
Joerg Roedel30dfa902009-01-09 12:34:49 +0100341 }
342
Joerg Roedel7caf6a42009-06-05 12:01:35 +0200343 /*
344 * If we have multiple matches but no perfect-fit, just return
345 * NULL.
346 */
347 ret = (matches == 1) ? ret : NULL;
348
349 return ret;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100350}
351
Neil Hormanc6a21d02011-08-08 15:13:54 -0400352static struct dma_debug_entry *bucket_find_exact(struct hash_bucket *bucket,
353 struct dma_debug_entry *ref)
354{
355 return __hash_bucket_find(bucket, ref, exact_match);
356}
357
358static struct dma_debug_entry *bucket_find_contain(struct hash_bucket **bucket,
359 struct dma_debug_entry *ref,
360 unsigned long *flags)
361{
362
363 unsigned int max_range = dma_get_max_seg_size(ref->dev);
364 struct dma_debug_entry *entry, index = *ref;
365 unsigned int range = 0;
366
367 while (range <= max_range) {
Sebastian Otta7a2c022015-04-16 12:43:25 -0700368 entry = __hash_bucket_find(*bucket, ref, containing_match);
Neil Hormanc6a21d02011-08-08 15:13:54 -0400369
370 if (entry)
371 return entry;
372
373 /*
374 * Nothing found, go back a hash bucket
375 */
376 put_hash_bucket(*bucket, flags);
377 range += (1 << HASH_FN_SHIFT);
378 index.dev_addr -= (1 << HASH_FN_SHIFT);
379 *bucket = get_hash_bucket(&index, flags);
380 }
381
382 return NULL;
383}
384
Joerg Roedel30dfa902009-01-09 12:34:49 +0100385/*
386 * Add an entry to a hash bucket
387 */
388static void hash_bucket_add(struct hash_bucket *bucket,
389 struct dma_debug_entry *entry)
390{
391 list_add_tail(&entry->list, &bucket->list);
392}
393
394/*
395 * Remove entry from a hash bucket list
396 */
397static void hash_bucket_del(struct dma_debug_entry *entry)
398{
399 list_del(&entry->list);
400}
401
Dan Williams0abdd7a2014-01-21 15:48:12 -0800402static unsigned long long phys_addr(struct dma_debug_entry *entry)
403{
Niklas Söderlund0e74b342016-08-10 13:22:15 +0200404 if (entry->type == dma_debug_resource)
405 return __pfn_to_phys(entry->pfn) + entry->offset;
406
Dan Williams0abdd7a2014-01-21 15:48:12 -0800407 return page_to_phys(pfn_to_page(entry->pfn)) + entry->offset;
408}
409
Joerg Roedel30dfa902009-01-09 12:34:49 +0100410/*
David Woodhouseac26c182009-02-12 16:19:13 +0100411 * Dump mapping entries for debugging purposes
412 */
413void debug_dma_dump_mappings(struct device *dev)
414{
415 int idx;
416
417 for (idx = 0; idx < HASH_SIZE; idx++) {
418 struct hash_bucket *bucket = &dma_entry_hash[idx];
419 struct dma_debug_entry *entry;
420 unsigned long flags;
421
422 spin_lock_irqsave(&bucket->lock, flags);
423
424 list_for_each_entry(entry, &bucket->list, list) {
425 if (!dev || dev == entry->dev) {
426 dev_info(entry->dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800427 "%s idx %d P=%Lx N=%lx D=%Lx L=%Lx %s %s\n",
David Woodhouseac26c182009-02-12 16:19:13 +0100428 type2name[entry->type], idx,
Dan Williams0abdd7a2014-01-21 15:48:12 -0800429 phys_addr(entry), entry->pfn,
David Woodhouseac26c182009-02-12 16:19:13 +0100430 entry->dev_addr, entry->size,
Shuah Khan6c9c6d62012-10-08 11:08:06 -0600431 dir2name[entry->direction],
432 maperr2str[entry->map_err_type]);
David Woodhouseac26c182009-02-12 16:19:13 +0100433 }
434 }
435
436 spin_unlock_irqrestore(&bucket->lock, flags);
437 }
438}
439EXPORT_SYMBOL(debug_dma_dump_mappings);
440
441/*
Dan Williams3b7a6412014-03-03 15:38:21 -0800442 * For each mapping (initial cacheline in the case of
443 * dma_alloc_coherent/dma_map_page, initial cacheline in each page of a
444 * scatterlist, or the cacheline specified in dma_map_single) insert
445 * into this tree using the cacheline as the key. At
Dan Williams0abdd7a2014-01-21 15:48:12 -0800446 * dma_unmap_{single|sg|page} or dma_free_coherent delete the entry. If
Dan Williams3b7a6412014-03-03 15:38:21 -0800447 * the entry already exists at insertion time add a tag as a reference
Dan Williams0abdd7a2014-01-21 15:48:12 -0800448 * count for the overlapping mappings. For now, the overlap tracking
Dan Williams3b7a6412014-03-03 15:38:21 -0800449 * just ensures that 'unmaps' balance 'maps' before marking the
450 * cacheline idle, but we should also be flagging overlaps as an API
451 * violation.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800452 *
453 * Memory usage is mostly constrained by the maximum number of available
454 * dma-debug entries in that we need a free dma_debug_entry before
Dan Williams3b7a6412014-03-03 15:38:21 -0800455 * inserting into the tree. In the case of dma_map_page and
456 * dma_alloc_coherent there is only one dma_debug_entry and one
457 * dma_active_cacheline entry to track per event. dma_map_sg(), on the
458 * other hand, consumes a single dma_debug_entry, but inserts 'nents'
459 * entries into the tree.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800460 *
461 * At any time debug_dma_assert_idle() can be called to trigger a
Dan Williams3b7a6412014-03-03 15:38:21 -0800462 * warning if any cachelines in the given page are in the active set.
Dan Williams0abdd7a2014-01-21 15:48:12 -0800463 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800464static RADIX_TREE(dma_active_cacheline, GFP_NOWAIT);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800465static DEFINE_SPINLOCK(radix_lock);
Dan Williams3b7a6412014-03-03 15:38:21 -0800466#define ACTIVE_CACHELINE_MAX_OVERLAP ((1 << RADIX_TREE_MAX_TAGS) - 1)
467#define CACHELINE_PER_PAGE_SHIFT (PAGE_SHIFT - L1_CACHE_SHIFT)
468#define CACHELINES_PER_PAGE (1 << CACHELINE_PER_PAGE_SHIFT)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800469
Dan Williams3b7a6412014-03-03 15:38:21 -0800470static phys_addr_t to_cacheline_number(struct dma_debug_entry *entry)
471{
472 return (entry->pfn << CACHELINE_PER_PAGE_SHIFT) +
473 (entry->offset >> L1_CACHE_SHIFT);
474}
475
476static int active_cacheline_read_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800477{
478 int overlap = 0, i;
479
480 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
Dan Williams3b7a6412014-03-03 15:38:21 -0800481 if (radix_tree_tag_get(&dma_active_cacheline, cln, i))
Dan Williams0abdd7a2014-01-21 15:48:12 -0800482 overlap |= 1 << i;
483 return overlap;
484}
485
Dan Williams3b7a6412014-03-03 15:38:21 -0800486static int active_cacheline_set_overlap(phys_addr_t cln, int overlap)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800487{
488 int i;
489
Dan Williams3b7a6412014-03-03 15:38:21 -0800490 if (overlap > ACTIVE_CACHELINE_MAX_OVERLAP || overlap < 0)
Dan Williams59f2e7d2014-01-29 14:05:53 -0800491 return overlap;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800492
493 for (i = RADIX_TREE_MAX_TAGS - 1; i >= 0; i--)
494 if (overlap & 1 << i)
Dan Williams3b7a6412014-03-03 15:38:21 -0800495 radix_tree_tag_set(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800496 else
Dan Williams3b7a6412014-03-03 15:38:21 -0800497 radix_tree_tag_clear(&dma_active_cacheline, cln, i);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800498
499 return overlap;
500}
501
Dan Williams3b7a6412014-03-03 15:38:21 -0800502static void active_cacheline_inc_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800503{
Dan Williams3b7a6412014-03-03 15:38:21 -0800504 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800505
Dan Williams3b7a6412014-03-03 15:38:21 -0800506 overlap = active_cacheline_set_overlap(cln, ++overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800507
508 /* If we overflowed the overlap counter then we're potentially
509 * leaking dma-mappings. Otherwise, if maps and unmaps are
510 * balanced then this overflow may cause false negatives in
Dan Williams3b7a6412014-03-03 15:38:21 -0800511 * debug_dma_assert_idle() as the cacheline may be marked idle
Dan Williams0abdd7a2014-01-21 15:48:12 -0800512 * prematurely.
513 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800514 WARN_ONCE(overlap > ACTIVE_CACHELINE_MAX_OVERLAP,
515 "DMA-API: exceeded %d overlapping mappings of cacheline %pa\n",
516 ACTIVE_CACHELINE_MAX_OVERLAP, &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800517}
518
Dan Williams3b7a6412014-03-03 15:38:21 -0800519static int active_cacheline_dec_overlap(phys_addr_t cln)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800520{
Dan Williams3b7a6412014-03-03 15:38:21 -0800521 int overlap = active_cacheline_read_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800522
Dan Williams3b7a6412014-03-03 15:38:21 -0800523 return active_cacheline_set_overlap(cln, --overlap);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800524}
525
Dan Williams3b7a6412014-03-03 15:38:21 -0800526static int active_cacheline_insert(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800527{
Dan Williams3b7a6412014-03-03 15:38:21 -0800528 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800529 unsigned long flags;
530 int rc;
531
Dan Williams3b7a6412014-03-03 15:38:21 -0800532 /* If the device is not writing memory then we don't have any
533 * concerns about the cpu consuming stale data. This mitigates
534 * legitimate usages of overlapping mappings.
535 */
536 if (entry->direction == DMA_TO_DEVICE)
537 return 0;
538
Dan Williams0abdd7a2014-01-21 15:48:12 -0800539 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800540 rc = radix_tree_insert(&dma_active_cacheline, cln, entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800541 if (rc == -EEXIST)
Dan Williams3b7a6412014-03-03 15:38:21 -0800542 active_cacheline_inc_overlap(cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800543 spin_unlock_irqrestore(&radix_lock, flags);
544
545 return rc;
546}
547
Dan Williams3b7a6412014-03-03 15:38:21 -0800548static void active_cacheline_remove(struct dma_debug_entry *entry)
Dan Williams0abdd7a2014-01-21 15:48:12 -0800549{
Dan Williams3b7a6412014-03-03 15:38:21 -0800550 phys_addr_t cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800551 unsigned long flags;
552
Dan Williams3b7a6412014-03-03 15:38:21 -0800553 /* ...mirror the insert case */
554 if (entry->direction == DMA_TO_DEVICE)
555 return;
556
Dan Williams0abdd7a2014-01-21 15:48:12 -0800557 spin_lock_irqsave(&radix_lock, flags);
Dan Williams59f2e7d2014-01-29 14:05:53 -0800558 /* since we are counting overlaps the final put of the
Dan Williams3b7a6412014-03-03 15:38:21 -0800559 * cacheline will occur when the overlap count is 0.
560 * active_cacheline_dec_overlap() returns -1 in that case
Dan Williams59f2e7d2014-01-29 14:05:53 -0800561 */
Dan Williams3b7a6412014-03-03 15:38:21 -0800562 if (active_cacheline_dec_overlap(cln) < 0)
563 radix_tree_delete(&dma_active_cacheline, cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800564 spin_unlock_irqrestore(&radix_lock, flags);
565}
566
567/**
568 * debug_dma_assert_idle() - assert that a page is not undergoing dma
Dan Williams3b7a6412014-03-03 15:38:21 -0800569 * @page: page to lookup in the dma_active_cacheline tree
Dan Williams0abdd7a2014-01-21 15:48:12 -0800570 *
571 * Place a call to this routine in cases where the cpu touching the page
572 * before the dma completes (page is dma_unmapped) will lead to data
573 * corruption.
574 */
575void debug_dma_assert_idle(struct page *page)
576{
Dan Williams3b7a6412014-03-03 15:38:21 -0800577 static struct dma_debug_entry *ents[CACHELINES_PER_PAGE];
578 struct dma_debug_entry *entry = NULL;
579 void **results = (void **) &ents;
580 unsigned int nents, i;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800581 unsigned long flags;
Dan Williams3b7a6412014-03-03 15:38:21 -0800582 phys_addr_t cln;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800583
Haggai Eranc9d120b2015-07-17 16:24:06 -0700584 if (dma_debug_disabled())
585 return;
586
Dan Williams0abdd7a2014-01-21 15:48:12 -0800587 if (!page)
588 return;
589
Dan Williams3b7a6412014-03-03 15:38:21 -0800590 cln = (phys_addr_t) page_to_pfn(page) << CACHELINE_PER_PAGE_SHIFT;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800591 spin_lock_irqsave(&radix_lock, flags);
Dan Williams3b7a6412014-03-03 15:38:21 -0800592 nents = radix_tree_gang_lookup(&dma_active_cacheline, results, cln,
593 CACHELINES_PER_PAGE);
594 for (i = 0; i < nents; i++) {
595 phys_addr_t ent_cln = to_cacheline_number(ents[i]);
596
597 if (ent_cln == cln) {
598 entry = ents[i];
599 break;
600 } else if (ent_cln >= cln + CACHELINES_PER_PAGE)
601 break;
602 }
Dan Williams0abdd7a2014-01-21 15:48:12 -0800603 spin_unlock_irqrestore(&radix_lock, flags);
604
605 if (!entry)
606 return;
607
Dan Williams3b7a6412014-03-03 15:38:21 -0800608 cln = to_cacheline_number(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800609 err_printk(entry->dev, entry,
Dan Williams3b7a6412014-03-03 15:38:21 -0800610 "DMA-API: cpu touching an active dma mapped cacheline [cln=%pa]\n",
611 &cln);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800612}
613
614/*
Joerg Roedel30dfa902009-01-09 12:34:49 +0100615 * Wrapper function for adding an entry to the hash.
616 * This function takes care of locking itself.
617 */
618static void add_dma_entry(struct dma_debug_entry *entry)
619{
620 struct hash_bucket *bucket;
621 unsigned long flags;
Dan Williams0abdd7a2014-01-21 15:48:12 -0800622 int rc;
Joerg Roedel30dfa902009-01-09 12:34:49 +0100623
624 bucket = get_hash_bucket(entry, &flags);
625 hash_bucket_add(bucket, entry);
626 put_hash_bucket(bucket, &flags);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800627
Dan Williams3b7a6412014-03-03 15:38:21 -0800628 rc = active_cacheline_insert(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800629 if (rc == -ENOMEM) {
Dan Williams3b7a6412014-03-03 15:38:21 -0800630 pr_err("DMA-API: cacheline tracking ENOMEM, dma-debug disabled\n");
Dan Williams0abdd7a2014-01-21 15:48:12 -0800631 global_disable = true;
632 }
633
634 /* TODO: report -EEXIST errors here as overlapping mappings are
635 * not supported by the DMA API
636 */
Joerg Roedel30dfa902009-01-09 12:34:49 +0100637}
638
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900639static struct dma_debug_entry *__dma_entry_alloc(void)
640{
641 struct dma_debug_entry *entry;
642
643 entry = list_entry(free_entries.next, struct dma_debug_entry, list);
644 list_del(&entry->list);
645 memset(entry, 0, sizeof(*entry));
646
647 num_free_entries -= 1;
648 if (num_free_entries < min_free_entries)
649 min_free_entries = num_free_entries;
650
651 return entry;
652}
653
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100654/* struct dma_entry allocator
655 *
656 * The next two functions implement the allocator for
657 * struct dma_debug_entries.
658 */
659static struct dma_debug_entry *dma_entry_alloc(void)
660{
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200661 struct dma_debug_entry *entry;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100662 unsigned long flags;
663
664 spin_lock_irqsave(&free_entries_lock, flags);
665
666 if (list_empty(&free_entries)) {
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100667 global_disable = true;
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200668 spin_unlock_irqrestore(&free_entries_lock, flags);
Ville Syrjälä3017cd62016-05-26 15:16:25 -0700669 pr_err("DMA-API: debugging out of memory - disabling\n");
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200670 return NULL;
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100671 }
672
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900673 entry = __dma_entry_alloc();
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100674
Jakub Kicinski29cdd4e2012-04-04 03:19:10 +0200675 spin_unlock_irqrestore(&free_entries_lock, flags);
676
David Woodhouse6c132d12009-01-19 16:52:39 +0100677#ifdef CONFIG_STACKTRACE
678 entry->stacktrace.max_entries = DMA_DEBUG_STACKTRACE_ENTRIES;
679 entry->stacktrace.entries = entry->st_entries;
680 entry->stacktrace.skip = 2;
681 save_stack_trace(&entry->stacktrace);
682#endif
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100683
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100684 return entry;
685}
686
687static void dma_entry_free(struct dma_debug_entry *entry)
688{
689 unsigned long flags;
690
Dan Williams3b7a6412014-03-03 15:38:21 -0800691 active_cacheline_remove(entry);
Dan Williams0abdd7a2014-01-21 15:48:12 -0800692
Joerg Roedel3b1e79e2009-01-09 12:42:46 +0100693 /*
694 * add to beginning of the list - this way the entries are
695 * more likely cache hot when they are reallocated.
696 */
697 spin_lock_irqsave(&free_entries_lock, flags);
698 list_add(&entry->list, &free_entries);
699 num_free_entries += 1;
700 spin_unlock_irqrestore(&free_entries_lock, flags);
701}
702
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +0900703int dma_debug_resize_entries(u32 num_entries)
704{
705 int i, delta, ret = 0;
706 unsigned long flags;
707 struct dma_debug_entry *entry;
708 LIST_HEAD(tmp);
709
710 spin_lock_irqsave(&free_entries_lock, flags);
711
712 if (nr_total_entries < num_entries) {
713 delta = num_entries - nr_total_entries;
714
715 spin_unlock_irqrestore(&free_entries_lock, flags);
716
717 for (i = 0; i < delta; i++) {
718 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
719 if (!entry)
720 break;
721
722 list_add_tail(&entry->list, &tmp);
723 }
724
725 spin_lock_irqsave(&free_entries_lock, flags);
726
727 list_splice(&tmp, &free_entries);
728 nr_total_entries += i;
729 num_free_entries += i;
730 } else {
731 delta = nr_total_entries - num_entries;
732
733 for (i = 0; i < delta && !list_empty(&free_entries); i++) {
734 entry = __dma_entry_alloc();
735 kfree(entry);
736 }
737
738 nr_total_entries -= i;
739 }
740
741 if (nr_total_entries != num_entries)
742 ret = 1;
743
744 spin_unlock_irqrestore(&free_entries_lock, flags);
745
746 return ret;
747}
748EXPORT_SYMBOL(dma_debug_resize_entries);
749
Joerg Roedel6bf07872009-01-09 12:54:42 +0100750/*
751 * DMA-API debugging init code
752 *
753 * The init code does two things:
754 * 1. Initialize core data structures
755 * 2. Preallocate a given number of dma_debug_entry structs
756 */
757
758static int prealloc_memory(u32 num_entries)
759{
760 struct dma_debug_entry *entry, *next_entry;
761 int i;
762
763 for (i = 0; i < num_entries; ++i) {
764 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
765 if (!entry)
766 goto out_err;
767
768 list_add_tail(&entry->list, &free_entries);
769 }
770
771 num_free_entries = num_entries;
772 min_free_entries = num_entries;
773
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200774 pr_info("DMA-API: preallocated %d debug entries\n", num_entries);
Joerg Roedel6bf07872009-01-09 12:54:42 +0100775
776 return 0;
777
778out_err:
779
780 list_for_each_entry_safe(entry, next_entry, &free_entries, list) {
781 list_del(&entry->list);
782 kfree(entry);
783 }
784
785 return -ENOMEM;
786}
787
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200788static ssize_t filter_read(struct file *file, char __user *user_buf,
789 size_t count, loff_t *ppos)
790{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200791 char buf[NAME_MAX_LEN + 1];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200792 unsigned long flags;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200793 int len;
794
795 if (!current_driver_name[0])
796 return 0;
797
798 /*
799 * We can't copy to userspace directly because current_driver_name can
800 * only be read under the driver_name_lock with irqs disabled. So
801 * create a temporary copy first.
802 */
803 read_lock_irqsave(&driver_name_lock, flags);
804 len = scnprintf(buf, NAME_MAX_LEN + 1, "%s\n", current_driver_name);
805 read_unlock_irqrestore(&driver_name_lock, flags);
806
807 return simple_read_from_buffer(user_buf, count, ppos, buf, len);
808}
809
810static ssize_t filter_write(struct file *file, const char __user *userbuf,
811 size_t count, loff_t *ppos)
812{
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200813 char buf[NAME_MAX_LEN];
Joerg Roedelc17e2cf2009-06-08 15:19:29 +0200814 unsigned long flags;
815 size_t len;
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200816 int i;
817
818 /*
819 * We can't copy from userspace directly. Access to
820 * current_driver_name is protected with a write_lock with irqs
821 * disabled. Since copy_from_user can fault and may sleep we
822 * need to copy to temporary buffer first
823 */
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200824 len = min(count, (size_t)(NAME_MAX_LEN - 1));
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200825 if (copy_from_user(buf, userbuf, len))
826 return -EFAULT;
827
828 buf[len] = 0;
829
830 write_lock_irqsave(&driver_name_lock, flags);
831
Joerg Roedel312325092009-06-08 15:07:08 +0200832 /*
833 * Now handle the string we got from userspace very carefully.
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200834 * The rules are:
835 * - only use the first token we got
836 * - token delimiter is everything looking like a space
837 * character (' ', '\n', '\t' ...)
838 *
839 */
840 if (!isalnum(buf[0])) {
841 /*
Joerg Roedel312325092009-06-08 15:07:08 +0200842 * If the first character userspace gave us is not
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200843 * alphanumerical then assume the filter should be
844 * switched off.
845 */
846 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200847 pr_info("DMA-API: switching off dma-debug driver filter\n");
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200848 current_driver_name[0] = 0;
849 current_driver = NULL;
850 goto out_unlock;
851 }
852
853 /*
854 * Now parse out the first token and use it as the name for the
855 * driver to filter for.
856 */
Dan Carpenter39a37ce2010-04-06 19:45:12 +0300857 for (i = 0; i < NAME_MAX_LEN - 1; ++i) {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200858 current_driver_name[i] = buf[i];
859 if (isspace(buf[i]) || buf[i] == ' ' || buf[i] == 0)
860 break;
861 }
862 current_driver_name[i] = 0;
863 current_driver = NULL;
864
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200865 pr_info("DMA-API: enable driver filter for driver [%s]\n",
866 current_driver_name);
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200867
868out_unlock:
869 write_unlock_irqrestore(&driver_name_lock, flags);
870
871 return count;
872}
873
Thiago Farinaaeb583d2010-01-18 18:57:33 -0500874static const struct file_operations filter_fops = {
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200875 .read = filter_read,
876 .write = filter_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200877 .llseek = default_llseek,
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200878};
879
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100880static int dma_debug_fs_init(void)
881{
882 dma_debug_dent = debugfs_create_dir("dma-api", NULL);
883 if (!dma_debug_dent) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200884 pr_err("DMA-API: can not create debugfs directory\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100885 return -ENOMEM;
886 }
887
888 global_disable_dent = debugfs_create_bool("disabled", 0444,
889 dma_debug_dent,
Dan Carpenter68ee6d22012-06-27 12:08:55 +0300890 &global_disable);
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100891 if (!global_disable_dent)
892 goto out_err;
893
894 error_count_dent = debugfs_create_u32("error_count", 0444,
895 dma_debug_dent, &error_count);
896 if (!error_count_dent)
897 goto out_err;
898
899 show_all_errors_dent = debugfs_create_u32("all_errors", 0644,
900 dma_debug_dent,
901 &show_all_errors);
902 if (!show_all_errors_dent)
903 goto out_err;
904
905 show_num_errors_dent = debugfs_create_u32("num_errors", 0644,
906 dma_debug_dent,
907 &show_num_errors);
908 if (!show_num_errors_dent)
909 goto out_err;
910
911 num_free_entries_dent = debugfs_create_u32("num_free_entries", 0444,
912 dma_debug_dent,
913 &num_free_entries);
914 if (!num_free_entries_dent)
915 goto out_err;
916
917 min_free_entries_dent = debugfs_create_u32("min_free_entries", 0444,
918 dma_debug_dent,
919 &min_free_entries);
920 if (!min_free_entries_dent)
921 goto out_err;
922
Joerg Roedel8a6fc702009-05-22 21:23:13 +0200923 filter_dent = debugfs_create_file("driver_filter", 0644,
924 dma_debug_dent, NULL, &filter_fops);
925 if (!filter_dent)
926 goto out_err;
927
Joerg Roedel788dcfa2009-01-09 13:13:27 +0100928 return 0;
929
930out_err:
931 debugfs_remove_recursive(dma_debug_dent);
932
933 return -ENOMEM;
934}
935
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400936static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200937{
938 struct dma_debug_entry *entry;
939 unsigned long flags;
940 int count = 0, i;
941
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200942 local_irq_save(flags);
943
Joerg Roedeled888ae2009-05-22 17:16:04 +0200944 for (i = 0; i < HASH_SIZE; ++i) {
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200945 spin_lock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200946 list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400947 if (entry->dev == dev) {
Joerg Roedeled888ae2009-05-22 17:16:04 +0200948 count += 1;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400949 *out_entry = entry;
950 }
Joerg Roedeled888ae2009-05-22 17:16:04 +0200951 }
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200952 spin_unlock(&dma_entry_hash[i].lock);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200953 }
954
Joerg Roedelbe81c6e2009-06-08 15:46:19 +0200955 local_irq_restore(flags);
956
Joerg Roedeled888ae2009-05-22 17:16:04 +0200957 return count;
958}
959
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100960static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
Joerg Roedeled888ae2009-05-22 17:16:04 +0200961{
962 struct device *dev = data;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400963 struct dma_debug_entry *uninitialized_var(entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200964 int count;
965
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800966 if (dma_debug_disabled())
Ingo Molnara8fe9ea2009-12-31 15:16:23 +0100967 return 0;
Joerg Roedeled888ae2009-05-22 17:16:04 +0200968
969 switch (action) {
970 case BUS_NOTIFY_UNBOUND_DRIVER:
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400971 count = device_dma_allocations(dev, &entry);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200972 if (count == 0)
973 break;
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400974 err_printk(dev, entry, "DMA-API: device driver has pending "
Joerg Roedeled888ae2009-05-22 17:16:04 +0200975 "DMA allocations while released from device "
Stanislaw Gruszkaba4b87ad2011-03-31 08:08:09 -0400976 "[count=%d]\n"
977 "One of leaked entries details: "
978 "[device address=0x%016llx] [size=%llu bytes] "
979 "[mapped with %s] [mapped as %s]\n",
980 count, entry->dev_addr, entry->size,
981 dir2name[entry->direction], type2name[entry->type]);
Joerg Roedeled888ae2009-05-22 17:16:04 +0200982 break;
983 default:
984 break;
985 }
986
987 return 0;
988}
989
Joerg Roedel41531c82009-03-16 17:32:14 +0100990void dma_debug_add_bus(struct bus_type *bus)
991{
Joerg Roedeled888ae2009-05-22 17:16:04 +0200992 struct notifier_block *nb;
993
Florian Fainelli01ce18b2014-12-10 15:41:23 -0800994 if (dma_debug_disabled())
Shaun Ruffellf797d982009-12-17 18:00:36 -0600995 return;
996
Joerg Roedeled888ae2009-05-22 17:16:04 +0200997 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
998 if (nb == NULL) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +0200999 pr_err("dma_debug_add_bus: out of memory\n");
Joerg Roedeled888ae2009-05-22 17:16:04 +02001000 return;
1001 }
1002
1003 nb->notifier_call = dma_debug_device_change;
1004
1005 bus_register_notifier(bus, nb);
Joerg Roedel41531c82009-03-16 17:32:14 +01001006}
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001007
Joerg Roedel6bf07872009-01-09 12:54:42 +01001008/*
1009 * Let the architectures decide how many entries should be preallocated.
1010 */
1011void dma_debug_init(u32 num_entries)
1012{
1013 int i;
1014
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001015 /* Do not use dma_debug_initialized here, since we really want to be
1016 * called to set dma_debug_initialized
1017 */
1018 if (global_disable)
Joerg Roedel6bf07872009-01-09 12:54:42 +01001019 return;
1020
1021 for (i = 0; i < HASH_SIZE; ++i) {
1022 INIT_LIST_HEAD(&dma_entry_hash[i].list);
Ingo Molnarb0a5b832009-06-16 16:11:14 +02001023 spin_lock_init(&dma_entry_hash[i].lock);
Joerg Roedel6bf07872009-01-09 12:54:42 +01001024 }
1025
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001026 if (dma_debug_fs_init() != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001027 pr_err("DMA-API: error creating debugfs entries - disabling\n");
Joerg Roedel788dcfa2009-01-09 13:13:27 +01001028 global_disable = true;
1029
1030 return;
1031 }
1032
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001033 if (req_entries)
1034 num_entries = req_entries;
1035
Joerg Roedel6bf07872009-01-09 12:54:42 +01001036 if (prealloc_memory(num_entries) != 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001037 pr_err("DMA-API: debugging out of memory error - disabled\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001038 global_disable = true;
1039
1040 return;
1041 }
1042
FUJITA Tomonorie6a1a892009-04-15 18:22:41 +09001043 nr_total_entries = num_free_entries;
1044
Florian Fainelli2ce8e7e2014-12-10 15:41:25 -08001045 dma_debug_initialized = true;
1046
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001047 pr_info("DMA-API: debugging enabled by kernel config\n");
Joerg Roedel6bf07872009-01-09 12:54:42 +01001048}
1049
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001050static __init int dma_debug_cmdline(char *str)
1051{
1052 if (!str)
1053 return -EINVAL;
1054
1055 if (strncmp(str, "off", 3) == 0) {
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001056 pr_info("DMA-API: debugging disabled on kernel command line\n");
Joerg Roedel59d3daa2009-01-09 13:01:56 +01001057 global_disable = true;
1058 }
1059
1060 return 0;
1061}
1062
1063static __init int dma_debug_entries_cmdline(char *str)
1064{
1065 int res;
1066
1067 if (!str)
1068 return -EINVAL;
1069
1070 res = get_option(&str, &req_entries);
1071
1072 if (!res)
1073 req_entries = 0;
1074
1075 return 0;
1076}
1077
1078__setup("dma_debug=", dma_debug_cmdline);
1079__setup("dma_debug_entries=", dma_debug_entries_cmdline);
1080
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001081static void check_unmap(struct dma_debug_entry *ref)
1082{
1083 struct dma_debug_entry *entry;
1084 struct hash_bucket *bucket;
1085 unsigned long flags;
1086
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001087 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001088 entry = bucket_find_exact(bucket, ref);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001089
1090 if (!entry) {
Alexander Duyck8d640a52013-03-22 15:04:48 -07001091 /* must drop lock before calling dma_mapping_error */
1092 put_hash_bucket(bucket, &flags);
1093
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001094 if (dma_mapping_error(ref->dev, ref->dev_addr)) {
1095 err_printk(ref->dev, NULL,
Alexander Duyck8d640a52013-03-22 15:04:48 -07001096 "DMA-API: device driver tries to free an "
1097 "invalid DMA memory address\n");
1098 } else {
1099 err_printk(ref->dev, NULL,
1100 "DMA-API: device driver tries to free DMA "
1101 "memory it has not allocated [device "
1102 "address=0x%016llx] [size=%llu bytes]\n",
1103 ref->dev_addr, ref->size);
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001104 }
Alexander Duyck8d640a52013-03-22 15:04:48 -07001105 return;
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001106 }
1107
1108 if (ref->size != entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001109 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001110 "DMA memory with different size "
1111 "[device address=0x%016llx] [map size=%llu bytes] "
1112 "[unmap size=%llu bytes]\n",
1113 ref->dev_addr, entry->size, ref->size);
1114 }
1115
1116 if (ref->type != entry->type) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001117 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001118 "DMA memory with wrong function "
1119 "[device address=0x%016llx] [size=%llu bytes] "
1120 "[mapped as %s] [unmapped as %s]\n",
1121 ref->dev_addr, ref->size,
1122 type2name[entry->type], type2name[ref->type]);
1123 } else if ((entry->type == dma_debug_coherent) &&
Dan Williams0abdd7a2014-01-21 15:48:12 -08001124 (phys_addr(ref) != phys_addr(entry))) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001125 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001126 "DMA memory with different CPU address "
1127 "[device address=0x%016llx] [size=%llu bytes] "
Joerg Roedel59a40e702009-10-29 16:25:50 +01001128 "[cpu alloc address=0x%016llx] "
1129 "[cpu free address=0x%016llx]",
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001130 ref->dev_addr, ref->size,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001131 phys_addr(entry),
1132 phys_addr(ref));
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001133 }
1134
1135 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1136 ref->sg_call_ents != entry->sg_call_ents) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001137 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001138 "DMA sg list with different entry count "
1139 "[map count=%d] [unmap count=%d]\n",
1140 entry->sg_call_ents, ref->sg_call_ents);
1141 }
1142
1143 /*
1144 * This may be no bug in reality - but most implementations of the
1145 * DMA API don't handle this properly, so check for it here
1146 */
1147 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001148 err_printk(ref->dev, entry, "DMA-API: device driver frees "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001149 "DMA memory with different direction "
1150 "[device address=0x%016llx] [size=%llu bytes] "
1151 "[mapped with %s] [unmapped with %s]\n",
1152 ref->dev_addr, ref->size,
1153 dir2name[entry->direction],
1154 dir2name[ref->direction]);
1155 }
1156
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001157 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1158 err_printk(ref->dev, entry,
1159 "DMA-API: device driver failed to check map error"
1160 "[device address=0x%016llx] [size=%llu bytes] "
1161 "[mapped as %s]",
1162 ref->dev_addr, ref->size,
1163 type2name[entry->type]);
1164 }
1165
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001166 hash_bucket_del(entry);
1167 dma_entry_free(entry);
1168
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001169 put_hash_bucket(bucket, &flags);
1170}
1171
1172static void check_for_stack(struct device *dev, void *addr)
1173{
1174 if (object_is_on_stack(addr))
Horia Geantaf9134be2014-09-02 14:28:14 +03001175 err_printk(dev, NULL, "DMA-API: device driver maps memory from "
David Woodhouse6c132d12009-01-19 16:52:39 +01001176 "stack [addr=%p]\n", addr);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001177}
1178
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001179static inline bool overlap(void *addr, unsigned long len, void *start, void *end)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001180{
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001181 unsigned long a1 = (unsigned long)addr;
1182 unsigned long b1 = a1 + len;
1183 unsigned long a2 = (unsigned long)start;
1184 unsigned long b2 = (unsigned long)end;
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001185
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001186 return !(b1 <= a2 || a1 >= b2);
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001187}
1188
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001189static void check_for_illegal_area(struct device *dev, void *addr, unsigned long len)
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001190{
Laura Abbottea535e42016-01-14 15:16:50 -08001191 if (overlap(addr, len, _stext, _etext) ||
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001192 overlap(addr, len, __start_rodata, __end_rodata))
1193 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 +01001194}
1195
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001196static void check_sync(struct device *dev,
1197 struct dma_debug_entry *ref,
1198 bool to_cpu)
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001199{
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001200 struct dma_debug_entry *entry;
1201 struct hash_bucket *bucket;
1202 unsigned long flags;
1203
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001204 bucket = get_hash_bucket(ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001205
Neil Hormanc6a21d02011-08-08 15:13:54 -04001206 entry = bucket_find_contain(&bucket, ref, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001207
1208 if (!entry) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001209 err_printk(dev, NULL, "DMA-API: device driver tries "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001210 "to sync DMA memory it has not allocated "
1211 "[device address=0x%016llx] [size=%llu bytes]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001212 (unsigned long long)ref->dev_addr, ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001213 goto out;
1214 }
1215
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001216 if (ref->size > entry->size) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001217 err_printk(dev, entry, "DMA-API: device driver syncs"
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001218 " DMA memory outside allocated range "
1219 "[device address=0x%016llx] "
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001220 "[allocation size=%llu bytes] "
1221 "[sync offset+size=%llu]\n",
1222 entry->dev_addr, entry->size,
1223 ref->size);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001224 }
1225
Krzysztof Halasa42d53b42010-01-08 14:42:36 -08001226 if (entry->direction == DMA_BIDIRECTIONAL)
1227 goto out;
1228
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001229 if (ref->direction != entry->direction) {
David Woodhouse6c132d12009-01-19 16:52:39 +01001230 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001231 "DMA memory with different direction "
1232 "[device address=0x%016llx] [size=%llu bytes] "
1233 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001234 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001235 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001236 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001237 }
1238
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001239 if (to_cpu && !(entry->direction == DMA_FROM_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001240 !(ref->direction == DMA_TO_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001241 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001242 "device read-only DMA memory for cpu "
1243 "[device address=0x%016llx] [size=%llu bytes] "
1244 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001245 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001246 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001247 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001248
1249 if (!to_cpu && !(entry->direction == DMA_TO_DEVICE) &&
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001250 !(ref->direction == DMA_FROM_DEVICE))
David Woodhouse6c132d12009-01-19 16:52:39 +01001251 err_printk(dev, entry, "DMA-API: device driver syncs "
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001252 "device write-only DMA memory to device "
1253 "[device address=0x%016llx] [size=%llu bytes] "
1254 "[mapped with %s] [synced with %s]\n",
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001255 (unsigned long long)ref->dev_addr, entry->size,
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001256 dir2name[entry->direction],
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001257 dir2name[ref->direction]);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001258
Robin Murphy7f830642015-11-06 16:32:55 -08001259 if (ref->sg_call_ents && ref->type == dma_debug_sg &&
1260 ref->sg_call_ents != entry->sg_call_ents) {
1261 err_printk(ref->dev, entry, "DMA-API: device driver syncs "
1262 "DMA sg list with different entry count "
1263 "[map count=%d] [sync count=%d]\n",
1264 entry->sg_call_ents, ref->sg_call_ents);
1265 }
1266
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001267out:
1268 put_hash_bucket(bucket, &flags);
Joerg Roedel2d62ece2009-01-09 14:10:26 +01001269}
1270
Joerg Roedelf62bc982009-01-09 14:14:49 +01001271void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
1272 size_t size, int direction, dma_addr_t dma_addr,
1273 bool map_single)
1274{
1275 struct dma_debug_entry *entry;
1276
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001277 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001278 return;
1279
Shuah Khanbfe0fb02012-11-03 17:00:07 -06001280 if (dma_mapping_error(dev, dma_addr))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001281 return;
1282
1283 entry = dma_entry_alloc();
1284 if (!entry)
1285 return;
1286
1287 entry->dev = dev;
1288 entry->type = dma_debug_page;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001289 entry->pfn = page_to_pfn(page);
1290 entry->offset = offset,
Joerg Roedelf62bc982009-01-09 14:14:49 +01001291 entry->dev_addr = dma_addr;
1292 entry->size = size;
1293 entry->direction = direction;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001294 entry->map_err_type = MAP_ERR_NOT_CHECKED;
Joerg Roedelf62bc982009-01-09 14:14:49 +01001295
Joerg Roedel9537a482009-03-23 15:35:08 +01001296 if (map_single)
Joerg Roedelf62bc982009-01-09 14:14:49 +01001297 entry->type = dma_debug_single;
Joerg Roedel9537a482009-03-23 15:35:08 +01001298
1299 if (!PageHighMem(page)) {
Ingo Molnarf39d1b92009-07-10 21:38:02 +02001300 void *addr = page_address(page) + offset;
1301
Joerg Roedel2e34bde2009-03-16 16:51:55 +01001302 check_for_stack(dev, addr);
1303 check_for_illegal_area(dev, addr, size);
Joerg Roedelf62bc982009-01-09 14:14:49 +01001304 }
1305
1306 add_dma_entry(entry);
1307}
1308EXPORT_SYMBOL(debug_dma_map_page);
1309
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001310void debug_dma_mapping_error(struct device *dev, dma_addr_t dma_addr)
1311{
1312 struct dma_debug_entry ref;
1313 struct dma_debug_entry *entry;
1314 struct hash_bucket *bucket;
1315 unsigned long flags;
1316
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001317 if (unlikely(dma_debug_disabled()))
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001318 return;
1319
1320 ref.dev = dev;
1321 ref.dev_addr = dma_addr;
1322 bucket = get_hash_bucket(&ref, &flags);
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001323
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001324 list_for_each_entry(entry, &bucket->list, list) {
1325 if (!exact_match(&ref, entry))
1326 continue;
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001327
Alexander Duyck96e7d7a2013-03-22 15:04:49 -07001328 /*
1329 * The same physical address can be mapped multiple
1330 * times. Without a hardware IOMMU this results in the
1331 * same device addresses being put into the dma-debug
1332 * hash multiple times too. This can result in false
1333 * positives being reported. Therefore we implement a
1334 * best-fit algorithm here which updates the first entry
1335 * from the hash which fits the reference value and is
1336 * not currently listed as being checked.
1337 */
1338 if (entry->map_err_type == MAP_ERR_NOT_CHECKED) {
1339 entry->map_err_type = MAP_ERR_CHECKED;
1340 break;
1341 }
1342 }
1343
Shuah Khan6c9c6d62012-10-08 11:08:06 -06001344 put_hash_bucket(bucket, &flags);
1345}
1346EXPORT_SYMBOL(debug_dma_mapping_error);
1347
Joerg Roedelf62bc982009-01-09 14:14:49 +01001348void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
1349 size_t size, int direction, bool map_single)
1350{
1351 struct dma_debug_entry ref = {
1352 .type = dma_debug_page,
1353 .dev = dev,
1354 .dev_addr = addr,
1355 .size = size,
1356 .direction = direction,
1357 };
1358
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001359 if (unlikely(dma_debug_disabled()))
Joerg Roedelf62bc982009-01-09 14:14:49 +01001360 return;
1361
1362 if (map_single)
1363 ref.type = dma_debug_single;
1364
1365 check_unmap(&ref);
1366}
1367EXPORT_SYMBOL(debug_dma_unmap_page);
1368
Joerg Roedel972aa452009-01-09 14:19:54 +01001369void debug_dma_map_sg(struct device *dev, struct scatterlist *sg,
1370 int nents, int mapped_ents, int direction)
1371{
1372 struct dma_debug_entry *entry;
1373 struct scatterlist *s;
1374 int i;
1375
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001376 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001377 return;
1378
1379 for_each_sg(sg, s, mapped_ents, i) {
1380 entry = dma_entry_alloc();
1381 if (!entry)
1382 return;
1383
1384 entry->type = dma_debug_sg;
1385 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001386 entry->pfn = page_to_pfn(sg_page(s));
1387 entry->offset = s->offset,
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001388 entry->size = sg_dma_len(s);
FUJITA Tomonori15aedea42009-05-27 09:43:01 +09001389 entry->dev_addr = sg_dma_address(s);
Joerg Roedel972aa452009-01-09 14:19:54 +01001390 entry->direction = direction;
1391 entry->sg_call_ents = nents;
1392 entry->sg_mapped_ents = mapped_ents;
1393
Joerg Roedel9537a482009-03-23 15:35:08 +01001394 if (!PageHighMem(sg_page(s))) {
1395 check_for_stack(dev, sg_virt(s));
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001396 check_for_illegal_area(dev, sg_virt(s), sg_dma_len(s));
Joerg Roedel9537a482009-03-23 15:35:08 +01001397 }
Joerg Roedel972aa452009-01-09 14:19:54 +01001398
1399 add_dma_entry(entry);
1400 }
1401}
1402EXPORT_SYMBOL(debug_dma_map_sg);
1403
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001404static int get_nr_mapped_entries(struct device *dev,
1405 struct dma_debug_entry *ref)
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001406{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001407 struct dma_debug_entry *entry;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001408 struct hash_bucket *bucket;
1409 unsigned long flags;
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001410 int mapped_ents;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001411
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001412 bucket = get_hash_bucket(ref, &flags);
Neil Hormanc6a21d02011-08-08 15:13:54 -04001413 entry = bucket_find_exact(bucket, ref);
Joerg Roedelc17e2cf2009-06-08 15:19:29 +02001414 mapped_ents = 0;
1415
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001416 if (entry)
1417 mapped_ents = entry->sg_mapped_ents;
1418 put_hash_bucket(bucket, &flags);
1419
1420 return mapped_ents;
1421}
1422
Joerg Roedel972aa452009-01-09 14:19:54 +01001423void debug_dma_unmap_sg(struct device *dev, struct scatterlist *sglist,
1424 int nelems, int dir)
1425{
Joerg Roedel972aa452009-01-09 14:19:54 +01001426 struct scatterlist *s;
1427 int mapped_ents = 0, i;
Joerg Roedel972aa452009-01-09 14:19:54 +01001428
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001429 if (unlikely(dma_debug_disabled()))
Joerg Roedel972aa452009-01-09 14:19:54 +01001430 return;
1431
1432 for_each_sg(sglist, s, nelems, i) {
1433
1434 struct dma_debug_entry ref = {
1435 .type = dma_debug_sg,
1436 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001437 .pfn = page_to_pfn(sg_page(s)),
1438 .offset = s->offset,
FUJITA Tomonori15aedea42009-05-27 09:43:01 +09001439 .dev_addr = sg_dma_address(s),
FUJITA Tomonori884d0592009-05-27 09:43:02 +09001440 .size = sg_dma_len(s),
Joerg Roedel972aa452009-01-09 14:19:54 +01001441 .direction = dir,
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001442 .sg_call_ents = nelems,
Joerg Roedel972aa452009-01-09 14:19:54 +01001443 };
1444
1445 if (mapped_ents && i >= mapped_ents)
1446 break;
1447
Joerg Roedele5e8c5b2009-06-11 10:03:42 +02001448 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001449 mapped_ents = get_nr_mapped_entries(dev, &ref);
Joerg Roedel972aa452009-01-09 14:19:54 +01001450
1451 check_unmap(&ref);
1452 }
1453}
1454EXPORT_SYMBOL(debug_dma_unmap_sg);
1455
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001456void debug_dma_alloc_coherent(struct device *dev, size_t size,
1457 dma_addr_t dma_addr, void *virt)
1458{
1459 struct dma_debug_entry *entry;
1460
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001461 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001462 return;
1463
1464 if (unlikely(virt == NULL))
1465 return;
1466
1467 entry = dma_entry_alloc();
1468 if (!entry)
1469 return;
1470
1471 entry->type = dma_debug_coherent;
1472 entry->dev = dev;
Dan Williams0abdd7a2014-01-21 15:48:12 -08001473 entry->pfn = page_to_pfn(virt_to_page(virt));
Daniel Mentz0354aec2015-12-15 17:38:48 -08001474 entry->offset = (size_t) virt & ~PAGE_MASK;
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001475 entry->size = size;
1476 entry->dev_addr = dma_addr;
1477 entry->direction = DMA_BIDIRECTIONAL;
1478
1479 add_dma_entry(entry);
1480}
1481EXPORT_SYMBOL(debug_dma_alloc_coherent);
1482
1483void debug_dma_free_coherent(struct device *dev, size_t size,
1484 void *virt, dma_addr_t addr)
1485{
1486 struct dma_debug_entry ref = {
1487 .type = dma_debug_coherent,
1488 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001489 .pfn = page_to_pfn(virt_to_page(virt)),
Daniel Mentz0354aec2015-12-15 17:38:48 -08001490 .offset = (size_t) virt & ~PAGE_MASK,
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001491 .dev_addr = addr,
1492 .size = size,
1493 .direction = DMA_BIDIRECTIONAL,
1494 };
1495
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001496 if (unlikely(dma_debug_disabled()))
Joerg Roedel6bfd4492009-01-09 14:38:50 +01001497 return;
1498
1499 check_unmap(&ref);
1500}
1501EXPORT_SYMBOL(debug_dma_free_coherent);
1502
Niklas Söderlund0e74b342016-08-10 13:22:15 +02001503void debug_dma_map_resource(struct device *dev, phys_addr_t addr, size_t size,
1504 int direction, dma_addr_t dma_addr)
1505{
1506 struct dma_debug_entry *entry;
1507
1508 if (unlikely(dma_debug_disabled()))
1509 return;
1510
1511 entry = dma_entry_alloc();
1512 if (!entry)
1513 return;
1514
1515 entry->type = dma_debug_resource;
1516 entry->dev = dev;
1517 entry->pfn = __phys_to_pfn(addr);
1518 entry->offset = offset_in_page(addr);
1519 entry->size = size;
1520 entry->dev_addr = dma_addr;
1521 entry->direction = direction;
1522 entry->map_err_type = MAP_ERR_NOT_CHECKED;
1523
1524 add_dma_entry(entry);
1525}
1526EXPORT_SYMBOL(debug_dma_map_resource);
1527
1528void debug_dma_unmap_resource(struct device *dev, dma_addr_t dma_addr,
1529 size_t size, int direction)
1530{
1531 struct dma_debug_entry ref = {
1532 .type = dma_debug_resource,
1533 .dev = dev,
1534 .dev_addr = dma_addr,
1535 .size = size,
1536 .direction = direction,
1537 };
1538
1539 if (unlikely(dma_debug_disabled()))
1540 return;
1541
1542 check_unmap(&ref);
1543}
1544EXPORT_SYMBOL(debug_dma_unmap_resource);
1545
Joerg Roedelb9d23172009-01-09 14:43:04 +01001546void debug_dma_sync_single_for_cpu(struct device *dev, dma_addr_t dma_handle,
1547 size_t size, int direction)
1548{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001549 struct dma_debug_entry ref;
1550
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001551 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001552 return;
1553
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001554 ref.type = dma_debug_single;
1555 ref.dev = dev;
1556 ref.dev_addr = dma_handle;
1557 ref.size = size;
1558 ref.direction = direction;
1559 ref.sg_call_ents = 0;
1560
1561 check_sync(dev, &ref, true);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001562}
1563EXPORT_SYMBOL(debug_dma_sync_single_for_cpu);
1564
1565void debug_dma_sync_single_for_device(struct device *dev,
1566 dma_addr_t dma_handle, size_t size,
1567 int direction)
1568{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001569 struct dma_debug_entry ref;
1570
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001571 if (unlikely(dma_debug_disabled()))
Joerg Roedelb9d23172009-01-09 14:43:04 +01001572 return;
1573
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001574 ref.type = dma_debug_single;
1575 ref.dev = dev;
1576 ref.dev_addr = dma_handle;
1577 ref.size = size;
1578 ref.direction = direction;
1579 ref.sg_call_ents = 0;
1580
1581 check_sync(dev, &ref, false);
Joerg Roedelb9d23172009-01-09 14:43:04 +01001582}
1583EXPORT_SYMBOL(debug_dma_sync_single_for_device);
1584
Joerg Roedel948408b2009-01-09 14:55:38 +01001585void debug_dma_sync_single_range_for_cpu(struct device *dev,
1586 dma_addr_t dma_handle,
1587 unsigned long offset, size_t size,
1588 int direction)
1589{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001590 struct dma_debug_entry ref;
1591
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001592 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001593 return;
1594
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001595 ref.type = dma_debug_single;
1596 ref.dev = dev;
1597 ref.dev_addr = dma_handle;
1598 ref.size = offset + size;
1599 ref.direction = direction;
1600 ref.sg_call_ents = 0;
1601
1602 check_sync(dev, &ref, true);
Joerg Roedel948408b2009-01-09 14:55:38 +01001603}
1604EXPORT_SYMBOL(debug_dma_sync_single_range_for_cpu);
1605
1606void debug_dma_sync_single_range_for_device(struct device *dev,
1607 dma_addr_t dma_handle,
1608 unsigned long offset,
1609 size_t size, int direction)
1610{
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001611 struct dma_debug_entry ref;
1612
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001613 if (unlikely(dma_debug_disabled()))
Joerg Roedel948408b2009-01-09 14:55:38 +01001614 return;
1615
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001616 ref.type = dma_debug_single;
1617 ref.dev = dev;
1618 ref.dev_addr = dma_handle;
1619 ref.size = offset + size;
1620 ref.direction = direction;
1621 ref.sg_call_ents = 0;
1622
1623 check_sync(dev, &ref, false);
Joerg Roedel948408b2009-01-09 14:55:38 +01001624}
1625EXPORT_SYMBOL(debug_dma_sync_single_range_for_device);
1626
Joerg Roedela31fba52009-01-09 15:01:12 +01001627void debug_dma_sync_sg_for_cpu(struct device *dev, struct scatterlist *sg,
1628 int nelems, int direction)
1629{
1630 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001631 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001632
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001633 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001634 return;
1635
1636 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001637
1638 struct dma_debug_entry ref = {
1639 .type = dma_debug_sg,
1640 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001641 .pfn = page_to_pfn(sg_page(s)),
1642 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001643 .dev_addr = sg_dma_address(s),
1644 .size = sg_dma_len(s),
1645 .direction = direction,
1646 .sg_call_ents = nelems,
1647 };
1648
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001649 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001650 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001651
1652 if (i >= mapped_ents)
1653 break;
1654
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001655 check_sync(dev, &ref, true);
Joerg Roedela31fba52009-01-09 15:01:12 +01001656 }
1657}
1658EXPORT_SYMBOL(debug_dma_sync_sg_for_cpu);
1659
1660void debug_dma_sync_sg_for_device(struct device *dev, struct scatterlist *sg,
1661 int nelems, int direction)
1662{
1663 struct scatterlist *s;
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001664 int mapped_ents = 0, i;
Joerg Roedela31fba52009-01-09 15:01:12 +01001665
Florian Fainelli01ce18b2014-12-10 15:41:23 -08001666 if (unlikely(dma_debug_disabled()))
Joerg Roedela31fba52009-01-09 15:01:12 +01001667 return;
1668
1669 for_each_sg(sg, s, nelems, i) {
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001670
1671 struct dma_debug_entry ref = {
1672 .type = dma_debug_sg,
1673 .dev = dev,
Dan Williams0abdd7a2014-01-21 15:48:12 -08001674 .pfn = page_to_pfn(sg_page(s)),
1675 .offset = s->offset,
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001676 .dev_addr = sg_dma_address(s),
1677 .size = sg_dma_len(s),
1678 .direction = direction,
1679 .sg_call_ents = nelems,
1680 };
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001681 if (!i)
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001682 mapped_ents = get_nr_mapped_entries(dev, &ref);
FUJITA Tomonori88f39072009-05-27 09:43:03 +09001683
1684 if (i >= mapped_ents)
1685 break;
1686
Joerg Roedelaa010ef2009-06-12 15:25:06 +02001687 check_sync(dev, &ref, false);
Joerg Roedela31fba52009-01-09 15:01:12 +01001688 }
1689}
1690EXPORT_SYMBOL(debug_dma_sync_sg_for_device);
1691
Joerg Roedel1745de52009-05-22 21:49:51 +02001692static int __init dma_debug_driver_setup(char *str)
1693{
1694 int i;
1695
1696 for (i = 0; i < NAME_MAX_LEN - 1; ++i, ++str) {
1697 current_driver_name[i] = *str;
1698 if (*str == 0)
1699 break;
1700 }
1701
1702 if (current_driver_name[0])
Joerg Roedele7ed70e2009-06-08 15:39:24 +02001703 pr_info("DMA-API: enable driver filter for driver [%s]\n",
1704 current_driver_name);
Joerg Roedel1745de52009-05-22 21:49:51 +02001705
1706
1707 return 1;
1708}
1709__setup("dma_debug_driver=", dma_debug_driver_setup);