[LinuxBIOS] r2713 - trunk/LinuxBIOSv2/util/flashrom

svn at openbios.org svn at openbios.org
Tue Jun 5 17:02:18 CEST 2007


Author: uwe
Date: 2007-06-05 17:02:18 +0200 (Tue, 05 Jun 2007)
New Revision: 2713

Modified:
   trunk/LinuxBIOSv2/util/flashrom/README
   trunk/LinuxBIOSv2/util/flashrom/board_enable.c
   trunk/LinuxBIOSv2/util/flashrom/chipset_enable.c
Log:
flashrom: Document the newly supported IBM x3455 board and the
now-supported Broadcom HT-1000 chipset (trivial).

Signed-off-by: Uwe Hermann <uwe at hermann-uwe.de>
Acked-by: Uwe Hermann <uwe at hermann-uwe.de>



Modified: trunk/LinuxBIOSv2/util/flashrom/README
===================================================================
--- trunk/LinuxBIOSv2/util/flashrom/README	2007-06-05 12:51:52 UTC (rev 2712)
+++ trunk/LinuxBIOSv2/util/flashrom/README	2007-06-05 15:02:18 UTC (rev 2713)
@@ -53,6 +53,7 @@
 * IWILL DK8-HTX: use -m iwill:dk8_htx
 * Agami Aruma: use -m AGAMI:ARUMA
 * ASUS P5A: use -m asus:p5a
+* IBM x3455: use -m ibm:x3455
 
 
 ROM Layout Support
@@ -153,6 +154,7 @@
 AMD Geode SC1100
 AMD AMD-8111
 ATI SB400
+Broadcom HT-1000
 Intel ICH0-ICH8 (all variations)
 Intel PIIX4/PIIX4E/PIIX4M
 NVIDIA CK804

Modified: trunk/LinuxBIOSv2/util/flashrom/board_enable.c
===================================================================
--- trunk/LinuxBIOSv2/util/flashrom/board_enable.c	2007-06-05 12:51:52 UTC (rev 2712)
+++ trunk/LinuxBIOSv2/util/flashrom/board_enable.c	2007-06-05 15:02:18 UTC (rev 2713)
@@ -250,10 +250,10 @@
 {
 	uint8_t byte;
 
-	/* Set GPIO lines in HT1000 southbridge */
+	/* Set GPIO lines in the Broadcom HT-1000 southbridge. */
 	outb(0x45, 0xcd6);
 	byte = inb(0xcd7);
-	outb(byte|0x20, 0xcd7);
+	outb(byte | 0x20, 0xcd7);
 
 	return 0;
 }

Modified: trunk/LinuxBIOSv2/util/flashrom/chipset_enable.c
===================================================================
--- trunk/LinuxBIOSv2/util/flashrom/chipset_enable.c	2007-06-05 12:51:52 UTC (rev 2712)
+++ trunk/LinuxBIOSv2/util/flashrom/chipset_enable.c	2007-06-05 15:02:18 UTC (rev 2713)
@@ -387,12 +387,11 @@
 
 }
 
-
 static int enable_flash_ht1000(struct pci_dev *dev, char *name)
 {
-	unsigned char byte;
+	uint8_t byte;
 
-	/* Set the 4MB enable bit */
+	/* Set the 4MB enable bit. */
 	byte = pci_read_byte(dev, 0x41);
 	byte |= 0x0e;
 	pci_write_byte(dev, 0x41, byte);
@@ -462,7 +461,7 @@
 
 	{0x1002, 0x4377, "ATI SB400", enable_flash_sb400},	/* ATI Technologies Inc IXP SB400 PCI-ISA Bridge (rev 80) */
 
-	{0x1166, 0x0205, "BCM HT1000", enable_flash_ht1000},
+	{0x1166, 0x0205, "Broadcom HT-1000", enable_flash_ht1000},
 };
 
 /*





More information about the coreboot mailing list