* [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump
@ 2023-01-30 18:17 Ville Syrjala
2023-01-30 18:17 ` [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x Ville Syrjala
` (4 more replies)
0 siblings, 5 replies; 8+ messages in thread
From: Ville Syrjala @ 2023-01-30 18:17 UTC (permalink / raw)
To: intel-gfx
From: Ville Syrjälä <ville.syrjala@linux.intel.com>
Dump the stepping information alongside all the other device
info. Might avoid some guesswork when reading logs.
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
---
drivers/gpu/drm/i915/intel_device_info.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c
index 98769e5f2c3d..599c6d399de4 100644
--- a/drivers/gpu/drm/i915/intel_device_info.c
+++ b/drivers/gpu/drm/i915/intel_device_info.c
@@ -119,6 +119,11 @@ void intel_device_info_print(const struct intel_device_info *info,
drm_printf(p, "display version: %u\n",
runtime->display.ip.ver);
+ drm_printf(p, "graphics stepping: %s\n", intel_step_name(runtime->step.graphics_step));
+ drm_printf(p, "media stepping: %s\n", intel_step_name(runtime->step.media_step));
+ drm_printf(p, "display stepping: %s\n", intel_step_name(runtime->step.display_step));
+ drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step));
+
drm_printf(p, "gt: %d\n", info->gt);
drm_printf(p, "memory-regions: %x\n", runtime->memory_regions);
drm_printf(p, "page-sizes: %x\n", runtime->page_sizes);
--
2.39.1
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala @ 2023-01-30 18:17 ` Ville Syrjala 2023-01-31 7:12 ` Jani Nikula 2023-01-30 21:04 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump Patchwork ` (3 subsequent siblings) 4 siblings, 1 reply; 8+ messages in thread From: Ville Syrjala @ 2023-01-30 18:17 UTC (permalink / raw) To: intel-gfx From: Ville Syrjälä <ville.syrjala@linux.intel.com> It's hard to figure out whether the number is hex or decimal if doesn't have the 0x to indicate hex. Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> --- drivers/gpu/drm/i915/intel_device_info.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c index 599c6d399de4..524f93768c41 100644 --- a/drivers/gpu/drm/i915/intel_device_info.c +++ b/drivers/gpu/drm/i915/intel_device_info.c @@ -125,8 +125,8 @@ void intel_device_info_print(const struct intel_device_info *info, drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step)); drm_printf(p, "gt: %d\n", info->gt); - drm_printf(p, "memory-regions: %x\n", runtime->memory_regions); - drm_printf(p, "page-sizes: %x\n", runtime->page_sizes); + drm_printf(p, "memory-regions: 0x%x\n", runtime->memory_regions); + drm_printf(p, "page-sizes: 0x%x\n", runtime->page_sizes); drm_printf(p, "platform: %s\n", intel_platform_name(info->platform)); drm_printf(p, "ppgtt-size: %d\n", runtime->ppgtt_size); drm_printf(p, "ppgtt-type: %d\n", runtime->ppgtt_type); @@ -540,5 +540,5 @@ void intel_driver_caps_print(const struct intel_driver_caps *caps, { drm_printf(p, "Has logical contexts? %s\n", str_yes_no(caps->has_logical_contexts)); - drm_printf(p, "scheduler: %x\n", caps->scheduler); + drm_printf(p, "scheduler: 0x%x\n", caps->scheduler); } -- 2.39.1 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x 2023-01-30 18:17 ` [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x Ville Syrjala @ 2023-01-31 7:12 ` Jani Nikula 0 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-01-31 7:12 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Mon, 30 Jan 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > It's hard to figure out whether the number is hex > or decimal if doesn't have the 0x to indicate hex. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/intel_device_info.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c > index 599c6d399de4..524f93768c41 100644 > --- a/drivers/gpu/drm/i915/intel_device_info.c > +++ b/drivers/gpu/drm/i915/intel_device_info.c > @@ -125,8 +125,8 @@ void intel_device_info_print(const struct intel_device_info *info, > drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step)); > > drm_printf(p, "gt: %d\n", info->gt); > - drm_printf(p, "memory-regions: %x\n", runtime->memory_regions); > - drm_printf(p, "page-sizes: %x\n", runtime->page_sizes); > + drm_printf(p, "memory-regions: 0x%x\n", runtime->memory_regions); > + drm_printf(p, "page-sizes: 0x%x\n", runtime->page_sizes); > drm_printf(p, "platform: %s\n", intel_platform_name(info->platform)); > drm_printf(p, "ppgtt-size: %d\n", runtime->ppgtt_size); > drm_printf(p, "ppgtt-type: %d\n", runtime->ppgtt_type); > @@ -540,5 +540,5 @@ void intel_driver_caps_print(const struct intel_driver_caps *caps, > { > drm_printf(p, "Has logical contexts? %s\n", > str_yes_no(caps->has_logical_contexts)); > - drm_printf(p, "scheduler: %x\n", caps->scheduler); > + drm_printf(p, "scheduler: 0x%x\n", caps->scheduler); > } -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala 2023-01-30 18:17 ` [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x Ville Syrjala @ 2023-01-30 21:04 ` Patchwork 2023-01-30 23:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-30 21:04 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 3195 bytes --] == Series Details == Series: series starting with [1/2] drm/i915: Include stepping informaiton in device info dump URL : https://patchwork.freedesktop.org/series/113504/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12667 -> Patchwork_113504v1 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_113504v1 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_113504v1, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v1/index.html Participating hosts (26 -> 25) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_113504v1: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3@smem: - fi-blb-e6850: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12667/fi-blb-e6850/igt@gem_exec_suspend@basic-s3@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v1/fi-blb-e6850/igt@gem_exec_suspend@basic-s3@smem.html Known issues ------------ Here are the changes found in Patchwork_113504v1 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][3] ([i915#5334] / [i915#7872]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12667/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v1/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 Build changes ------------- * Linux: CI_DRM_12667 -> Patchwork_113504v1 CI-20190529: 20190529 CI_DRM_12667: c30c24a1b2ef039980198dcfd7c3328fd61f404d @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7143: c7b12dcc460fc2348e1fa7f4dcb791bb82e29e44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_113504v1: c30c24a1b2ef039980198dcfd7c3328fd61f404d @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 0f4f1824b451 drm/i915: Prefix hex numbers with 0x b71d32ed566e drm/i915: Include stepping informaiton in device info dump == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v1/index.html [-- Attachment #2: Type: text/html, Size: 3504 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala 2023-01-30 18:17 ` [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x Ville Syrjala 2023-01-30 21:04 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump Patchwork @ 2023-01-30 23:51 ` Patchwork 2023-01-31 5:54 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-01-31 7:11 ` [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Jani Nikula 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-30 23:51 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 1720 bytes --] == Series Details == Series: series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) URL : https://patchwork.freedesktop.org/series/113504/ State : success == Summary == CI Bug Log - changes from CI_DRM_12668 -> Patchwork_113504v2 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/index.html Participating hosts (25 -> 24) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_113504v2 that come from known issues: ### IGT changes ### {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981 Build changes ------------- * Linux: CI_DRM_12668 -> Patchwork_113504v2 CI-20190529: 20190529 CI_DRM_12668: c43f5b8a56e821d415239c615237ae4f8b994fcb @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7143: c7b12dcc460fc2348e1fa7f4dcb791bb82e29e44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_113504v2: c43f5b8a56e821d415239c615237ae4f8b994fcb @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits cbf6fa22448c drm/i915: Prefix hex numbers with 0x df5759fa3252 drm/i915: Include stepping informaiton in device info dump == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/index.html [-- Attachment #2: Type: text/html, Size: 2101 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala ` (2 preceding siblings ...) 2023-01-30 23:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) Patchwork @ 2023-01-31 5:54 ` Patchwork 2023-01-31 7:11 ` [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Jani Nikula 4 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-01-31 5:54 UTC (permalink / raw) To: Ville Syrjala; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 23187 bytes --] == Series Details == Series: series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) URL : https://patchwork.freedesktop.org/series/113504/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12668_full -> Patchwork_113504v2_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_113504v2_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_113504v2_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/index.html Participating hosts (11 -> 11) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_113504v2_full: ### IGT changes ### #### Possible regressions #### * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-glk: [PASS][1] -> [TIMEOUT][2] +2 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html Known issues ------------ Here are the changes found in Patchwork_113504v2_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][3] -> [FAIL][4] ([i915#2842]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk6/igt@gem_exec_fair@basic-pace-share@rcs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_lmem_swapping@verify-random: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk9/igt@gem_lmem_swapping@verify-random.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#3886]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk9/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][7] ([fdo#109271]) +45 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk9/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size: - shard-glk: [PASS][8] -> [FAIL][9] ([i915#2346]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][10] -> [FAIL][11] ([i915#79]) +1 similar issue [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#658]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk9/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_vblank@pipe-d-wait-idle: - shard-glk: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#533]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk9/igt@kms_vblank@pipe-d-wait-idle.html * igt@perf@enable-disable: - shard-glk: [PASS][14] -> [TIMEOUT][15] ([i915#6943]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk5/igt@perf@enable-disable.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk6/igt@perf@enable-disable.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - {shard-rkl}: [FAIL][16] ([i915#7742]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html * igt@fbdev@read: - {shard-rkl}: [SKIP][18] ([i915#2582]) -> [PASS][19] +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-3/igt@fbdev@read.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@fbdev@read.html - {shard-tglu}: [SKIP][20] ([i915#2582]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-tglu-6/igt@fbdev@read.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-tglu-8/igt@fbdev@read.html * igt@gem_bad_reloc@negative-reloc-lut: - {shard-rkl}: [SKIP][22] ([i915#3281]) -> [PASS][23] +3 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_exec_fair@basic-none-vip@rcs0: - {shard-rkl}: [FAIL][24] ([i915#2842]) -> [PASS][25] +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-5/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gen9_exec_parse@bb-large: - {shard-rkl}: [SKIP][26] ([i915#2527]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-4/igt@gen9_exec_parse@bb-large.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-5/igt@gen9_exec_parse@bb-large.html * igt@i915_pm_rpm@modeset-lpsp-stress: - {shard-rkl}: [SKIP][28] ([i915#1397]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-2/igt@i915_pm_rpm@modeset-lpsp-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html - {shard-dg1}: [SKIP][30] ([i915#1397]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-dg1-17/igt@i915_pm_rpm@modeset-lpsp-stress.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress.html * {igt@i915_power@sanity}: - {shard-rkl}: [SKIP][32] ([i915#7984]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-4/igt@i915_power@sanity.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-5/igt@i915_power@sanity.html * igt@i915_selftest@live@uncore: - {shard-dg1}: [ABORT][34] -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-dg1-18/igt@i915_selftest@live@uncore.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-dg1-14/igt@i915_selftest@live@uncore.html * igt@kms_atomic@atomic_plane_damage: - {shard-rkl}: [SKIP][36] ([i915#4098]) -> [PASS][37] +1 similar issue [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-3/igt@kms_atomic@atomic_plane_damage.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@kms_atomic@atomic_plane_damage.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-glk: [FAIL][38] ([i915#5138]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-glk7/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-glk8/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs: - {shard-tglu}: [SKIP][40] ([i915#7651]) -> [PASS][41] +7 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-tglu-6/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-tglu-8/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_rc_ccs.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: - {shard-rkl}: [SKIP][42] ([i915#1849] / [i915#4098]) -> [PASS][43] +11 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html - {shard-tglu}: [SKIP][44] ([i915#1849]) -> [PASS][45] +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_psr@cursor_render: - {shard-rkl}: [SKIP][46] ([i915#1072]) -> [PASS][47] [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-2/igt@kms_psr@cursor_render.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@kms_psr@cursor_render.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - {shard-rkl}: [SKIP][48] ([i915#5461]) -> [PASS][49] [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c: - {shard-tglu}: [SKIP][50] ([fdo#109274]) -> [PASS][51] [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-tglu-6/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-tglu-8/igt@kms_universal_plane@universal-plane-pageflip-windowed-pipe-c.html * igt@kms_vblank@pipe-b-accuracy-idle: - {shard-rkl}: [SKIP][52] ([i915#1845] / [i915#4098]) -> [PASS][53] +12 similar issues [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-2/igt@kms_vblank@pipe-b-accuracy-idle.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-6/igt@kms_vblank@pipe-b-accuracy-idle.html * igt@kms_vblank@pipe-c-ts-continuation-suspend: - {shard-tglu}: [SKIP][54] ([i915#1845] / [i915#7651]) -> [PASS][55] +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-tglu-6/igt@kms_vblank@pipe-c-ts-continuation-suspend.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-tglu-8/igt@kms_vblank@pipe-c-ts-continuation-suspend.html * igt@perf@gen12-oa-tlb-invalidate: - {shard-rkl}: [SKIP][56] ([fdo#109289]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12668/shard-rkl-5/igt@perf@gen12-oa-tlb-invalidate.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/shard-rkl-3/igt@perf@gen12-oa-tlb-invalidate.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2232]: https://gitlab.freedesktop.org/drm/intel/issues/2232 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6344]: https://gitlab.freedesktop.org/drm/intel/issues/6344 [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6943]: https://gitlab.freedesktop.org/drm/intel/issues/6943 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7037]: https://gitlab.freedesktop.org/drm/intel/issues/7037 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128 [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294 [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 Build changes ------------- * Linux: CI_DRM_12668 -> Patchwork_113504v2 CI-20190529: 20190529 CI_DRM_12668: c43f5b8a56e821d415239c615237ae4f8b994fcb @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7143: c7b12dcc460fc2348e1fa7f4dcb791bb82e29e44 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_113504v2: c43f5b8a56e821d415239c615237ae4f8b994fcb @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_113504v2/index.html [-- Attachment #2: Type: text/html, Size: 16454 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala ` (3 preceding siblings ...) 2023-01-31 5:54 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-01-31 7:11 ` Jani Nikula 2023-01-31 7:12 ` Jani Nikula 4 siblings, 1 reply; 8+ messages in thread From: Jani Nikula @ 2023-01-31 7:11 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Mon, 30 Jan 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: > From: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Dump the stepping information alongside all the other device > info. Might avoid some guesswork when reading logs. > > Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Reviewed-by: Jani Nikula <jani.nikula@intel.com> > --- > drivers/gpu/drm/i915/intel_device_info.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c > index 98769e5f2c3d..599c6d399de4 100644 > --- a/drivers/gpu/drm/i915/intel_device_info.c > +++ b/drivers/gpu/drm/i915/intel_device_info.c > @@ -119,6 +119,11 @@ void intel_device_info_print(const struct intel_device_info *info, > drm_printf(p, "display version: %u\n", > runtime->display.ip.ver); > > + drm_printf(p, "graphics stepping: %s\n", intel_step_name(runtime->step.graphics_step)); > + drm_printf(p, "media stepping: %s\n", intel_step_name(runtime->step.media_step)); > + drm_printf(p, "display stepping: %s\n", intel_step_name(runtime->step.display_step)); > + drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step)); > + > drm_printf(p, "gt: %d\n", info->gt); > drm_printf(p, "memory-regions: %x\n", runtime->memory_regions); > drm_printf(p, "page-sizes: %x\n", runtime->page_sizes); -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump 2023-01-31 7:11 ` [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Jani Nikula @ 2023-01-31 7:12 ` Jani Nikula 0 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-01-31 7:12 UTC (permalink / raw) To: Ville Syrjala, intel-gfx On Tue, 31 Jan 2023, Jani Nikula <jani.nikula@linux.intel.com> wrote: > On Mon, 30 Jan 2023, Ville Syrjala <ville.syrjala@linux.intel.com> wrote: >> From: Ville Syrjälä <ville.syrjala@linux.intel.com> >> >> Dump the stepping information alongside all the other device >> info. Might avoid some guesswork when reading logs. >> >> Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com> > > Reviewed-by: Jani Nikula <jani.nikula@intel.com> *information in the subject line, can be fixed while applying. > >> --- >> drivers/gpu/drm/i915/intel_device_info.c | 5 +++++ >> 1 file changed, 5 insertions(+) >> >> diff --git a/drivers/gpu/drm/i915/intel_device_info.c b/drivers/gpu/drm/i915/intel_device_info.c >> index 98769e5f2c3d..599c6d399de4 100644 >> --- a/drivers/gpu/drm/i915/intel_device_info.c >> +++ b/drivers/gpu/drm/i915/intel_device_info.c >> @@ -119,6 +119,11 @@ void intel_device_info_print(const struct intel_device_info *info, >> drm_printf(p, "display version: %u\n", >> runtime->display.ip.ver); >> >> + drm_printf(p, "graphics stepping: %s\n", intel_step_name(runtime->step.graphics_step)); >> + drm_printf(p, "media stepping: %s\n", intel_step_name(runtime->step.media_step)); >> + drm_printf(p, "display stepping: %s\n", intel_step_name(runtime->step.display_step)); >> + drm_printf(p, "base die stepping: %s\n", intel_step_name(runtime->step.basedie_step)); >> + >> drm_printf(p, "gt: %d\n", info->gt); >> drm_printf(p, "memory-regions: %x\n", runtime->memory_regions); >> drm_printf(p, "page-sizes: %x\n", runtime->page_sizes); -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-01-31 7:12 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-01-30 18:17 [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Ville Syrjala 2023-01-30 18:17 ` [Intel-gfx] [PATCH 2/2] drm/i915: Prefix hex numbers with 0x Ville Syrjala 2023-01-31 7:12 ` Jani Nikula 2023-01-30 21:04 ` [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump Patchwork 2023-01-30 23:51 ` [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Include stepping informaiton in device info dump (rev2) Patchwork 2023-01-31 5:54 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2023-01-31 7:11 ` [Intel-gfx] [PATCH 1/2] drm/i915: Include stepping informaiton in device info dump Jani Nikula 2023-01-31 7:12 ` Jani Nikula
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox