From 409a5dc8af8085a9bb1945914a728f81c1b5cd02 Mon Sep 17 00:00:00 2001 From: Sellerie Date: Fri, 26 Jul 2019 15:09:18 +0200 Subject: util/inteltool: Add Intel HD 4400 (Haswell IGD) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the 8086:041e integrated graphics controller. Adding the definition makes the Intel HD 4400 graphics recognized by inteltool. It is found on the ark page of e.g. the Intel i3-4130 CPU. Change-Id: I6d6b2eaa7cc5aa3912592ed3fcb73751b224eede Signed-off-by: Christoph Pomaska Reviewed-on: https://review.coreboot.org/c/coreboot/+/34588 Reviewed-by: Mimoja Reviewed-by: Felix Singer Reviewed-by: Jonathan Neuschäfer Reviewed-by: Christian Walter Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- util/inteltool/inteltool.c | 2 ++ util/inteltool/inteltool.h | 1 + 2 files changed, 3 insertions(+) (limited to 'util/inteltool') diff --git a/util/inteltool/inteltool.c b/util/inteltool/inteltool.c index 642b8d72e5..db80bd26b1 100644 --- a/util/inteltool/inteltool.c +++ b/util/inteltool/inteltool.c @@ -373,6 +373,8 @@ static const struct { "Intel(R) HD 4000 Graphics" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HD_4000_2, "Intel(R) HD 4000 Graphics" }, + { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HD_4400, + "Intel(R) HD 4400 Graphics" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HD_4600, "Intel(R) HD 4600 Graphics" }, { PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_HD_4600_1, diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index 1645f73557..fc6dc4b83f 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -331,6 +331,7 @@ static inline uint32_t inl(unsigned port) #define PCI_DEVICE_ID_INTEL_HD_4000_2 0x016A #define PCI_DEVICE_ID_INTEL_HD_4600 0x0412 #define PCI_DEVICE_ID_INTEL_HD_4600_1 0x0416 +#define PCI_DEVICE_ID_INTEL_HD_4400 0x041E #define PCI_DEVICE_ID_INTEL_HD_5000 0x0422 #define PCI_DEVICE_ID_INTEL_HD_5000_1 0x0426 #define PCI_DEVICE_ID_INTEL_HD_5000_2 0x042A -- cgit v1.2.3