Re: [Intel-gfx] [PATCH] drm/i915/tgl: Fix Media power gate sequence.

2020-11-11 Thread Chris Wilson
Quoting Rodrigo Vivi (2020-11-11 07:28:59) > Some media power gates are disabled by default. commit 5d86923060fc > ("drm/i915/tgl: Enable VD HCP/MFX sub-pipe power gating") > tried to enable it, but it duplicated an existent register. So, RC6 > sequences ended up overwriting it. > > The open quest

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state()

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state() URL : https://patchwork.freedesktop.org/series/83664/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separ

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state()

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state() URL : https://patchwork.freedesktop.org/series/83664/ State : success == Summary == CI Bug Log - changes from CI_DRM_9305 -> Patchwork_18877 ===

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev3)

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev3) URL : https://patchwork.freedesktop.org/series/83233/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9305 -> Patchwork_18878 ===

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/2] drm/i915: Introduce intel_cursor.c

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915: Introduce intel_cursor.c URL : https://patchwork.freedesktop.org/series/83704/ State : warning == Summary == $ dim checkpatch origin/drm-tip 432a0eeaffc6 drm/i915: Introduce intel_cursor.c -:27: WARNING:FILE_PATH_CHANGES: added,

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/2] drm/i915: Introduce intel_cursor.c

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915: Introduce intel_cursor.c URL : https://patchwork.freedesktop.org/series/83704/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +d

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915: Introduce intel_cursor.c

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915: Introduce intel_cursor.c URL : https://patchwork.freedesktop.org/series/83704/ State : success == Summary == CI Bug Log - changes from CI_DRM_9305 -> Patchwork_18879 Summary

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [v8,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v8,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2) URL : https://patchwork.freedesktop.org/series/83655/ State : warning == Summary == $ dim checkpatch origin/drm-tip 3642707f5f97 drm/i915/dp: Some reshuffl

[Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v8,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v8,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2) URL : https://patchwork.freedesktop.org/series/83655/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9305 -> Patchwork_18880 ==

[Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state()

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/4] drm/i915: Introduce intel_dpll_get_hw_state() URL : https://patchwork.freedesktop.org/series/83664/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9305_full -> Patchwork_18877_full =

[Intel-gfx] [PATCH] drm/i915/gt: Include semaphore status in print_request()

2020-11-11 Thread Chris Wilson
When pretty-printing the requests for debug, also so the status of any semaphore waits as part of its runnable status. Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/gt/intel_engine_cs.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/i915/gt/intel_engine_cs.c b/driver

Re: [Intel-gfx] linux-next: build failure after merge of the drm-misc tree

2020-11-11 Thread Michael S. Tsirkin
On Wed, Nov 11, 2020 at 05:10:15PM +1100, Stephen Rothwell wrote: > Hi Michael, > > On Mon, 2 Nov 2020 05:19:06 -0500 "Michael S. Tsirkin" > wrote: > > > > On Mon, Nov 02, 2020 at 12:43:27PM +1100, Stephen Rothwell wrote: > > > > > > After merging the drm-misc tree, today's linux-next build (ar

[Intel-gfx] [PATCH] drm/i915/gt: Show all active timelines for debugging

2020-11-11 Thread Chris Wilson
Include the active timelines for debugfs/i915_engine_info, so that we can see which have unready requests inflight which are not shown otherwise. Suggested-by: Tvrtko Ursulin Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/gt/intel_timeline.c | 67 drivers/gpu/drm/

[Intel-gfx] [PATCH v2] drm/i915/gt: Show all active timelines for debugging

2020-11-11 Thread Chris Wilson
Include the active timelines for debugfs/i915_engine_info, so that we can see which have unready requests inflight which are not shown otherwise. Suggested-by: Tvrtko Ursulin Signed-off-by: Chris Wilson --- drivers/gpu/drm/i915/gt/intel_timeline.c | 79 drivers/gpu/drm/

Re: [Intel-gfx] Intel i915 corruption issue Gnome EOG #146

2020-11-11 Thread Joonas Lahtinen
Quoting Jonny Grant (2020-10-30 16:05:02) > > > On 30/10/2020 10:54, Chris Wilson wrote: > > Quoting Joonas Lahtinen (2020-10-30 10:17:17) > >> + intel-gfx mailing list > >> > >> Quoting Joonas Lahtinen (2020-10-30 12:15:44) > >>> Quoting Jonny Grant (2020-10-27 22:42:19) > Hello Jani, Joona

