From patchwork Wed Sep 7 11:57:50 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Philip Balister X-Patchwork-Id: 113750 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id A57D0B6F7C for ; Wed, 7 Sep 2011 22:05:10 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C65742808B; Wed, 7 Sep 2011 14:05:08 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F5A3QGStTNpI; Wed, 7 Sep 2011 14:05:08 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 2E4D62808C; Wed, 7 Sep 2011 14:05:06 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 3A6582808C for ; Wed, 7 Sep 2011 14:05:04 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e5SjH-fgrUN5 for ; Wed, 7 Sep 2011 14:05:03 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail-qy0-f179.google.com (mail-qy0-f179.google.com [209.85.216.179]) by theia.denx.de (Postfix) with ESMTPS id 240212808B for ; Wed, 7 Sep 2011 14:05:01 +0200 (CEST) Received: by qyk35 with SMTP id 35so4303944qyk.3 for ; Wed, 07 Sep 2011 05:04:58 -0700 (PDT) Received: by 10.224.175.8 with SMTP id v8mr4529038qaz.343.1315396688671; Wed, 07 Sep 2011 04:58:08 -0700 (PDT) Received: from localhost.localdomain (pool-74-107-169-81.ronkva.east.verizon.net. [74.107.169.81]) by mx.google.com with ESMTPS id dv6sm2246492qab.13.2011.09.07.04.58.07 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 07 Sep 2011 04:58:08 -0700 (PDT) From: Philip Balister To: u-boot@lists.denx.de Date: Wed, 7 Sep 2011 07:57:50 -0400 Message-Id: <1315396670-22889-3-git-send-email-philip@opensdr.com> X-Mailer: git-send-email 1.7.4.4 In-Reply-To: <1315396670-22889-1-git-send-email-philip@opensdr.com> References: <1315396670-22889-1-git-send-email-philip@opensdr.com> Cc: Philip Balister Subject: [U-Boot] [PATCH] overo: Set IEN on GPMC_CLK to support CS's that use synchronous clocking. X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Without this change CS's configured for synchronous clocking cannot read data. Signed-off-by: Philip Balister --- board/overo/overo.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/overo/overo.h b/board/overo/overo.h index 68e1243..1f94669 100644 --- a/board/overo/overo.h +++ b/board/overo/overo.h @@ -128,7 +128,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*/\