Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753293AbdL1LVM (ORCPT ); Thu, 28 Dec 2017 06:21:12 -0500 Received: from smtp3-g21.free.fr ([212.27.42.3]:4078 "EHLO smtp3-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751043AbdL1LVL (ORCPT ); Thu, 28 Dec 2017 06:21:11 -0500 Subject: Re: [PATCH v3] mtd: spi-nor: Add ISSI is25lp080d support To: Romain Porte Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, alexander.sverdlin@nokia.com, pascal.fabreges@nokia.com References: <20171219134325.3315-1-romain.porte@nokia.com> <20171228100324.2214-1-romain.porte@nokia.com> From: Cyrille Pitchen Message-ID: Date: Thu, 28 Dec 2017 12:21:09 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.0 MIME-Version: 1.0 In-Reply-To: <20171228100324.2214-1-romain.porte@nokia.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1258 Lines: 33 Le 28/12/2017 à 11:03, Romain Porte a écrit : > Add support for a new ISSI 1MB SPI NOR chip that was tested in our lab. > Datasheet is available at: http://www.issi.com/WW/pdf/25LP-WP080D.pdf > > Testing was done only without the SPI_NOR_{DUAL,QUAD}_READ flags that > were added later, according to the datasheet. > > Tested-by: Pascal Fabreges > Reviewed-by: Alexander Sverdlin > Signed-off-by: Romain Porte Applied to the spi-nor/next branch of linux-mtd Thanks! > --- > drivers/mtd/spi-nor/spi-nor.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c > index 8bafd462f..18e826d36 100644 > --- a/drivers/mtd/spi-nor/spi-nor.c > +++ b/drivers/mtd/spi-nor/spi-nor.c > @@ -1050,6 +1050,8 @@ static const struct flash_info spi_nor_ids[] = { > SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, > { "is25lp128", INFO(0x9d6018, 0, 64 * 1024, 256, > SECT_4K | SPI_NOR_DUAL_READ) }, > + { "is25lp080d", INFO(0x9d6014, 0, 64 * 1024, 16, > + SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, > > /* Macronix */ > { "mx25l512e", INFO(0xc22010, 0, 64 * 1024, 1, SECT_4K) }, >