Today I retry to add support for the Winbond W29C040P chip. But read theams work not correct. I look into the files with "hexer" it look so much different from a Epia Cl save.
The Target is a Compaq T30, it is a thin client with a Geode GX1.
I append the bios save. Can anybody say if this is ja possibel file?
Greeding Markus
On 29.08.2007 10:32, Markus Boas wrote:
Today I retry to add support for the Winbond W29C040P chip.
Please post a patch and perhaps a link to the data sheet. Then we can look at it as well.
But read theams work not correct. I look into the files with "hexer" it look so much different from a Epia Cl save.
The Target is a Compaq T30, it is a thin client with a Geode GX1.
I append the bios save. Can anybody say if this is ja possibel file?
What does "flashrom -V" say?
Regards, Carl-Daniel
Am Mittwoch 29 August 2007 schrieb Carl-Daniel Hailfinger:
On 29.08.2007 10:32, Markus Boas wrote:
Today I retry to add support for the Winbond W29C040P chip.
Please post a patch and perhaps a link to the data sheet. Then we can look at it as well.
http://pdf1.alldatasheet.net/datasheet-pdf/view/47667/WINBOND/W29C040P-90.ht... I have an W29C040P-70B
But read theams work not correct. I look into the files with "hexer" it look so much different from a Epia Cl save.
The Target is a Compaq T30, it is a thin client with a Geode GX1.
I append the bios save. Can anybody say if this is ja possibel file?
What does "flashrom -V" say?
Regards, Carl-Daniel
Am Donnerstag 30 August 2007 schrieb Markus Boas:
Am Mittwoch 29 August 2007 schrieb Carl-Daniel Hailfinger:
On 29.08.2007 10:32, Markus Boas wrote:
Today I retry to add support for the Winbond W29C040P chip.
Please post a patch and perhaps a link to the data sheet. Then we can look at it as well.
http://pdf1.alldatasheet.net/datasheet-pdf/view/47667/WINBOND/W29C040P-90.h tml I have an W29C040P-70B
I found my fault, I don't realised the 256 Bit instatt of 128 Bit Pagesize. So it read, write and verifiy.
So I send the Patch for the Winbond W29C040P
Index: README =================================================================== --- README (Revision 2751) +++ README (Arbeitskopie) @@ -149,6 +149,7 @@ SyncMOS S29C31004T Winbond W29C011 Winbond W29C020C +Winbond W29C040P Winbond W49F002U Winbond W49V002A Winbond W49V002FA Index: flash.h =================================================================== --- flash.h (Revision 2751) +++ flash.h (Arbeitskopie) @@ -100,7 +100,9 @@
#define WINBOND_ID 0xDA /* Winbond */ #define W_29C011 0xC1 #define W_29EE011 0xC1 #define W_29C020C 0x45 +#define W_29C040P 0x46 #define W_39V040FA 0x34 #define W_39V040A 0x3D #define W_39V040B 0x54 #include "flash.h" @@ -82,6 +83,10 @@ 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}, {"W29EE011", WINBOND_ID, W_29C011, 128, 128, probe_w29ee011, 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,
Signed-off-by: Markus Boas ryven@ryven.de
Greeding Markus
On Thu, Aug 30, 2007 at 08:50:06AM +0200, Markus Boas wrote: Index: README
=================================================================== --- README (Revision 2751) +++ README (Arbeitskopie) @@ -149,6 +149,7 @@ SyncMOS S29C31004T Winbond W29C011 Winbond W29C020C +Winbond W29C040P Winbond W49F002U Winbond W49V002A Winbond W49V002FA Index: flash.h =================================================================== --- flash.h (Revision 2751) +++ flash.h (Arbeitskopie) @@ -100,7 +100,9 @@
#define WINBOND_ID 0xDA /* Winbond */ #define W_29C011 0xC1 #define W_29EE011 0xC1 #define W_29C020C 0x45 +#define W_29C040P 0x46 #define W_39V040FA 0x34 #define W_39V040A 0x3D #define W_39V040B 0x54 #include "flash.h" @@ -82,6 +83,10 @@ 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}, {"W29EE011", WINBOND_ID, W_29C011, 128, 128, probe_w29ee011, 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,
Signed-off-by: Markus Boas ryven@ryven.de
Thanks, committed in r2752.
The patch was somehow malformed (didn't apply), but I fixed that manually.
Cheers, Uwe.