From: Philip Balister Date: Wed, 14 Sep 2011 16:50:12 +0000 (-0400) Subject: overo: Set IEN on GPMC_CLK to support synchronous clocking. X-Git-Tag: v2011.12-rc1~707 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=cdbc2773c2d988705a95ad140ce96cfc8c881135;p=u-boot overo: Set IEN on GPMC_CLK to support synchronous clocking. Without this change CS's configured for synchronous clocking cannot read data. Signed-off-by: Philip Balister Signed-off-by: Sandeep Paulraj --- diff --git a/board/overo/overo.h b/board/overo/overo.h index 57f24570a2..d394f902a1 100644 --- a/board/overo/overo.h +++ b/board/overo/overo.h @@ -119,7 +119,7 @@ const omap3_sysinfo sysinfo = { MUX_VAL(CP(GPMC_NCS6), (IEN | PTD | DIS | M0)) /*GPMC_nCS6*/\ MUX_VAL(CP(GPMC_NCS7), (IEN | PTU | EN | M0)) /*GPMC_nCS7*/\ MUX_VAL(CP(GPMC_NBE1), (IEN | PTD | DIS | M0)) /*GPMC_nCS3*/\ - MUX_VAL(CP(GPMC_CLK), (IDIS | PTU | EN | M0)) /*GPMC_CLK*/\ + MUX_VAL(CP(GPMC_CLK), (IEN | PTU | EN | M0)) /*GPMC_CLK*/\ MUX_VAL(CP(GPMC_NADV_ALE), (IDIS | PTD | DIS | M0)) /*GPMC_nADV_ALE*/\ MUX_VAL(CP(GPMC_NOE), (IDIS | PTD | DIS | M0)) /*GPMC_nOE*/\ MUX_VAL(CP(GPMC_NWE), (IDIS | PTD | DIS | M0)) /*GPMC_nWE*/\