summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/devices.c
diff options
context:
space:
mode:
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
+