Re: [Intel-gfx] [PATCH] drm/i915/gt: Include semaphore status in print_request()

2020-11-11 Thread Mika Kuoppala
Chris Wilson writes: > When pretty-printing the requests for debug, also so the status of any s/so/show > semaphore waits as part of its runnable status. > > Signed-off-by: Chris Wilson > --- > drivers/gpu/drm/i915/gt/intel_engine_cs.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/dr

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Handle max_bpc==16

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Handle max_bpc==16 URL : https://patchwork.freedesktop.org/series/83711/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9306 -> Patchwork_18881 Summary --- **FAILURE** Serious

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes URL : https://patchwork.freedesktop.org/series/83716/ State : warning == Summary == $ dim checkpatch origin/drm-tip 44bf94668661 drm/i915/dp: Some reshuffling in

[Intel-gfx] [PATCH] drm/i915/tgl: Fix Media power gate sequence.

2020-11-11 Thread Rodrigo Vivi
Some media power gates are disabled by default. commit 5d86923060fc ("drm/i915/tgl: Enable VD HCP/MFX sub-pipe power gating") tried to enable it, but it duplicated an existent register. So, the main PG setup sequences ended up overwriting it. So, let's now merge this to the main PG setup sequence.

Re: [Intel-gfx] [PATCH] drm/i915/tgl: Fix Media power gate sequence.

2020-11-11 Thread Chris Wilson
Quoting Rodrigo Vivi (2020-11-11 14:09:36) > Some media power gates are disabled by default. commit 5d86923060fc > ("drm/i915/tgl: Enable VD HCP/MFX sub-pipe power gating") > tried to enable it, but it duplicated an existent register. > So, the main PG setup sequences ended up overwriting it. > >

[Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes URL : https://patchwork.freedesktop.org/series/83716/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9306 -> Patchwork_18882 =

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4) URL : https://patchwork.freedesktop.org/series/82998/ State : warning == Summary == $ dim sparse --fast origin/drm-tip Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. - +./drivers/gpu

[Intel-gfx] ✓ Fi.CI.BAT: success for HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4) URL : https://patchwork.freedesktop.org/series/82998/ State : success == Summary == CI Bug Log - changes from CI_DRM_9307 -> Patchwork_18883 Summary --- *

[Intel-gfx] [PATCH 1/2] drm/i915/display: Group DC9 mask set

2020-11-11 Thread José Roberto de Souza
DC9 has a separate HW flow from the rest of the DC states and it is available in GEN9 LP platforms and on GEN11 and newer, so here moving the assignment of the mask to a single conditional block to simplifly code. Cc: Lucas De Marchi Cc: Anusha Srivatsa Signed-off-by: José Roberto de Souza ---

[Intel-gfx] [PATCH 2/2] drm/i915/display: Make get_allowed_dc_mask().max_dc set a chain of if and elses

2020-11-11 Thread José Roberto de Souza
Just following what we do in many other places, DG1 is a exception so move it to the top instead of add it inside of INTEL_GEN(dev_priv) >= 12. Cc: Lucas De Marchi Cc: Anusha Srivatsa Signed-off-by: José Roberto de Souza --- .../gpu/drm/i915/display/intel_display_power.c | 18 +++--

[Intel-gfx] [PATCH] drm/i915: Copy the plane hw state directly for Y planes

2020-11-11 Thread Ville Syrjala
From: Ville Syrjälä When doing the plane state copy from the UV plane to the Y plane let's just copy the hw state directly instead of using the original uapi state. The UV plane has already had its uapi state copied into its hw state, so this extra detour via the uapi state for the Y plane is poi

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gt: Include semaphore status in print_request()

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915/gt: Include semaphore status in print_request() URL : https://patchwork.freedesktop.org/series/83734/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9309 -> Patchwork_18884 Summary -

[Intel-gfx] ✗ Fi.CI.IGT: failure for HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: HDCP 2.2 and HDCP 1.4 Gen12 DP MST support (rev4) URL : https://patchwork.freedesktop.org/series/82998/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9307_full -> Patchwork_18883_full Summary --

[Intel-gfx] [PATCH v10 4/7] drm/i915: Add hw.pipe_mode to allow bigjoiner pipe/transcoder split

2020-11-11 Thread Manasi Navare
From: Maarten Lankhorst With bigjoiner, there will be 2 pipes driving 2 halves of 1 transcoder, because of this, we need a pipe_mode for various calculations, including for example watermarks, plane clipping, etc. v11: * set pipe mode only if active (Manasi) v10: * remove redundant pipe_mode ass

[Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915/gt: Show all active timelines for debugging (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915/gt: Show all active timelines for debugging (rev2) URL : https://patchwork.freedesktop.org/series/83736/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9309 -> Patchwork_18885 Summary --

[Intel-gfx] ✗ Fi.CI.BUILD: failure for drm/i915/tgl: Fix Media power gate sequence. (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915/tgl: Fix Media power gate sequence. (rev2) URL : https://patchwork.freedesktop.org/series/83723/ State : failure == Summary == Applying: drm/i915/tgl: Fix Media power gate sequence. Using index info to reconstruct a base tree... M drivers/gpu/drm/i91

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev4) URL : https://patchwork.freedesktop.org/series/83233/ State : success == Summary == CI Bug Log - changes from CI_DRM_9309 -> Patchwork_18886 ===

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/2] drm/i915/display: Group DC9 mask set

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915/display: Group DC9 mask set URL : https://patchwork.freedesktop.org/series/83739/ State : success == Summary == CI Bug Log - changes from CI_DRM_9309 -> Patchwork_1 Summar

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Copy the plane hw state directly for Y planes

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Copy the plane hw state directly for Y planes URL : https://patchwork.freedesktop.org/series/83740/ State : success == Summary == CI Bug Log - changes from CI_DRM_9310 -> Patchwork_18889 Summary --

Re: [Intel-gfx] [PATCH 1/2] drm/i915/display: Group DC9 mask set

2020-11-11 Thread Lucas De Marchi
On Wed, Nov 11, 2020 at 08:24:07AM -0800, Jose Souza wrote: DC9 has a separate HW flow from the rest of the DC states and it is available in GEN9 LP platforms and on GEN11 and newer, so here moving the assignment of the mask to a single conditional block to simplifly code. Cc: Lucas De Marchi C

Re: [Intel-gfx] [PATCH 2/2] drm/i915/display: Make get_allowed_dc_mask().max_dc set a chain of if and elses

2020-11-11 Thread Lucas De Marchi
On Wed, Nov 11, 2020 at 08:24:08AM -0800, Jose Souza wrote: Just following what we do in many other places, DG1 is a exception so move it to the top instead of add it inside of INTEL_GEN(dev_priv) >= 12. Cc: Lucas De Marchi Cc: Anusha Srivatsa Signed-off-by: José Roberto de Souza Reviewed-

[Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Tweaked Wa_14010685332 for PCHs used on gen11 platforms (rev4) URL : https://patchwork.freedesktop.org/series/83233/ State : success == Summary == CI Bug Log - changes from CI_DRM_9309_full -> Patchwork_18886_full =

[Intel-gfx] ✓ Fi.CI.IGT: success for series starting with [1/2] drm/i915/display: Group DC9 mask set

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [1/2] drm/i915/display: Group DC9 mask set URL : https://patchwork.freedesktop.org/series/83739/ State : success == Summary == CI Bug Log - changes from CI_DRM_9309_full -> Patchwork_1_full ==

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2) URL : https://patchwork.freedesktop.org/series/83716/ State : warning == Summary == $ dim checkpatch origin/drm-tip bceebc3f06d1 drm/i915/dp: Some reshuffl

Re: [Intel-gfx] [PATCH 2/6] drm/i915: Nuke intel_atomic_crtc_state_for_each_plane_state() from skl+ wm code

2020-11-11 Thread Lisovskiy, Stanislav
On Fri, Nov 06, 2020 at 07:30:38PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä > > intel_atomic_crtc_state_for_each_plane_state() peeks at the > plane's current state without holding the plane's mutex, trusting > that the crtc's mutex will protect it. In practice that does work > since our

[Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v9,1/7] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev2) URL : https://patchwork.freedesktop.org/series/83716/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9312 -> Patchwork_18890 ==

Re: [Intel-gfx] [PATCH 3/6] drm/i915: Pimp the watermark documentation a bit

2020-11-11 Thread Navare, Manasi
On Fri, Nov 06, 2020 at 07:30:39PM +0200, Ville Syrjala wrote: > From: Ville Syrjälä > > Document what each of the "raw" vs. "optimal" vs. "intermediate" > watermarks do. > > Signed-off-by: Ville Syrjälä Looks good to me Reviewed-by: Manasi Navare Manasi > --- > .../drm/i915/display/intel

[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/i915: Copy the plane hw state directly for Y planes

2020-11-11 Thread Patchwork
== Series Details == Series: drm/i915: Copy the plane hw state directly for Y planes URL : https://patchwork.freedesktop.org/series/83740/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9310_full -> Patchwork_18889_full Summ

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4) URL : https://patchwork.freedesktop.org/series/83373/ State : warning == Summary == $ dim checkpatch origin/drm-tip 56832962f07a drm/i915/dp: Some reshuffl

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4) URL : https://patchwork.freedesktop.org/series/83373/ State : success == Summary == CI Bug Log - changes from CI_DRM_9312 -> Patchwork_18891 ==

[Intel-gfx] [CI v10 4/6] drm/i915: Pass intel_atomic_state instead of drm_atomic_state

2020-11-11 Thread Manasi Navare
No functional changes, to align with previous cleanups pass intel_atomic_state instead of drm_atomic_state. Also pass this intel_atomic_state with crtc_state to some of the atomic_check functions. v2: * Squash some changes from next patch (Ville) Signed-off-by: Manasi Navare Reviewed-by: Ville S

[Intel-gfx] [CI v10 1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Manasi Navare
No functional changes. This patch just moves some mode checks around to prepare for adding bigjoiner related mode validation Cc: Ville Syrjälä Signed-off-by: Manasi Navare Reviewed-by: Ville Syrjälä --- drivers/gpu/drm/i915/display/intel_dp.c | 12 ++-- 1 file changed, 6 insertions(+),

[Intel-gfx] [CI v10 6/6] drm/i915/dp: Allow big joiner modes in intel_dp_mode_valid(), v3.

2020-11-11 Thread Manasi Navare
From: Maarten Lankhorst Small changes to intel_dp_mode_valid(), allow listing modes that can only be supported in the bigjoiner configuration, which is not supported yet. v13: * Allow bigjoiner if hdisplay >5120 v12: * slice_count logic simplify (Ville) * Fix unnecessary changes in downstream_mo

[Intel-gfx] [CI v10 2/6] drm/i915: Move encoder->get_config to a new function

2020-11-11 Thread Manasi Navare
No functional changes, create a separate intel_encoder_get_config() function that calls encoder->get_config hook. This is needed so that later we can add beigjoienr related readout here. Signed-off-by: Manasi Navare Reviewed-by: Ville Syrjälä --- drivers/gpu/drm/i915/display/intel_display.c | 1

[Intel-gfx] [CI v10 3/6] drm/i915: Add hw.pipe_mode to allow bigjoiner pipe/transcoder split

2020-11-11 Thread Manasi Navare
From: Maarten Lankhorst With bigjoiner, there will be 2 pipes driving 2 halves of 1 transcoder, because of this, we need a pipe_mode for various calculations, including for example watermarks, plane clipping, etc. v12: * Remove the wrapper for now to get good CI v11: * set pipe mode only if acti

[Intel-gfx] [CI v10 5/6] drm/i915/dp: Add from_crtc_state to copy color blobs

2020-11-11 Thread Manasi Navare
No functional changes here, just adds a from_crtc_state as a prep for bigjoiner v2: * More prep with intel_atomic_state (Ville) Cc: Ville Syrjälä Signed-off-by: Manasi Navare Reviewed-by: Ville Syrjälä --- drivers/gpu/drm/i915/display/intel_atomic.c | 9 + drivers/gpu/drm/i915/displa

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes URL : https://patchwork.freedesktop.org/series/83747/ State : warning == Summary == $ dim checkpatch origin/drm-tip f71e5e8c3929 drm/i915/dp: Some reshuffling

[Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes URL : https://patchwork.freedesktop.org/series/83747/ State : success == Summary == CI Bug Log - changes from CI_DRM_9312 -> Patchwork_18892 =

[Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4)

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4) URL : https://patchwork.freedesktop.org/series/83373/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9312_full -> Patchwork_18891_full

Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [v5,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes (rev4)

2020-11-11 Thread Navare, Manasi
On Thu, Nov 12, 2020 at 04:09:14AM +, Patchwork wrote: > == Series Details == > > Series: series starting with [v5,1/6] drm/i915/dp: Some reshuffling in > mode_valid as prep for bigjoiner modes (rev4) > URL : https://patchwork.freedesktop.org/series/83373/ > State : failure > > == Summary

[Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes

2020-11-11 Thread Patchwork
== Series Details == Series: series starting with [CI,v10,1/6] drm/i915/dp: Some reshuffling in mode_valid as prep for bigjoiner modes URL : https://patchwork.freedesktop.org/series/83747/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9312_full -> Patchwork_18892_full ===