Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751306AbdHVQOg (ORCPT ); Tue, 22 Aug 2017 12:14:36 -0400 Received: from smtp3-g21.free.fr ([212.27.42.3]:23018 "EHLO smtp3-g21.free.fr" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751102AbdHVQOf (ORCPT ); Tue, 22 Aug 2017 12:14:35 -0400 Subject: Re: [PATCH v2] mtd: spi-nor: add support for Microchip sst26vf064b QSPI memory To: Claudiu Beznea , marek.vasut@gmail.com, dwmw2@infradead.org, computersforpeace@gmail.com, boris.brezillon@free-electrons.com, richard@nod.at Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, nicolas.ferre@microchip.com References: <1503395476-18730-1-git-send-email-claudiu.beznea@microchip.com> From: Cyrille Pitchen Message-ID: Date: Tue, 22 Aug 2017 18:14:31 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <1503395476-18730-1-git-send-email-claudiu.beznea@microchip.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: 1150 Lines: 29 Le 22/08/2017 à 11:51, Claudiu Beznea a écrit : > Add support for Microchip sst26vf064b QSPI memory. > > Signed-off-by: Claudiu Beznea Applied to the spi-nor/next branch of l2-mtd Thanks! > --- > Changes since v1: > - use 64K sector size; changing the sector size the number of sectors > was changed to 128 > > drivers/mtd/spi-nor/spi-nor.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/mtd/spi-nor/spi-nor.c b/drivers/mtd/spi-nor/spi-nor.c > index 196b52f..09515be 100644 > --- a/drivers/mtd/spi-nor/spi-nor.c > +++ b/drivers/mtd/spi-nor/spi-nor.c > @@ -1081,6 +1081,7 @@ static const struct flash_info spi_nor_ids[] = { > { "sst25wf040b", INFO(0x621613, 0, 64 * 1024, 8, SECT_4K) }, > { "sst25wf040", INFO(0xbf2504, 0, 64 * 1024, 8, SECT_4K | SST_WRITE) }, > { "sst25wf080", INFO(0xbf2505, 0, 64 * 1024, 16, SECT_4K | SST_WRITE) }, > + { "sst26vf064b", INFO(0xbf2643, 0, 64 * 1024, 128, SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ) }, > > /* ST Microelectronics -- newer production may have feature updates */ > { "m25p05", INFO(0x202010, 0, 32 * 1024, 2, 0) }, >