From 7f03228e54d83bd61df4d937e93abbda797f9463 Mon Sep 17 00:00:00 2001 From: stefanct Date: Fri, 24 Aug 2012 23:03:46 +0000 Subject: Fix VIA VX*** support. Helge Wagner's patch that added VIA VX900 chipset support made me look closer at the datasheets which led to some concise documentation about newer VIA chipsets: http://flashrom.org/VIA Based on that this patch adds full support for VX800/VX820, VX855/VX875 and VX900, including SPI and LPC. VT8237S was not changed (SPI support only) because there is no public datasheet and it is not clear how to distinguish between LPC and SPI strapping and investigations in (NDAed) documents have not brought up anything conclusively. enable_flash_vt823x could probably be enhanced too due to various ignored LPC options of the chipset. Signed-off-by: Helge Wagner Signed-off-by: Stefan Tauner Tested-by: Alexandru Gagniuc Acked-by: Carl-Daniel Hailfinger git-svn-id: https://code.coreboot.org/svn/flashrom/trunk@1578 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- board_enable.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'board_enable.c') diff --git a/board_enable.c b/board_enable.c index c61d72d..a6ee19f 100644 --- a/board_enable.c +++ b/board_enable.c @@ -784,7 +784,7 @@ static int via_vt823x_gpio_set(uint8_t gpio, int raise) dev = pci_dev_find_vendorclass(0x1106, 0x0601); switch (dev->device_id) { case 0x3177: /* VT8235 */ - case 0x3227: /* VT8237R */ + case 0x3227: /* VT8237/VT8237R */ case 0x3337: /* VT8237A */ break; default: -- cgit v1.2.1