summaryrefslogtreecommitdiffstats
path: root/src/southbridge/intel/bd82x6x
diff options
context:
space:
mode:
authorStefan Reinauer <reinauer@chromium.org>2012-06-21 16:05:21 -0700
committerPatrick Georgi <patrick@georgi-clan.de>2012-07-24 12:26:26 +0200
commitbaae2d2761bee15e80f37e8e8ee400c7504a987c (patch)
tree5b87758da5f4a1870ca26a0710426cfd2e867c46 /src/southbridge/intel/bd82x6x
parentb5dfcae09728d38d8049e348a2b7654087b3a734 (diff)
downloadcoreboot-baae2d2761bee15e80f37e8e8ee400c7504a987c.tar.gz
coreboot-baae2d2761bee15e80f37e8e8ee400c7504a987c.tar.bz2
coreboot-baae2d2761bee15e80f37e8e8ee400c7504a987c.zip
Add support for HM70 and NM70 LPC bridge
This lets the SPI driver and the LPC driver know about HM70 and NM70. Change-Id: Id2f1e0e5586a2f7200b2d24785df3f2be890da98 Signed-off-by: Stefan Reinauer <reinauer@google.com> Reviewed-on: http://review.coreboot.org/1300 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <patrick@georgi-clan.de>
Diffstat (limited to 'src/southbridge/intel/bd82x6x')
-rw-r--r--src/southbridge/intel/bd82x6x/lpc.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/southbridge/intel/bd82x6x/lpc.c b/src/southbridge/intel/bd82x6x/lpc.c
index dddab6a2a2be..703fc8aa92f9 100644
--- a/src/southbridge/intel/bd82x6x/lpc.c
+++ b/src/southbridge/intel/bd82x6x/lpc.c
@@ -684,3 +684,13 @@ static const struct pci_driver hm75_lpc __pci_driver = {
.vendor = PCI_VENDOR_ID_INTEL,
.device = 0x1e5d,
};
+static const struct pci_driver hm70_lpc __pci_driver = {
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = 0x1e5e,
+};
+static const struct pci_driver nm70_lpc __pci_driver = {
+ .ops = &device_ops,
+ .vendor = PCI_VENDOR_ID_INTEL,
+ .device = 0x1e5f,
+};