From patchwork Mon Nov 17 14:52:00 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ben Dooks X-Patchwork-Id: 411700 X-Patchwork-Delegate: jagannadh.teki@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 76C3514010F for ; Tue, 18 Nov 2014 02:12:48 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E82E94B676; Mon, 17 Nov 2014 16:12:41 +0100 (CET) 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 3gMqMKLUSMyZ; Mon, 17 Nov 2014 16:12:41 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 930CC4B658; Mon, 17 Nov 2014 16:12:36 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DA9BC4B654 for ; Mon, 17 Nov 2014 16:01:49 +0100 (CET) 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 oHObjaD2PuVN for ; Mon, 17 Nov 2014 16:01:49 +0100 (CET) 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 ducie-dc1.codethink.co.uk (ducie-dc1.codethink.co.uk [185.25.241.215]) by theia.denx.de (Postfix) with ESMTPS id A54F14B65B for ; Mon, 17 Nov 2014 16:01:45 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by ducie-dc1.codethink.co.uk (Postfix) with ESMTP id B4ABD4603F7; Mon, 17 Nov 2014 14:52:04 +0000 (GMT) X-Virus-Scanned: Debian amavisd-new at ducie-dc1.codethink.co.uk Received: from ducie-dc1.codethink.co.uk ([127.0.0.1]) by localhost (ducie-dc1.codethink.co.uk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id K00moipNyK17; Mon, 17 Nov 2014 14:52:02 +0000 (GMT) Received: from rainbowdash.ducie.codethink.co.uk (rainbowdash.dyn.ducie.codethink.co.uk [10.24.2.99]) by ducie-dc1.codethink.co.uk (Postfix) with ESMTPS id 94147460364; Mon, 17 Nov 2014 14:52:02 +0000 (GMT) Received: from ben by rainbowdash.ducie.codethink.co.uk with local (Exim 4.84) (envelope-from ) id 1XqNes-0004E0-C0; Mon, 17 Nov 2014 14:52:02 +0000 From: Ben Dooks To: u-boot@lists.denx.de Date: Mon, 17 Nov 2014 14:52:00 +0000 Message-Id: <1416235920-16184-3-git-send-email-ben.dooks@codethink.co.uk> X-Mailer: git-send-email 2.1.1 In-Reply-To: <1416235920-16184-1-git-send-email-ben.dooks@codethink.co.uk> References: <1416235920-16184-1-git-send-email-ben.dooks@codethink.co.uk> X-Mailman-Approved-At: Mon, 17 Nov 2014 16:12:33 +0100 Subject: [U-Boot] [PATCH 2/2] SPI: Add S25FL164K flash identifier info X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.13 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 Add the necessary flash entry for the Spansion S25FL164K flash. Tested on Marvell 88F6218 based design. Signed-off-by: Ben Dooks --- drivers/mtd/spi/sf_params.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/spi/sf_params.c b/drivers/mtd/spi/sf_params.c index 462e5c2..c1f243b 100644 --- a/drivers/mtd/spi/sf_params.c +++ b/drivers/mtd/spi/sf_params.c @@ -53,6 +53,7 @@ const struct spi_flash_params spi_flash_params_table[] = { {"S25FL064A", 0x010216, 0x0, 64 * 1024, 128, 0, 0}, {"S25FL064A", 0x010216, 0x0, 64 * 1024, 128, 0, 0}, {"S25FL116k", 0x014015, 0x0, 64 * 1024, 128, 0, 0}, + {"S25FL164K", 0x014017, 0x0140, 64 * 1024, 128, 0, 0}, {"S25FL128P_256K", 0x012018, 0x0300, 256 * 1024, 64, RD_FULL, WR_QPP}, {"S25FL128P_64K", 0x012018, 0x0301, 64 * 1024, 256, RD_FULL, WR_QPP}, {"S25FL032P", 0x010215, 0x4d00, 64 * 1024, 64, RD_FULL, WR_QPP},