summaryrefslogtreecommitdiff
path: root/src/soc/intel/common
diff options
context:
space:
mode:
authorRavi Sarawadi <ravishankar.sarawadi@intel.com>2019-10-21 22:25:04 -0700
committerPatrick Georgi <pgeorgi@google.com>2019-11-05 15:05:22 +0000
commit6b5bf407deb52a900ef0a8a0b99f853be1eb7e82 (patch)
tree283c0d2d098d3439e1558729cbdb35f9721ab6e6 /src/soc/intel/common
parent8fc523e3137cfdde970a3c87e22b8bbc586a3f7e (diff)
downloadcoreboot-6b5bf407deb52a900ef0a8a0b99f853be1eb7e82.tar.xz
soc/intel/common: Include Tigerlake device IDs
Add Tigerlake specific CPU, System Agent, PCH, IGD device IDs. BUG=None BRANCH=None TEST=Build 'emerge-tglrvp coreboot' Signed-off-by: Ravi Sarawadi <ravishankar.sarawadi@intel.com> Change-Id: I19047354718bdf510dffee4659d885f1313a751b Reviewed-on: https://review.coreboot.org/c/coreboot/+/36225 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r--src/soc/intel/common/block/cpu/mp_init.c1
-rw-r--r--src/soc/intel/common/block/cse/cse.c1
-rw-r--r--src/soc/intel/common/block/dsp/dsp.c1
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c4
-rw-r--r--src/soc/intel/common/block/hda/hda.c1
-rw-r--r--src/soc/intel/common/block/i2c/i2c.c8
-rw-r--r--src/soc/intel/common/block/include/intelblocks/mp_init.h1
-rw-r--r--src/soc/intel/common/block/lpc/lpc.c1
-rw-r--r--src/soc/intel/common/block/p2sb/p2sb.c1
-rw-r--r--src/soc/intel/common/block/pcie/pcie.c16
-rw-r--r--src/soc/intel/common/block/pmc/pmc.c1
-rw-r--r--src/soc/intel/common/block/sata/sata.c4
-rw-r--r--src/soc/intel/common/block/smbus/smbus.c1
-rw-r--r--src/soc/intel/common/block/spi/spi.c8
-rw-r--r--src/soc/intel/common/block/sram/sram.c1
-rw-r--r--src/soc/intel/common/block/systemagent/systemagent.c2
-rw-r--r--src/soc/intel/common/block/uart/uart.c3
-rw-r--r--src/soc/intel/common/block/xdci/xdci.c1
-rw-r--r--src/soc/intel/common/block/xhci/xhci.c1
19 files changed, 57 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/cpu/mp_init.c b/src/soc/intel/common/block/cpu/mp_init.c
index 2c5061f1d6..df571ba775 100644
--- a/src/soc/intel/common/block/cpu/mp_init.c
+++ b/src/soc/intel/common/block/cpu/mp_init.c
@@ -84,6 +84,7 @@ static const struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, CPUID_COMETLAKE_U_K0_S0 },
{ X86_VENDOR_INTEL, CPUID_COMETLAKE_H_S_6_2_P0 },
{ X86_VENDOR_INTEL, CPUID_COMETLAKE_H_S_10_2_P0 },
+ { X86_VENDOR_INTEL, CPUID_TIGERLAKE_A0 },
{ 0, 0 },
};
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c
index 0bd5c72ef5..5eb37611f5 100644
--- a/src/soc/intel/common/block/cse/cse.c
+++ b/src/soc/intel/common/block/cse/cse.c
@@ -754,6 +754,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_CSE0,
PCI_DEVICE_ID_INTEL_ICL_CSE0,
PCI_DEVICE_ID_INTEL_CMP_CSE0,
+ PCI_DEVICE_ID_INTEL_TGL_CSE0,
0,
};
diff --git a/src/soc/intel/common/block/dsp/dsp.c b/src/soc/intel/common/block/dsp/dsp.c
index 277b6c5aab..947c002250 100644
--- a/src/soc/intel/common/block/dsp/dsp.c
+++ b/src/soc/intel/common/block/dsp/dsp.c
@@ -34,6 +34,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_AUDIO,
PCI_DEVICE_ID_INTEL_CMP_AUDIO,
PCI_DEVICE_ID_INTEL_ICL_AUDIO,
+ PCI_DEVICE_ID_INTEL_TGL_AUDIO,
0,
};
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index 8e79eab54e..4efa60f5d2 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -207,6 +207,10 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CML_GT1_H_2,
PCI_DEVICE_ID_INTEL_CML_GT2_H_1,
PCI_DEVICE_ID_INTEL_CML_GT2_H_2,
+ PCI_DEVICE_ID_INTEL_TGL_GT1,
+ PCI_DEVICE_ID_INTEL_TGL_GT2_UY,
+ PCI_DEVICE_ID_INTEL_TGL_GT2,
+ PCI_DEVICE_ID_INTEL_TGL_GT2_Y,
0,
};
diff --git a/src/soc/intel/common/block/hda/hda.c b/src/soc/intel/common/block/hda/hda.c
index be8319c058..4a87e1a2ef 100644
--- a/src/soc/intel/common/block/hda/hda.c
+++ b/src/soc/intel/common/block/hda/hda.c
@@ -82,6 +82,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_ICL_AUDIO,
PCI_DEVICE_ID_INTEL_CMP_AUDIO,
PCI_DEVICE_ID_INTEL_BSW_AUDIO,
+ PCI_DEVICE_ID_INTEL_TGL_AUDIO,
0
};
diff --git a/src/soc/intel/common/block/i2c/i2c.c b/src/soc/intel/common/block/i2c/i2c.c
index fb7aea2c17..1749bf547a 100644
--- a/src/soc/intel/common/block/i2c/i2c.c
+++ b/src/soc/intel/common/block/i2c/i2c.c
@@ -235,6 +235,14 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_I2C3,
PCI_DEVICE_ID_INTEL_CMP_I2C4,
PCI_DEVICE_ID_INTEL_CMP_I2C5,
+ PCI_DEVICE_ID_INTEL_TGP_I2C0,
+ PCI_DEVICE_ID_INTEL_TGP_I2C1,
+ PCI_DEVICE_ID_INTEL_TGP_I2C2,
+ PCI_DEVICE_ID_INTEL_TGP_I2C3,
+ PCI_DEVICE_ID_INTEL_TGP_I2C4,
+ PCI_DEVICE_ID_INTEL_TGP_I2C5,
+ PCI_DEVICE_ID_INTEL_TGP_I2C6,
+ PCI_DEVICE_ID_INTEL_TGP_I2C7,
0,
};
diff --git a/src/soc/intel/common/block/include/intelblocks/mp_init.h b/src/soc/intel/common/block/include/intelblocks/mp_init.h
index 5ef7641a3a..e5475383f7 100644
--- a/src/soc/intel/common/block/include/intelblocks/mp_init.h
+++ b/src/soc/intel/common/block/include/intelblocks/mp_init.h
@@ -51,6 +51,7 @@
#define CPUID_COMETLAKE_U_K0_S0 0xa0661
#define CPUID_COMETLAKE_H_S_6_2_P0 0xa0650
#define CPUID_COMETLAKE_H_S_10_2_P0 0xa0651
+#define CPUID_TIGERLAKE_A0 0x806c0
/*
* MP Init callback function to Find CPU Topology. This function is common
diff --git a/src/soc/intel/common/block/lpc/lpc.c b/src/soc/intel/common/block/lpc/lpc.c
index eb7de081bc..c2b51bec9b 100644
--- a/src/soc/intel/common/block/lpc/lpc.c
+++ b/src/soc/intel/common/block/lpc/lpc.c
@@ -190,6 +190,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_PREMIUM_U_LPC,
PCI_DEVICE_ID_INTEL_CMP_BASE_U_LPC,
PCI_DEVICE_ID_INTEL_CMP_SUPER_Y_LPC,
+ PCI_DEVICE_ID_INTEL_TGL_ESPI,
0
};
diff --git a/src/soc/intel/common/block/p2sb/p2sb.c b/src/soc/intel/common/block/p2sb/p2sb.c
index 14e1fd90eb..981ad07872 100644
--- a/src/soc/intel/common/block/p2sb/p2sb.c
+++ b/src/soc/intel/common/block/p2sb/p2sb.c
@@ -179,6 +179,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_P2SB,
PCI_DEVICE_ID_INTEL_ICL_P2SB,
PCI_DEVICE_ID_INTEL_CMP_P2SB,
+ PCI_DEVICE_ID_INTEL_TGL_P2SB,
0,
};
diff --git a/src/soc/intel/common/block/pcie/pcie.c b/src/soc/intel/common/block/pcie/pcie.c
index c8ca4f4d87..406a227387 100644
--- a/src/soc/intel/common/block/pcie/pcie.c
+++ b/src/soc/intel/common/block/pcie/pcie.c
@@ -250,6 +250,22 @@ static const unsigned short pcie_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_LP_PCIE_RP14,
PCI_DEVICE_ID_INTEL_CMP_LP_PCIE_RP15,
PCI_DEVICE_ID_INTEL_CMP_LP_PCIE_RP16,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP1,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP2,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP3,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP4,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP5,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP6,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP7,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP8,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP9,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP10,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP11,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP12,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP13,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP14,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP15,
+ PCI_DEVICE_ID_INTEL_TGP_LP_PCIE_RP16,
0
};
diff --git a/src/soc/intel/common/block/pmc/pmc.c b/src/soc/intel/common/block/pmc/pmc.c
index 2b148f2021..1d2aa61807 100644
--- a/src/soc/intel/common/block/pmc/pmc.c
+++ b/src/soc/intel/common/block/pmc/pmc.c
@@ -133,6 +133,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_PMC,
PCI_DEVICE_ID_INTEL_ICP_PMC,
PCI_DEVICE_ID_INTEL_CMP_PMC,
+ PCI_DEVICE_ID_INTEL_TGP_PMC,
0
};
diff --git a/src/soc/intel/common/block/sata/sata.c b/src/soc/intel/common/block/sata/sata.c
index 0c278f37f2..13ac32e766 100644
--- a/src/soc/intel/common/block/sata/sata.c
+++ b/src/soc/intel/common/block/sata/sata.c
@@ -96,6 +96,10 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_SATA,
PCI_DEVICE_ID_INTEL_CMP_PREMIUM_SATA,
PCI_DEVICE_ID_INTEL_CMP_LP_SATA,
+ PCI_DEVICE_ID_INTEL_TGP_LP_SATA,
+ PCI_DEVICE_ID_INTEL_TGP_SATA,
+ PCI_DEVICE_ID_INTEL_TGP_PREMIUM_SATA,
+ PCI_DEVICE_ID_INTEL_TGP_COMPAT_SATA,
0
};
diff --git a/src/soc/intel/common/block/smbus/smbus.c b/src/soc/intel/common/block/smbus/smbus.c
index 77b05c1826..56f54d7d17 100644
--- a/src/soc/intel/common/block/smbus/smbus.c
+++ b/src/soc/intel/common/block/smbus/smbus.c
@@ -95,6 +95,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_KBP_H_LWB_SMBUS,
PCI_DEVICE_ID_INTEL_ICP_LP_SMBUS,
PCI_DEVICE_ID_INTEL_CMP_SMBUS,
+ PCI_DEVICE_ID_INTEL_TGP_LP_SMBUS,
0
};
diff --git a/src/soc/intel/common/block/spi/spi.c b/src/soc/intel/common/block/spi/spi.c
index 365da2faa6..3c77cc4c81 100644
--- a/src/soc/intel/common/block/spi/spi.c
+++ b/src/soc/intel/common/block/spi/spi.c
@@ -81,6 +81,14 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_SPI1,
PCI_DEVICE_ID_INTEL_CMP_SPI2,
PCI_DEVICE_ID_INTEL_CMP_HWSEQ_SPI,
+ PCI_DEVICE_ID_INTEL_TGP_SPI0,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI0,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI1,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI2,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI3,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI4,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI5,
+ PCI_DEVICE_ID_INTEL_TGP_GSPI6,
0
};
diff --git a/src/soc/intel/common/block/sram/sram.c b/src/soc/intel/common/block/sram/sram.c
index 720b736904..47ba28f755 100644
--- a/src/soc/intel/common/block/sram/sram.c
+++ b/src/soc/intel/common/block/sram/sram.c
@@ -51,6 +51,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_GLK_SRAM,
PCI_DEVICE_ID_INTEL_ICL_SRAM,
PCI_DEVICE_ID_INTEL_CMP_SRAM,
+ PCI_DEVICE_ID_INTEL_TGL_SRAM,
0,
};
diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c
index e03942fb30..7ad565d8e8 100644
--- a/src/soc/intel/common/block/systemagent/systemagent.c
+++ b/src/soc/intel/common/block/systemagent/systemagent.c
@@ -362,6 +362,8 @@ static const unsigned short systemagent_ids[] = {
PCI_DEVICE_ID_INTEL_CML_S_10_2,
PCI_DEVICE_ID_INTEL_CML_H,
PCI_DEVICE_ID_INTEL_CML_H_8_2,
+ PCI_DEVICE_ID_INTEL_TGL_ID_U,
+ PCI_DEVICE_ID_INTEL_TGL_ID_Y,
0
};
diff --git a/src/soc/intel/common/block/uart/uart.c b/src/soc/intel/common/block/uart/uart.c
index 364835dd0f..718eaca96b 100644
--- a/src/soc/intel/common/block/uart/uart.c
+++ b/src/soc/intel/common/block/uart/uart.c
@@ -275,6 +275,9 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CMP_UART0,
PCI_DEVICE_ID_INTEL_CMP_UART1,
PCI_DEVICE_ID_INTEL_CMP_UART2,
+ PCI_DEVICE_ID_INTEL_TGP_UART0,
+ PCI_DEVICE_ID_INTEL_TGP_UART1,
+ PCI_DEVICE_ID_INTEL_TGP_UART2,
0,
};
diff --git a/src/soc/intel/common/block/xdci/xdci.c b/src/soc/intel/common/block/xdci/xdci.c
index d42a1eca59..92f3b15da3 100644
--- a/src/soc/intel/common/block/xdci/xdci.c
+++ b/src/soc/intel/common/block/xdci/xdci.c
@@ -43,6 +43,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_XDCI,
PCI_DEVICE_ID_INTEL_ICP_LP_XDCI,
PCI_DEVICE_ID_INTEL_CMP_LP_XDCI,
+ PCI_DEVICE_ID_INTEL_TGP_LP_XDCI,
0
};
diff --git a/src/soc/intel/common/block/xhci/xhci.c b/src/soc/intel/common/block/xhci/xhci.c
index 293fd36464..5930e23081 100644
--- a/src/soc/intel/common/block/xhci/xhci.c
+++ b/src/soc/intel/common/block/xhci/xhci.c
@@ -131,6 +131,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_CNP_H_XHCI,
PCI_DEVICE_ID_INTEL_ICP_LP_XHCI,
PCI_DEVICE_ID_INTEL_CMP_LP_XHCI,
+ PCI_DEVICE_ID_INTEL_TGP_LP_XHCI,
0
};