diff options
author | Gaggery Tsai <gaggery.tsai@intel.com> | 2018-03-21 22:36:18 +0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-03-26 10:21:40 +0000 |
commit | e415a4c355b3c030bef7304897a166b1ca60dd7c (patch) | |
tree | c755c9c8efafab65f619ddadc13b017cd8912fbd /src/soc/intel | |
parent | 6dd4f76c77af8b12a7dc5d617b9c72f63ea1352f (diff) |
soc/intel: Add KBL-S MCH and some KBL PCH support
This patch adds the support for KBL-S MCH and Z270, H270, B250 and
Q250 PCH chips.
BUG=None
BRANCH=None
TEST=Boot with KBL-S CPU and B250/H270 PCHs.
Change-Id: If03abb215f225d648505e05274e2f08ff02cebdc
Signed-off-by: Gaggery Tsai <gaggery.tsai@intel.com>
Reviewed-on: https://review.coreboot.org/25305
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Naresh Solanki <naresh.solanki@intel.com>
Diffstat (limited to 'src/soc/intel')
-rw-r--r-- | src/soc/intel/common/block/lpc/lpc.c | 4 | ||||
-rw-r--r-- | src/soc/intel/common/block/systemagent/systemagent.c | 1 | ||||
-rw-r--r-- | src/soc/intel/skylake/bootblock/report_platform.c | 5 |
3 files changed, 10 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/lpc/lpc.c b/src/soc/intel/common/block/lpc/lpc.c index 2efdc8dd56..079ecde624 100644 --- a/src/soc/intel/common/block/lpc/lpc.c +++ b/src/soc/intel/common/block/lpc/lpc.c @@ -128,6 +128,10 @@ static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_INTEL_SPT_H_PREMIUM, PCI_DEVICE_ID_INTEL_SPT_H_QM170, PCI_DEVICE_ID_INTEL_KBP_H_Q270, + PCI_DEVICE_ID_INTEL_KBP_H_H270, + PCI_DEVICE_ID_INTEL_KBP_H_Z270, + PCI_DEVICE_ID_INTEL_KBP_H_Q250, + PCI_DEVICE_ID_INTEL_KBP_H_B250, PCI_DEVICE_ID_INTEL_SPT_LP_Y_PREMIUM_HDCP22, PCI_DEVICE_ID_INTEL_SPT_LP_U_PREMIUM_HDCP22, PCI_DEVICE_ID_INTEL_SPT_LP_U_BASE_HDCP22, diff --git a/src/soc/intel/common/block/systemagent/systemagent.c b/src/soc/intel/common/block/systemagent/systemagent.c index 027222b492..25b47737b1 100644 --- a/src/soc/intel/common/block/systemagent/systemagent.c +++ b/src/soc/intel/common/block/systemagent/systemagent.c @@ -293,6 +293,7 @@ static const unsigned short systemagent_ids[] = { PCI_DEVICE_ID_INTEL_SKL_ID_Y, PCI_DEVICE_ID_INTEL_SKL_ID_ULX, PCI_DEVICE_ID_INTEL_SKL_ID_H, + PCI_DEVICE_ID_INTEL_KBL_ID_S, PCI_DEVICE_ID_INTEL_SKL_ID_H_EM, PCI_DEVICE_ID_INTEL_KBL_ID_U, PCI_DEVICE_ID_INTEL_KBL_ID_Y, diff --git a/src/soc/intel/skylake/bootblock/report_platform.c b/src/soc/intel/skylake/bootblock/report_platform.c index 6f2e98ebcf..7473c575c5 100644 --- a/src/soc/intel/skylake/bootblock/report_platform.c +++ b/src/soc/intel/skylake/bootblock/report_platform.c @@ -56,6 +56,7 @@ static struct { { PCI_DEVICE_ID_INTEL_KBL_U_R, "Kabylake-R ULT"}, { PCI_DEVICE_ID_INTEL_KBL_ID_Y, "Kabylake-Y" }, { PCI_DEVICE_ID_INTEL_KBL_ID_H, "Kabylake-H" }, + { PCI_DEVICE_ID_INTEL_KBL_ID_S, "Kabylake-S" }, { PCI_DEVICE_ID_INTEL_KBL_ID_DT, "Kabylake DT" }, }; @@ -71,6 +72,10 @@ static struct { { 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_KBP_H_Q270, "Kabylake-H Q270" }, + { PCI_DEVICE_ID_INTEL_KBP_H_H270, "Kabylake-H H270" }, + { PCI_DEVICE_ID_INTEL_KBP_H_Z270, "Kabylake-H Z270" }, + { PCI_DEVICE_ID_INTEL_KBP_H_B250, "Kabylake-H B250" }, + { PCI_DEVICE_ID_INTEL_KBP_H_Q250, "Kabylake-H Q250" }, { PCI_DEVICE_ID_INTEL_KBP_LP_U_PREMIUM, "Kabylake-U Premium" }, { PCI_DEVICE_ID_INTEL_KBP_LP_Y_PREMIUM, "Kabylake-Y Premium" }, { PCI_DEVICE_ID_INTEL_KBP_LP_SUPER_SKU, "Kabylake Super Sku" }, |