summaryrefslogtreecommitdiff
path: root/util/flashrom
diff options
context:
space:
mode:
authorPeter Lemenkov <lemenkov@gmail.com>2007-10-25 04:11:11 +0000
committerPeter Stuge <peter@stuge.se>2007-10-25 04:11:11 +0000
commit5384dac57e0568b39fa459f5d12dfa2d1199a948 (patch)
tree85017c7c6d3952fe386e181f40c4c14519a87ae6 /util/flashrom
parentcb00e7ab94e93dd8e4c16a025df42d8de89da3e8 (diff)
downloadcoreboot-5384dac57e0568b39fa459f5d12dfa2d1199a948.tar.xz
Added Am29LV040B
Looking through the sources of Uniflash utility I found that this chip is no more no less than low-voltage variant of Am29F040B but with different ID. So I created a very quick patch (attached). Signed-off-by: Peter Lemenkov <lemenkov@gmail.com> Acked-by: Peter Stuge <peter@stuge.se> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2897 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom')
-rw-r--r--util/flashrom/flash.h1
-rw-r--r--util/flashrom/flashchips.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/util/flashrom/flash.h b/util/flashrom/flash.h
index 220e6c05d3..743a8e5c9d 100644
--- a/util/flashrom/flash.h
+++ b/util/flashrom/flash.h
@@ -63,6 +63,7 @@ extern struct flashchip flashchips[];
#define AMD_ID 0x01 /* AMD */
#define AM_29F040B 0xA4
+#define AM_29LV040B 0x4F
#define AM_29F016D 0xAD
#define AMIC_ID 0x37 /* AMIC */
diff --git a/util/flashrom/flashchips.c b/util/flashrom/flashchips.c
index 6ed9a8cab1..3bebfb9a74 100644
--- a/util/flashrom/flashchips.c
+++ b/util/flashrom/flashchips.c
@@ -28,6 +28,8 @@
struct flashchip flashchips[] = {
{"Am29F040B", AMD_ID, AM_29F040B, 512, 64 * 1024,
probe_29f040b, erase_29f040b, write_29f040b},
+ {"Am29LV040B", AMD_ID, AM_29LV040B, 512, 64 * 1024,
+ probe_29f040b, erase_29f040b, write_29f040b},
{"Am29F016D", AMD_ID, AM_29F016D, 2048, 64 * 1024,
probe_29f040b, erase_29f040b, write_29f040b},
{"AE49F2008", ASD_ID, ASD_AE49F2008, 256, 128,