From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 95AD7C433EF for ; Fri, 17 Dec 2021 14:41:19 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 39BEF8304C; Fri, 17 Dec 2021 15:41:17 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=akkea.ca Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=akkea.ca header.i=@akkea.ca header.b="mebALEYn"; dkim=pass (1024-bit key) header.d=akkea.ca header.i=@akkea.ca header.b="am6rj+1k"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id CDA2283057; Fri, 17 Dec 2021 15:41:15 +0100 (CET) Received: from node.akkea.ca (li1434-30.members.linode.com [45.33.107.30]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 5FFE58304A for ; Fri, 17 Dec 2021 15:41:08 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=akkea.ca Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=angus@akkea.ca Received: from localhost (localhost [127.0.0.1]) by node.akkea.ca (Postfix) with ESMTP id 6ED073951A7; Fri, 17 Dec 2021 14:41:06 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1639752066; bh=4bO4kGP8XBYJEb59zcihHMDASZt5WX7X2nPICPNcBc4=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=mebALEYn3YdJr8yTkA0P9ZwAFIoZDflE/FiJCkCsstSzOV9jVc3OEM4UfFfJ6Wx0b //ZFXiHHr0UXtPIyZdIXdl/4aN2dsdD58TQq1IVHZsXwoOA/QzVGBzDab1QlxkweKj 8k3sIJrmsRtm37P3lGxYbesdh2pjqlfsJA248+Po= Received: from node.akkea.ca ([127.0.0.1]) by localhost (mail.akkea.ca [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id e46DdtW9QSlV; Fri, 17 Dec 2021 14:41:01 +0000 (UTC) Received: from www.akkea.ca (li1434-30.members.linode.com [45.33.107.30]) by node.akkea.ca (Postfix) with ESMTPSA id B7D494E2003; Fri, 17 Dec 2021 14:41:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1639752061; bh=4bO4kGP8XBYJEb59zcihHMDASZt5WX7X2nPICPNcBc4=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=am6rj+1kMaeCrMa/7xwNwAQO1XA3C7aZlUMA9u7fm50PxqXxN3iEbJ/4Gqxh2xq5s sEazfHbfkyN6Qa33RBPs6CLwhpRjmSxvT8KwN9BOa8TFcKOWTz6anhqqjJwjaCvmE1 7zg9FLDLponNvg5E0cZX5C+qMXeGL1m184o0TH9Q= MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Fri, 17 Dec 2021 06:41:01 -0800 From: Angus Ainslie To: Jagan Teki , Vignesh R Cc: u-boot@lists.denx.de, kernel@puri.sm Subject: Re: [PATCH] drivers: spi-nor: Add JEDEC id for W25Q16JV In-Reply-To: <20211128150907.1443035-1-angus@akkea.ca> References: <20211128150907.1443035-1-angus@akkea.ca> Message-ID: X-Sender: angus@akkea.ca User-Agent: Roundcube Webmail/1.3.6 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.2 at phobos.denx.de X-Virus-Status: Clean Hi, Are there any problems with this patch ? Thanks Angus On 2021-11-28 07:09, Angus Ainslie wrote: > Add a JEDEC id for the Winbond W25Q16JV 16M-BIT serial flash memory > with > DUAL/QUAD SPI > > Signed-off-by: Angus Ainslie > --- > drivers/mtd/spi/spi-nor-ids.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/mtd/spi/spi-nor-ids.c > b/drivers/mtd/spi/spi-nor-ids.c > index 3ae7bb1ed7e..f20b21e0d06 100644 > --- a/drivers/mtd/spi/spi-nor-ids.c > +++ b/drivers/mtd/spi/spi-nor-ids.c > @@ -314,6 +314,11 @@ const struct flash_info spi_nor_ids[] = { > SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | > SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) > }, > + { > + INFO("w25q16jv", 0xef7015, 0, 64 * 1024, 32, > + SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ | > + SPI_NOR_HAS_LOCK | SPI_NOR_HAS_TB) > + }, > { > INFO("w25q32jv", 0xef7016, 0, 64 * 1024, 64, > SECT_4K | SPI_NOR_DUAL_READ | SPI_NOR_QUAD_READ |