diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 14:09:17 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-26 14:09:17 -0500 |
commit | f6c0ffa8f0b0781f4954cb06f0a81d6c10c1b434 (patch) | |
tree | f99190661706d18f129497a4ef2d37822c9c34db /arch/arm/mach-exynos/mach-exynos4-dt.c | |
parent | 42a0a1b0fd343888c59afc8b243a77bcec2cc11c (diff) | |
parent | 604542b824f72fa5d7fd977af277538c1e15b5f0 (diff) |
Merge tag 'iommu-updates-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu
Pull IOMMU Updates from Joerg Roedel:
"Besides some fixes and cleanups in the code there are three more
important changes to point out this time:
* New IOMMU driver for the ARM SHMOBILE platform
* An IOMMU-API extension for non-paging IOMMUs (required for
upcoming PAMU driver)
* Rework of the way the Tegra IOMMU driver accesses its
registetrs - register windows are easier to extend now.
There are also a few changes to non-iommu code, but that is acked by
the respective maintainers."
* tag 'iommu-updates-v3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu: (23 commits)
iommu/tegra: assume CONFIG_OF in SMMU driver
iommu/tegra: assume CONFIG_OF in gart driver
iommu/amd: Remove redundant NULL check before dma_ops_domain_free().
iommu/amd: Initialize device table after dma_ops
iommu/vt-d: Zero out allocated memory in dmar_enable_qi
iommu/tegra: smmu: Fix incorrect mask for regbase
iommu/exynos: Make exynos_sysmmu_disable static
ARM: mach-shmobile: r8a7740: Add IPMMU device
ARM: mach-shmobile: sh73a0: Add IPMMU device
ARM: mach-shmobile: sh7372: Add IPMMU device
iommu/shmobile: Add iommu driver for Renesas IPMMU modules
iommu: Add DOMAIN_ATTR_WINDOWS domain attribute
iommu: Add domain window handling functions
iommu: Implement DOMAIN_ATTR_PAGING attribute
iommu: Check for valid pgsize_bitmap in iommu_map/unmap
iommu: Make sure DOMAIN_ATTR_MAX is really the maximum
iommu/tegra: smmu: Change SMMU's dependency on ARCH_TEGRA
iommu/tegra: smmu: Use helper function to check for valid register offset
iommu/tegra: smmu: Support variable MMIO ranges/blocks
iommu/tegra: Add missing spinlock initialization
...
Diffstat (limited to 'arch/arm/mach-exynos/mach-exynos4-dt.c')
-rw-r--r-- | arch/arm/mach-exynos/mach-exynos4-dt.c | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/mach-exynos4-dt.c b/arch/arm/mach-exynos/mach-exynos4-dt.c index 112d10e53d20..3358088c822a 100644 --- a/arch/arm/mach-exynos/mach-exynos4-dt.c +++ b/arch/arm/mach-exynos/mach-exynos4-dt.c | |||
@@ -79,6 +79,40 @@ static const struct of_dev_auxdata exynos4_auxdata_lookup[] __initconst = { | |||
79 | OF_DEV_AUXDATA("arm,pl330", EXYNOS4_PA_MDMA1, "dma-pl330.2", NULL), | 79 | OF_DEV_AUXDATA("arm,pl330", EXYNOS4_PA_MDMA1, "dma-pl330.2", NULL), |
80 | OF_DEV_AUXDATA("samsung,exynos4210-tmu", EXYNOS4_PA_TMU, | 80 | OF_DEV_AUXDATA("samsung,exynos4210-tmu", EXYNOS4_PA_TMU, |
81 | "exynos-tmu", NULL), | 81 | "exynos-tmu", NULL), |
82 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x13620000, | ||
83 | "exynos-sysmmu.0", NULL), /* MFC_L */ | ||
84 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x13630000, | ||
85 | "exynos-sysmmu.1", NULL), /* MFC_R */ | ||
86 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x13E20000, | ||
87 | "exynos-sysmmu.2", NULL), /* TV */ | ||
88 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11A60000, | ||
89 | "exynos-sysmmu.3", NULL), /* JPEG */ | ||
90 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x12A30000, | ||
91 | "exynos-sysmmu.4", NULL), /* ROTATOR */ | ||
92 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11A20000, | ||
93 | "exynos-sysmmu.5", NULL), /* FIMC0 */ | ||
94 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11A30000, | ||
95 | "exynos-sysmmu.6", NULL), /* FIMC1 */ | ||
96 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11A40000, | ||
97 | "exynos-sysmmu.7", NULL), /* FIMC2 */ | ||
98 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11A50000, | ||
99 | "exynos-sysmmu.8", NULL), /* FIMC3 */ | ||
100 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x12A20000, | ||
101 | "exynos-sysmmu.9", NULL), /* G2D(4210) */ | ||
102 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x10A40000, | ||
103 | "exynos-sysmmu.9", NULL), /* G2D(4x12) */ | ||
104 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x11E20000, | ||
105 | "exynos-sysmmu.10", NULL), /* FIMD0 */ | ||
106 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x12220000, | ||
107 | "exynos-sysmmu.11", NULL), /* FIMD1(4210) */ | ||
108 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x12260000, | ||
109 | "exynos-sysmmu.12", NULL), /* IS0(4x12) */ | ||
110 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x122B0000, | ||
111 | "exynos-sysmmu.13", NULL), /* IS1(4x12) */ | ||
112 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x123B0000, | ||
113 | "exynos-sysmmu.14", NULL), /* FIMC-LITE0(4x12) */ | ||
114 | OF_DEV_AUXDATA("samsung,exynos-sysmmu", 0x123C0000, | ||
115 | "exynos-sysmmu.15", NULL), /* FIMC-LITE1(4x12) */ | ||
82 | {}, | 116 | {}, |
83 | }; | 117 | }; |
84 | 118 | ||