Jérémy Compostella has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/86118?usp=email )
Change subject: soc/intel/common: Add Panther Lake DTT support ......................................................................
soc/intel/common: Add Panther Lake DTT support
This commit adds the Panther Lake Intel Dynamic Tuning Technology (Intel DTT) PCI Device ID to the list of supported devices in the ACPI Common Block DTT driver.
Change-Id: Ia8dbe86efdf341a629de037d37750b79395ec3e8 Signed-off-by: Jeremy Compostella jeremy.compostella@intel.com --- M src/include/device/pci_ids.h M src/soc/intel/common/block/dtt/dtt.c 2 files changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/18/86118/1
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index c882fdc..d17dca4 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -4854,6 +4854,7 @@ #define PCI_DID_INTEL_ADL_DTT 0x461d #define PCI_DID_INTEL_MTL_DTT 0x7d03 #define PCI_DID_INTEL_RPL_DTT 0xa71d +#define PCI_DID_INTEL_PTL_DTT 0xb01d
/* Intel CNVi WiFi/BT device IDs */ #define PCI_DID_INTEL_CML_LP_CNVI_WIFI 0x02f0 diff --git a/src/soc/intel/common/block/dtt/dtt.c b/src/soc/intel/common/block/dtt/dtt.c index 1d70335..8b086e0 100644 --- a/src/soc/intel/common/block/dtt/dtt.c +++ b/src/soc/intel/common/block/dtt/dtt.c @@ -8,6 +8,7 @@ #include <intelblocks/acpi.h>
static const unsigned short pci_device_ids[] = { + PCI_DID_INTEL_PTL_DTT, PCI_DID_INTEL_RPL_DTT, PCI_DID_INTEL_MTL_DTT, PCI_DID_INTEL_CML_DTT,