aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/platform_data/iommu-omap.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/platform_data/iommu-omap.h')
-rw-r--r--include/linux/platform_data/iommu-omap.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/linux/platform_data/iommu-omap.h b/include/linux/platform_data/iommu-omap.h
index c677b9f2fefa..ef2060d7eeb8 100644
--- a/include/linux/platform_data/iommu-omap.h
+++ b/include/linux/platform_data/iommu-omap.h
@@ -10,6 +10,8 @@
10 * published by the Free Software Foundation. 10 * published by the Free Software Foundation.
11 */ 11 */
12 12
13#include <linux/platform_device.h>
14
13#define MMU_REG_SIZE 256 15#define MMU_REG_SIZE 256
14 16
15/** 17/**
@@ -43,7 +45,11 @@ struct omap_mmu_dev_attr {
43struct iommu_platform_data { 45struct iommu_platform_data {
44 const char *name; 46 const char *name;
45 const char *clk_name; 47 const char *clk_name;
46 const int nr_tlb_entries; 48 const char *reset_name;
49 int nr_tlb_entries;
47 u32 da_start; 50 u32 da_start;
48 u32 da_end; 51 u32 da_end;
52
53 int (*assert_reset)(struct platform_device *pdev, const char *name);
54 int (*deassert_reset)(struct platform_device *pdev, const char *name);
49}; 55};