mirror of
https://review.coreboot.org/flashrom.git
synced 2025-08-16 20:04:41 +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:
3
flash.h
3
flash.h
@@ -525,6 +525,9 @@ extern const struct board_info boards_bad[];
|
|||||||
#define S29C31004T 0x63
|
#define S29C31004T 0x63
|
||||||
|
|
||||||
#define TI_ID 0x97 /* Texas Instruments */
|
#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
|
* W25X chips are SPI, first byte of device ID is memory type, second
|
||||||
|
28
flashchips.c
28
flashchips.c
@@ -2054,6 +2054,34 @@ struct flashchip flashchips[] = {
|
|||||||
.read = read_memmapped,
|
.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",
|
.vendor = "Winbond",
|
||||||
.name = "W25x10",
|
.name = "W25x10",
|
||||||
|
Reference in New Issue
Block a user