diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-25 18:03:50 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2008-10-25 18:03:50 +0000 |
commit | 4446aa0a292142194b44b673547d35bea94e1037 (patch) | |
tree | cc28bbcf5451f433fe5584859510e8ab2634bf89 /util/flashrom/chipset_enable.c | |
parent | 38204a2c181b71d5c74a5bd9cfac14f450076ec2 (diff) |
Add support for the VIA VT82C586A/B chipset, improve documentation.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3693 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/chipset_enable.c')
-rw-r--r-- | util/flashrom/chipset_enable.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util/flashrom/chipset_enable.c b/util/flashrom/chipset_enable.c index 86c731b0df..afac42ed76 100644 --- a/util/flashrom/chipset_enable.c +++ b/util/flashrom/chipset_enable.c @@ -570,6 +570,7 @@ static int enable_flash_sis5595(struct pci_dev *dev, const char *name) return 0; } +/* Works for AMD-8111, VIA VT82C586A/B, VIA VT82C686A/B. */ static int enable_flash_amd8111(struct pci_dev *dev, const char *name) { uint8_t old, new; @@ -584,6 +585,7 @@ static int enable_flash_amd8111(struct pci_dev *dev, const char *name) } } + /* Enable 'ROM write' bit. */ old = pci_read_byte(dev, 0x40); new = old | 0x01; if (new == old) @@ -782,7 +784,8 @@ static const FLASH_ENABLE enables[] = { {0x1106, 0x3227, "VIA VT8237", enable_flash_vt823x}, {0x1106, 0x3372, "VIA VT8237S", enable_flash_vt8237s_spi}, {0x1106, 0x8324, "VIA CX700", enable_flash_vt823x}, - {0x1106, 0x0686, "VIA VT82C686", enable_flash_amd8111}, + {0x1106, 0x0586, "VIA VT82C586A/B", enable_flash_amd8111}, + {0x1106, 0x0686, "VIA VT82C686A/B", enable_flash_amd8111}, {0x1078, 0x0100, "AMD CS5530(A)", enable_flash_cs5530}, {0x100b, 0x0510, "AMD SC1100", enable_flash_sc1100}, {0x1039, 0x0008, "SiS5595", enable_flash_sis5595}, |