diff options
author | Aida Mynzhasova <aida.mynzhasova@skitlab.ru> | 2013-08-23 06:48:42 -0400 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2013-08-23 06:48:42 -0400 |
commit | 0f0dd08932d4eb0fb336e6c2a48f27855b99ead2 (patch) | |
tree | b37e44792800a7fee4c6e9e4a75a0d543d4fe378 /arch/arm | |
parent | eeb6603fdde253a8e9129712ce24128d732bd4e7 (diff) |
ARM: OMAP: TI81XX: add always-on powerdomain for TI81XX
This patch adds alwon powerdomain support for TI81XX, which is required
for stable functioning of a big number of TI81XX subsystems.
Signed-off-by: Aida Mynzhasova <aida.mynzhasova@skitlab.ru>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-omap2/powerdomains3xxx_data.c | 8 | ||||
-rw-r--r-- | arch/arm/mach-omap2/prcm-common.h | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c index e2d4bd804523..328c1037cb60 100644 --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c | |||
@@ -336,6 +336,13 @@ static struct powerdomain dpll5_pwrdm = { | |||
336 | .voltdm = { .name = "core" }, | 336 | .voltdm = { .name = "core" }, |
337 | }; | 337 | }; |
338 | 338 | ||
339 | static struct powerdomain alwon_81xx_pwrdm = { | ||
340 | .name = "alwon_pwrdm", | ||
341 | .prcm_offs = TI81XX_PRM_ALWON_MOD, | ||
342 | .pwrsts = PWRSTS_OFF_ON, | ||
343 | .voltdm = { .name = "core" }, | ||
344 | }; | ||
345 | |||
339 | static struct powerdomain device_81xx_pwrdm = { | 346 | static struct powerdomain device_81xx_pwrdm = { |
340 | .name = "device_pwrdm", | 347 | .name = "device_pwrdm", |
341 | .prcm_offs = TI81XX_PRM_DEVICE_MOD, | 348 | .prcm_offs = TI81XX_PRM_DEVICE_MOD, |
@@ -442,6 +449,7 @@ static struct powerdomain *powerdomains_am35x[] __initdata = { | |||
442 | }; | 449 | }; |
443 | 450 | ||
444 | static struct powerdomain *powerdomains_ti81xx[] __initdata = { | 451 | static struct powerdomain *powerdomains_ti81xx[] __initdata = { |
452 | &alwon_81xx_pwrdm, | ||
445 | &device_81xx_pwrdm, | 453 | &device_81xx_pwrdm, |
446 | &active_816x_pwrdm, | 454 | &active_816x_pwrdm, |
447 | &default_816x_pwrdm, | 455 | &default_816x_pwrdm, |
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h index ff1ac4a82a04..0e841fd9498a 100644 --- a/arch/arm/mach-omap2/prcm-common.h +++ b/arch/arm/mach-omap2/prcm-common.h | |||
@@ -58,6 +58,7 @@ | |||
58 | #define TI816X_PRM_IVAHD1_MOD 0x0d00 | 58 | #define TI816X_PRM_IVAHD1_MOD 0x0d00 |
59 | #define TI816X_PRM_IVAHD2_MOD 0x0e00 | 59 | #define TI816X_PRM_IVAHD2_MOD 0x0e00 |
60 | #define TI816X_PRM_SGX_MOD 0x0f00 | 60 | #define TI816X_PRM_SGX_MOD 0x0f00 |
61 | #define TI81XX_PRM_ALWON_MOD 0x1800 | ||
61 | 62 | ||
62 | /* 24XX register bits shared between CM & PRM registers */ | 63 | /* 24XX register bits shared between CM & PRM registers */ |
63 | 64 | ||