From 0bd262413f7dd7d688e39ccf038cee88616e8946 Mon Sep 17 00:00:00 2001 From: Andrew Ip Date: Mon, 30 Dec 2002 13:10:06 +0000 Subject: [PATCH] added w29c011 --- util/flash_and_burn/flash.h | 1 + util/flash_and_burn/flash_rom.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/util/flash_and_burn/flash.h b/util/flash_and_burn/flash.h index 6c735fb568..0fde00e7a6 100644 --- a/util/flash_and_burn/flash.h +++ b/util/flash_and_burn/flash.h @@ -33,6 +33,7 @@ struct flashchip { #define SST_39VF020 0xD6 /* SST 39SF020 device */ #define WINBOND_ID 0xDA /* Winbond Manufacture ID code */ +#define W_29C011 0xC1 /* Winbond w29c011 device code*/ #define W_29C020C 0x45 /* Winbond w29c020c device code*/ #define W_49F002U 0x0B /* Winbond w29c020c device code*/ diff --git a/util/flash_and_burn/flash_rom.c b/util/flash_and_burn/flash_rom.c index 08841f6df8..84c7661854 100644 --- a/util/flash_and_burn/flash_rom.c +++ b/util/flash_and_burn/flash_rom.c @@ -53,6 +53,8 @@ struct flashchip flashchips[] = { probe_39sf020, erase_39sf020, write_39sf020}, {"SST39VF020", SST_ID, SST_39VF020, NULL, 256, 4096, probe_39sf020, erase_39sf020, write_39sf020}, + {"W29C011", WINBOND_ID, W_29C011, NULL, 128, 128, + probe_jedec, erase_jedec, write_jedec}, {"W29C020C", WINBOND_ID, W_29C020C, NULL, 256, 128, probe_jedec, erase_jedec, write_jedec}, {"W49F002U", WINBOND_ID, W_49F002U, NULL, 256, 128,