haswell: add PCI id support
In order for coreboot to assign resources properly the pci drivers need to have th proper device ids. Add the host controller and the LPC device ids for Lynx Point. Resource assignment works correctly now w/o odd behavior because of conflicts. Change-Id: Id33b3676616fb0c428d84e5fe5c6b8a7cc5fbb62 Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/2638 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martin.roth@se-eng.com>
This commit is contained in:
committed by
Ronald G. Minnich
parent
b6b5aa15ce
commit
c1989c494e
@@ -461,22 +461,10 @@ static struct device_operations mc_ops = {
|
||||
.ops_pci = &intel_pci_ops,
|
||||
};
|
||||
|
||||
static const struct pci_driver mc_driver_0100 __pci_driver = {
|
||||
static const struct pci_driver mc_driver_hsw_mobile __pci_driver = {
|
||||
.ops = &mc_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = 0x0100,
|
||||
};
|
||||
|
||||
static const struct pci_driver mc_driver __pci_driver = {
|
||||
.ops = &mc_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = 0x0104, /* Sandy bridge */
|
||||
};
|
||||
|
||||
static const struct pci_driver mc_driver_1 __pci_driver = {
|
||||
.ops = &mc_ops,
|
||||
.vendor = PCI_VENDOR_ID_INTEL,
|
||||
.device = 0x0154, /* Ivy bridge */
|
||||
.device = 0x0c04, /* Mobile Haswell */
|
||||
};
|
||||
|
||||
static void cpu_bus_init(device_t dev)
|
||||
|
Reference in New Issue
Block a user