diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2006-03-16 16:44:07 +0000 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2006-03-16 16:44:07 +0000 |
commit | d918daa85827b2446c3f98c61632add86b40f3df (patch) | |
tree | b0bb6c3ecc052a1867d24a10c271498884df7b7f | |
parent | 5eaed68734f2d5dc22d0a0718e4e236eebc46cb3 (diff) | |
download | flashrom-d918daa85827b2446c3f98c61632add86b40f3df.tar.gz flashrom-d918daa85827b2446c3f98c61632add86b40f3df.tar.bz2 flashrom-d918daa85827b2446c3f98c61632add86b40f3df.zip |
Support for Am29F016D
Corresponding to flashrom svn r45 and coreboot v2 svn r2203.
-rw-r--r-- | flash.h | 1 | ||||
-rw-r--r-- | flashchips.c | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -27,6 +27,7 @@ extern struct flashchip flashchips[]; #define AMD_ID 0x01 #define AM_29F040B 0xA4 +#define AM_29F016D 0xAD #define ATMEL_ID 0x1F /* Winbond Manufacture ID code */ #define AT_29C040A 0xA4 /* Winbond w29c020c device code */ diff --git a/flashchips.c b/flashchips.c index f718e7b1..cd050dc8 100644 --- a/flashchips.c +++ b/flashchips.c @@ -42,6 +42,8 @@ struct flashchip flashchips[] = { {"Am29F040B", AMD_ID, AM_29F040B, NULL, 512, 64 * 1024, probe_29f040b, erase_29f040b, write_29f040b, NULL}, + {"Am29F016D", AMD_ID, AM_29F016D, NULL, 2048, 64 * 1024, + probe_29f040b, erase_29f040b, write_29f040b, NULL}, {"At29C040A", ATMEL_ID, AT_29C040A, NULL, 512, 256, probe_jedec, erase_chip_jedec, write_jedec, NULL}, {"Mx29f002", MX_ID, MX_29F002, NULL, 256, 64 * 1024, |