summaryrefslogtreecommitdiff
path: root/arch/arm/mach-omap2/voltagedomains3xxx_data.c
diff options
context:
space:
mode:
authorKevin Hilman <khilman@ti.com>2011-03-23 20:30:33 (GMT)
committerKevin Hilman <khilman@ti.com>2011-09-15 18:39:09 (GMT)
commitace19ffa9a580c7b3d2a7cd4bb9fda6071394d25 (patch)
tree87e45870bc402d54b5d729cdeafeddbdd6f83866 /arch/arm/mach-omap2/voltagedomains3xxx_data.c
parent280a72750535aaf69833bda13ab8912aa5eb71e3 (diff)
downloadlinux-fsl-qoriq-ace19ffa9a580c7b3d2a7cd4bb9fda6071394d25.tar.xz
OMAP3: voltagedomain data: add wakeup domain
Add wakeup voltage domain so that the wakeup powerdomain can have an associated powerdomain. Note that the scalable flat is not set for the this voltagedomain, so it will not be fully initialized like scalable voltage domains. Signed-off-by: Kevin Hilman <khilman@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/voltagedomains3xxx_data.c')
-rw-r--r--arch/arm/mach-omap2/voltagedomains3xxx_data.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/voltagedomains3xxx_data.c b/arch/arm/mach-omap2/voltagedomains3xxx_data.c
index 2167ef4..42d0b11 100644
--- a/arch/arm/mach-omap2/voltagedomains3xxx_data.c
+++ b/arch/arm/mach-omap2/voltagedomains3xxx_data.c
@@ -69,9 +69,14 @@ static struct voltagedomain omap3_voltdm_core = {
.vdd = &omap3_vdd2_info,
};
+static struct voltagedomain omap3_voltdm_wkup = {
+ .name = "wakeup",
+};
+
static struct voltagedomain *voltagedomains_omap3[] __initdata = {
&omap3_voltdm_mpu,
&omap3_voltdm_core,
+ &omap3_voltdm_wkup,
NULL,
};