diff options
author | Daniel Brandt <dbr@mindglow.se> | 2010-03-21 13:36:20 +0000 |
---|---|---|
committer | Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> | 2010-03-21 13:36:20 +0000 |
commit | 4ebace43e727b4c323abd1c4a2671014f74e45d3 (patch) | |
tree | dd1384273476dcb8628fe852ba32ddc526ed1047 | |
parent | 5691e7eab97da611027b68a833a92e3a35f02ecc (diff) | |
download | flashrom-4ebace43e727b4c323abd1c4a2671014f74e45d3.zip flashrom-4ebace43e727b4c323abd1c4a2671014f74e45d3.tar.gz |
Adds board enable to Termtek TK-3370 thin client motherboard
Corresponding to flashrom svn r962.
Signed-off-by: Daniel Brandt <dbr@mindglow.se>
Acked-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
-rw-r--r-- | board_enable.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/board_enable.c b/board_enable.c index 8692a98..46dcf06 100644 --- a/board_enable.c +++ b/board_enable.c @@ -206,6 +206,17 @@ static int w836xx_memw_enable_2e(const char *name) } /** + * Suited for: + * - Termtek TK-3370 (rev. 2.5b) + */ +static int w836xx_memw_enable_4e(const char *name) +{ + w836xx_memw_enable(0x4E); + + return 0; +} + +/** * */ static int it8705f_write_enable(uint8_t port, const char *name) @@ -1400,6 +1411,7 @@ struct board_pciid_enable board_pciid_enables[] = { {0x1106, 0x3038, 0x0925, 0x1234, 0x1106, 0x3058, 0x15DD, 0x7609, NULL, NULL, NULL, "Soyo", "SY-7VCA", 0, OK, via_apollo_gpo0_lower}, {0x8086, 0x1076, 0x8086, 0x1176, 0x1106, 0x3059, 0x10f1, 0x2498, NULL, NULL, NULL, "Tyan", "S2498 (Tomcat K7M)", 0, OK, w836xx_memw_enable_2e}, {0x1106, 0x3038, 0x0925, 0x1234, 0x1106, 0x0596, 0x1106, 0, NULL, NULL, NULL, "Tekram", "P6Pro-A5", 256, OK, NULL}, + {0x1106, 0x3123, 0x1106, 0x3123, 0x1106, 0x3059, 0x1106, 0x4161, NULL, NULL, NULL, "Termtek", "TK-3370 (Rev:2.5B)", 0, OK, w836xx_memw_enable_4e}, {0x1106, 0x3177, 0x1106, 0xAA01, 0x1106, 0x3123, 0x1106, 0xAA01, NULL, NULL, NULL, "VIA", "EPIA M/MII/...", 0, OK, via_vt823x_gpio15_raise}, {0x1106, 0x0259, 0x1106, 0x3227, 0x1106, 0x3065, 0x1106, 0x3149, NULL, NULL, NULL, "VIA", "EPIA-N/NL", 0, OK, via_vt823x_gpio9_raise}, {0x1106, 0x5337, 0x1458, 0xb003, 0x1106, 0x287e, 0x1106, 0x337e, NULL, NULL, NULL, "VIA", "PC3500G", 0, OK, it87xx_probe_spi_flash}, |