From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXlSz-0005wz-Pf for qemu-devel@nongnu.org; Mon, 22 Feb 2016 03:03:39 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXlSx-0007he-Mu for qemu-devel@nongnu.org; Mon, 22 Feb 2016 03:03:37 -0500 Received: from demumfd002.nsn-inter.net ([93.183.12.31]:59589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXlSx-0007hL-Db for qemu-devel@nongnu.org; Mon, 22 Feb 2016 03:03:35 -0500 From: marcin.krzeminski@nokia.com Date: Mon, 22 Feb 2016 09:03:24 +0100 Message-Id: <1456128205-5092-11-git-send-email-marcin.krzeminski@nokia.com> In-Reply-To: <1456128205-5092-1-git-send-email-marcin.krzeminski@nokia.com> References: <1456128205-5092-1-git-send-email-marcin.krzeminski@nokia.com> Subject: [Qemu-devel] [PATCH v4 10/11] block: m25p80: n25q256a/n25q512a models List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: crosthwaitepeter@gmail.com, clg@fr.ibm.com, pawel.lenkow@itlen.com, marcin.krzeminski@nokia.com From: Marcin Krzeminski Signed-off-by: Marcin Krzeminski Reviewed-by: Peter Crosthwaite --- hw/block/m25p80.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hw/block/m25p80.c b/hw/block/m25p80.c index bc0dadb..2b7d19f 100644 --- a/hw/block/m25p80.c +++ b/hw/block/m25p80.c @@ -210,8 +210,9 @@ static const FlashPartInfo known_devices[] = { { INFO("w25q80bl", 0xef4014, 0, 64 << 10, 16, ER_4K) }, { INFO("w25q256", 0xef4019, 0, 64 << 10, 512, ER_4K) }, - /* Numonyx -- n25q128 */ { 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) }, }; typedef enum { -- 2.5.0