Author: hailfinger
Date: 2007-12-31 15:05:08 +0100 (Mon, 31 Dec 2007)
New Revision: 3031

Modified:
   trunk/util/flashrom/flash.h
   trunk/util/flashrom/flashchips.c
Log:
Unfortunately, EN29F002T, EN29F002AT, EN29F002ANT, EN29F002NT all have
exactly the same ID. Improve model number printing.

Add EN29F002(A)(N)B support while I'm at it.

Signed-off-by: Carl-Daniel Hailfinger <[EMAIL PROTECTED]>
Acked-by: Markus Boas <[EMAIL PROTECTED]>


Modified: trunk/util/flashrom/flash.h
===================================================================
--- trunk/util/flashrom/flash.h 2007-12-31 01:49:00 UTC (rev 3030)
+++ trunk/util/flashrom/flash.h 2007-12-31 14:05:08 UTC (rev 3031)
@@ -109,8 +109,8 @@
 #define EN_29F040A             0x7F04
 #define EN_29LV010             0x7F6E
 #define EN_29LV040A            0x7F4F  /* EN_29LV040(A) */
-#define EN_29F002AT            0x7F92
-#define EN_29F002AB            0x7F97
+#define EN_29F002T             0x7F92
+#define EN_29F002B             0x7F97
 
 #define FUJITSU_ID             0x04    /* Fujitsu */
 /* MBM29F400TC_STRANGE has a value not mentioned in the data sheet and we

Modified: trunk/util/flashrom/flashchips.c
===================================================================
--- trunk/util/flashrom/flashchips.c    2007-12-31 01:49:00 UTC (rev 3030)
+++ trunk/util/flashrom/flashchips.c    2007-12-31 14:05:08 UTC (rev 3031)
@@ -42,9 +42,10 @@
         probe_jedec,   erase_chip_jedec, write_jedec},
        {"At49F002(N)T",ATMEL_ID,       AT_49F002NT,    256, 256,
         probe_jedec,   erase_chip_jedec, write_jedec},
-       /* The EN29F002AT can do byte program at arbitrary boundaries. */
-       {"EN29F002AT",  EON_ID,         EN_29F002AT,    256, 256,
+       {"EN29F002(A)(N)T",     EON_ID, EN_29F002T,     256, 256,
         probe_jedec,   erase_chip_jedec, write_jedec},
+       {"EN29F002(A)(N)B",     EON_ID, EN_29F002B,     256, 256,
+        probe_jedec,   erase_chip_jedec, write_jedec},
        {"MBM29F400TC", FUJITSU_ID,     MBM29F400TC_STRANGE,    512, 64 * 1024,
         probe_m29f400bt, erase_m29f400bt, write_linuxbios_m29f400bt},
        {"MX29F002",    MX_ID,          MX_29F002,      256, 64 * 1024,


-- 
linuxbios mailing list
linuxbios@linuxbios.org
http://www.linuxbios.org/mailman/listinfo/linuxbios

Reply via email to