1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-06-30 21:52:36 +02:00

Add TI TMS29F002RT and TMS29F002RB probe and read support

Corresponding to flashrom svn r550.

Signed-off-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
This commit is contained in:
Carl-Daniel Hailfinger
2009-05-26 21:26:23 +00:00
parent 15aa7c6543
commit 09b4fb73f2
2 changed files with 31 additions and 0 deletions

View File

@ -525,6 +525,9 @@ extern const struct board_info boards_bad[];
#define S29C31004T 0x63
#define TI_ID 0x97 /* Texas Instruments */
#define TI_OLD_ID 0x01 /* TI chips from last century */
#define TI_TMS29F002RT 0xB0
#define TI_TMS29F002RB 0x34
/*
* W25X chips are SPI, first byte of device ID is memory type, second

View File

@ -2054,6 +2054,34 @@ struct flashchip flashchips[] = {
.read = read_memmapped,
},
{
.vendor = "Texas Instruments",
.name = "TMS29F002RB",
.manufacture_id = TI_OLD_ID,
.model_id = TI_TMS29F002RB,
.total_size = 256,
.page_size = 16384, /* Non-uniform sectors */
.tested = TEST_UNTESTED,
.probe = probe_jedec,
.erase = NULL,
.write = NULL,
.read = read_memmapped,
},
{
.vendor = "Texas Instruments",
.name = "TMS29F002RT",
.manufacture_id = TI_OLD_ID,
.model_id = TI_TMS29F002RT,
.total_size = 256,
.page_size = 16384, /* Non-uniform sectors */
.tested = TEST_UNTESTED,
.probe = probe_jedec,
.erase = NULL,
.write = NULL,
.read = read_memmapped,
},
{
.vendor = "Winbond",
.name = "W25x10",