diff options
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod.h')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.h b/arch/arm/mach-omap2/omap_hwmod.h index 3ae852a522f9..80c00e706d69 100644 --- a/arch/arm/mach-omap2/omap_hwmod.h +++ b/arch/arm/mach-omap2/omap_hwmod.h | |||
@@ -451,6 +451,14 @@ struct omap_hwmod_omap4_prcm { | |||
451 | * enabled. This prevents the hwmod code from being able to | 451 | * enabled. This prevents the hwmod code from being able to |
452 | * enable and reset the IP block early. XXX Eventually it should | 452 | * enable and reset the IP block early. XXX Eventually it should |
453 | * be possible to query the clock framework for this information. | 453 | * be possible to query the clock framework for this information. |
454 | * HWMOD_BLOCK_WFI: Some OMAP peripherals apparently don't work | ||
455 | * correctly if the MPU is allowed to go idle while the | ||
456 | * peripherals are active. This is apparently true for the I2C on | ||
457 | * OMAP2420, and also the EMAC on AM3517/3505. It's unlikely that | ||
458 | * this is really true -- we're probably not configuring something | ||
459 | * correctly, or this is being abused to deal with some PM latency | ||
460 | * issues -- but we're currently suffering from a shortage of | ||
461 | * folks who are able to track these issues down properly. | ||
454 | */ | 462 | */ |
455 | #define HWMOD_SWSUP_SIDLE (1 << 0) | 463 | #define HWMOD_SWSUP_SIDLE (1 << 0) |
456 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) | 464 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) |
@@ -462,6 +470,7 @@ struct omap_hwmod_omap4_prcm { | |||
462 | #define HWMOD_CONTROL_OPT_CLKS_IN_RESET (1 << 7) | 470 | #define HWMOD_CONTROL_OPT_CLKS_IN_RESET (1 << 7) |
463 | #define HWMOD_16BIT_REG (1 << 8) | 471 | #define HWMOD_16BIT_REG (1 << 8) |
464 | #define HWMOD_EXT_OPT_MAIN_CLK (1 << 9) | 472 | #define HWMOD_EXT_OPT_MAIN_CLK (1 << 9) |
473 | #define HWMOD_BLOCK_WFI (1 << 10) | ||
465 | 474 | ||
466 | /* | 475 | /* |
467 | * omap_hwmod._int_flags definitions | 476 | * omap_hwmod._int_flags definitions |