* [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids
@ 2017-09-11 16:22 Anuj Phogat
2017-09-11 16:22 ` [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5 Anuj Phogat
2017-09-20 20:19 ` [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
0 siblings, 2 replies; 9+ messages in thread
From: Anuj Phogat @ 2017-09-11 16:22 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
These PCI IDs are not used in any Kabylake SKUs.
See Mesa commits: ebc5ccf and b2dae9f
Cc: Matt Turner <mattst88@gmail.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
---
intel/intel_chipset.h | 26 ++++----------------------
1 file changed, 4 insertions(+), 22 deletions(-)
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
index 3ff59ad..77a9ca6 100644
--- a/intel/intel_chipset.h
+++ b/intel/intel_chipset.h
@@ -192,24 +192,16 @@
#define PCI_CHIP_SKYLAKE_WKS_GT4 0x193D
#define PCI_CHIP_KABYLAKE_ULT_GT2 0x5916
-#define PCI_CHIP_KABYLAKE_ULT_GT1_5 0x5913
#define PCI_CHIP_KABYLAKE_ULT_GT1 0x5906
-#define PCI_CHIP_KABYLAKE_ULT_GT3_0 0x5923
#define PCI_CHIP_KABYLAKE_ULT_GT3_1 0x5926
#define PCI_CHIP_KABYLAKE_ULT_GT3_2 0x5927
#define PCI_CHIP_KABYLAKE_ULT_GT2F 0x5921
-#define PCI_CHIP_KABYLAKE_ULX_GT1_5 0x5915
-#define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
#define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
#define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
#define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
#define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
-#define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
-#define PCI_CHIP_KABYLAKE_HALO_GT1_0 0x5908
#define PCI_CHIP_KABYLAKE_HALO_GT1_1 0x590B
-#define PCI_CHIP_KABYLAKE_SRV_GT2 0x591A
-#define PCI_CHIP_KABYLAKE_SRV_GT1 0x590A
#define PCI_CHIP_KABYLAKE_WKS_GT2 0x591D
#define PCI_CHIP_BROXTON_0 0x0A84
@@ -432,34 +424,24 @@
(devid) == PCI_CHIP_SKYLAKE_H_GT4 || \
(devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
-#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
- (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
- (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
+#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
(devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
- (devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
- (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_0 || \
- (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1 || \
- (devid) == PCI_CHIP_KABYLAKE_SRV_GT1)
+ (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1)
#define IS_KBL_GT2(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
(devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
- (devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
-#define IS_KBL_GT3(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT3_0 || \
- (devid) == PCI_CHIP_KABYLAKE_ULT_GT3_1 || \
+#define IS_KBL_GT3(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT3_1 || \
(devid) == PCI_CHIP_KABYLAKE_ULT_GT3_2)
-#define IS_KBL_GT4(devid) ((devid) == PCI_CHIP_KABYLAKE_HALO_GT4)
-
#define IS_KABYLAKE(devid) (IS_KBL_GT1(devid) || \
IS_KBL_GT2(devid) || \
- IS_KBL_GT3(devid) || \
- IS_KBL_GT4(devid))
+ IS_KBL_GT3(devid))
#define IS_SKYLAKE(devid) (IS_SKL_GT1(devid) || \
IS_SKL_GT2(devid) || \
--
2.9.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-11 16:22 [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
@ 2017-09-11 16:22 ` Anuj Phogat
2017-09-20 19:11 ` [PATCH libdrm V2 " Anuj Phogat
2017-09-20 19:13 ` [PATCH libdrm " Anuj Phogat
2017-09-20 20:19 ` [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
1 sibling, 2 replies; 9+ messages in thread
From: Anuj Phogat @ 2017-09-11 16:22 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
See Mesa commit 9c588ff
Cc: Matt Turner <mattst88@gmail.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
---
intel/intel_chipset.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
index 77a9ca6..6bd8ae2 100644
--- a/intel/intel_chipset.h
+++ b/intel/intel_chipset.h
@@ -198,7 +198,7 @@
#define PCI_CHIP_KABYLAKE_ULT_GT2F 0x5921
#define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
#define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
-#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
+#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
#define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
#define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
#define PCI_CHIP_KABYLAKE_HALO_GT1_1 0x590B
@@ -424,8 +424,7 @@
(devid) == PCI_CHIP_SKYLAKE_H_GT4 || \
(devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
-#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
- (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
+#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
(devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1)
@@ -433,6 +432,7 @@
(devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
(devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
+ (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
--
2.9.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH libdrm V2 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-11 16:22 ` [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5 Anuj Phogat
@ 2017-09-20 19:11 ` Anuj Phogat
2017-09-20 21:35 ` Rodrigo Vivi
2017-09-20 19:13 ` [PATCH libdrm " Anuj Phogat
1 sibling, 1 reply; 9+ messages in thread
From: Anuj Phogat @ 2017-09-20 19:11 UTC (permalink / raw)
To: intel-gfx; +Cc: Rodrigo Vivi
See Mesa commit 9c588ff
Cc: Matt Turner <mattst88@gmail.com>
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
---
intel/intel_chipset.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
index 3ff59ada..d81b1646 100644
--- a/intel/intel_chipset.h
+++ b/intel/intel_chipset.h
@@ -202,7 +202,7 @@
#define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
#define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
#define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
-#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
+#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
#define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
#define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
#define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
@@ -434,7 +434,6 @@
#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
(devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
- (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
(devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
(devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
@@ -446,6 +445,7 @@
(devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
(devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
+ (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
(devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
--
2.13.5
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm V2 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-20 19:11 ` [PATCH libdrm V2 " Anuj Phogat
@ 2017-09-20 21:35 ` Rodrigo Vivi
2017-09-21 20:42 ` Anuj Phogat
0 siblings, 1 reply; 9+ messages in thread
From: Rodrigo Vivi @ 2017-09-20 21:35 UTC (permalink / raw)
To: Anuj Phogat; +Cc: intel-gfx
On Wed, Sep 20, 2017 at 07:11:03PM +0000, Anuj Phogat wrote:
> See Mesa commit 9c588ff
>
> Cc: Matt Turner <mattst88@gmail.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> ---
> intel/intel_chipset.h | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
> index 3ff59ada..d81b1646 100644
> --- a/intel/intel_chipset.h
> +++ b/intel/intel_chipset.h
> @@ -202,7 +202,7 @@
> #define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
> -#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
> +#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
> #define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
> @@ -434,7 +434,6 @@
>
> #define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
> - (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
> @@ -446,6 +445,7 @@
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
> + (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
> --
> 2.13.5
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm V2 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-20 21:35 ` Rodrigo Vivi
@ 2017-09-21 20:42 ` Anuj Phogat
2017-09-21 21:42 ` Rodrigo Vivi
0 siblings, 1 reply; 9+ messages in thread
From: Anuj Phogat @ 2017-09-21 20:42 UTC (permalink / raw)
To: Rodrigo Vivi; +Cc: Intel GFX
On Wed, Sep 20, 2017 at 2:35 PM, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> On Wed, Sep 20, 2017 at 07:11:03PM +0000, Anuj Phogat wrote:
>> See Mesa commit 9c588ff
>>
>> Cc: Matt Turner <mattst88@gmail.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
>
> Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
>
Rodrigo, I don't have push permissions. Can you push it for me?
>> ---
>> intel/intel_chipset.h | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
>> index 3ff59ada..d81b1646 100644
>> --- a/intel/intel_chipset.h
>> +++ b/intel/intel_chipset.h
>> @@ -202,7 +202,7 @@
>> #define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
>> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
>> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
>> -#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
>> +#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
>> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
>> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
>> #define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
>> @@ -434,7 +434,6 @@
>>
>> #define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
>> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
>> - (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
>> (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
>> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
>> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
>> @@ -446,6 +445,7 @@
>> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
>> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
>> + (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
>> --
>> 2.13.5
>>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm V2 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-21 20:42 ` Anuj Phogat
@ 2017-09-21 21:42 ` Rodrigo Vivi
0 siblings, 0 replies; 9+ messages in thread
From: Rodrigo Vivi @ 2017-09-21 21:42 UTC (permalink / raw)
To: Anuj Phogat; +Cc: Intel GFX
On Thu, Sep 21, 2017 at 08:42:59PM +0000, Anuj Phogat wrote:
> On Wed, Sep 20, 2017 at 2:35 PM, Rodrigo Vivi <rodrigo.vivi@intel.com> wrote:
> > On Wed, Sep 20, 2017 at 07:11:03PM +0000, Anuj Phogat wrote:
> >> See Mesa commit 9c588ff
> >>
> >> Cc: Matt Turner <mattst88@gmail.com>
> >> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> >> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
> >
> > Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> >
> Rodrigo, I don't have push permissions. Can you push it for me?
pushed. thanks for the patch.
> >> ---
> >> intel/intel_chipset.h | 4 ++--
> >> 1 file changed, 2 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
> >> index 3ff59ada..d81b1646 100644
> >> --- a/intel/intel_chipset.h
> >> +++ b/intel/intel_chipset.h
> >> @@ -202,7 +202,7 @@
> >> #define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
> >> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
> >> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
> >> -#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
> >> +#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
> >> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
> >> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
> >> #define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
> >> @@ -434,7 +434,6 @@
> >>
> >> #define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
> >> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
> >> - (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
> >> (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
> >> (devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
> >> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
> >> @@ -446,6 +445,7 @@
> >> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
> >> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
> >> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
> >> + (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
> >> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
> >> (devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
> >> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
> >> --
> >> 2.13.5
> >>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-11 16:22 ` [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5 Anuj Phogat
2017-09-20 19:11 ` [PATCH libdrm V2 " Anuj Phogat
@ 2017-09-20 19:13 ` Anuj Phogat
2017-09-20 20:21 ` Anuj Phogat
1 sibling, 1 reply; 9+ messages in thread
From: Anuj Phogat @ 2017-09-20 19:13 UTC (permalink / raw)
To: Intel GFX; +Cc: Rodrigo Vivi
Any comments on this one. Sent out v2 after dropping
[PATCH 1/2] drm/i915/kbl: Remove unused Kabylake pci ids
On Mon, Sep 11, 2017 at 9:22 AM, Anuj Phogat <anuj.phogat@gmail.com> wrote:
> See Mesa commit 9c588ff
>
> Cc: Matt Turner <mattst88@gmail.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
> ---
> intel/intel_chipset.h | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
> index 77a9ca6..6bd8ae2 100644
> --- a/intel/intel_chipset.h
> +++ b/intel/intel_chipset.h
> @@ -198,7 +198,7 @@
> #define PCI_CHIP_KABYLAKE_ULT_GT2F 0x5921
> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
> -#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
> +#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
> #define PCI_CHIP_KABYLAKE_HALO_GT1_1 0x590B
> @@ -424,8 +424,7 @@
> (devid) == PCI_CHIP_SKYLAKE_H_GT4 || \
> (devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
>
> -#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
> - (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
> +#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
> (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1)
>
> @@ -433,6 +432,7 @@
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
> + (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
>
> --
> 2.9.4
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5
2017-09-20 19:13 ` [PATCH libdrm " Anuj Phogat
@ 2017-09-20 20:21 ` Anuj Phogat
0 siblings, 0 replies; 9+ messages in thread
From: Anuj Phogat @ 2017-09-20 20:21 UTC (permalink / raw)
To: Intel GFX; +Cc: Rodrigo Vivi
On Wed, Sep 20, 2017 at 12:13 PM, Anuj Phogat <anuj.phogat@gmail.com> wrote:
> Any comments on this one. Sent out v2 after dropping
> [PATCH 1/2] drm/i915/kbl: Remove unused Kabylake pci ids
Correction. Dropped patch for libdrm is:
[PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids
>
> On Mon, Sep 11, 2017 at 9:22 AM, Anuj Phogat <anuj.phogat@gmail.com> wrote:
>> See Mesa commit 9c588ff
>>
>> Cc: Matt Turner <mattst88@gmail.com>
>> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
>> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
>> ---
>> intel/intel_chipset.h | 6 +++---
>> 1 file changed, 3 insertions(+), 3 deletions(-)
>>
>> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
>> index 77a9ca6..6bd8ae2 100644
>> --- a/intel/intel_chipset.h
>> +++ b/intel/intel_chipset.h
>> @@ -198,7 +198,7 @@
>> #define PCI_CHIP_KABYLAKE_ULT_GT2F 0x5921
>> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
>> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
>> -#define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
>> +#define PCI_CHIP_KABYLAKE_M_GT2 0x5917
>> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
>> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
>> #define PCI_CHIP_KABYLAKE_HALO_GT1_1 0x590B
>> @@ -424,8 +424,7 @@
>> (devid) == PCI_CHIP_SKYLAKE_H_GT4 || \
>> (devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
>>
>> -#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
>> - (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
>> +#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
>> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
>> (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1)
>>
>> @@ -433,6 +432,7 @@
>> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
>> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
>> + (devid) == PCI_CHIP_KABYLAKE_M_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
>> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
>>
>> --
>> 2.9.4
>>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids
2017-09-11 16:22 [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
2017-09-11 16:22 ` [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5 Anuj Phogat
@ 2017-09-20 20:19 ` Anuj Phogat
1 sibling, 0 replies; 9+ messages in thread
From: Anuj Phogat @ 2017-09-20 20:19 UTC (permalink / raw)
To: Intel GFX; +Cc: Rodrigo Vivi
Dropping this patch.
On Mon, Sep 11, 2017 at 9:22 AM, Anuj Phogat <anuj.phogat@gmail.com> wrote:
> These PCI IDs are not used in any Kabylake SKUs.
> See Mesa commits: ebc5ccf and b2dae9f
>
> Cc: Matt Turner <mattst88@gmail.com>
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Signed-off-by: Anuj Phogat <anuj.phogat@gmail.com>
> ---
> intel/intel_chipset.h | 26 ++++----------------------
> 1 file changed, 4 insertions(+), 22 deletions(-)
>
> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
> index 3ff59ad..77a9ca6 100644
> --- a/intel/intel_chipset.h
> +++ b/intel/intel_chipset.h
> @@ -192,24 +192,16 @@
> #define PCI_CHIP_SKYLAKE_WKS_GT4 0x193D
>
> #define PCI_CHIP_KABYLAKE_ULT_GT2 0x5916
> -#define PCI_CHIP_KABYLAKE_ULT_GT1_5 0x5913
> #define PCI_CHIP_KABYLAKE_ULT_GT1 0x5906
> -#define PCI_CHIP_KABYLAKE_ULT_GT3_0 0x5923
> #define PCI_CHIP_KABYLAKE_ULT_GT3_1 0x5926
> #define PCI_CHIP_KABYLAKE_ULT_GT3_2 0x5927
> #define PCI_CHIP_KABYLAKE_ULT_GT2F 0x5921
> -#define PCI_CHIP_KABYLAKE_ULX_GT1_5 0x5915
> -#define PCI_CHIP_KABYLAKE_ULX_GT1 0x590E
> #define PCI_CHIP_KABYLAKE_ULX_GT2 0x591E
> #define PCI_CHIP_KABYLAKE_DT_GT2 0x5912
> #define PCI_CHIP_KABYLAKE_DT_GT1_5 0x5917
> #define PCI_CHIP_KABYLAKE_DT_GT1 0x5902
> #define PCI_CHIP_KABYLAKE_HALO_GT2 0x591B
> -#define PCI_CHIP_KABYLAKE_HALO_GT4 0x593B
> -#define PCI_CHIP_KABYLAKE_HALO_GT1_0 0x5908
> #define PCI_CHIP_KABYLAKE_HALO_GT1_1 0x590B
> -#define PCI_CHIP_KABYLAKE_SRV_GT2 0x591A
> -#define PCI_CHIP_KABYLAKE_SRV_GT1 0x590A
> #define PCI_CHIP_KABYLAKE_WKS_GT2 0x591D
>
> #define PCI_CHIP_BROXTON_0 0x0A84
> @@ -432,34 +424,24 @@
> (devid) == PCI_CHIP_SKYLAKE_H_GT4 || \
> (devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
>
> -#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5 || \
> - (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5 || \
> - (devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
> +#define IS_KBL_GT1(devid) ((devid) == PCI_CHIP_KABYLAKE_DT_GT1_5 || \
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT1 || \
> - (devid) == PCI_CHIP_KABYLAKE_ULX_GT1 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT1 || \
> - (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_0 || \
> - (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1 || \
> - (devid) == PCI_CHIP_KABYLAKE_SRV_GT1)
> + (devid) == PCI_CHIP_KABYLAKE_HALO_GT1_1)
>
> #define IS_KBL_GT2(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT2F || \
> (devid) == PCI_CHIP_KABYLAKE_ULX_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_DT_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_HALO_GT2 || \
> - (devid) == PCI_CHIP_KABYLAKE_SRV_GT2 || \
> (devid) == PCI_CHIP_KABYLAKE_WKS_GT2)
>
> -#define IS_KBL_GT3(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT3_0 || \
> - (devid) == PCI_CHIP_KABYLAKE_ULT_GT3_1 || \
> +#define IS_KBL_GT3(devid) ((devid) == PCI_CHIP_KABYLAKE_ULT_GT3_1 || \
> (devid) == PCI_CHIP_KABYLAKE_ULT_GT3_2)
>
> -#define IS_KBL_GT4(devid) ((devid) == PCI_CHIP_KABYLAKE_HALO_GT4)
> -
> #define IS_KABYLAKE(devid) (IS_KBL_GT1(devid) || \
> IS_KBL_GT2(devid) || \
> - IS_KBL_GT3(devid) || \
> - IS_KBL_GT4(devid))
> + IS_KBL_GT3(devid))
>
> #define IS_SKYLAKE(devid) (IS_SKL_GT1(devid) || \
> IS_SKL_GT2(devid) || \
> --
> 2.9.4
>
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2017-09-21 21:42 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-11 16:22 [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
2017-09-11 16:22 ` [PATCH libdrm 2/2] intel: Change a KBL pci id to GT2 from GT1.5 Anuj Phogat
2017-09-20 19:11 ` [PATCH libdrm V2 " Anuj Phogat
2017-09-20 21:35 ` Rodrigo Vivi
2017-09-21 20:42 ` Anuj Phogat
2017-09-21 21:42 ` Rodrigo Vivi
2017-09-20 19:13 ` [PATCH libdrm " Anuj Phogat
2017-09-20 20:21 ` Anuj Phogat
2017-09-20 20:19 ` [PATCH libdrm 1/2] intel: Remove unused Kabylake pci ids Anuj Phogat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox