1
0
mirror of https://review.coreboot.org/flashrom.git synced 2025-07-02 06:23:18 +02:00

Document the newly supported IBM x3455 board and the now-supported Broadcom HT-1000 chipset

Corresponding to flashrom svn r119 and coreboot v2 svn r2713.

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
This commit is contained in:
Uwe Hermann
2007-06-05 15:02:18 +00:00
parent 1c283f4241
commit e823ee0fc5
3 changed files with 7 additions and 6 deletions

View File

@ -250,10 +250,10 @@ static int board_ibm_x3455(const char *name)
{
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;
}