* [Intel-gfx] [PATCH 0/1] drm/i915/debugfs: New debugfs for display clock frequencies
@ 2023-04-12 9:09 Bhanuprakash Modem
2023-04-12 9:09 ` [Intel-gfx] [PATCH 1/1] " Bhanuprakash Modem
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Bhanuprakash Modem @ 2023-04-12 9:09 UTC (permalink / raw)
To: intel-gfx, jani.nikula
Instead of mixing display & non-display stuff together, move
display specific clock info to new debugfs. This patch will
move Current & Max cdclk and Max pixel clock frequency info
to the new debugfs file "i915_display_clock_info".
Test-with: 20230412090557.810996-1-bhanuprakash.modem@intel.com
Bhanuprakash Modem (1):
drm/i915/debugfs: New debugfs for display clock frequencies
.../gpu/drm/i915/display/intel_display_debugfs.c | 16 ++++++++++++++++
drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ----
2 files changed, 16 insertions(+), 4 deletions(-)
--
2.40.0
^ permalink raw reply [flat|nested] 8+ messages in thread* [Intel-gfx] [PATCH 1/1] drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:09 [Intel-gfx] [PATCH 0/1] drm/i915/debugfs: New debugfs for display clock frequencies Bhanuprakash Modem @ 2023-04-12 9:09 ` Bhanuprakash Modem 2023-04-12 9:22 ` Jani Nikula 2023-04-12 12:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-12 20:07 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 1 reply; 8+ messages in thread From: Bhanuprakash Modem @ 2023-04-12 9:09 UTC (permalink / raw) To: intel-gfx, jani.nikula Instead of mixing display & non-display stuff together, move display specific clock info to new debugfs. This patch will move Current & Max cdclk and Max pixel clock frequency info to the new debugfs file "i915_display_clock_info". Cc: Jani Nikula <jani.nikula@intel.com> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> --- .../gpu/drm/i915/display/intel_display_debugfs.c | 16 ++++++++++++++++ drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ---- 2 files changed, 16 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c index 45113ae107ba..8e725d0c79d1 100644 --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c @@ -800,6 +800,21 @@ static int i915_dp_mst_info(struct seq_file *m, void *unused) return 0; } +static int i915_display_clock_info(struct seq_file *m, void *unused) +{ + struct drm_i915_private *i915 = node_to_i915(m->private); + + drm_modeset_lock_all(&i915->drm); + + seq_printf(m, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); + seq_printf(m, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); + seq_printf(m, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); + + drm_modeset_unlock_all(&i915->drm); + + return 0; +} + static ssize_t i915_displayport_test_active_write(struct file *file, const char __user *ubuf, size_t len, loff_t *offp) @@ -1065,6 +1080,7 @@ static const struct drm_info_list intel_display_debugfs_list[] = { {"i915_dp_mst_info", i915_dp_mst_info, 0}, {"i915_ddb_info", i915_ddb_info, 0}, {"i915_lpsp_status", i915_lpsp_status, 0}, + {"i915_disply_clock_info", i915_display_clock_info, 0}, }; static const struct { diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c index 80dbbef86b1d..8814ce238cc5 100644 --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c @@ -393,10 +393,6 @@ void intel_gt_pm_frequency_dump(struct intel_gt *gt, struct drm_printer *p) drm_puts(p, "no P-state info available\n"); } - drm_printf(p, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); - drm_printf(p, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); - drm_printf(p, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); - intel_runtime_pm_put(uncore->rpm, wakeref); } -- 2.40.0 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:09 ` [Intel-gfx] [PATCH 1/1] " Bhanuprakash Modem @ 2023-04-12 9:22 ` Jani Nikula 2023-04-12 10:49 ` Modem, Bhanuprakash 2023-04-14 15:51 ` Lucas De Marchi 0 siblings, 2 replies; 8+ messages in thread From: Jani Nikula @ 2023-04-12 9:22 UTC (permalink / raw) To: Bhanuprakash Modem, intel-gfx On Wed, 12 Apr 2023, Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: > Instead of mixing display & non-display stuff together, move > display specific clock info to new debugfs. This patch will > move Current & Max cdclk and Max pixel clock frequency info > to the new debugfs file "i915_display_clock_info". > > Cc: Jani Nikula <jani.nikula@intel.com> > Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> > --- > .../gpu/drm/i915/display/intel_display_debugfs.c | 16 ++++++++++++++++ > drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ---- > 2 files changed, 16 insertions(+), 4 deletions(-) > > diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c > index 45113ae107ba..8e725d0c79d1 100644 > --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c > +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c > @@ -800,6 +800,21 @@ static int i915_dp_mst_info(struct seq_file *m, void *unused) > return 0; > } > > +static int i915_display_clock_info(struct seq_file *m, void *unused) > +{ > + struct drm_i915_private *i915 = node_to_i915(m->private); > + > + drm_modeset_lock_all(&i915->drm); > + > + seq_printf(m, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); > + seq_printf(m, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); > + seq_printf(m, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); > + > + drm_modeset_unlock_all(&i915->drm); > + > + return 0; > +} This is all cdclk related, so we should probably put these to intel_cdclk.c. See intel_dmc_debugfs_register() and how it's called, for reference. > + > static ssize_t i915_displayport_test_active_write(struct file *file, > const char __user *ubuf, > size_t len, loff_t *offp) > @@ -1065,6 +1080,7 @@ static const struct drm_info_list intel_display_debugfs_list[] = { > {"i915_dp_mst_info", i915_dp_mst_info, 0}, > {"i915_ddb_info", i915_ddb_info, 0}, > {"i915_lpsp_status", i915_lpsp_status, 0}, > + {"i915_disply_clock_info", i915_display_clock_info, 0}, Maybe "i915_cdclk_info"? (Also, disply has a typo there.) > }; > > static const struct { > diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > index 80dbbef86b1d..8814ce238cc5 100644 > --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c > @@ -393,10 +393,6 @@ void intel_gt_pm_frequency_dump(struct intel_gt *gt, struct drm_printer *p) > drm_puts(p, "no P-state info available\n"); > } > > - drm_printf(p, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); > - drm_printf(p, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); > - drm_printf(p, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); > - Maybe leave these in for now, doesn't hurt anyone, can be removed in a separate patch later. BR, Jani. > intel_runtime_pm_put(uncore->rpm, wakeref); > } -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:22 ` Jani Nikula @ 2023-04-12 10:49 ` Modem, Bhanuprakash 2023-04-14 15:51 ` Lucas De Marchi 1 sibling, 0 replies; 8+ messages in thread From: Modem, Bhanuprakash @ 2023-04-12 10:49 UTC (permalink / raw) To: Jani Nikula, intel-gfx Hi Jani, Thanks for the review, I have floated a new rev [*] by addressing your comments. [*]: https://patchwork.freedesktop.org/series/116372/ - Bhanu On Wed-12-04-2023 02:52 pm, Jani Nikula wrote: > On Wed, 12 Apr 2023, Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: >> Instead of mixing display & non-display stuff together, move >> display specific clock info to new debugfs. This patch will >> move Current & Max cdclk and Max pixel clock frequency info >> to the new debugfs file "i915_display_clock_info". >> >> Cc: Jani Nikula <jani.nikula@intel.com> >> Signed-off-by: Bhanuprakash Modem <bhanuprakash.modem@intel.com> >> --- >> .../gpu/drm/i915/display/intel_display_debugfs.c | 16 ++++++++++++++++ >> drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c | 4 ---- >> 2 files changed, 16 insertions(+), 4 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display_debugfs.c b/drivers/gpu/drm/i915/display/intel_display_debugfs.c >> index 45113ae107ba..8e725d0c79d1 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display_debugfs.c >> +++ b/drivers/gpu/drm/i915/display/intel_display_debugfs.c >> @@ -800,6 +800,21 @@ static int i915_dp_mst_info(struct seq_file *m, void *unused) >> return 0; >> } >> >> +static int i915_display_clock_info(struct seq_file *m, void *unused) >> +{ >> + struct drm_i915_private *i915 = node_to_i915(m->private); >> + >> + drm_modeset_lock_all(&i915->drm); >> + >> + seq_printf(m, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); >> + seq_printf(m, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); >> + seq_printf(m, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); >> + >> + drm_modeset_unlock_all(&i915->drm); >> + >> + return 0; >> +} > > This is all cdclk related, so we should probably put these to > intel_cdclk.c. See intel_dmc_debugfs_register() and how it's called, for > reference. > >> + >> static ssize_t i915_displayport_test_active_write(struct file *file, >> const char __user *ubuf, >> size_t len, loff_t *offp) >> @@ -1065,6 +1080,7 @@ static const struct drm_info_list intel_display_debugfs_list[] = { >> {"i915_dp_mst_info", i915_dp_mst_info, 0}, >> {"i915_ddb_info", i915_ddb_info, 0}, >> {"i915_lpsp_status", i915_lpsp_status, 0}, >> + {"i915_disply_clock_info", i915_display_clock_info, 0}, > > Maybe "i915_cdclk_info"? (Also, disply has a typo there.) > >> }; >> >> static const struct { >> diff --git a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> index 80dbbef86b1d..8814ce238cc5 100644 >> --- a/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> +++ b/drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.c >> @@ -393,10 +393,6 @@ void intel_gt_pm_frequency_dump(struct intel_gt *gt, struct drm_printer *p) >> drm_puts(p, "no P-state info available\n"); >> } >> >> - drm_printf(p, "Current CD clock frequency: %d kHz\n", i915->display.cdclk.hw.cdclk); >> - drm_printf(p, "Max CD clock frequency: %d kHz\n", i915->display.cdclk.max_cdclk_freq); >> - drm_printf(p, "Max pixel clock frequency: %d kHz\n", i915->max_dotclk_freq); >> - > > Maybe leave these in for now, doesn't hurt anyone, can be removed in a > separate patch later. > > BR, > Jani. > >> intel_runtime_pm_put(uncore->rpm, wakeref); >> } > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:22 ` Jani Nikula 2023-04-12 10:49 ` Modem, Bhanuprakash @ 2023-04-14 15:51 ` Lucas De Marchi 2023-04-18 9:15 ` Jani Nikula 1 sibling, 1 reply; 8+ messages in thread From: Lucas De Marchi @ 2023-04-14 15:51 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx On Wed, Apr 12, 2023 at 12:22:51PM +0300, Jani Nikula wrote: >On Wed, 12 Apr 2023, Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: >> + >> static ssize_t i915_displayport_test_active_write(struct file *file, >> const char __user *ubuf, >> size_t len, loff_t *offp) >> @@ -1065,6 +1080,7 @@ static const struct drm_info_list intel_display_debugfs_list[] = { >> {"i915_dp_mst_info", i915_dp_mst_info, 0}, >> {"i915_ddb_info", i915_ddb_info, 0}, >> {"i915_lpsp_status", i915_lpsp_status, 0}, >> + {"i915_disply_clock_info", i915_display_clock_info, 0}, > >Maybe "i915_cdclk_info"? (Also, disply has a typo there.) hijacking this a little bit since I saw the new version of this commit applied without the display_ part. Should we consider moving all the display-related debugfs files to display/ directory? I think that would make it clearer for the xe integration while also cleaning up a little bit the various files on i915. Downside would be synchronizing this with the tools reading those files. I guess it's only igt and CI that care about them? Lucas De Marchi ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH 1/1] drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-14 15:51 ` Lucas De Marchi @ 2023-04-18 9:15 ` Jani Nikula 0 siblings, 0 replies; 8+ messages in thread From: Jani Nikula @ 2023-04-18 9:15 UTC (permalink / raw) To: Lucas De Marchi; +Cc: intel-gfx On Fri, 14 Apr 2023, Lucas De Marchi <lucas.demarchi@intel.com> wrote: > On Wed, Apr 12, 2023 at 12:22:51PM +0300, Jani Nikula wrote: >>On Wed, 12 Apr 2023, Bhanuprakash Modem <bhanuprakash.modem@intel.com> wrote: >>> + >>> static ssize_t i915_displayport_test_active_write(struct file *file, >>> const char __user *ubuf, >>> size_t len, loff_t *offp) >>> @@ -1065,6 +1080,7 @@ static const struct drm_info_list intel_display_debugfs_list[] = { >>> {"i915_dp_mst_info", i915_dp_mst_info, 0}, >>> {"i915_ddb_info", i915_ddb_info, 0}, >>> {"i915_lpsp_status", i915_lpsp_status, 0}, >>> + {"i915_disply_clock_info", i915_display_clock_info, 0}, >> >>Maybe "i915_cdclk_info"? (Also, disply has a typo there.) > > hijacking this a little bit since I saw the new version of this commit > applied without the display_ part. Should we consider moving all the > display-related debugfs files to display/ directory? I think that would > make it clearer for the xe integration while also cleaning up a little > bit the various files on i915. Downside would be synchronizing this with > the tools reading those files. I guess it's only igt and CI that care about > them? While I agree in principle, I see potential for inflicting a lot of paper cuts here. We've moved individual files in the past, and it's generally been fine. The pain is manageable. But seems like moving tons of files needs to have some transition period with symlinks in kernel or igt checking both places or something. Imagine bisecting a kernel bug using an igt test, and needing two different igt builds depending on where the file is. On the other hand, maybe display/ directory is something that should be reserved for drm to create. Anythin driver specific should be prefixed. So either you'd have files named i915_display/* or display/i915_*. Needs consideration. I'm just leaning towards avoiding trouble at this time. BR, Jani. -- Jani Nikula, Intel Open Source Graphics Center ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:09 [Intel-gfx] [PATCH 0/1] drm/i915/debugfs: New debugfs for display clock frequencies Bhanuprakash Modem 2023-04-12 9:09 ` [Intel-gfx] [PATCH 1/1] " Bhanuprakash Modem @ 2023-04-12 12:19 ` Patchwork 2023-04-12 20:07 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-04-12 12:19 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 7614 bytes --] == Series Details == Series: drm/i915/debugfs: New debugfs for display clock frequencies URL : https://patchwork.freedesktop.org/series/116369/ State : success == Summary == CI Bug Log - changes from CI_DRM_12995 -> Patchwork_116369v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/index.html Participating hosts (37 -> 36) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_116369v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_pm_rps@basic-api: - bat-dg2-11: [PASS][1] -> [FAIL][2] ([i915#8308]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg2-11/igt@i915_pm_rps@basic-api.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-dg2-11/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - fi-apl-guc: [PASS][3] -> [DMESG-FAIL][4] ([i915#5334]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@migrate: - bat-dg2-11: [PASS][5] -> [DMESG-WARN][6] ([i915#7699]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg2-11/igt@i915_selftest@live@migrate.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_selftest@live@requests: - bat-rpls-2: [PASS][7] -> [ABORT][8] ([i915#4983] / [i915#7913]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-2/igt@i915_selftest@live@requests.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-rpls-2/igt@i915_selftest@live@requests.html * igt@i915_selftest@live@slpc: - bat-rpls-1: [PASS][9] -> [DMESG-FAIL][10] ([i915#6367]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-1/igt@i915_selftest@live@slpc.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-rpls-1/igt@i915_selftest@live@slpc.html - bat-adln-1: NOTRUN -> [DMESG-FAIL][11] ([i915#6997]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-adln-1/igt@i915_selftest@live@slpc.html * igt@i915_suspend@basic-s3-without-i915: - bat-adls-5: [PASS][12] -> [FAIL][13] ([fdo#103375]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - bat-adln-1: NOTRUN -> [SKIP][14] ([i915#7828]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-adln-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - bat-rpls-1: NOTRUN -> [SKIP][15] ([i915#7828]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-rpls-1: NOTRUN -> [SKIP][16] ([i915#1845]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s3@smem: - bat-rpls-1: [ABORT][17] ([i915#6687] / [i915#7978]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_module_load@load: - fi-elk-e7500: [DMESG-WARN][19] ([i915#4391]) -> [PASS][20] [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-elk-e7500/igt@i915_module_load@load.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/fi-elk-e7500/igt@i915_module_load@load.html * igt@i915_module_load@reload: - fi-kbl-soraka: [DMESG-WARN][21] ([i915#1982]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-kbl-soraka/igt@i915_module_load@reload.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/fi-kbl-soraka/igt@i915_module_load@reload.html * igt@i915_selftest@live@gt_heartbeat: - fi-kbl-soraka: [DMESG-FAIL][23] ([i915#5334] / [i915#7872]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/fi-kbl-soraka/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_lrc: - bat-adln-1: [INCOMPLETE][25] ([i915#7609]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-adln-1/igt@i915_selftest@live@gt_lrc.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-adln-1/igt@i915_selftest@live@gt_lrc.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1: - bat-dg2-8: [FAIL][27] ([i915#7932]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-d-dp-1.html [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [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#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6997]: https://gitlab.freedesktop.org/drm/intel/issues/6997 [i915#7609]: https://gitlab.freedesktop.org/drm/intel/issues/7609 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 Build changes ------------- * IGT: IGT_7251 -> IGTPW_8786 * Linux: CI_DRM_12995 -> Patchwork_116369v1 CI-20190529: 20190529 CI_DRM_12995: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8786: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8786/index.html IGT_7251: 55fa959aad79b3771350a801c1c2dbd4e5034102 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_116369v1: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits d582f1dbe4f8 drm/i915/debugfs: New debugfs for display clock frequencies == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/index.html [-- Attachment #2: Type: text/html, Size: 8745 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915/debugfs: New debugfs for display clock frequencies 2023-04-12 9:09 [Intel-gfx] [PATCH 0/1] drm/i915/debugfs: New debugfs for display clock frequencies Bhanuprakash Modem 2023-04-12 9:09 ` [Intel-gfx] [PATCH 1/1] " Bhanuprakash Modem 2023-04-12 12:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork @ 2023-04-12 20:07 ` Patchwork 2 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2023-04-12 20:07 UTC (permalink / raw) To: Modem, Bhanuprakash; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 16729 bytes --] == Series Details == Series: drm/i915/debugfs: New debugfs for display clock frequencies URL : https://patchwork.freedesktop.org/series/116369/ State : failure == Summary == CI Bug Log - changes from CI_DRM_12995_full -> Patchwork_116369v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_116369v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_116369v1_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_116369v1_full: ### IGT changes ### #### Possible regressions #### * igt@kms_invalid_mode@zero-clock: - shard-apl: NOTRUN -> [FAIL][1] +11 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-apl1/igt@kms_invalid_mode@zero-clock.html - shard-snb: NOTRUN -> [FAIL][2] +11 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-snb5/igt@kms_invalid_mode@zero-clock.html * igt@kms_invalid_mode@zero-vdisplay: - shard-glk: NOTRUN -> [FAIL][3] +11 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-glk2/igt@kms_invalid_mode@zero-vdisplay.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_invalid_mode@bad-hsync-start: - {shard-dg1}: NOTRUN -> [FAIL][4] +5 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-dg1-18/igt@kms_invalid_mode@bad-hsync-start.html * igt@kms_invalid_mode@zero-clock: - {shard-rkl}: NOTRUN -> [FAIL][5] +10 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-rkl-2/igt@kms_invalid_mode@zero-clock.html * igt@kms_invalid_mode@zero-vdisplay: - {shard-tglu}: NOTRUN -> [FAIL][6] +10 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-tglu-9/igt@kms_invalid_mode@zero-vdisplay.html Known issues ------------ Here are the changes found in Patchwork_116369v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace@rcs0: - shard-glk: [PASS][7] -> [FAIL][8] ([i915#2842]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk6/igt@gem_exec_fair@basic-pace@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-glk3/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-snb: NOTRUN -> [SKIP][9] ([fdo#109271]) +13 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-snb5/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [PASS][10] -> [SKIP][11] ([fdo#109271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl1/igt@i915_pm_dc@dc9-dpms.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-apl4/igt@i915_pm_dc@dc9-dpms.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2346]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][14] -> [FAIL][15] ([i915#2346]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#79]) +1 similar issue [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html #### Possible fixes #### * igt@gem_exec_fair@basic-flow@rcs0: - {shard-tglu}: [FAIL][18] ([i915#2842]) -> [PASS][19] +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-7/igt@gem_exec_fair@basic-flow@rcs0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-tglu-10/igt@gem_exec_fair@basic-flow@rcs0.html * igt@gem_exec_fair@basic-pace@bcs0: - {shard-rkl}: [FAIL][20] ([i915#2842]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - {shard-tglu}: [ABORT][22] ([i915#7975]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-tglu-6/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [ABORT][24] ([i915#4528]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-glk: [FAIL][26] ([i915#72]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-glk4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@single-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][28] ([i915#8011]) -> [PASS][29] [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-rkl-7/igt@kms_cursor_legacy@single-bo@pipe-b.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-rkl-2/igt@kms_cursor_legacy@single-bo@pipe-b.html - {shard-dg1}: [INCOMPLETE][30] ([i915#8011] / [i915#8347]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-dg1-14/igt@kms_cursor_legacy@single-bo@pipe-b.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-dg1-15/igt@kms_cursor_legacy@single-bo@pipe-b.html * igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1: - {shard-tglu}: [FAIL][32] ([i915#8292]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12995/shard-tglu-2/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_116369v1/shard-tglu-6/igt@kms_plane_scaling@i915-max-src-size@pipe-a-hdmi-a-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [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#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [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#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [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#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#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#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [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#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7959]: https://gitlab.freedesktop.org/drm/intel/issues/7959 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8150]: https://gitlab.freedesktop.org/drm/intel/issues/8150 [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8308]: https://gitlab.freedesktop.org/drm/intel/issues/8308 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 Build changes ------------- * IGT: IGT_7251 -> IGTPW_8786 * Linux: CI_DRM_12995 -> Patchwork_116369v1 CI-20190529: 20190529 CI_DRM_12995: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8786: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8786/index.html IGT_7251: 55fa959aad79b3771350a801c1c2dbd4e5034102 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_116369v1: 0c5be3027d7ac4a8b107bf1113867744aa3bb440 @ 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_116369v1/index.html [-- Attachment #2: Type: text/html, Size: 10756 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-04-18 9:15 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-04-12 9:09 [Intel-gfx] [PATCH 0/1] drm/i915/debugfs: New debugfs for display clock frequencies Bhanuprakash Modem 2023-04-12 9:09 ` [Intel-gfx] [PATCH 1/1] " Bhanuprakash Modem 2023-04-12 9:22 ` Jani Nikula 2023-04-12 10:49 ` Modem, Bhanuprakash 2023-04-14 15:51 ` Lucas De Marchi 2023-04-18 9:15 ` Jani Nikula 2023-04-12 12:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success for " Patchwork 2023-04-12 20:07 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox