Skip to content

Commit

Permalink
ARM: OMAP44xx: clockdomain data: correct the emu_sys_clkdm CLKTRCTRL …
Browse files Browse the repository at this point in the history
…data

According to the 4430 ES2.0 TRM vX Table 3-744 "CM_EMU_CLKSTCTRL",
the emu_sys clockdomain data in mainline is incorrect.

The emu_sys clockdomain does not support the DISABLE_AUTO state, and
instead it supports the FORCE_WAKEUP state.

Signed-off-by: Paul Walmsley <[email protected]>
Cc: Benoît Cousson <[email protected]>
Cc: Kevin Hilman <[email protected]>
Cc: Santosh Shilimkar <[email protected]>
Cc: Ming Lei <[email protected]>
Cc: Will Deacon <[email protected]>
  • Loading branch information
Paul Walmsley committed Apr 4, 2012
1 parent dd775ae commit 7a82ebd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm/mach-omap2/clockdomains44xx_data.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ static struct clockdomain emu_sys_44xx_clkdm = {
.prcm_partition = OMAP4430_PRM_PARTITION,
.cm_inst = OMAP4430_PRM_EMU_CM_INST,
.clkdm_offs = OMAP4430_PRM_EMU_CM_EMU_CDOFFS,
.flags = CLKDM_CAN_HWSUP,
.flags = CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_FORCE_WAKEUP,
};

static struct clockdomain l3_dma_44xx_clkdm = {
Expand Down

0 comments on commit 7a82ebd

Please sign in to comment.