diff options
author | Sean Nelson <audiohacked@gmail.com> | 2010-03-19 22:58:15 +0000 |
---|---|---|
committer | Sean Nelson <audiohacked@gmail.com> | 2010-03-19 22:58:15 +0000 |
commit | 6eba06b8d885b829753e222405a2adc842ea9da7 (patch) | |
tree | 2cadf20c41cb41345f94ffb15059472af31a8913 /board_enable.c | |
parent | 70f678c1ebf0a6aac9d3a0b96eff82ab0e114b88 (diff) | |
download | flashrom-6eba06b8d885b829753e222405a2adc842ea9da7.zip flashrom-6eba06b8d885b829753e222405a2adc842ea9da7.tar.gz |
Reversed-engineered board enable for the ASUS A8N-LA
Rebased.
IDs are ISA and SMBus.
Added dmi string to match 3 HP boards: Nagami, Nagami2, Nagami2L.
This could match any HP Nagami board. Needs testing.
Corresponding to flashrom svn r957.
Signed-off-by: Sean Nelson <audiohacked@gmail.com>
Acked-by: Sean Nelson <audiohacked@gmail.com>
Diffstat (limited to 'board_enable.c')
-rw-r--r-- | board_enable.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board_enable.c b/board_enable.c index 2e2dba3..de274e7 100644 --- a/board_enable.c +++ b/board_enable.c @@ -541,6 +541,7 @@ static int nvidia_mcp_gpio_set(int gpio, int raise) } /** + * Suited for ASUS A8N-LA: nVidia MCP51. * Suited for ASUS M2NBP-VM CSM: nVidia MCP51. */ static int nvidia_mcp_gpio0_raise(const char *name) @@ -1339,6 +1340,7 @@ struct board_pciid_enable board_pciid_enables[] = { {0x1106, 0x3177, 0x1043, 0x80A1, 0x1106, 0x3205, 0x1043, 0x8118, NULL, NULL, NULL, "ASUS", "A7V8X-MX SE", 0, OK, w836xx_memw_enable_2e}, {0x8086, 0x27A0, 0x1043, 0x1287, 0x8086, 0x27DF, 0x1043, 0x1287, "^A8J", NULL, NULL, "ASUS", "A8JM", 0, NT, intel_ich_gpio34_raise}, {0x10DE, 0x005E, 0x1043, 0x815A, 0x10DE, 0x0054, 0x1043, 0x815A, NULL, NULL, NULL, "ASUS", "A8N", 0, NT, board_shuttle_fn25}, + {0x10DE, 0x0260, 0x103c, 0x2a3e, 0x10DE, 0x0264, 0x103c, 0x2a3e, "NAGAMI", NULL, NULL, "ASUS", "A8N-LA", 0, NT, nvidia_mcp_gpio0_raise}, {0x10DE, 0x0264, 0x1043, 0x81C0, 0x10DE, 0x0260, 0x1043, 0x81C0, NULL, NULL, NULL, "ASUS", "M2NBP-VM CSM", 0, OK, nvidia_mcp_gpio0_raise}, {0x1106, 0x1336, 0x1043, 0x80ed, 0x1106, 0x3288, 0x1043, 0x8249, NULL, NULL, NULL, "ASUS", "M2V-MX", 0, OK, via_vt823x_gpio5_raise}, {0x8086, 0x1a30, 0x1043, 0x8070, 0x8086, 0x244b, 0x1043, 0x8028, NULL, NULL, NULL, "ASUS", "P4B266", 0, OK, intel_ich_gpio22_raise}, |