summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorWon Chung <wonchung@google.com>2023-05-16 17:11:21 +0000
committerLean Sheng Tan <sheng.tan@9elements.com>2023-05-19 10:13:58 +0000
commitede5564b3e3ee082c93f915a902d98d064a11950 (patch)
tree401527e3e3f54f8a786b1462a7ab418de6c50c12 /src
parent049e77e6bcbe4918e7eeb685627cd0b5914bad5a (diff)
soc/intel/meteorlake: Add igd device
Add igd device name in soc_acpi_name(), and src/drivers/gfx/generic can generate device in GFX0 scope in SSDT. BUG=b:277629750 TEST=emerge-rex coreboot then check SSDT on DUT Signed-off-by: Won Chung <wonchung@google.com> Change-Id: Id7a136b5234cf5c0f60ecf253ee78c123f1f573b Reviewed-on: https://review.coreboot.org/c/coreboot/+/75274 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com>
Diffstat (limited to 'src')
-rw-r--r--src/soc/intel/meteorlake/chip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/chip.c b/src/soc/intel/meteorlake/chip.c
index 1f7eab81ea..036c126d45 100644
--- a/src/soc/intel/meteorlake/chip.c
+++ b/src/soc/intel/meteorlake/chip.c
@@ -71,6 +71,7 @@ const char *soc_acpi_name(const struct device *dev)
switch (dev->path.pci.devfn) {
case PCI_DEVFN_ROOT: return "MCHC";
+ case PCI_DEVFN_IGD: return "GFX0";
case PCI_DEVFN_TCSS_XHCI: return "TXHC";
case PCI_DEVFN_TCSS_XDCI: return "TXDC";
case PCI_DEVFN_TCSS_DMA0: return "TDM0";