flashrom: Increase delay in probe_jedec() after Product ID Entry to 10ms

We should follow data sheet timing, even if chips have been tested to answer
faster in the field.

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3387 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Peter Stuge 2008-06-24 02:09:09 +00:00
parent 606a207d9b
commit 0667afd294
1 changed files with 2 additions and 3 deletions

View File

@ -100,10 +100,9 @@ int probe_jedec(struct flashchip *flash)
myusec_delay(10);
*(volatile uint8_t *)(bios + 0x5555) = 0x90;
/* Older chips may need up to 100 us to respond. The ATMEL 29C020
* needs 10 ms according to the data sheet, but it has been tested
* to work reliably with 2 ms.
* needs 10 ms according to the data sheet.
*/
myusec_delay(2000);
myusec_delay(10000);
/* Read product ID */
id1 = *(volatile uint8_t *)bios;