All of lore.kernel.org
 help / color / mirror / Atom feed
* [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU.
@ 2017-06-22 16:28 Anusha Srivatsa
  2017-06-22 16:28 ` [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl Anusha Srivatsa
                   ` (2 more replies)
  0 siblings, 3 replies; 8+ messages in thread
From: Anusha Srivatsa @ 2017-06-22 16:28 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

From: anushasr <anusha.srivatsa@intel.com>

Just following the spec and adding these extra IDs.

v2: update IDs following the kernel commit:
b056f8f3d6b900e8afd19f312719160346d263b4 (Chris)

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>
---
 lib/i915_pciids.h       | 10 ++++++++++
 lib/intel_device_info.c |  2 ++
 2 files changed, 12 insertions(+)

diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
index 27e0dba..02f43d9 100644
--- a/lib/i915_pciids.h
+++ b/lib/i915_pciids.h
@@ -334,4 +334,14 @@
 	INTEL_KBL_GT3_IDS(info), \
 	INTEL_KBL_GT4_IDS(info)
 
+#define INTEL_CFL_S_IDS(info) \
+	INTEL_VGA_DEVICE(0x3E90, info), /* SRV GT1 */ \
+	INTEL_VGA_DEVICE(0x3E93, info), /* SRV GT1 */ \
+	INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \
+	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
+	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
+
+#define INTEL_CFL_IDS(info) \
+	INTEL_CFL_S_IDS(info)
+
 #endif /* _I915_PCIIDS_H */
diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
index 199fa2d..2c46aba 100644
--- a/lib/intel_device_info.c
+++ b/lib/intel_device_info.c
@@ -241,6 +241,8 @@ static const struct pci_id_match intel_device_match[] = {
 
 	INTEL_GLK_IDS(&intel_geminilake_info),
 
+	INTEL_CFL_IDS(&intel_coffeelake_info),
+
 	INTEL_VGA_DEVICE(PCI_MATCH_ANY, &intel_generic_info),
 };
 
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl
  2017-06-22 16:28 [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Anusha Srivatsa
@ 2017-06-22 16:28 ` Anusha Srivatsa
  2017-06-22 16:28 ` [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U " Anusha Srivatsa
  2017-06-28 12:17 ` [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Arkadiusz Hiler
  2 siblings, 0 replies; 8+ messages in thread
From: Anusha Srivatsa @ 2017-06-22 16:28 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

From: anushasr <anusha.srivatsa@intel.com>

Follow the spec and add the ID for H SKU in
CFL.

v2: Update IDs following kernel commit:
ccfd13215fd25a0e8c28221f3acc0dcaec11cd15 (Chris)

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>

---
 lib/i915_pciids.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
index 02f43d9..c319e37 100644
--- a/lib/i915_pciids.h
+++ b/lib/i915_pciids.h
@@ -341,7 +341,13 @@
 	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
 	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
 
+
+#define INTEL_CFL_H_IDS(info) \
+	INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
+	INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */
+
 #define INTEL_CFL_IDS(info) \
-	INTEL_CFL_S_IDS(info)
+	INTEL_CFL_S_IDS(info), \
+	INTEL_CFL_H_IDS(info)
 
 #endif /* _I915_PCIIDS_H */
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U SKU in CFl
  2017-06-22 16:28 [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Anusha Srivatsa
  2017-06-22 16:28 ` [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl Anusha Srivatsa
@ 2017-06-22 16:28 ` Anusha Srivatsa
  2017-06-28 21:04   ` Clint Taylor
  2017-06-28 12:17 ` [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Arkadiusz Hiler
  2 siblings, 1 reply; 8+ messages in thread
From: Anusha Srivatsa @ 2017-06-22 16:28 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

From: anushasr <anusha.srivatsa@intel.com>

Follow the spec and add ID for U SKU

v2: Update IDs in accordance to the kernel commit:
d29fe702c9cb682df99146d24d06e5455f043101 (Chris)

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
---
 lib/i915_pciids.h | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
index c319e37..71cce60 100644
--- a/lib/i915_pciids.h
+++ b/lib/i915_pciids.h
@@ -346,8 +346,15 @@
 	INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
 	INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */
 
+#define INTEL_CFL_U_IDS(info) \
+	INTEL_VGA_DEVICE(0x3EA5, info), /* ULT GT3 */ \
+	INTEL_VGA_DEVICE(0x3EA6, info), /* ULT GT3 */ \
+	INTEL_VGA_DEVICE(0x3EA7, info), /* ULT GT3 */ \
+	INTEL_VGA_DEVICE(0x3EA8, info) /* ULT GT3 */
+
 #define INTEL_CFL_IDS(info) \
 	INTEL_CFL_S_IDS(info), \
-	INTEL_CFL_H_IDS(info)
+	INTEL_CFL_H_IDS(info), \
+	INTEL_CFL_U_IDS(info)
 
 #endif /* _I915_PCIIDS_H */
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU.
  2017-06-22 16:28 [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Anusha Srivatsa
  2017-06-22 16:28 ` [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl Anusha Srivatsa
  2017-06-22 16:28 ` [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U " Anusha Srivatsa
@ 2017-06-28 12:17 ` Arkadiusz Hiler
  2017-06-28 12:19   ` Arkadiusz Hiler
  2 siblings, 1 reply; 8+ messages in thread
From: Arkadiusz Hiler @ 2017-06-28 12:17 UTC (permalink / raw)
  To: Anusha Srivatsa; +Cc: intel-gfx, Rodrigo Vivi

On Thu, Jun 22, 2017 at 09:28:35AM -0700, Anusha Srivatsa wrote:
> From: anushasr <anusha.srivatsa@intel.com>
> 
> Just following the spec and adding these extra IDs.
> 
> v2: update IDs following the kernel commit:
> b056f8f3d6b900e8afd19f312719160346d263b4 (Chris)
> 
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
> Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>
> ---
>  lib/i915_pciids.h       | 10 ++++++++++
>  lib/intel_device_info.c |  2 ++
>  2 files changed, 12 insertions(+)
> 
> diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
> index 27e0dba..02f43d9 100644
> --- a/lib/i915_pciids.h
> +++ b/lib/i915_pciids.h
> @@ -334,4 +334,14 @@
>  	INTEL_KBL_GT3_IDS(info), \
>  	INTEL_KBL_GT4_IDS(info)
>  
> +#define INTEL_CFL_S_IDS(info) \
> +	INTEL_VGA_DEVICE(0x3E90, info), /* SRV GT1 */ \
> +	INTEL_VGA_DEVICE(0x3E93, info), /* SRV GT1 */ \
> +	INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \
> +	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
> +	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
> +
> +#define INTEL_CFL_IDS(info) \
> +	INTEL_CFL_S_IDS(info)
> +
>  #endif /* _I915_PCIIDS_H */
> diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> index 199fa2d..2c46aba 100644
> --- a/lib/intel_device_info.c
> +++ b/lib/intel_device_info.c
> @@ -241,6 +241,8 @@ static const struct pci_id_match intel_device_match[] = {
>  
>  	INTEL_GLK_IDS(&intel_geminilake_info),
>  
> +	INTEL_CFL_IDS(&intel_coffeelake_info),

BTW, having
"From: anushasr <anusha.srivatsa@intel.com>"
on your patches resulting in quite unusual authorship lines.

Please consider using `git config --global user.name "Your Full Name"`
on the machines you are creating the patches with if this is not
intentional.

-- 
Cheers,
Arek
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU.
  2017-06-28 12:17 ` [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Arkadiusz Hiler
@ 2017-06-28 12:19   ` Arkadiusz Hiler
  2017-06-28 17:31     ` Srivatsa, Anusha
  0 siblings, 1 reply; 8+ messages in thread
From: Arkadiusz Hiler @ 2017-06-28 12:19 UTC (permalink / raw)
  To: Anusha Srivatsa; +Cc: intel-gfx, Rodrigo Vivi

On Wed, Jun 28, 2017 at 03:17:00PM +0300, Arkadiusz Hiler wrote:
> On Thu, Jun 22, 2017 at 09:28:35AM -0700, Anusha Srivatsa wrote:
> > From: anushasr <anusha.srivatsa@intel.com>
> > 
> > Just following the spec and adding these extra IDs.
> > 
> > v2: update IDs following the kernel commit:
> > b056f8f3d6b900e8afd19f312719160346d263b4 (Chris)
> > 
> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> > Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
> > Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>
> > ---
> >  lib/i915_pciids.h       | 10 ++++++++++
> >  lib/intel_device_info.c |  2 ++
> >  2 files changed, 12 insertions(+)
> > 
> > diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
> > index 27e0dba..02f43d9 100644
> > --- a/lib/i915_pciids.h
> > +++ b/lib/i915_pciids.h
> > @@ -334,4 +334,14 @@
> >  	INTEL_KBL_GT3_IDS(info), \
> >  	INTEL_KBL_GT4_IDS(info)
> >  
> > +#define INTEL_CFL_S_IDS(info) \
> > +	INTEL_VGA_DEVICE(0x3E90, info), /* SRV GT1 */ \
> > +	INTEL_VGA_DEVICE(0x3E93, info), /* SRV GT1 */ \
> > +	INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \
> > +	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
> > +	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
> > +
> > +#define INTEL_CFL_IDS(info) \
> > +	INTEL_CFL_S_IDS(info)
> > +
> >  #endif /* _I915_PCIIDS_H */
> > diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> > index 199fa2d..2c46aba 100644
> > --- a/lib/intel_device_info.c
> > +++ b/lib/intel_device_info.c
> > @@ -241,6 +241,8 @@ static const struct pci_id_match intel_device_match[] = {
> >  
> >  	INTEL_GLK_IDS(&intel_geminilake_info),
> >  
> > +	INTEL_CFL_IDS(&intel_coffeelake_info),

Cut the important part accidentally before sending. Here it is:

Hey,

The series does not compile and intel_coffeelake_info is nowhere to be
found.

Maybe you are missing a patch from the series?

> BTW, having
> "From: anushasr <anusha.srivatsa@intel.com>"
> on your patches resulting in quite unusual authorship lines.
> 
> Please consider using `git config --global user.name "Your Full Name"`
> on the machines you are creating the patches with if this is not
> intentional.
> 
> -- 
> Cheers,
> Arek
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU.
  2017-06-28 12:19   ` Arkadiusz Hiler
@ 2017-06-28 17:31     ` Srivatsa, Anusha
  0 siblings, 0 replies; 8+ messages in thread
From: Srivatsa, Anusha @ 2017-06-28 17:31 UTC (permalink / raw)
  To: Hiler, Arkadiusz; +Cc: intel-gfx, Vivi, Rodrigo



>-----Original Message-----
>From: Hiler, Arkadiusz
>Sent: Wednesday, June 28, 2017 5:20 AM
>To: Srivatsa, Anusha <anusha.srivatsa@intel.com>
>Cc: intel-gfx@lists.freedesktop.org; Vivi, Rodrigo <rodrigo.vivi@intel.com>
>Subject: Re: [Intel-gfx] [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S
>SKU.
>
>On Wed, Jun 28, 2017 at 03:17:00PM +0300, Arkadiusz Hiler wrote:
>> On Thu, Jun 22, 2017 at 09:28:35AM -0700, Anusha Srivatsa wrote:
>> > From: anushasr <anusha.srivatsa@intel.com>
>> >
>> > Just following the spec and adding these extra IDs.
>> >
>> > v2: update IDs following the kernel commit:
>> > b056f8f3d6b900e8afd19f312719160346d263b4 (Chris)
>> >
>> > Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> > Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
>> > Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>
>> > ---
>> >  lib/i915_pciids.h       | 10 ++++++++++
>> >  lib/intel_device_info.c |  2 ++
>> >  2 files changed, 12 insertions(+)
>> >
>> > diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h index
>> > 27e0dba..02f43d9 100644
>> > --- a/lib/i915_pciids.h
>> > +++ b/lib/i915_pciids.h
>> > @@ -334,4 +334,14 @@
>> >  	INTEL_KBL_GT3_IDS(info), \
>> >  	INTEL_KBL_GT4_IDS(info)
>> >
>> > +#define INTEL_CFL_S_IDS(info) \
>> > +	INTEL_VGA_DEVICE(0x3E90, info), /* SRV GT1 */ \
>> > +	INTEL_VGA_DEVICE(0x3E93, info), /* SRV GT1 */ \
>> > +	INTEL_VGA_DEVICE(0x3E91, info), /* SRV GT2 */ \
>> > +	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
>> > +	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
>> > +
>> > +#define INTEL_CFL_IDS(info) \
>> > +	INTEL_CFL_S_IDS(info)
>> > +
>> >  #endif /* _I915_PCIIDS_H */
>> > diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c index
>> > 199fa2d..2c46aba 100644
>> > --- a/lib/intel_device_info.c
>> > +++ b/lib/intel_device_info.c
>> > @@ -241,6 +241,8 @@ static const struct pci_id_match
>> > intel_device_match[] = {
>> >
>> >  	INTEL_GLK_IDS(&intel_geminilake_info),
>> >
>> > +	INTEL_CFL_IDS(&intel_coffeelake_info),
>
>Cut the important part accidentally before sending. Here it is:
>
>Hey,
>
>The series does not compile and intel_coffeelake_info is nowhere to be found.
>
>Maybe you are missing a patch from the series?

Intel_coffeelake_info is part of "Introduce Coffeelake platform definition" - 8c47cc5eca.... authored by Rodrigo Vivi.

Once that patch is merged, this one compiles. I thought its already merged. 

I need to send the patches with correct authorship anyway, will check again Arek. 

Thanks ,
Anusha

>> BTW, having
>> "From: anushasr <anusha.srivatsa@intel.com>"
>> on your patches resulting in quite unusual authorship lines.
>>
>> Please consider using `git config --global user.name "Your Full Name"`
>> on the machines you are creating the patches with if this is not
>> intentional.
>>
>> --
>> Cheers,
>> Arek
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U SKU in CFl
  2017-06-22 16:28 ` [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U " Anusha Srivatsa
@ 2017-06-28 21:04   ` Clint Taylor
  0 siblings, 0 replies; 8+ messages in thread
From: Clint Taylor @ 2017-06-28 21:04 UTC (permalink / raw)
  To: intel-gfx



On 06/22/2017 09:28 AM, Anusha Srivatsa wrote:
> From: anushasr <anusha.srivatsa@intel.com>
>
> Follow the spec and add ID for U SKU
>
> v2: Update IDs in accordance to the kernel commit:
> d29fe702c9cb682df99146d24d06e5455f043101 (Chris)
>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
> ---
>   lib/i915_pciids.h | 9 ++++++++-
>   1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
> index c319e37..71cce60 100644
> --- a/lib/i915_pciids.h
> +++ b/lib/i915_pciids.h
> @@ -346,8 +346,15 @@
>   	INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
>   	INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */
>   
> +#define INTEL_CFL_U_IDS(info) \
> +	INTEL_VGA_DEVICE(0x3EA5, info), /* ULT GT3 */ \
> +	INTEL_VGA_DEVICE(0x3EA6, info), /* ULT GT3 */ \
> +	INTEL_VGA_DEVICE(0x3EA7, info), /* ULT GT3 */ \
> +	INTEL_VGA_DEVICE(0x3EA8, info) /* ULT GT3 */
> +
Added devices match i915 driver IDs.
Reviewed-by: Clinton Taylor <clinton.a.taylor@intel.com>

>   #define INTEL_CFL_IDS(info) \
>   	INTEL_CFL_S_IDS(info), \
> -	INTEL_CFL_H_IDS(info)
> +	INTEL_CFL_H_IDS(info), \
> +	INTEL_CFL_U_IDS(info)
>   
>   #endif /* _I915_PCIIDS_H */

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl
  2017-06-29  6:16 Anusha Srivatsa
@ 2017-06-29  6:16 ` Anusha Srivatsa
  0 siblings, 0 replies; 8+ messages in thread
From: Anusha Srivatsa @ 2017-06-29  6:16 UTC (permalink / raw)
  To: intel-gfx; +Cc: Rodrigo Vivi

Follow the spec and add the ID for H SKU in
CFL.

v2: Update IDs following kernel commit:
ccfd13215fd25a0e8c28221f3acc0dcaec11cd15 (Chris)

Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anusha Srivatsa <anusha.srivatsa@intel.com>
Reviewed-by: Clint Taylor <clinton.a.taylor@intel.com>
---
 lib/i915_pciids.h | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/lib/i915_pciids.h b/lib/i915_pciids.h
index 02f43d9..c319e37 100644
--- a/lib/i915_pciids.h
+++ b/lib/i915_pciids.h
@@ -341,7 +341,13 @@
 	INTEL_VGA_DEVICE(0x3E92, info), /* SRV GT2 */ \
 	INTEL_VGA_DEVICE(0x3E96, info) /* SRV GT2 */
 
+
+#define INTEL_CFL_H_IDS(info) \
+	INTEL_VGA_DEVICE(0x3E9B, info), /* Halo GT2 */ \
+	INTEL_VGA_DEVICE(0x3E94, info) /* Halo GT2 */
+
 #define INTEL_CFL_IDS(info) \
-	INTEL_CFL_S_IDS(info)
+	INTEL_CFL_S_IDS(info), \
+	INTEL_CFL_H_IDS(info)
 
 #endif /* _I915_PCIIDS_H */
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2017-06-29  6:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-22 16:28 [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Anusha Srivatsa
2017-06-22 16:28 ` [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl Anusha Srivatsa
2017-06-22 16:28 ` [RESEND i-g-t 3/3] lib/cfl: Add PCI Ids for U " Anusha Srivatsa
2017-06-28 21:04   ` Clint Taylor
2017-06-28 12:17 ` [RESEND i-g-t 1/3] lib/cfl: Add Coffeelake PCI IDs for S SKU Arkadiusz Hiler
2017-06-28 12:19   ` Arkadiusz Hiler
2017-06-28 17:31     ` Srivatsa, Anusha
2017-06-29  6:16 Anusha Srivatsa
2017-06-29  6:16 ` [RESEND i-g-t 2/3] lib/cfl: Add PCI IDs to H SKU in CFl Anusha Srivatsa

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.