diff options
author | Jonathan Kollasch <jakllsch@kollasch.net> | 2010-10-15 23:02:15 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-10-15 23:02:15 +0000 |
commit | f8db95934713adf32efc5b61d49ae771fb77e3ce (patch) | |
tree | e9551a0035c422a4b9304ad778945b7db1d30103 | |
parent | 430694439b458d36e4625f7f5c605a95a0c19ee5 (diff) | |
download | flashrom-f8db95934713adf32efc5b61d49ae771fb77e3ce.tar.gz flashrom-f8db95934713adf32efc5b61d49ae771fb77e3ce.tar.bz2 flashrom-f8db95934713adf32efc5b61d49ae771fb77e3ce.zip |
Add a board enable for the EPoX EP-8NPA7I board
Also, spelling correction.
Corresponding to flashrom svn r1213.
Signed-off-by: Jonathan Kollasch <jakllsch@kollasch.net>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
-rw-r--r-- | board_enable.c | 10 | ||||
-rw-r--r-- | print.c | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/board_enable.c b/board_enable.c index 9ac6e2d5..78a9e630 100644 --- a/board_enable.c +++ b/board_enable.c @@ -947,6 +947,15 @@ static int nvidia_mcp_gpio2_raise(void) /* * Suited for: + * - EPoX EP-8NPAI: NVIDIA nForce4 4X + */ +static int nvidia_mcp_gpio4_raise(void) +{ + return nvidia_mcp_gpio_set(0x04, 1); +} + +/* + * Suited for: * - HP xw9400 (Tyan S2915-E OEM): Dual(!) NVIDIA MCP55 * * Notes: a) There are two MCP55 chips, so also two SMBus bridges on that @@ -1922,6 +1931,7 @@ const struct board_pciid_enable board_pciid_enables[] = { {0x10de, 0x03ea, 0x1019, 0x2602, 0x10de, 0x03e0, 0x1019, 0x2602, NULL, NULL, NULL, "Elitegroup", "GeForce6100SM-M", 0, OK, board_ecs_geforce6100sm_m}, {0x1106, 0x3038, 0x1019, 0x0996, 0x1106, 0x3177, 0x1019, 0x0996, NULL, NULL, NULL, "Elitegroup", "K7VTA3", 256, OK, NULL}, {0x1106, 0x3177, 0x1106, 0x3177, 0x1106, 0x3059, 0x1695, 0x3005, NULL, NULL, NULL, "EPoX", "EP-8K5A2", 0, OK, w836xx_memw_enable_2e}, + {0x10DE, 0x005E, 0x1695, 0x1010, 0x10DE, 0x0050, 0x1695, 0x1010, NULL, NULL, NULL, "EPoX", "EP-8NPAI", 0, OK, nvidia_mcp_gpio4_raise}, {0x10EC, 0x8139, 0x1695, 0x9001, 0x11C1, 0x5811, 0x1695, 0x9015, NULL, NULL, NULL, "EPoX", "EP-8RDA3+", 0, OK, nvidia_mcp_gpio31_raise}, {0x8086, 0x7110, 0, 0, 0x8086, 0x7190, 0, 0, NULL, "epox", "ep-bx3", "EPoX", "EP-BX3", 0, NT, intel_piix4_gpo22_raise}, {0x8086, 0x2443, 0x8086, 0x2442, 0x8086, 0x1130, 0x8086, 0x1130, "^6IEM ", NULL, NULL, "GIGABYTE", "GA-6IEM", 0, NT, intel_ich_gpio25_raise}, @@ -449,6 +449,7 @@ const struct board_info boards_known[] = { B("Elitegroup", "RS485M-M", 1, "http://www.ecs.com.tw/ECSWebSite_2007/Products/ProductsDetail.aspx?CategoryID=1&DetailID=654&DetailName=Feature&MenuID=1&LanID=0", NULL), B("Emerson", "ATCA-7360", 1, "http://www.emerson.com/sites/Network_Power/en-US/Products/Product_Detail/Product1/Pages/EmbCompATCA-7360.aspx", NULL), B("EPoX", "EP-8K5A2", 1, "http://www.epox.com/product.asp?ID=EP-8K5A2", NULL), + B("EPoX", "EP-8NPAI", 1, NULL, NULL), B("EPoX", "EP-8RDA3+", 1, "http://www.epox.com/product.asp?ID=EP-8RDA3plus", NULL), B("EPoX", "EP-BX3", 1, "http://www.epox.com/product.asp?ID=EP-BX3", NULL), B("FIC", "VA-502", 0, "ftp://ftp.fic.com.tw/motherboard/manual/socket7/va-502/", "No public report found. Owned by Uwe Hermann <uwe@hermann-uwe.de>. Seems the PCI subsystem IDs are identical with the Tekram P6Pro-A5. May work now."), |