Skip to content

Commit 7a82ebd

Browse files
author
Paul Walmsley
committed
ARM: OMAP44xx: clockdomain data: correct the emu_sys_clkdm CLKTRCTRL 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]>
1 parent dd775ae commit 7a82ebd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/arm/mach-omap2/clockdomains44xx_data.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ static struct clockdomain emu_sys_44xx_clkdm = {
390390
.prcm_partition = OMAP4430_PRM_PARTITION,
391391
.cm_inst = OMAP4430_PRM_EMU_CM_INST,
392392
.clkdm_offs = OMAP4430_PRM_EMU_CM_EMU_CDOFFS,
393-
.flags = CLKDM_CAN_HWSUP,
393+
.flags = CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_FORCE_WAKEUP,
394394
};
395395

396396
static struct clockdomain l3_dma_44xx_clkdm = {

0 commit comments

Comments
 (0)