soc/skylake: Add missing PCH IDs
Added IDs for: - H170 - Z170 - Q170 - Q150 - B150 Used documents: - 332690-005EN Tested on Gigabyte GA-Z170N-WIFI Change-Id: If20a2b764afa02785a97948893dbc5b5f60aff60 Signed-off-by: Marius Genheimer <mail@f0wl.cc> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32517 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
72a9091a0e
commit
4998becda3
3 changed files with 15 additions and 0 deletions
|
@ -2689,6 +2689,11 @@
|
|||
#define PCI_DEVICE_ID_INTEL_SPT_LP_U_BASE 0x9d43
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_LP_U_PREMIUM 0x9d48
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_LP_Y_PREMIUM 0x9d46
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_H170 0xa144
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_Z170 0xa145
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_Q170 0xa146
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_Q150 0xa147
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_B150 0xa148
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_C236 0xa150
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_PREMIUM 0xa14e
|
||||
#define PCI_DEVICE_ID_INTEL_SPT_H_H110 0xa143
|
||||
|
|
|
@ -127,6 +127,11 @@ static const unsigned short pci_device_ids[] = {
|
|||
PCI_DEVICE_ID_INTEL_SPT_H_C236,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_PREMIUM,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_H110,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_H170,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_Z170,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_Q170,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_Q150,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_B150,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_QM170,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_HM175,
|
||||
PCI_DEVICE_ID_INTEL_SPT_H_QM175,
|
||||
|
|
|
@ -71,6 +71,11 @@ static struct {
|
|||
{ PCI_DEVICE_ID_INTEL_SPT_LP_Y_PREMIUM, "Skylake-Y Premium" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_PREMIUM, "Skylake PCH-H Premium" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_H110, "Skylake PCH-H H110" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_H170, "Skylake PCH-H H170" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_Z170, "Skylake PCH-H Z170" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_Q170, "Skylake PCH-H Q170" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_Q150, "Skylake PCH-H Q150" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_B150, "Skylake PCH-H B150" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_C236, "Skylake PCH-H C236" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_QM170, "Skylake PCH-H QM170" },
|
||||
{ PCI_DEVICE_ID_INTEL_SPT_H_HM175, "Skylake PCH-H HM175" },
|
||||
|
|
Loading…
Reference in a new issue