From nobody Sun Nov 2 14:07:45 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org Return-Path: Received: from lists.gnu.org (208.118.235.17 [208.118.235.17]) by mx.zohomail.com with SMTPS id 150860760103524.926944220112773; Sat, 21 Oct 2017 10:40:01 -0700 (PDT) Received: from localhost ([::1]:58622 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e5xkZ-0003vu-6H for importer@patchew.org; Sat, 21 Oct 2017 13:39:55 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60023) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1e5wxv-0003jp-9h for qemu-devel@nongnu.org; Sat, 21 Oct 2017 12:49:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1e5wxu-0005CS-JE for qemu-devel@nongnu.org; Sat, 21 Oct 2017 12:49:39 -0400 Received: from ec2-52-28-205-119.eu-central-1.compute.amazonaws.com ([52.28.205.119]:57302 helo=ip-172-31-28-221.eu-central-1.compute.internal) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1e5wxu-00057W-DB for qemu-devel@nongnu.org; Sat, 21 Oct 2017 12:49:38 -0400 Received: from [83.254.152.225] (helo=localhost.localdomain) by ip-172-31-28-221.eu-central-1.compute.internal with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1e5ulO-000095-RU; Sat, 21 Oct 2017 16:28:34 +0200 From: Francisco Iglesias To: qemu-devel@nongnu.org, francisco.iglesias@feimtech.se Date: Sat, 21 Oct 2017 16:35:13 +0200 Message-Id: <20171021143521.31685-5-francisco.iglesias@feimtech.se> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20171021143521.31685-1-francisco.iglesias@feimtech.se> References: <20171021143521.31685-1-francisco.iglesias@feimtech.se> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 52.28.205.119 X-Mailman-Approved-At: Sat, 21 Oct 2017 13:37:00 -0400 Subject: [Qemu-devel] [PATCH 04/12] m25p80: Add support for n25q512a11 and n25q512a13 X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: edgari@xilinx.com, alistai@xilinx.com Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Add support for Micron (Numonyx) n25q512a11 and n25q512a13 flashes. Signed-off-by: Francisco Iglesias --- hw/block/m25p80.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hw/block/m25p80.c b/hw/block/m25p80.c index 3d2975c..7f3fcc4 100644 --- a/hw/block/m25p80.c +++ b/hw/block/m25p80.c @@ -240,6 +240,8 @@ static const FlashPartInfo known_devices[] =3D { { INFO("n25q128a13", 0x20ba18, 0, 64 << 10, 256, ER_4K) }, { INFO("n25q256a11", 0x20bb19, 0, 64 << 10, 512, ER_4K) }, { INFO("n25q256a13", 0x20ba19, 0, 64 << 10, 512, ER_4K) }, + { INFO("n25q512a11", 0x20bb20, 0, 64 << 10, 1024, ER_4K) }, + { INFO("n25q512a13", 0x20ba20, 0, 64 << 10, 1024, ER_4K) }, { INFO("n25q128", 0x20ba18, 0, 64 << 10, 256, 0) }, { INFO("n25q256a", 0x20ba19, 0, 64 << 10, 512, ER_4K) }, { INFO("n25q512a", 0x20ba20, 0, 64 << 10, 1024, ER_4K) }, --=20 2.9.3