diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2014-06-24 20:51:54 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2014-06-24 20:52:48 +0100 |
commit | 78053bb84217e842615669dfa2f1e7e971ce9860 (patch) | |
tree | 14e0db45a4da7cecff70babb5a7eb7c1ced1ea35 /src/i915_pciids.h | |
parent | 74c1cf60a7ce7e79bc727780151f4f233798e5f4 (diff) |
Add reserved PCD IDs for Broadwell
Updating using kernel commit fb7023e0e248a33cb00d0a9cdce0bcedaa1ad284
Author: Rodrigo Vivi <rodrigo.vivi@intel.com>
Date: Tue Jun 10 10:09:52 2014 -0700
drm/i915: BDW: Adding Reserved PCI IDs.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'src/i915_pciids.h')
-rw-r--r-- | src/i915_pciids.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/i915_pciids.h b/src/i915_pciids.h index 05720356..a70d4564 100644 --- a/src/i915_pciids.h +++ b/src/i915_pciids.h @@ -237,13 +237,21 @@ #define INTEL_BDW_GT3D_IDS(info) \ _INTEL_BDW_D_IDS(3, info) +#define INTEL_BDW_RSVDM_IDS(info) \ + _INTEL_BDW_M_IDS(4, info) + +#define INTEL_BDW_RSVDD_IDS(info) \ + _INTEL_BDW_D_IDS(4, info) + #define INTEL_BDW_M_IDS(info) \ INTEL_BDW_GT12M_IDS(info), \ - INTEL_BDW_GT3M_IDS(info) + INTEL_BDW_GT3M_IDS(info), \ + INTEL_BDW_RSVDM_IDS(info) #define INTEL_BDW_D_IDS(info) \ INTEL_BDW_GT12D_IDS(info), \ - INTEL_BDW_GT3D_IDS(info) + INTEL_BDW_GT3D_IDS(info), \ + INTEL_BDW_RSVDD_IDS(info) #define INTEL_CHV_IDS(info) \ INTEL_VGA_DEVICE(0x22b0, info), \ |