On 21.03.2009 22:59, Paul Menzel wrote:
Am Samstag, den 21.03.2009, 19:23 +0100 schrieb Carl-Daniel Hailfinger:
OK, the ID cycle is not working. Basically, if the first two bytes of a dump are identical to id1,id2 then id1,id2 are not responses to the ID command. Try shorter (down to 10 us) or longer (up to 40 ms) delays in probe_jedec.
I did change the following myusec_delay() in probe_jedec() in jedec.c
/* Older chips may need up to 100 us to respond. The ATMEL 29C020 * needs 10 ms according to the data sheet. */ myusec_delay(10000);
I tried 10, 100, 1000, 10000 and 40000 (all us) and all produced identical images (checked with diff).
Can this happen? Or did I do something incorrectly?
The delay should not influence the dump, but the id1, id2 responses. If id1,id2 were the same for all delays, that means the delay is irrelevant to the problem. Either the writes are not passed through or they are mangled by cache effects. It would be interesting to know the MTRR settings (/proc/mtrr) of that machine. An area can be covered by multiple MTRRs. As long as at least one MTRR covering the area is "uncachable", everything is OK. If no MTRR is covering the area, you have to find out MTRRdefType (no idea how to do this without a special program).
If you have time for it, extending flashrom to read MTRRs and calculate ROM cache settings would be great!
Regards, Carl-Daniel