Compare commits

...

1 Commits

Author SHA1 Message Date
Holger Hans Peter Freyther f85ebc5aae nand: Make the toshiba flash (used in RevF/RevG)
Empirically these timings wait not long enough for erase to succedd,
we are waiting far longer than necessary but the RAUC system seems to
be a lot more stable now.
2016-07-02 11:33:32 +02:00
1 changed files with 6 additions and 1 deletions

7
nand.c
View File

@ -508,7 +508,12 @@ nand_set_a1cr(uint8_t manID, uint8_t deviceID)
break;
/* Toshiba */
case 0x98:
AEMIF->A1CR = 0x102442DC;
/*
* Factor 10 slower for R/W strobe than the current values. Seems
* to improve stability with mount/rm/umount/mount/write/umount
* cycle. Need to calculate good values based on the datasheet.
*/
AEMIF->A1CR = 0x20FEE7FC;
break;
default:
log_info( "Unsupported NAND device" );