diff options
author | Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de> | 2010-03-19 22:35:21 +0000 |
---|---|---|
committer | Sean Nelson <audiohacked@gmail.com> | 2010-03-19 22:35:21 +0000 |
commit | 51cd0c9838e533b9b736f43dd1c480675363dcab (patch) | |
tree | 5f8e14847a3138b8b6463d2b89d79fc7e11cf489 | |
parent | 187a46acd10730060b0c7ed63484fcb5e93394d7 (diff) | |
download | flashrom-51cd0c9838e533b9b736f43dd1c480675363dcab.tar.gz flashrom-51cd0c9838e533b9b736f43dd1c480675363dcab.tar.bz2 flashrom-51cd0c9838e533b9b736f43dd1c480675363dcab.zip |
Rebased Board Enable Patch: Intel SE440BX-2
This board has no subsystem IDs, but thankfully the DMI patch is in
now, which is a real life safer. There are *WAY* to many 440BX/PIIX4
boards out there to match this without DMI.
Corresponding to flashrom svn r951.
Signed-off-by: Michael Karcher <flashrom@mkarcher.dialup.fu-berlin.de>
Acked-by: Sean Nelson <audiohacked@gmail.com>
-rw-r--r-- | board_enable.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/board_enable.c b/board_enable.c index 7b1fa123..4fe3fa15 100644 --- a/board_enable.c +++ b/board_enable.c @@ -703,6 +703,14 @@ static int board_epox_ep_bx3(const char *name) } /** + * Suited for Intel SE440BX-2 + */ +static int intel_piix4_gpo27_lower(const char *name) +{ + return intel_piix4_gpo_set(27, 0); +} + +/** * Set a GPIO line on a given intel ICH LPC controller. */ static int intel_ich_gpio_set(int gpio, int raise) @@ -1314,6 +1322,7 @@ struct board_pciid_enable board_pciid_enables[] = { {0x8086, 0x1a30, 0x103c, 0x1a30, 0x8086, 0x2443, 0x103c, 0x2440, "^VL420$", NULL, NULL, "HP", "VL420 SFF", 0, OK, intel_ich_gpio22_raise}, {0x1166, 0x0205, 0x1014, 0x0347, 0x1002, 0x515E, 0x1014, 0x0325, NULL, NULL, NULL, "IBM", "x3455", 0, OK, board_ibm_x3455}, {0x1039, 0x5513, 0x8086, 0xd61f, 0x1039, 0x6330, 0x8086, 0xd61f, NULL, NULL, NULL, "Intel", "D201GLY", 0, OK, wbsio_check_for_spi}, + {0x8086, 0x7190, 0, 0, 0x8086, 0x7110, 0, 0, "^SE440BX-2$", NULL, NULL, "Intel", "SE440BX-2", 0, NT, intel_piix4_gpo27_lower}, {0x1022, 0x7468, 0, 0, 0, 0, 0, 0, NULL, "iwill", "dk8_htx", "IWILL", "DK8-HTX", 0, OK, w83627hf_gpio24_raise_2e}, {0x8086, 0x27A0, 0, 0, 0x8086, 0x27b8, 0, 0, NULL, "kontron", "986lcd-m", "Kontron", "986LCD-M", 0, OK, board_kontron_986lcd_m}, {0x8086, 0x2411, 0x8086, 0x2411, 0x8086, 0x7125, 0x0e11, 0xb165, NULL, NULL, NULL, "Mitac", "6513WU", 0, OK, board_mitac_6513wu}, |