sb/intel/ibexpeak: Add all PCI IDs for LPC

Taken from document 322170-028 (5 series specification update).

Tested on out-of-tree HP ProBook 6550b (HM57), fixes several issues.
Without this patch, EHCI controllers had no IRQ assigned and there were
unexpected exceptions about NMIs. With this patch, the issues are gone.

Change-Id: Icd31dd89ba49e38a5e4c108a8361dbf636332ab8
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51066
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Angel Pons
2021-02-24 22:02:04 +01:00
committed by Patrick Georgi
parent dcb14c63af
commit 456218384c
2 changed files with 20 additions and 0 deletions

View File

@@ -563,8 +563,18 @@ static struct device_operations device_ops = {
};
static const unsigned short pci_device_ids[] = {
PCI_DID_INTEL_IBEXPEAK_LPC_P55,
PCI_DID_INTEL_IBEXPEAK_LPC_PM55,
PCI_DID_INTEL_IBEXPEAK_LPC_H55,
PCI_DID_INTEL_IBEXPEAK_LPC_QM57,
PCI_DID_INTEL_IBEXPEAK_LPC_H57,
PCI_DID_INTEL_IBEXPEAK_LPC_HM55,
PCI_DID_INTEL_IBEXPEAK_LPC_Q57,
PCI_DID_INTEL_IBEXPEAK_LPC_HM57,
PCI_DID_INTEL_IBEXPEAK_LPC_QS57,
PCI_DID_INTEL_IBEXPEAK_LPC_3400,
PCI_DID_INTEL_IBEXPEAK_LPC_3420,
PCI_DID_INTEL_IBEXPEAK_LPC_3450,
0
};