aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/powerdomains.h
diff options
context:
space:
mode:
authorPaul Walmsley <paul@pwsan.com>2008-08-19 04:08:42 -0400
committerTony Lindgren <tony@atomide.com>2008-08-19 04:08:42 -0400
commitfe6a58f8f50500a4c9a82da4a9bdae41c1500fa0 (patch)
treed088e9400557dc877c134897b287b61fd69522c7 /arch/arm/mach-omap2/powerdomains.h
parent9717100f77538bbee54d2b5c293fd829b252d2a6 (diff)
ARM: OMAP2: Powerdomain: Add OMAP2 powerdomains
Add OMAP2-specific powerdomains. Signed-off-by: Paul Walmsley <paul@pwsan.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/powerdomains.h')
-rw-r--r--arch/arm/mach-omap2/powerdomains.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/powerdomains.h b/arch/arm/mach-omap2/powerdomains.h
index 1936df23559a..325e2ba04067 100644
--- a/arch/arm/mach-omap2/powerdomains.h
+++ b/arch/arm/mach-omap2/powerdomains.h
@@ -98,6 +98,10 @@ static struct pwrdm_dep gfx_sgx_wkdeps[] = {
98 { NULL }, 98 { NULL },
99}; 99};
100 100
101
102#include "powerdomains24xx.h"
103
104
101/* 105/*
102 * OMAP2/3 common powerdomains 106 * OMAP2/3 common powerdomains
103 */ 107 */
@@ -140,6 +144,16 @@ static struct powerdomain *powerdomains_omap[] __initdata = {
140 &gfx_pwrdm, 144 &gfx_pwrdm,
141 &wkup_pwrdm, 145 &wkup_pwrdm,
142 146
147#ifdef CONFIG_ARCH_OMAP24XX
148 &dsp_pwrdm,
149 &mpu_24xx_pwrdm,
150 &core_24xx_pwrdm,
151#endif
152
153#ifdef CONFIG_ARCH_OMAP2430
154 &mdm_pwrdm,
155#endif
156
143 NULL 157 NULL
144}; 158};
145 159