From baae2d2761bee15e80f37e8e8ee400c7504a987c Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Thu, 21 Jun 2012 16:05:21 -0700 Subject: 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 Reviewed-on: http://review.coreboot.org/1300 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi --- src/southbridge/intel/bd82x6x/lpc.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/southbridge/intel/bd82x6x/lpc.c') diff --git a/src/southbridge/intel/bd82x6x/lpc.c b/src/southbridge/intel/bd82x6x/lpc.c index dddab6a2a2..703fc8aa92 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, +}; -- cgit v1.2.3