aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/dma-debug.h23
-rw-r--r--lib/dma-debug.c53
2 files changed, 76 insertions, 0 deletions
diff --git a/include/linux/dma-debug.h b/include/linux/dma-debug.h
index 345d5387a30d..65f73526ba2c 100644
--- a/include/linux/dma-debug.h
+++ b/include/linux/dma-debug.h
@@ -28,12 +28,35 @@ struct device;
28 28
29extern void dma_debug_init(u32 num_entries); 29extern void dma_debug_init(u32 num_entries);
30 30
31extern void debug_dma_map_page(struct device *dev, struct page *page,
32 size_t offset, size_t size,
33 int direction, dma_addr_t dma_addr,
34 bool map_single);
35
36extern void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
37 size_t size, int direction, bool map_single);
38
39
31#else /* CONFIG_DMA_API_DEBUG */ 40#else /* CONFIG_DMA_API_DEBUG */
32 41
33static inline void dma_debug_init(u32 num_entries) 42static inline void dma_debug_init(u32 num_entries)
34{ 43{
35} 44}
36 45
46static inline void debug_dma_map_page(struct device *dev, struct page *page,
47 size_t offset, size_t size,
48 int direction, dma_addr_t dma_addr,
49 bool map_single)
50{
51}
52
53static inline void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
54 size_t size, int direction,
55 bool map_single)
56{
57}
58
59
37#endif /* CONFIG_DMA_API_DEBUG */ 60#endif /* CONFIG_DMA_API_DEBUG */
38 61
39#endif /* __DMA_DEBUG_H */ 62#endif /* __DMA_DEBUG_H */
diff --git a/lib/dma-debug.c b/lib/dma-debug.c
index d0cb47a4211e..a2ed2b769685 100644
--- a/lib/dma-debug.c
+++ b/lib/dma-debug.c
@@ -566,3 +566,56 @@ out:
566 566
567} 567}
568 568
569void debug_dma_map_page(struct device *dev, struct page *page, size_t offset,
570 size_t size, int direction, dma_addr_t dma_addr,
571 bool map_single)
572{
573 struct dma_debug_entry *entry;
574
575 if (unlikely(global_disable))
576 return;
577
578 if (unlikely(dma_mapping_error(dev, dma_addr)))
579 return;
580
581 entry = dma_entry_alloc();
582 if (!entry)
583 return;
584
585 entry->dev = dev;
586 entry->type = dma_debug_page;
587 entry->paddr = page_to_phys(page) + offset;
588 entry->dev_addr = dma_addr;
589 entry->size = size;
590 entry->direction = direction;
591
592 if (map_single) {
593 entry->type = dma_debug_single;
594 check_for_stack(dev, page_address(page) + offset);
595 }
596
597 add_dma_entry(entry);
598}
599EXPORT_SYMBOL(debug_dma_map_page);
600
601void debug_dma_unmap_page(struct device *dev, dma_addr_t addr,
602 size_t size, int direction, bool map_single)
603{
604 struct dma_debug_entry ref = {
605 .type = dma_debug_page,
606 .dev = dev,
607 .dev_addr = addr,
608 .size = size,
609 .direction = direction,
610 };
611
612 if (unlikely(global_disable))
613 return;
614
615 if (map_single)
616 ref.type = dma_debug_single;
617
618 check_unmap(&ref);
619}
620EXPORT_SYMBOL(debug_dma_unmap_page);
621