* [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-28 13:57 [Intel-gfx] [patch] drm/i915: Add PCI IDs for Skylake GT1.5 Ville Syrjälä
@ 2020-04-29 3:27 ` Alexei Podtelezhnikov
2020-04-29 6:32 ` Ville Syrjälä
0 siblings, 1 reply; 9+ messages in thread
From: Alexei Podtelezhnikov @ 2020-04-29 3:27 UTC (permalink / raw)
To: intel-gfx
Add three new devices 0x1513, 0x1515, and 0x1517 also known as
iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
and 0x192A according to specifications.
Signed-off-by: Alexei Podtelezhnikov <apodtele@gmail.com>
---
include/drm/i915_pciids.h | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
index 1d2c1221..c12bce9e 100644
--- a/include/drm/i915_pciids.h
+++ b/include/drm/i915_pciids.h
@@ -331,15 +331,18 @@
INTEL_VGA_DEVICE(0x22b3, info)
#define INTEL_SKL_ULT_GT1_IDS(info) \
- INTEL_VGA_DEVICE(0x1906, info) /* ULT GT1 */
+ INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
+ INTEL_VGA_DEVICE(0x1913, info) /* ULT GT1.5 */
#define INTEL_SKL_ULX_GT1_IDS(info) \
- INTEL_VGA_DEVICE(0x190E, info) /* ULX GT1 */
+ INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
+ INTEL_VGA_DEVICE(0x1915, info) /* ULX GT1.5 */
#define INTEL_SKL_GT1_IDS(info) \
INTEL_SKL_ULT_GT1_IDS(info), \
INTEL_SKL_ULX_GT1_IDS(info), \
INTEL_VGA_DEVICE(0x1902, info), /* DT GT1 */ \
+ INTEL_VGA_DEVICE(0x1917, info), /* DT GT1.5 */ \
INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
INTEL_VGA_DEVICE(0x190A, info) /* SRV GT1 */
@@ -359,21 +362,21 @@
INTEL_VGA_DEVICE(0x191D, info) /* WKS GT2 */
#define INTEL_SKL_ULT_GT3_IDS(info) \
- INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3 */
+ INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
+ INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 28W */ \
+ INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3e */
#define INTEL_SKL_GT3_IDS(info) \
INTEL_SKL_ULT_GT3_IDS(info), \
- INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
- INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 */ \
+ INTEL_VGA_DEVICE(0x192A, info), /* SRV GT3 */ \
INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
- INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3 */
+ INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3e */
#define INTEL_SKL_GT4_IDS(info) \
INTEL_VGA_DEVICE(0x1932, info), /* DT GT4 */ \
INTEL_VGA_DEVICE(0x193B, info), /* Halo GT4 */ \
INTEL_VGA_DEVICE(0x193D, info), /* WKS GT4 */ \
- INTEL_VGA_DEVICE(0x192A, info), /* SRV GT4 */ \
- INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4e */
+ INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4 */
#define INTEL_SKL_IDS(info) \
INTEL_SKL_GT1_IDS(info), \
--
2.26.2
_______________________________________________
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: [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-29 3:27 ` [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
@ 2020-04-29 6:32 ` Ville Syrjälä
2020-04-29 8:52 ` Jani Nikula
0 siblings, 1 reply; 9+ messages in thread
From: Ville Syrjälä @ 2020-04-29 6:32 UTC (permalink / raw)
To: Alexei Podtelezhnikov; +Cc: intel-gfx
On Tue, Apr 28, 2020 at 11:27:50PM -0400, Alexei Podtelezhnikov wrote:
> Add three new devices 0x1513, 0x1515, and 0x1517 also known as
typo 0x15 vs. 0x19
> iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
> and 0x192A according to specifications.
I'd make this three separate patches, just in case we have to revert
some of these in the future. Most worried about the 0x192a case since
the evidence is rather poor.
Otherwise lgtm.
>
> Signed-off-by: Alexei Podtelezhnikov <apodtele@gmail.com>
> ---
> include/drm/i915_pciids.h | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
> index 1d2c1221..c12bce9e 100644
> --- a/include/drm/i915_pciids.h
> +++ b/include/drm/i915_pciids.h
> @@ -331,15 +331,18 @@
> INTEL_VGA_DEVICE(0x22b3, info)
>
> #define INTEL_SKL_ULT_GT1_IDS(info) \
> - INTEL_VGA_DEVICE(0x1906, info) /* ULT GT1 */
> + INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
> + INTEL_VGA_DEVICE(0x1913, info) /* ULT GT1.5 */
>
> #define INTEL_SKL_ULX_GT1_IDS(info) \
> - INTEL_VGA_DEVICE(0x190E, info) /* ULX GT1 */
> + INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
> + INTEL_VGA_DEVICE(0x1915, info) /* ULX GT1.5 */
>
> #define INTEL_SKL_GT1_IDS(info) \
> INTEL_SKL_ULT_GT1_IDS(info), \
> INTEL_SKL_ULX_GT1_IDS(info), \
> INTEL_VGA_DEVICE(0x1902, info), /* DT GT1 */ \
> + INTEL_VGA_DEVICE(0x1917, info), /* DT GT1.5 */ \
> INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
> INTEL_VGA_DEVICE(0x190A, info) /* SRV GT1 */
>
> @@ -359,21 +362,21 @@
> INTEL_VGA_DEVICE(0x191D, info) /* WKS GT2 */
>
> #define INTEL_SKL_ULT_GT3_IDS(info) \
> - INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3 */
> + INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
> + INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 28W */ \
> + INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3e */
>
> #define INTEL_SKL_GT3_IDS(info) \
> INTEL_SKL_ULT_GT3_IDS(info), \
> - INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
> - INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 */ \
> + INTEL_VGA_DEVICE(0x192A, info), /* SRV GT3 */ \
> INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
> - INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3 */
> + INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3e */
>
> #define INTEL_SKL_GT4_IDS(info) \
> INTEL_VGA_DEVICE(0x1932, info), /* DT GT4 */ \
> INTEL_VGA_DEVICE(0x193B, info), /* Halo GT4 */ \
> INTEL_VGA_DEVICE(0x193D, info), /* WKS GT4 */ \
> - INTEL_VGA_DEVICE(0x192A, info), /* SRV GT4 */ \
> - INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4e */
> + INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4 */
>
> #define INTEL_SKL_IDS(info) \
> INTEL_SKL_GT1_IDS(info), \
> --
> 2.26.2
--
Ville Syrjälä
Intel
_______________________________________________
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: [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-29 6:32 ` Ville Syrjälä
@ 2020-04-29 8:52 ` Jani Nikula
0 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2020-04-29 8:52 UTC (permalink / raw)
To: Ville Syrjälä, Alexei Podtelezhnikov; +Cc: intel-gfx
On Wed, 29 Apr 2020, Ville Syrjälä <ville.syrjala@linux.intel.com> wrote:
> On Tue, Apr 28, 2020 at 11:27:50PM -0400, Alexei Podtelezhnikov wrote:
>> Add three new devices 0x1513, 0x1515, and 0x1517 also known as
>
> typo 0x15 vs. 0x19
>
>> iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
>> and 0x192A according to specifications.
>
> I'd make this three separate patches, just in case we have to revert
> some of these in the future. Most worried about the 0x192a case since
> the evidence is rather poor.
+1
>
> Otherwise lgtm.
>
>>
>> Signed-off-by: Alexei Podtelezhnikov <apodtele@gmail.com>
>> ---
>> include/drm/i915_pciids.h | 19 +++++++++++--------
>> 1 file changed, 11 insertions(+), 8 deletions(-)
>>
>> diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
>> index 1d2c1221..c12bce9e 100644
>> --- a/include/drm/i915_pciids.h
>> +++ b/include/drm/i915_pciids.h
>> @@ -331,15 +331,18 @@
>> INTEL_VGA_DEVICE(0x22b3, info)
>>
>> #define INTEL_SKL_ULT_GT1_IDS(info) \
>> - INTEL_VGA_DEVICE(0x1906, info) /* ULT GT1 */
>> + INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
>> + INTEL_VGA_DEVICE(0x1913, info) /* ULT GT1.5 */
>>
>> #define INTEL_SKL_ULX_GT1_IDS(info) \
>> - INTEL_VGA_DEVICE(0x190E, info) /* ULX GT1 */
>> + INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
>> + INTEL_VGA_DEVICE(0x1915, info) /* ULX GT1.5 */
>>
>> #define INTEL_SKL_GT1_IDS(info) \
>> INTEL_SKL_ULT_GT1_IDS(info), \
>> INTEL_SKL_ULX_GT1_IDS(info), \
>> INTEL_VGA_DEVICE(0x1902, info), /* DT GT1 */ \
>> + INTEL_VGA_DEVICE(0x1917, info), /* DT GT1.5 */ \
>> INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
>> INTEL_VGA_DEVICE(0x190A, info) /* SRV GT1 */
>>
>> @@ -359,21 +362,21 @@
>> INTEL_VGA_DEVICE(0x191D, info) /* WKS GT2 */
>>
>> #define INTEL_SKL_ULT_GT3_IDS(info) \
>> - INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3 */
>> + INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
>> + INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 28W */ \
>> + INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3e */
>>
>> #define INTEL_SKL_GT3_IDS(info) \
>> INTEL_SKL_ULT_GT3_IDS(info), \
>> - INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
>> - INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 */ \
>> + INTEL_VGA_DEVICE(0x192A, info), /* SRV GT3 */ \
>> INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
>> - INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3 */
>> + INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3e */
>>
>> #define INTEL_SKL_GT4_IDS(info) \
>> INTEL_VGA_DEVICE(0x1932, info), /* DT GT4 */ \
>> INTEL_VGA_DEVICE(0x193B, info), /* Halo GT4 */ \
>> INTEL_VGA_DEVICE(0x193D, info), /* WKS GT4 */ \
>> - INTEL_VGA_DEVICE(0x192A, info), /* SRV GT4 */ \
>> - INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4e */
>> + INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4 */
>>
>> #define INTEL_SKL_IDS(info) \
>> INTEL_SKL_GT1_IDS(info), \
>> --
>> 2.26.2
--
Jani Nikula, Intel Open Source Graphics Center
_______________________________________________
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
* [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
@ 2020-04-29 11:40 Alexei Podtelezhnikov
2020-04-29 11:54 ` Alexei Podtelezhnikov
` (3 more replies)
0 siblings, 4 replies; 9+ messages in thread
From: Alexei Podtelezhnikov @ 2020-04-29 11:40 UTC (permalink / raw)
To: intel-gfx
Add three new devices 0x1913, 0x1915, and 0x1917 also known as
iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
and 0x192A according to specifications. Of note, the second to last
digit seems to correspond to GT#.
Signed-off-by: Alexei Podtelezhnikov <apodtele@gmail.com>
---
include/drm/i915_pciids.h | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h
index 1d2c1221..c12bce9e 100644
--- a/include/drm/i915_pciids.h
+++ b/include/drm/i915_pciids.h
@@ -331,15 +331,18 @@
INTEL_VGA_DEVICE(0x22b3, info)
#define INTEL_SKL_ULT_GT1_IDS(info) \
- INTEL_VGA_DEVICE(0x1906, info) /* ULT GT1 */
+ INTEL_VGA_DEVICE(0x1906, info), /* ULT GT1 */ \
+ INTEL_VGA_DEVICE(0x1913, info) /* ULT GT1.5 */
#define INTEL_SKL_ULX_GT1_IDS(info) \
- INTEL_VGA_DEVICE(0x190E, info) /* ULX GT1 */
+ INTEL_VGA_DEVICE(0x190E, info), /* ULX GT1 */ \
+ INTEL_VGA_DEVICE(0x1915, info) /* ULX GT1.5 */
#define INTEL_SKL_GT1_IDS(info) \
INTEL_SKL_ULT_GT1_IDS(info), \
INTEL_SKL_ULX_GT1_IDS(info), \
INTEL_VGA_DEVICE(0x1902, info), /* DT GT1 */ \
+ INTEL_VGA_DEVICE(0x1917, info), /* DT GT1.5 */ \
INTEL_VGA_DEVICE(0x190B, info), /* Halo GT1 */ \
INTEL_VGA_DEVICE(0x190A, info) /* SRV GT1 */
@@ -359,21 +362,21 @@
INTEL_VGA_DEVICE(0x191D, info) /* WKS GT2 */
#define INTEL_SKL_ULT_GT3_IDS(info) \
- INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3 */
+ INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
+ INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 28W */ \
+ INTEL_VGA_DEVICE(0x1926, info) /* ULT GT3e */
#define INTEL_SKL_GT3_IDS(info) \
INTEL_SKL_ULT_GT3_IDS(info), \
- INTEL_VGA_DEVICE(0x1923, info), /* ULT GT3 */ \
- INTEL_VGA_DEVICE(0x1927, info), /* ULT GT3 */ \
+ INTEL_VGA_DEVICE(0x192A, info), /* SRV GT3 */ \
INTEL_VGA_DEVICE(0x192B, info), /* Halo GT3 */ \
- INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3 */
+ INTEL_VGA_DEVICE(0x192D, info) /* SRV GT3e */
#define INTEL_SKL_GT4_IDS(info) \
INTEL_VGA_DEVICE(0x1932, info), /* DT GT4 */ \
INTEL_VGA_DEVICE(0x193B, info), /* Halo GT4 */ \
INTEL_VGA_DEVICE(0x193D, info), /* WKS GT4 */ \
- INTEL_VGA_DEVICE(0x192A, info), /* SRV GT4 */ \
- INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4e */
+ INTEL_VGA_DEVICE(0x193A, info) /* SRV GT4 */
#define INTEL_SKL_IDS(info) \
INTEL_SKL_GT1_IDS(info), \
--
2.26.2
_______________________________________________
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: [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-29 11:40 [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
@ 2020-04-29 11:54 ` Alexei Podtelezhnikov
2020-04-29 13:00 ` Chris Wilson
2020-04-29 12:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: Alexei Podtelezhnikov @ 2020-04-29 11:54 UTC (permalink / raw)
To: intel-gfx
On Wed, 29 Apr 2020, Ville Syrjälä <ville.syrjala at linux.intel.com> wrote:
> On Tue, Apr 28, 2020 at 11:27:50PM -0400, Alexei Podtelezhnikov wrote:
>> Add three new devices 0x1513, 0x1515, and 0x1517 also known as
>
> typo 0x15 vs. 0x19
>
>> iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
>> and 0x192A according to specifications.
>
> I'd make this three separate patches, just in case we have to revert
> some of these in the future. Most worried about the 0x192a case since
> the evidence is rather poor.
I fixed the typo. The absence of 0x192a from the most recent Windows
drivers indicates that it was never printed. The absence of evidence
is the evidence of absence. The second to last digit indicates that it
was planned as GT3. Lastly, making 3 patches for something
non-existent is such an overkill. These are trivial to revert
line-by-line too. Please be considerate to occasional helpers and do
not ask to much of them.
Regards,
Alexei
_______________________________________________
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
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Update Slylake PCI IDs
2020-04-29 11:40 [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
2020-04-29 11:54 ` Alexei Podtelezhnikov
@ 2020-04-29 12:57 ` Patchwork
2020-04-29 15:29 ` [Intel-gfx] [patch] " Alexei Podtelezhnikov
2020-04-29 17:15 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2020-04-29 12:57 UTC (permalink / raw)
To: Alexei Podtelezhnikov; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Update Slylake PCI IDs
URL : https://patchwork.freedesktop.org/series/76720/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_8391 -> Patchwork_17510
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/index.html
Known issues
------------
Here are the changes found in Patchwork_17510 that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- fi-skl-guc: [INCOMPLETE][1] ([i915#151]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/fi-skl-guc/igt@i915_pm_rpm@module-reload.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#151]: https://gitlab.freedesktop.org/drm/intel/issues/151
[i915#666]: https://gitlab.freedesktop.org/drm/intel/issues/666
Participating hosts (48 -> 42)
------------------------------
Missing (6): fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-kbl-7500u fi-ctg-p8600 fi-byt-clapper
Build changes
-------------
* CI: CI-20190529 -> None
* Linux: CI_DRM_8391 -> Patchwork_17510
CI-20190529: 20190529
CI_DRM_8391: 9cada6f702d618458eb6dda220f5cfefe655f475 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5614: d095827add11d4e8158b87683971ee659749d9a4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_17510: 9426c725b9440eff09861eeb0c86b969def98465 @ git://anongit.freedesktop.org/gfx-ci/linux
== Linux commits ==
9426c725b944 drm/i915: Update Slylake PCI IDs
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/index.html
_______________________________________________
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: [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-29 11:54 ` Alexei Podtelezhnikov
@ 2020-04-29 13:00 ` Chris Wilson
0 siblings, 0 replies; 9+ messages in thread
From: Chris Wilson @ 2020-04-29 13:00 UTC (permalink / raw)
To: Alexei Podtelezhnikov, intel-gfx
Quoting Alexei Podtelezhnikov (2020-04-29 12:54:20)
> On Wed, 29 Apr 2020, Ville Syrjälä <ville.syrjala at linux.intel.com> wrote:
> > On Tue, Apr 28, 2020 at 11:27:50PM -0400, Alexei Podtelezhnikov wrote:
> >> Add three new devices 0x1513, 0x1515, and 0x1517 also known as
> >
> > typo 0x15 vs. 0x19
> >
> >> iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
> >> and 0x192A according to specifications.
> >
> > I'd make this three separate patches, just in case we have to revert
> > some of these in the future. Most worried about the 0x192a case since
> > the evidence is rather poor.
>
> I fixed the typo.
And slyly hide another.
-Chris
_______________________________________________
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: [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs
2020-04-29 11:40 [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
2020-04-29 11:54 ` Alexei Podtelezhnikov
2020-04-29 12:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
@ 2020-04-29 15:29 ` Alexei Podtelezhnikov
2020-04-29 17:15 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Alexei Podtelezhnikov @ 2020-04-29 15:29 UTC (permalink / raw)
To: intel-gfx
On Wed, Apr 29, 2020 at 7:41 AM Alexei Podtelezhnikov
<apodtele@gmail.com> wrote:
>
> Add three new devices 0x1913, 0x1915, and 0x1917 also known as
> iSKLULTGT15, iSKLULXGT15, and iSKLDTGT15. Reclassify 0x1923, 0x1927,
> and 0x192A according to specifications. Of note, the second to last
> digit seems to correspond to GT#.
Ehh, GT1.5 is topologically closer to GT2 than to GT1. The second lest
significant digit indicates the same. I should move them there and
resubmit the patch...
Now I am suspicious about Haswell 0x0426, which might have been
planned as GT3 with no evidence of actual existence.
_______________________________________________
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
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Update Slylake PCI IDs
2020-04-29 11:40 [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
` (2 preceding siblings ...)
2020-04-29 15:29 ` [Intel-gfx] [patch] " Alexei Podtelezhnikov
@ 2020-04-29 17:15 ` Patchwork
3 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2020-04-29 17:15 UTC (permalink / raw)
To: Alexei Podtelezhnikov; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Update Slylake PCI IDs
URL : https://patchwork.freedesktop.org/series/76720/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_8391_full -> Patchwork_17510_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_17510_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_17510_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_17510_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_close_race@basic-threads:
- shard-tglb: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-tglb3/igt@gem_close_race@basic-threads.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-tglb2/igt@gem_close_race@basic-threads.html
Known issues
------------
Here are the changes found in Patchwork_17510_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_params@invalid-bsd-ring:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#109276])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb4/igt@gem_exec_params@invalid-bsd-ring.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb7/igt@gem_exec_params@invalid-bsd-ring.html
* igt@i915_pm_dc@dc5-dpms:
- shard-skl: [PASS][5] -> [INCOMPLETE][6] ([i915#198])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl9/igt@i915_pm_dc@dc5-dpms.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl9/igt@i915_pm_dc@dc5-dpms.html
* igt@i915_selftest@live@blt:
- shard-snb: [PASS][7] -> [DMESG-FAIL][8] ([i915#1409])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-snb5/igt@i915_selftest@live@blt.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-snb5/igt@i915_selftest@live@blt.html
* igt@kms_cursor_crc@pipe-c-cursor-suspend:
- shard-kbl: [PASS][9] -> [DMESG-WARN][10] ([i915#180]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-suspend.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-hsw: [PASS][11] -> [FAIL][12] ([i915#57])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-hsw7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-hsw8/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@pipe-b-torture-move:
- shard-iclb: [PASS][13] -> [DMESG-WARN][14] ([i915#128])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb6/igt@kms_cursor_legacy@pipe-b-torture-move.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb2/igt@kms_cursor_legacy@pipe-b-torture-move.html
* igt@kms_flip_tiling@flip-changes-tiling-y:
- shard-kbl: [PASS][15] -> [FAIL][16] ([i915#699] / [i915#93] / [i915#95])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-kbl7/igt@kms_flip_tiling@flip-changes-tiling-y.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-kbl2/igt@kms_flip_tiling@flip-changes-tiling-y.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-skl: [PASS][17] -> [FAIL][18] ([i915#1188])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl5/igt@kms_hdr@bpc-switch-dpms.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl8/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
- shard-apl: [PASS][19] -> [DMESG-WARN][20] ([i915#180])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-apl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
* igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
- shard-skl: [PASS][21] -> [FAIL][22] ([fdo#108145] / [i915#265])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl2/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl5/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb6/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_suspend:
- shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +3 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb2/igt@kms_psr@psr2_suspend.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb7/igt@kms_psr@psr2_suspend.html
#### Possible fixes ####
* {igt@gem_ctx_isolation@preservation-s3@bcs0}:
- shard-apl: [DMESG-WARN][27] ([i915#180]) -> [PASS][28] +5 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-apl6/igt@gem_ctx_isolation@preservation-s3@bcs0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-apl8/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-skl: [INCOMPLETE][29] ([i915#69]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl4/igt@gem_workarounds@suspend-resume-fd.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl8/igt@gem_workarounds@suspend-resume-fd.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [SKIP][31] ([fdo#109349]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb6/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
- shard-glk: [FAIL][33] ([i915#177] / [i915#52] / [i915#54]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-glk9/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-glk8/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
* {igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2}:
- shard-glk: [FAIL][35] ([i915#34]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-glk2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-glk1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible@bc-hdmi-a1-hdmi-a2.html
* {igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1}:
- shard-skl: [FAIL][37] ([i915#79]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* {igt@kms_flip@flip-vs-suspend@c-edp1}:
- shard-skl: [INCOMPLETE][39] ([i915#198]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl3/igt@kms_flip@flip-vs-suspend@c-edp1.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl3/igt@kms_flip@flip-vs-suspend@c-edp1.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [DMESG-WARN][41] ([i915#180]) -> [PASS][42] +2 similar issues
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_plane_alpha_blend@pipe-c-coverage-7efc:
- shard-skl: [FAIL][43] ([fdo#108145] / [i915#265]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-skl4/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-skl8/igt@kms_plane_alpha_blend@pipe-c-coverage-7efc.html
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-iclb: [SKIP][45] ([fdo#109441]) -> [PASS][46] +1 similar issue
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb7/igt@kms_psr@psr2_primary_mmap_cpu.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
#### Warnings ####
* igt@kms_psr2_su@page_flip:
- shard-iclb: [FAIL][47] ([i915#608]) -> [SKIP][48] ([fdo#109642] / [fdo#111068])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8391/shard-iclb2/igt@kms_psr2_su@page_flip.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/shard-iclb6/igt@kms_psr2_su@page_flip.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
[i915#128]: https://gitlab.freedesktop.org/drm/intel/issues/128
[i915#1409]: https://gitlab.freedesktop.org/drm/intel/issues/1409
[i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
[i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#198]: https://gitlab.freedesktop.org/drm/intel/issues/198
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#34]: https://gitlab.freedesktop.org/drm/intel/issues/34
[i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
[i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
[i915#57]: https://gitlab.freedesktop.org/drm/intel/issues/57
[i915#608]: https://gitlab.freedesktop.org/drm/intel/issues/608
[i915#69]: https://gitlab.freedesktop.org/drm/intel/issues/69
[i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
[i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Build changes
-------------
* CI: CI-20190529 -> None
* Linux: CI_DRM_8391 -> Patchwork_17510
CI-20190529: 20190529
CI_DRM_8391: 9cada6f702d618458eb6dda220f5cfefe655f475 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_5614: d095827add11d4e8158b87683971ee659749d9a4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
Patchwork_17510: 9426c725b9440eff09861eeb0c86b969def98465 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17510/index.html
_______________________________________________
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:[~2020-04-29 17:15 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-29 11:40 [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
2020-04-29 11:54 ` Alexei Podtelezhnikov
2020-04-29 13:00 ` Chris Wilson
2020-04-29 12:57 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork
2020-04-29 15:29 ` [Intel-gfx] [patch] " Alexei Podtelezhnikov
2020-04-29 17:15 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2020-04-28 13:57 [Intel-gfx] [patch] drm/i915: Add PCI IDs for Skylake GT1.5 Ville Syrjälä
2020-04-29 3:27 ` [Intel-gfx] [patch] drm/i915: Update Slylake PCI IDs Alexei Podtelezhnikov
2020-04-29 6:32 ` Ville Syrjälä
2020-04-29 8:52 ` Jani Nikula
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox