soc/intel/common/block: Add WHL 2-core SKU
There are two SKUs of Whiskey Lake W0, 2-core and 4-core. Change-Id: Ia9b2707568702a5fbae3e9495ca53df34613a542 Signed-off-by: Krzysztof Sywula <krzysztof.m.sywula@intel.com> Reviewed-on: https://review.coreboot.org/28111 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Lijian Zhao <lijian.zhao@intel.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
7dff726b78
commit
bb0cf01911
|
@ -2902,7 +2902,8 @@
|
||||||
#define PCI_DEVICE_ID_INTEL_KBL_ID_DT 0x591f
|
#define PCI_DEVICE_ID_INTEL_KBL_ID_DT 0x591f
|
||||||
#define PCI_DEVICE_ID_INTEL_CNL_ID_U 0x5A04
|
#define PCI_DEVICE_ID_INTEL_CNL_ID_U 0x5A04
|
||||||
#define PCI_DEVICE_ID_INTEL_CNL_ID_Y 0x5A02
|
#define PCI_DEVICE_ID_INTEL_CNL_ID_Y 0x5A02
|
||||||
#define PCI_DEVICE_ID_INTEL_WHL_ID_W 0x3E34
|
#define PCI_DEVICE_ID_INTEL_WHL_ID_Wx4 0x3E34
|
||||||
|
#define PCI_DEVICE_ID_INTEL_WHL_ID_Wx2 0x3E35
|
||||||
#define PCI_DEVICE_ID_INTEL_CFL_ID_U 0x3ED0
|
#define PCI_DEVICE_ID_INTEL_CFL_ID_U 0x3ED0
|
||||||
|
|
||||||
/* Intel SMBUS device Ids */
|
/* Intel SMBUS device Ids */
|
||||||
|
|
|
@ -47,7 +47,8 @@ static struct {
|
||||||
{ PCI_DEVICE_ID_INTEL_CNL_ID_U, "Cannonlake-U" },
|
{ PCI_DEVICE_ID_INTEL_CNL_ID_U, "Cannonlake-U" },
|
||||||
{ PCI_DEVICE_ID_INTEL_CNL_ID_Y, "Cannonlake-Y" },
|
{ PCI_DEVICE_ID_INTEL_CNL_ID_Y, "Cannonlake-Y" },
|
||||||
{ PCI_DEVICE_ID_INTEL_CFL_ID_U, "Coffeelake U (4+3e)"},
|
{ PCI_DEVICE_ID_INTEL_CFL_ID_U, "Coffeelake U (4+3e)"},
|
||||||
{ PCI_DEVICE_ID_INTEL_WHL_ID_W, "Whiskeylake"},
|
{ PCI_DEVICE_ID_INTEL_WHL_ID_Wx4, "Whiskeylake W (4+2)"},
|
||||||
|
{ PCI_DEVICE_ID_INTEL_WHL_ID_Wx2, "Whiskeylake W (2+2)"},
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct {
|
static struct {
|
||||||
|
|
|
@ -294,7 +294,8 @@ static const unsigned short systemagent_ids[] = {
|
||||||
PCI_DEVICE_ID_INTEL_SKL_ID_Y,
|
PCI_DEVICE_ID_INTEL_SKL_ID_Y,
|
||||||
PCI_DEVICE_ID_INTEL_SKL_ID_ULX,
|
PCI_DEVICE_ID_INTEL_SKL_ID_ULX,
|
||||||
PCI_DEVICE_ID_INTEL_SKL_ID_H,
|
PCI_DEVICE_ID_INTEL_SKL_ID_H,
|
||||||
PCI_DEVICE_ID_INTEL_WHL_ID_W,
|
PCI_DEVICE_ID_INTEL_WHL_ID_Wx2,
|
||||||
|
PCI_DEVICE_ID_INTEL_WHL_ID_Wx4,
|
||||||
PCI_DEVICE_ID_INTEL_KBL_ID_S,
|
PCI_DEVICE_ID_INTEL_KBL_ID_S,
|
||||||
PCI_DEVICE_ID_INTEL_SKL_ID_H_EM,
|
PCI_DEVICE_ID_INTEL_SKL_ID_H_EM,
|
||||||
PCI_DEVICE_ID_INTEL_KBL_ID_U,
|
PCI_DEVICE_ID_INTEL_KBL_ID_U,
|
||||||
|
|
Loading…
Reference in New Issue