PCI IDs: Add PCI ID for JSL DPTF/DTT PCI device
This PCI ID is required in order for JSL devices to perform SSDT generation for DPTF. Signed-off-by: Tim Wawrzynczak <twawrzynczak@chromium.org> Change-Id: I42209d15bc4f1654814465ce1412576f7349dddc Reviewed-on: https://review.coreboot.org/c/coreboot/+/43421 Reviewed-by: Karthik Ramasubramanian <kramasub@google.com> Reviewed-by: Duncan Laurie <dlaurie@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
7c1fe4bd12
commit
0c0bcd4072
|
@ -3720,6 +3720,7 @@
|
|||
|
||||
/* Intel Dynamic Tuning Technology Device */
|
||||
#define PCI_DEVICE_ID_INTEL_TGL_DTT 0x9A03
|
||||
#define PCI_DEVICE_ID_INTEL_JSL_DTT 0x4E03
|
||||
|
||||
#define PCI_VENDOR_ID_COMPUTONE 0x8e0e
|
||||
#define PCI_DEVICE_ID_COMPUTONE_IP2EX 0x0291
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
static const unsigned short pci_device_ids[] = {
|
||||
PCI_DEVICE_ID_INTEL_TGL_DTT,
|
||||
PCI_DEVICE_ID_INTEL_JSL_DTT,
|
||||
};
|
||||
|
||||
static struct device_operations dptf_dev_ops = {
|
||||
|
|
Loading…
Reference in New Issue