[LinuxBIOS] r2752 - trunk/util/flashrom

svn at openbios.org svn at openbios.org
Thu Aug 30 12:11:08 CEST 2007


Author: uwe
Date: 2007-08-30 12:11:08 +0200 (Thu, 30 Aug 2007)
New Revision: 2752

Modified:
   trunk/util/flashrom/README
   trunk/util/flashrom/flash.h
   trunk/util/flashrom/flashchips.c
Log:
Add support for the Winbond W29C040P.

Signed-off-by: Markus Boas <ryven at ryven.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/util/flashrom/README
===================================================================
--- trunk/util/flashrom/README	2007-08-29 17:52:32 UTC (rev 2751)
+++ trunk/util/flashrom/README	2007-08-30 10:11:08 UTC (rev 2752)
@@ -149,6 +149,7 @@
 SyncMOS S29C31004T
 Winbond W29C011
 Winbond W29C020C
+Winbond W29C040P
 Winbond W49F002U
 Winbond W49V002A
 Winbond W49V002FA

Modified: trunk/util/flashrom/flash.h
===================================================================
--- trunk/util/flashrom/flash.h	2007-08-29 17:52:32 UTC (rev 2751)
+++ trunk/util/flashrom/flash.h	2007-08-30 10:11:08 UTC (rev 2752)
@@ -101,6 +101,7 @@
 #define WINBOND_ID		0xDA	/* Winbond */
 #define W_29C011		0xC1
 #define W_29C020C		0x45
+#define W_29C040P		0x46
 #define W_39V040FA		0x34
 #define W_39V040A		0x3D
 #define W_39V040B		0x54

Modified: trunk/util/flashrom/flashchips.c
===================================================================
--- trunk/util/flashrom/flashchips.c	2007-08-29 17:52:32 UTC (rev 2751)
+++ trunk/util/flashrom/flashchips.c	2007-08-30 10:11:08 UTC (rev 2752)
@@ -82,6 +82,8 @@
 	 probe_jedec,	erase_chip_jedec, write_49fl004},
 	{"W29C011",	WINBOND_ID,	W_29C011,	128, 128,
 	 probe_jedec,	erase_chip_jedec, write_jedec},
+	{"W29C040P",	WINBOND_ID,	W_29C040P,	512, 256,
+	 probe_jedec,	erase_chip_jedec, write_jedec},
 	{"W29C020C", 	WINBOND_ID, 	W_29C020C,	256, 128,
 	 probe_jedec, 	erase_chip_jedec, write_jedec},
 	{"W49F002U", 	WINBOND_ID, 	W_49F002U,	256, 128,





More information about the coreboot mailing list