Skip to content

Commit 5e0f5a5

Browse files
committed
drm/i915/cfl: Adding another PCI Device ID.
While cross checking PCI IDs from Intel Media SDK and kernel Dmitry noticed this gap. So we checked the spec and this new ID had been recently added. v2: Adding new H_GT1 entry to i915_pci.c (Jose) Reported-by: Dmitry Rogozhkin<dmitry.v.rogozhkin@intel.com> Cc: Dmitry Rogozhkin<dmitry.v.rogozhkin@intel.com> Cc: José Roberto de Souza <jose.souza@intel.com> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Reviewed-by: José Roberto de Souza <jose.souza@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20190201235049.27206-1-rodrigo.vivi@intel.com
1 parent 1b4fd5d commit 5e0f5a5

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

drivers/gpu/drm/i915/i915_pci.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -711,6 +711,7 @@ static const struct pci_device_id pciidlist[] = {
711711
INTEL_AML_KBL_GT2_IDS(&intel_kabylake_gt2_info),
712712
INTEL_CFL_S_GT1_IDS(&intel_coffeelake_gt1_info),
713713
INTEL_CFL_S_GT2_IDS(&intel_coffeelake_gt2_info),
714+
INTEL_CFL_H_GT1_IDS(&intel_coffeelake_gt1_info),
714715
INTEL_CFL_H_GT2_IDS(&intel_coffeelake_gt2_info),
715716
INTEL_CFL_U_GT2_IDS(&intel_coffeelake_gt2_info),
716717
INTEL_CFL_U_GT3_IDS(&intel_coffeelake_gt3_info),

include/drm/i915_pciids.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -394,6 +394,9 @@
394394
INTEL_VGA_DEVICE(0x3E9A, info) /* SRV GT2 */
395395

396396
/* CFL H */
397+
#define INTEL_CFL_H_GT1_IDS(info) \
398+
INTEL_VGA_DEVICE(0x3E9C, info)
399+
397400
#define INTEL_CFL_H_GT2_IDS(info) \
398401
INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
399402
INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */
@@ -426,6 +429,7 @@
426429
#define INTEL_CFL_IDS(info) \
427430
INTEL_CFL_S_GT1_IDS(info), \
428431
INTEL_CFL_S_GT2_IDS(info), \
432+
INTEL_CFL_H_GT1_IDS(info), \
429433
INTEL_CFL_H_GT2_IDS(info), \
430434
INTEL_CFL_U_GT2_IDS(info), \
431435
INTEL_CFL_U_GT3_IDS(info), \

0 commit comments

Comments
 (0)