From patchwork Tue Sep 23 14:08:31 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Roese X-Patchwork-Id: 392523 X-Patchwork-Delegate: marek.vasut@gmail.com 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 252E214009E for ; Wed, 24 Sep 2014 00:08:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 28C96A73EA; Tue, 23 Sep 2014 16:07:58 +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 wthEIFo+9-v6; Tue, 23 Sep 2014 16:07:57 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 66FEAA7401; Tue, 23 Sep 2014 16:07:51 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id F0A68A73F7 for ; Tue, 23 Sep 2014 16:07:48 +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 1UMfhcxxrviA for ; Tue, 23 Sep 2014 16:07:45 +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 mo4-p04-ob.smtp.rzone.de (mo4-p04-ob.smtp.rzone.de [81.169.146.223]) by theia.denx.de (Postfix) with ESMTPS id AA079A73E2 for ; Tue, 23 Sep 2014 16:07:42 +0200 (CEST) X-RZG-CLASS-ID: mo04 X-RZG-AUTH: :IW0NeWC7b/q2i6W/qstXb1SBUuFnrGohfvxEndrDXKjzPMsB3oimjD61I4fPQhgcxQA= Received: from stefan-work.domain_not_set.invalid (b9168f02.cgn.dg-w.de [185.22.143.2]) by post.strato.de (RZmta 35.9 SBL|AUTH) with ESMTPA id R06a9aq8NE7Ulas; Tue, 23 Sep 2014 16:07:30 +0200 (CEST) From: Stefan Roese To: u-boot@lists.denx.de Date: Tue, 23 Sep 2014 16:08:31 +0200 Message-Id: <1411481312-9929-4-git-send-email-sr@denx.de> X-Mailer: git-send-email 2.1.0 In-Reply-To: <1411481312-9929-1-git-send-email-sr@denx.de> References: <1411481312-9929-1-git-send-email-sr@denx.de> Cc: Marek Vasut , Vince Bridgers , Pavel Machek , Chin Liang See , Dinh Nguyen Subject: [U-Boot] [WIP PATCH 3/4 v2] arm: socfpga: Don't define CONFIG_SPI_FLASH_QUAD X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 This define is currently not supported in mainline U-Boot. So don't define it. Otherwise the drivers doesn't work correctly. Signed-off-by: Stefan Roese Cc: Chin Liang See Cc: Dinh Nguyen Cc: Vince Bridgers Cc: Marek Vasut Cc: Pavel Machek Cc: Michael Trimarchi --- include/configs/socfpga_cyclone5_common.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/configs/socfpga_cyclone5_common.h b/include/configs/socfpga_cyclone5_common.h index d183510..5ef6936 100644 --- a/include/configs/socfpga_cyclone5_common.h +++ b/include/configs/socfpga_cyclone5_common.h @@ -155,7 +155,9 @@ /* Flash device info */ #define CONFIG_SF_DEFAULT_SPEED (50000000) #define CONFIG_SF_DEFAULT_MODE SPI_MODE_3 +#if 0 /* not supported in mainline right now */ #define CONFIG_SPI_FLASH_QUAD (1) +#endif /* QSPI reference clock */ #ifndef __ASSEMBLY__ unsigned int cm_get_qspi_controller_clk_hz(void);