Browse Source

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>
Kevin Hilman 14 năm trước cách đây
mục cha
commit
ace19ffa9a
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      arch/arm/mach-omap2/voltagedomains3xxx_data.c

+ 5 - 0
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,
 };