summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/devices.c
diff options
context:
space:
mode:
authorKasoju Mallikarjun <mkasoju@nvidia.com>2011-08-03 23:47:12 +0530
committerDan Willemsen <dwillemsen@nvidia.com>2011-11-30 21:48:02 -0800
commitabcc4836f1231c1ac692c9742cd98ca898718633 (patch)
tree444fc1a1ac69d694633745c383a603c6a09a1bfe /arch/arm/mach-tegra/devices.c
parentee15e3c928970e586556f9bc7126e56bb5ca2f1a (diff)
arm: tegra: devices: Add PMC IO address in SE resources
Added PMC IO registers as platform resources of Security Engine for storing context save buffer address in PMC registes during context save. Bug 855476 Original-Change-Id: I3bd5791743b157139d61ecea3d3e1ef131d8cce5 Reviewed-on: http://git-master/r/44808 Tested-by: Mallikarjun Kasoju <mkasoju@nvidia.com> Reviewed-by: Hanumanth Venkateswa Moganty <vmoganty@nvidia.com> Rebase-Id: Rd5030cf1659887cedd9f60b00224ad7dddd7cd8c
Diffstat (limited to 'arch/arm/mach-tegra/devices.c')
-rw-r--r--arch/arm/mach-tegra/devices.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/mach-tegra/devices.c b/arch/arm/mach-tegra/devices.c
index 53094a262e8d..03b76403274b 100644
--- a/arch/arm/mach-tegra/devices.c
+++ b/arch/arm/mach-tegra/devices.c
@@ -1474,7 +1474,7 @@ struct platform_device tegra_kbc_device = {
#if !defined(CONFIG_ARCH_TEGRA_2x_SOC)
static struct resource tegra_tsensor_resources[]= {
{
- .start = TEGRA_TSENSOR_BASE,
+ .start = TEGRA_TSENSOR_BASE,
.end = TEGRA_TSENSOR_BASE + TEGRA_TSENSOR_SIZE - 1,
.flags = IORESOURCE_MEM,
},
@@ -1512,6 +1512,11 @@ struct resource tegra_se_resources[] = {
.flags = IORESOURCE_MEM,
},
[1] = {
+ .start = TEGRA_PMC_BASE,
+ .end = TEGRA_PMC_BASE + SZ_256 - 1,
+ .flags = IORESOURCE_MEM,
+ },
+ [2] = {
.start = INT_SE,
.end = INT_SE,
.flags = IORESOURCE_IRQ,