Skip to content

Commit fb7023e

Browse files
rodrigovivijnikula
authored andcommitted
drm/i915: BDW: Adding Reserved PCI IDs.
These PCI IDs are reserved on BSpec and can be used at any time in the future. So let's add this now in order to avoid issues that we already faced on previous platforms, like finding out about new ids when user reported accelaration weren't enabled. Cc: stable@vger.kernel.org Reviewed-by: Ben Widawsky <ben@bwidawsk.net> Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
1 parent 967ab6b commit fb7023e

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

include/drm/i915_pciids.h

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -237,13 +237,21 @@
237237
#define INTEL_BDW_GT3D_IDS(info) \
238238
_INTEL_BDW_D_IDS(3, info)
239239

240+
#define INTEL_BDW_RSVDM_IDS(info) \
241+
_INTEL_BDW_M_IDS(4, info)
242+
243+
#define INTEL_BDW_RSVDD_IDS(info) \
244+
_INTEL_BDW_D_IDS(4, info)
245+
240246
#define INTEL_BDW_M_IDS(info) \
241247
INTEL_BDW_GT12M_IDS(info), \
242-
INTEL_BDW_GT3M_IDS(info)
248+
INTEL_BDW_GT3M_IDS(info), \
249+
INTEL_BDW_RSVDM_IDS(info)
243250

244251
#define INTEL_BDW_D_IDS(info) \
245252
INTEL_BDW_GT12D_IDS(info), \
246-
INTEL_BDW_GT3D_IDS(info)
253+
INTEL_BDW_GT3D_IDS(info), \
254+
INTEL_BDW_RSVDD_IDS(info)
247255

248256
#define INTEL_CHV_IDS(info) \
249257
INTEL_VGA_DEVICE(0x22b0, info), \

0 commit comments

Comments
 (0)