Message ID | 20240906143306.15937-1-ville.syrjala@linux.intel.com (mailing list archive) |
---|---|
Headers | show |
Series | drm/i915: Some intel_display conversions | expand |
On Fri, Sep 06, 2024 at 04:08:52PM -0000, Patchwork wrote: > == Series Details == > > Series: drm/i915: Some intel_display conversions > URL : https://patchwork.freedesktop.org/series/138331/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15373 -> Patchwork_138331v1 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_138331v1 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_138331v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_138331v1/index.html > > Participating hosts (42 -> 39) > ------------------------------ > > Additional (1): fi-elk-e7500 > Missing (4): fi-glk-j4005 fi-kbl-8809g fi-snb-2520m fi-bsw-n3050 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_138331v1: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live: > - bat-adlp-9: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15373/bat-adlp-9/igt@i915_selftest@live.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138331v1/bat-adlp-9/igt@i915_selftest@live.html Some unrelated thing. Please proceed to shard testing.
Hi , https://patchwork.freedesktop.org/series/138331/ -Re-reported. Thanks, Tejasree -----Original Message----- From: I915-ci-infra <i915-ci-infra-bounces@lists.freedesktop.org> On Behalf Of Ville Syrjälä Sent: Monday, September 9, 2024 7:46 PM To: intel-gfx@lists.freedesktop.org Cc: I915-ci-infra@lists.freedesktop.org Subject: Re: ✗ Fi.CI.BAT: failure for drm/i915: Some intel_display conversions On Fri, Sep 06, 2024 at 04:08:52PM -0000, Patchwork wrote: > == Series Details == > > Series: drm/i915: Some intel_display conversions > URL : https://patchwork.freedesktop.org/series/138331/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_15373 -> Patchwork_138331v1 > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with Patchwork_138331v1 absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in Patchwork_138331v1, please notify your bug team (I915-ci-infra@lists.freedesktop.org) 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_138331v1/index.html > > Participating hosts (42 -> 39) > ------------------------------ > > Additional (1): fi-elk-e7500 > Missing (4): fi-glk-j4005 fi-kbl-8809g fi-snb-2520m fi-bsw-n3050 > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in Patchwork_138331v1: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@i915_selftest@live: > - bat-adlp-9: [PASS][1] -> [INCOMPLETE][2] > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15373/bat-adlp-9/igt@i915_selftest@live.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_138331v1/bat-adlp-9 > /igt@i915_selftest@live.html Some unrelated thing. Please proceed to shard testing. -- Ville Syrjälä Intel
From: Ville Syrjälä <ville.syrjala@linux.intel.com> I somehow ended up in the power domains code and decided to see how much of it could be converted to use struct intel_display. The result was still too messy but at least I managed to convert some of the dependecies in somewhat decent way. Here they are. Ville Syrjälä (6): drm/i915/cdclk: Add missing braces drm/i915/cdclk: Convert CDCLK code to intel_display drm/i915/power: Convert low level DC state code to intel_display drm/i915/vga: Convert VGA code to intel_display drm/i915/power: Convert "i830 power well" code to intel_display drm/i915/dmc: Convert DMC code to intel_display drivers/gpu/drm/i915/display/intel_cdclk.c | 1171 +++++++++-------- drivers/gpu/drm/i915/display/intel_cdclk.h | 24 +- drivers/gpu/drm/i915/display/intel_display.c | 86 +- drivers/gpu/drm/i915/display/intel_display.h | 5 +- .../drm/i915/display/intel_display_debugfs.c | 4 +- .../drm/i915/display/intel_display_device.c | 2 +- .../drm/i915/display/intel_display_driver.c | 34 +- .../drm/i915/display/intel_display_power.c | 93 +- .../i915/display/intel_display_power_well.c | 238 ++-- .../i915/display/intel_display_power_well.h | 15 +- drivers/gpu/drm/i915/display/intel_dmc.c | 391 +++--- drivers/gpu/drm/i915/display/intel_dmc.h | 26 +- drivers/gpu/drm/i915/display/intel_dmc_wl.c | 4 +- .../drm/i915/display/intel_modeset_setup.c | 3 +- drivers/gpu/drm/i915/display/intel_vga.c | 45 +- drivers/gpu/drm/i915/display/intel_vga.h | 14 +- drivers/gpu/drm/i915/display/skl_watermark.c | 3 +- drivers/gpu/drm/i915/i915_driver.c | 6 +- drivers/gpu/drm/i915/i915_gpu_error.c | 2 +- drivers/gpu/drm/i915/i915_suspend.c | 3 +- drivers/gpu/drm/xe/display/xe_display.c | 4 +- 21 files changed, 1137 insertions(+), 1036 deletions(-)