summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/devices.c
diff options
context:
space:
mode:
authorBitan Biswas <bbiswas@nvidia.com>2011-02-22 18:43:43 +0530
committerVarun Colbert <vcolbert@nvidia.com>2011-07-08 16:28:03 -0700
commit202619ae9561d591bd297cb47ba6abd598c17f17 (patch)
treea094a35fcc8332126414debaed1208d82488d658 /arch/arm/mach-tegra/devices.c
parentbd3d36be87547863165faeb8884d9c0be76385d4 (diff)
arm:tegra:tsensor: device definitions
Tegra internal temperature sensor addresses defined Bug 661228 Change-Id: I061ac9e7da3115d1e832e645582353f93378d291 Reviewed-on: http://git-master/r/36119 Reviewed-by: Bitan Biswas <bbiswas@nvidia.com> Tested-by: Bitan Biswas <bbiswas@nvidia.com> Reviewed-by: Narendra Damahe <ndamahe@nvidia.com> Reviewed-by: Diwakar Tundlam <dtundlam@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/devices.c')
-rw-r--r--arch/arm/mach-tegra/devices.c32
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/devices.c b/arch/arm/mach-tegra/devices.c
index 53fe654e2ab3..b23b9108287e 100644
--- a/arch/arm/mach-tegra/devices.c
+++ b/arch/arm/mach-tegra/devices.c
@@ -1334,6 +1334,37 @@ struct platform_device tegra_kbc_device = {
};
#if !defined(CONFIG_ARCH_TEGRA_2x_SOC)
+static struct resource tegra_tsensor_resources[]= {
+ {
+ .start = TEGRA_TSENSOR_BASE,
+ .end = TEGRA_TSENSOR_BASE + TEGRA_TSENSOR_SIZE - 1,
+ .flags = IORESOURCE_MEM,
+ },
+ {
+ .start = INT_TSENSOR,
+ .end = INT_TSENSOR,
+ .flags = IORESOURCE_IRQ,
+ },
+ {
+ .start = TEGRA_PMC_BASE + 0x1B0,
+ /* 2 pmc registers mapped */
+ .end = TEGRA_PMC_BASE + 0x1B0 + (2 * 4),
+ .flags = IORESOURCE_MEM,
+ },
+};
+
+struct platform_device tegra_tsensor_device = {
+ .name = "tegra-tsensor",
+ .id = -1,
+ .num_resources = ARRAY_SIZE(tegra_tsensor_resources),
+ .resource = tegra_tsensor_resources,
+ .dev = {
+ .platform_data = 0,
+ },
+};
+#endif
+
+#if !defined(CONFIG_ARCH_TEGRA_2x_SOC)
static u64 tegra_se_dma_mask = DMA_BIT_MASK(32);
struct resource tegra_se_resources[] = {
@@ -1360,3 +1391,4 @@ struct platform_device tegra_se_device = {
.num_resources = ARRAY_SIZE(tegra_se_resources),
};
#endif
+