[flashrom] [commit] r682 - trunk

svn at flashrom.org svn at flashrom.org
Wed Aug 12 18:58:11 CEST 2009


Author: libv
Date: 2009-08-12 18:58:11 +0200 (Wed, 12 Aug 2009)
New Revision: 682

Modified:
   trunk/board_enable.c
Log:
Board enable for Asus P4P800-E Deluxe.

Raises what seems to be gpio21.

Uses host controller and Promise Raid Controller for a unique match.

Signed-off-by:  Luc Verhaegen <libv at skynet.be>
Acked-by: Stefan Reinauer <stepan at coresystems.de>
Tested-by: Bojan Radakovic <crnibojan at gmail.com>


Modified: trunk/board_enable.c
===================================================================
--- trunk/board_enable.c	2009-08-12 16:17:41 UTC (rev 681)
+++ trunk/board_enable.c	2009-08-12 16:58:11 UTC (rev 682)
@@ -888,6 +888,32 @@
 }
 
 /**
+ * Suited for Asus P4P800-E: Intel Intel 865PE + ICH5R.
+ */
+static int board_asus_p4p800(const char *name)
+{
+	struct pci_dev *dev;
+	uint16_t base;
+	uint8_t tmp;
+
+	dev = pci_dev_find(0x8086, 0x24D0);	/* Intel ICH5R ISA Bridge */
+	if (!dev) {
+		fprintf(stderr, "\nERROR: Intel ICH5R ISA Bridge not found.\n");
+		return -1;
+	}
+
+	/* get PM IO base */
+	base = pci_read_long(dev, 0x58) & 0x0000FFC0;
+
+	/* Raise GPIO 21 */
+	tmp = INB(base + 0x0E);
+	tmp |= 0x20;
+	OUTB(tmp, base + 0x0E);
+
+	return 0;
+}
+
+/**
  * We use 2 sets of IDs here, you're free to choose which is which. This
  * is to provide a very high degree of certainty when matching a board on
  * the basis of subsystem/card IDs. As not every vendor handles
@@ -920,6 +946,7 @@
 	{0x1106, 0x3189, 0x1043, 0x807F,  0x1106, 0x3177, 0x1043, 0x808C, NULL,         NULL,          "ASUS",        "A7V8X",              board_asus_a7v8x},
 	{0x1106, 0x3177, 0x1043, 0x80A1,  0x1106, 0x3205, 0x1043, 0x8118, NULL,         NULL,          "ASUS",        "A7V8X-MX SE",        board_asus_a7v8x_mx},
 	{0x8086, 0x1a30, 0x1043, 0x8070,  0x8086, 0x244b, 0x1043, 0x8028, NULL,         NULL,          "ASUS",        "P4B266",             ich2_gpio22_raise},
+	{0x8086, 0x2570, 0x1043, 0x80F2,  0x105A, 0x3373, 0x1043, 0x80F5, NULL,         NULL,          "ASUS",        "P4P800-E Deluxe",    board_asus_p4p800},
 	{0x10B9, 0x1541,      0,      0,  0x10B9, 0x1533,      0,      0, "asus",       "p5a",         "ASUS",        "P5A",                board_asus_p5a},
 	{0x1106, 0x3149, 0x1565, 0x3206,  0x1106, 0x3344, 0x1565, 0x1202, NULL,         NULL,          "Biostar",     "P4M80-M4",           it8705_rom_write_enable},
 	{0x1106, 0x3038, 0x1019, 0x0996,  0x1106, 0x3177, 0x1019, 0x0996, NULL,         NULL,          "Elitegroup",  "K7VTA3",             it8705f_write_enable_2e},





More information about the flashrom mailing list