diff options
Diffstat (limited to 'arch/arm/mach-omap2/omap_hwmod.h')
-rw-r--r-- | arch/arm/mach-omap2/omap_hwmod.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/omap_hwmod.h b/arch/arm/mach-omap2/omap_hwmod.h index 87b59b45c678..87a3c5b7aa74 100644 --- a/arch/arm/mach-omap2/omap_hwmod.h +++ b/arch/arm/mach-omap2/omap_hwmod.h | |||
@@ -442,6 +442,11 @@ struct omap_hwmod_omap4_prcm { | |||
442 | * in order to complete the reset. Optional clocks will be disabled | 442 | * in order to complete the reset. Optional clocks will be disabled |
443 | * again after the reset. | 443 | * again after the reset. |
444 | * HWMOD_16BIT_REG: Module has 16bit registers | 444 | * HWMOD_16BIT_REG: Module has 16bit registers |
445 | * HWMOD_EXT_OPT_MAIN_CLK: The only main functional clock source for | ||
446 | * this IP block comes from an off-chip source and is not always | ||
447 | * enabled. This prevents the hwmod code from being able to | ||
448 | * enable and reset the IP block early. XXX Eventually it should | ||
449 | * be possible to query the clock framework for this information. | ||
445 | */ | 450 | */ |
446 | #define HWMOD_SWSUP_SIDLE (1 << 0) | 451 | #define HWMOD_SWSUP_SIDLE (1 << 0) |
447 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) | 452 | #define HWMOD_SWSUP_MSTANDBY (1 << 1) |
@@ -452,6 +457,7 @@ struct omap_hwmod_omap4_prcm { | |||
452 | #define HWMOD_NO_IDLEST (1 << 6) | 457 | #define HWMOD_NO_IDLEST (1 << 6) |
453 | #define HWMOD_CONTROL_OPT_CLKS_IN_RESET (1 << 7) | 458 | #define HWMOD_CONTROL_OPT_CLKS_IN_RESET (1 << 7) |
454 | #define HWMOD_16BIT_REG (1 << 8) | 459 | #define HWMOD_16BIT_REG (1 << 8) |
460 | #define HWMOD_EXT_OPT_MAIN_CLK (1 << 9) | ||
455 | 461 | ||
456 | /* | 462 | /* |
457 | * omap_hwmod._int_flags definitions | 463 | * omap_hwmod._int_flags definitions |