diff options
author | Kishon Vijay Abraham I <kishon@ti.com> | 2016-02-09 04:05:43 -0500 |
---|---|---|
committer | Paul Walmsley <paul@pwsan.com> | 2016-02-09 04:18:40 -0500 |
commit | 4965be1fc8dbb3dfc8bf401c78cb78c35d5d0d4d (patch) | |
tree | 5b87b64162475c8af35355c28f8ac2225e208a0e | |
parent | 771120761fe026170f910f4e591b1e0861de0523 (diff) |
ARM: DRA7: hwmod: Fix OCP2SCP sysconfig
OCP2SCP doesn't support smart idle wakeup according to
Table 26-22. OCP2SCP_SYSCONFIG in AM572x TRM [1] and
Table 26-22. OCP2SCP_SYSCONFIG in AM571x TRM [2].
Remove SIDLE_SMART_WKUP from the list of supported SIDLE modes
in hwmod data.
[1] -> http://www.ti.com/lit/ug/spruhz6e/spruhz6e.pdf
[2] -> http://www.ti.com/lit/ug/spruhz7a/spruhz7a.pdf
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Paul Walmsley <paul@pwsan.com>
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod_7xx_data.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c index 848356e38b74..84c2699e551b 100644 --- a/arch/arm/mach-omap2/omap_hwmod_7xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_7xx_data.c | |||
@@ -1482,8 +1482,7 @@ static struct omap_hwmod_class_sysconfig dra7xx_ocp2scp_sysc = { | |||
1482 | .syss_offs = 0x0014, | 1482 | .syss_offs = 0x0014, |
1483 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | | 1483 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | |
1484 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | 1484 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), |
1485 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | 1485 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), |
1486 | SIDLE_SMART_WKUP), | ||
1487 | .sysc_fields = &omap_hwmod_sysc_type1, | 1486 | .sysc_fields = &omap_hwmod_sysc_type1, |
1488 | }; | 1487 | }; |
1489 | 1488 | ||