diff mbox

[1/2] BDW: Adding Reserved PCI IDs.

Message ID 1402420539-5103-1-git-send-email-rodrigo.vivi@intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Rodrigo Vivi June 10, 2014, 5:15 p.m. UTC
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.

Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
---
 src/i915_pciids.h | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

Comments

Chris Wilson June 11, 2014, 6:08 a.m. UTC | #1
On Tue, Jun 10, 2014 at 10:15:38AM -0700, Rodrigo Vivi wrote:
> 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.

I'm going to hold off applying this until the kernel patch lands (and we
can cite its commit). It is much easier if this file remains a
duplicate.
-Chris
Rodrigo Vivi June 11, 2014, 2:49 p.m. UTC | #2
On Tue, Jun 10, 2014 at 11:08 PM, Chris Wilson <chris@chris-wilson.co.uk>
wrote:

> On Tue, Jun 10, 2014 at 10:15:38AM -0700, Rodrigo Vivi wrote:
> > 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.
>
> I'm going to hold off applying this until the kernel patch lands (and we
> can cite its commit). It is much easier if this file remains a
> duplicate.
>

Sure. Makes sense.
I'm going to wait a rv-b there to update this one here.


> -Chris
>
> --
> Chris Wilson, Intel Open Source Technology Centre
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
>
diff mbox

Patch

diff --git a/src/i915_pciids.h b/src/i915_pciids.h
index 0572035..a70d456 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), \