diff options
author | Stefan Tauner <stefan.tauner@gmx.at> | 2013-05-28 11:30:25 +0200 |
---|---|---|
committer | Anton Kochkov <anton.kochkov@gmail.com> | 2013-06-13 11:31:41 +0200 |
commit | 088f5694009f710dc0a7fc9437a02d05b08829ed (patch) | |
tree | fc694ead055b14b002d1e27da9c3fd1a7321b204 /util/inteltool/gpio.c | |
parent | 6c4f3ce4906c32e365825a7d8630945f79b60616 (diff) | |
download | coreboot-088f5694009f710dc0a7fc9437a02d05b08829ed.tar.gz coreboot-088f5694009f710dc0a7fc9437a02d05b08829ed.tar.bz2 coreboot-088f5694009f710dc0a7fc9437a02d05b08829ed.zip |
util/inteltool: Add support for other 5 chipsets
e4e8e090fa36cb3a098e1ddf0ea44c796c140572 does add support for QM57,
but there are many more that should work with that code(?).
Does not explode on...
CPU: Processor Type: 0, Family 6, Model 25, Stepping 2
Northbridge: 8086:0044 (1st generation (Westmere family) Core Processor)
Southbridge: 8086:3b0f (QS57)
Change-Id: I85e15ba45678a5bd635415a7a8d69c05bff8f7ef
Signed-off-by: Stefan Tauner <stefan.tauner@gmx.at>
Reviewed-on: http://review.coreboot.org/3321
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Anton Kochkov <anton.kochkov@gmail.com>
Diffstat (limited to 'util/inteltool/gpio.c')
-rw-r--r-- | util/inteltool/gpio.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/util/inteltool/gpio.c b/util/inteltool/gpio.c index 820e266826c6..42e7272c235f 100644 --- a/util/inteltool/gpio.c +++ b/util/inteltool/gpio.c @@ -523,7 +523,23 @@ int print_gpios(struct pci_dev *sb, int show_all, int show_diffs) size = ARRAY_SIZE(i631x_gpio_registers); break; - case PCI_DEVICE_ID_INTEL_MOBILE_5: + case PCI_DEVICE_ID_INTEL_3400_DESKTOP: + case PCI_DEVICE_ID_INTEL_3400_MOBILE: + case PCI_DEVICE_ID_INTEL_P55: + case PCI_DEVICE_ID_INTEL_PM55: + case PCI_DEVICE_ID_INTEL_H55: + case PCI_DEVICE_ID_INTEL_QM57: + case PCI_DEVICE_ID_INTEL_H57: + case PCI_DEVICE_ID_INTEL_HM55: + case PCI_DEVICE_ID_INTEL_Q57: + case PCI_DEVICE_ID_INTEL_HM57: + case PCI_DEVICE_ID_INTEL_3400_MOBILE_SFF: + case PCI_DEVICE_ID_INTEL_B55_A: + case PCI_DEVICE_ID_INTEL_QS57: + case PCI_DEVICE_ID_INTEL_3400: + case PCI_DEVICE_ID_INTEL_3420: + case PCI_DEVICE_ID_INTEL_3450: + case PCI_DEVICE_ID_INTEL_B55_B: gpiobase = pci_read_word(sb, 0x48) & 0xfffc; gpio_registers = i631x_gpio_registers; size = ARRAY_SIZE(i631x_gpio_registers); |