Hi,
I'm trying flashrom (r1074) on a HP Pavillion t3170.dk. This machine uses a ASUS PTGD-LA mainboard which HP/Compaq calls by "Puffer2-UL8E".[1]
Probe, read and verify works fine. But write fails.
Logs attached. Since this is an AMI BIOS maybe a board enable is needed?
1. http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023
-mattias
On Sun, Jul 11, 2010 at 10:29, Mattias Mattsson vitplister@gmail.com wrote:
I'm trying flashrom (r1074) on a HP Pavillion t3170.dk. This machine uses a ASUS PTGD-LA mainboard which HP/Compaq calls by "Puffer2-UL8E".[1]
And here is output from lspci and superiotool for the same board. (Don't know if this is really needed.)
-mattias
Signed-off-by: Michael Karcher flashrom@mkarcher.dialup.fu-berlin.de --- board_enable.c | 9 +++++++++ print.c | 1 + 2 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/board_enable.c b/board_enable.c index 57745fc..7cf1d94 100644 --- a/board_enable.c +++ b/board_enable.c @@ -1230,6 +1230,14 @@ static int intel_ich_gpio16_raise(void) }
/** + * Suited for HP Puffer2-UL8E (ASUS PTGD-LA OEM): LGA775 + 915 + ICH6. + */ +static int intel_ich_gpio18_raise(void) +{ + return intel_ich_gpio_set(18, 1); +} + +/** * Suited for ASUS A8JM: Intel 945 + ICH7 */ static int intel_ich_gpio34_raise(void) @@ -1680,6 +1688,7 @@ const struct board_pciid_enable board_pciid_enables[] = { {0x10DE, 0x0050, 0x1458, 0x0C11, 0x10DE, 0x005e, 0x1458, 0x5000, NULL, NULL, NULL, "GIGABYTE", "GA-K8N-SLI", 0, OK, nvidia_mcp_gpio21_raise}, {0x1166, 0x0223, 0x103c, 0x320d, 0x14e4, 0x1678, 0x103c, 0x703e, NULL, "hp", "dl145_g3", "HP", "DL145 G3", 0, OK, board_hp_dl145_g3_enable}, {0x1166, 0x0223, 0x103c, 0x320d, 0x14e4, 0x1648, 0x103c, 0x310f, NULL, "hp", "dl165_g6", "HP", "DL165 G6", 0, OK, board_hp_dl165_g6_enable}, + {0x8086, 0x2580, 0x103c, 0x2a08, 0x8086, 0x2640, 0x103c, 0x2640, NULL, NULL, NULL, "HP", "Puffer2-UL8E", 0, OK, intel_ich_gpio18_raise}, {0x8086, 0x2415, 0x103c, 0x1249, 0x10b7, 0x9200, 0x103c, 0x1246, NULL, NULL, NULL, "HP", "Vectra VL400", 0, OK, board_hp_vl400}, {0x8086, 0x1a30, 0x103c, 0x1a30, 0x8086, 0x2443, 0x103c, 0x2440, "^VL420$", NULL, NULL, "HP", "VL420 SFF", 0, OK, intel_ich_gpio22_raise}, {0x10de, 0x0369, 0x103c, 0x12fe, 0x10de, 0x0364, 0x103c, 0x12fe, NULL, NULL, NULL, "HP", "xw9400", 0, OK, nvidia_mcp_gpio5_raise}, diff --git a/print.c b/print.c index 65ff1e3..0ac857b 100644 --- a/print.c +++ b/print.c @@ -359,6 +359,7 @@ const struct board_info boards_known[] = { B("GIGABYTE", "GA-MA790FX-DQ6", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2690", NULL), B("GIGABYTE", "GA-MA790GP-DS4H", 1, "http://www.gigabyte.com/products/product-page.aspx?pid=2887", NULL), B("HP", "DL145 G3", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0081...", NULL), + B("HP", "Puffer2-UL8E", 1, "http://h10025.www1.hp.com/ewfrf/wc/document?docname=c00300023", NULL), B("HP", "Vectra VL400 PC", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0006...", NULL), B("HP", "Vectra VL420 SFF PC", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c0006...", NULL), B("HP", "xw9400", 1, "http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?lang=en&cc=us&...", "Boot block is write protected unless the solder points next to F2 are shorted." ),