aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Reding <treding@nvidia.com>2014-11-07 10:10:41 -0500
committerThierry Reding <treding@nvidia.com>2015-05-04 06:54:23 -0400
commit242b1d713386e8e2fd7f62cc1ed4681a12290848 (patch)
treee91adedcd99c0700c64e53bc4fa72117e7ade8ef
parentd1313e7896e932a92e21912850ef034e58571b66 (diff)
memory: tegra: Add Tegra132 support
The memory controller on Tegra132 is very similar to the one found on Tegra124. But the Denver CPUs don't have an outer cache, so dcache maintenance is done slightly differently. Signed-off-by: Thierry Reding <treding@nvidia.com>
-rw-r--r--drivers/iommu/Kconfig2
-rw-r--r--drivers/memory/tegra/Makefile1
-rw-r--r--drivers/memory/tegra/mc.c3
-rw-r--r--drivers/memory/tegra/mc.h4
-rw-r--r--drivers/memory/tegra/tegra124.c33
5 files changed, 42 insertions, 1 deletions
diff --git a/drivers/iommu/Kconfig b/drivers/iommu/Kconfig
index 1ae4e547b419..73f918d066c6 100644
--- a/drivers/iommu/Kconfig
+++ b/drivers/iommu/Kconfig
@@ -219,7 +219,7 @@ config TEGRA_IOMMU_SMMU
219 select IOMMU_API 219 select IOMMU_API
220 help 220 help
221 This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra 221 This driver supports the IOMMU hardware (SMMU) found on NVIDIA Tegra
222 SoCs (Tegra30 up to Tegra124). 222 SoCs (Tegra30 up to Tegra132).
223 223
224config EXYNOS_IOMMU 224config EXYNOS_IOMMU
225 bool "Exynos IOMMU Support" 225 bool "Exynos IOMMU Support"
diff --git a/drivers/memory/tegra/Makefile b/drivers/memory/tegra/Makefile
index 0d9f497b786c..9d4f4319b527 100644
--- a/drivers/memory/tegra/Makefile
+++ b/drivers/memory/tegra/Makefile
@@ -3,5 +3,6 @@ tegra-mc-y := mc.o
3tegra-mc-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30.o 3tegra-mc-$(CONFIG_ARCH_TEGRA_3x_SOC) += tegra30.o
4tegra-mc-$(CONFIG_ARCH_TEGRA_114_SOC) += tegra114.o 4tegra-mc-$(CONFIG_ARCH_TEGRA_114_SOC) += tegra114.o
5tegra-mc-$(CONFIG_ARCH_TEGRA_124_SOC) += tegra124.o 5tegra-mc-$(CONFIG_ARCH_TEGRA_124_SOC) += tegra124.o
6tegra-mc-$(CONFIG_ARCH_TEGRA_132_SOC) += tegra124.o
6 7
7obj-$(CONFIG_TEGRA_MC) += tegra-mc.o 8obj-$(CONFIG_TEGRA_MC) += tegra-mc.o
diff --git a/drivers/memory/tegra/mc.c b/drivers/memory/tegra/mc.c
index fe3c44e7e1d1..9b7c1645fd59 100644
--- a/drivers/memory/tegra/mc.c
+++ b/drivers/memory/tegra/mc.c
@@ -58,6 +58,9 @@ static const struct of_device_id tegra_mc_of_match[] = {
58#ifdef CONFIG_ARCH_TEGRA_124_SOC 58#ifdef CONFIG_ARCH_TEGRA_124_SOC
59 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc }, 59 { .compatible = "nvidia,tegra124-mc", .data = &tegra124_mc_soc },
60#endif 60#endif
61#ifdef CONFIG_ARCH_TEGRA_132_SOC
62 { .compatible = "nvidia,tegra132-mc", .data = &tegra132_mc_soc },
63#endif
61 { } 64 { }
62}; 65};
63MODULE_DEVICE_TABLE(of, tegra_mc_of_match); 66MODULE_DEVICE_TABLE(of, tegra_mc_of_match);
diff --git a/drivers/memory/tegra/mc.h b/drivers/memory/tegra/mc.h
index d5d21147fc77..b7361b0a6696 100644
--- a/drivers/memory/tegra/mc.h
+++ b/drivers/memory/tegra/mc.h
@@ -37,4 +37,8 @@ extern const struct tegra_mc_soc tegra114_mc_soc;
37extern const struct tegra_mc_soc tegra124_mc_soc; 37extern const struct tegra_mc_soc tegra124_mc_soc;
38#endif 38#endif
39 39
40#ifdef CONFIG_ARCH_TEGRA_132_SOC
41extern const struct tegra_mc_soc tegra132_mc_soc;
42#endif
43
40#endif /* MEMORY_TEGRA_MC_H */ 44#endif /* MEMORY_TEGRA_MC_H */
diff --git a/drivers/memory/tegra/tegra124.c b/drivers/memory/tegra/tegra124.c
index e63e05769d0a..b996dfb9358b 100644
--- a/drivers/memory/tegra/tegra124.c
+++ b/drivers/memory/tegra/tegra124.c
@@ -993,3 +993,36 @@ const struct tegra_mc_soc tegra124_mc_soc = {
993 .smmu = &tegra124_smmu_soc, 993 .smmu = &tegra124_smmu_soc,
994}; 994};
995#endif /* CONFIG_ARCH_TEGRA_124_SOC */ 995#endif /* CONFIG_ARCH_TEGRA_124_SOC */
996
997#ifdef CONFIG_ARCH_TEGRA_132_SOC
998static void tegra132_flush_dcache(struct page *page, unsigned long offset,
999 size_t size)
1000{
1001 void *virt = page_address(page) + offset;
1002
1003 __flush_dcache_area(virt, size);
1004}
1005
1006static const struct tegra_smmu_ops tegra132_smmu_ops = {
1007 .flush_dcache = tegra132_flush_dcache,
1008};
1009
1010static const struct tegra_smmu_soc tegra132_smmu_soc = {
1011 .clients = tegra124_mc_clients,
1012 .num_clients = ARRAY_SIZE(tegra124_mc_clients),
1013 .swgroups = tegra124_swgroups,
1014 .num_swgroups = ARRAY_SIZE(tegra124_swgroups),
1015 .supports_round_robin_arbitration = true,
1016 .supports_request_limit = true,
1017 .num_asids = 128,
1018 .ops = &tegra132_smmu_ops,
1019};
1020
1021const struct tegra_mc_soc tegra132_mc_soc = {
1022 .clients = tegra124_mc_clients,
1023 .num_clients = ARRAY_SIZE(tegra124_mc_clients),
1024 .num_address_bits = 34,
1025 .atom_size = 32,
1026 .smmu = &tegra132_smmu_soc,
1027};
1028#endif /* CONFIG_ARCH_TEGRA_132_SOC */