src/soc/intel: Add AML IGD in platform reporting
This patch revises IGD naming and adds AML IGD in platform reporting. BUG=None BRANCH=None TEST=emerge-atlas coreboot chromeos-bootimage & Ensure AML IGD is shown in platform reporting. Change-Id: Id8f8379703abdaa5b14a4337a4fca04b370f3a2a Signed-off-by: Gaggery Tsai <gaggery.tsai@intel.com> Reviewed-on: https://review.coreboot.org/27846 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Furquan Shaikh <furquan@google.com>
This commit is contained in:
parent
c14307e50a
commit
8aee7f7fad
|
@ -2868,7 +2868,7 @@
|
|||
#define PCI_DEVICE_ID_INTEL_KBL_GT2_SULTM 0x5916
|
||||
#define PCI_DEVICE_ID_INTEL_KBL_GT2_SULTMR 0x5917
|
||||
#define PCI_DEVICE_ID_INTEL_KBL_GT2_SHALM 0x591B
|
||||
#define PCI_DEVICE_ID_INTEL_KBL_GT2_ULX_R 0x591C
|
||||
#define PCI_DEVICE_ID_INTEL_AML_GT2_ULX 0x591C
|
||||
#define PCI_DEVICE_ID_INTEL_APL_IGD_HD_505 0x5a84
|
||||
#define PCI_DEVICE_ID_INTEL_APL_IGD_HD_500 0x5a85
|
||||
#define PCI_DEVICE_ID_INTEL_GLK_IGD 0x3184
|
||||
|
|
|
@ -124,7 +124,7 @@ static const unsigned short pci_device_ids[] = {
|
|||
PCI_DEVICE_ID_INTEL_KBL_GT2_SULTMR,
|
||||
PCI_DEVICE_ID_INTEL_KBL_GT2_SHALM,
|
||||
PCI_DEVICE_ID_INTEL_KBL_GT2_DT2P2,
|
||||
PCI_DEVICE_ID_INTEL_KBL_GT2_ULX_R,
|
||||
PCI_DEVICE_ID_INTEL_AML_GT2_ULX,
|
||||
PCI_DEVICE_ID_INTEL_SKL_GT1_SULTM,
|
||||
PCI_DEVICE_ID_INTEL_SKL_GT2_SULXM,
|
||||
PCI_DEVICE_ID_INTEL_SKL_GT2_SULTM,
|
||||
|
|
|
@ -102,6 +102,7 @@ static struct {
|
|||
{ PCI_DEVICE_ID_INTEL_KBL_GT2_SULTMR, "Kabylake-R ULT GT2"},
|
||||
{ PCI_DEVICE_ID_INTEL_KBL_GT2_SHALM, "Kabylake HALO GT2" },
|
||||
{ PCI_DEVICE_ID_INTEL_KBL_GT2_DT2P2, "Kabylake DT GT2" },
|
||||
{ PCI_DEVICE_ID_INTEL_AML_GT2_ULX, "Amberlake ULX GT2" },
|
||||
};
|
||||
|
||||
static uint8_t get_dev_revision(pci_devfn_t dev)
|
||||
|
|
|
@ -186,7 +186,7 @@ static int get_kbl_sku(void)
|
|||
sku = KBL_R_SKU;
|
||||
else if (id == PCI_DEVICE_ID_INTEL_KBL_ID_Y) {
|
||||
id = get_dev_id(SA_DEV_IGD);
|
||||
if (id == PCI_DEVICE_ID_INTEL_KBL_GT2_ULX_R)
|
||||
if (id == PCI_DEVICE_ID_INTEL_AML_GT2_ULX)
|
||||
sku = AML_Y_SKU;
|
||||
else
|
||||
sku = KBL_Y_SKU;
|
||||
|
|
Loading…
Reference in New Issue