Commit a8c8082c authored by Giampiero Giancipoli's avatar Giampiero Giancipoli Committed by Uwe Hermann
Browse files

Support for the 256K SyncMos S29C51002T flash


Corresponding to flashrom svn r72 and coreboot v2 svn r2499.
Signed-off-by: default avatarGiampiero Giancipoli <gianci@email.it>
Acked-by: default avatarUwe Hermann <uwe@hermann-uwe.de>
parent e60fd351
......@@ -79,6 +79,9 @@ extern struct flashchip flashchips[];
#define MSYSTEMS_MD2800 0x30 /* hmm -- both 0x30 */
#define MSYSTEMS_MD2802 0x30 /* hmm -- both 0x30 */
#define SM_ID 0x40 /* SyncMOS ID */
#define S29C51002T 0x02
extern void myusec_delay(int time);
extern void myusec_calibrate_delay();
extern int enable_flash_write(void);
......
......@@ -114,6 +114,8 @@ struct flashchip flashchips[] = {
#endif
{"LHF00L04", SHARP_ID, SHARP_LHF00L04, NULL, 1024, 64 * 1024,
probe_lhf00l04, erase_lhf00l04, write_lhf00l04, NULL},
{"S29C51002T", SM_ID, S29C51002T, NULL, 256, 128,
probe_jedec, erase_chip_jedec, write_49f002, NULL},
{NULL,}
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment