[Intel-gfx] ✗ Fi.CI.IGT: failure for drm/bridge_connector: implement OOB HPD handling

2023-07-08 Thread Patchwork
== Series Details == Series: drm/bridge_connector: implement OOB HPD handling URL : https://patchwork.freedesktop.org/series/120395/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13358_full -> Patchwork_120395v1_full Summar

[Intel-gfx] ✓ Fi.CI.BAT: success for drm/bridge_connector: implement OOB HPD handling

2023-07-08 Thread Patchwork
== Series Details == Series: drm/bridge_connector: implement OOB HPD handling URL : https://patchwork.freedesktop.org/series/120395/ State : success == Summary == CI Bug Log - changes from CI_DRM_13358 -> Patchwork_120395v1 Summary ---

[Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/bridge_connector: implement OOB HPD handling

2023-07-08 Thread Patchwork
== Series Details == Series: drm/bridge_connector: implement OOB HPD handling URL : https://patchwork.freedesktop.org/series/120395/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately.

[Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/bridge_connector: implement OOB HPD handling

2023-07-08 Thread Patchwork
== Series Details == Series: drm/bridge_connector: implement OOB HPD handling URL : https://patchwork.freedesktop.org/series/120395/ State : warning == Summary == Error: dim checkpatch failed 9a3a8cd8e4e8 drm: Add HPD state to drm_connector_oob_hotplug_event() -:127: WARNING:LONG_LINE: line le

[Intel-gfx] [PATCH v5 1/3] drm: Add HPD state to drm_connector_oob_hotplug_event()

2023-07-08 Thread Dmitry Baryshkov
From: Bjorn Andersson In some implementations, such as the Qualcomm platforms, the display driver has no way to query the current HPD state and as such it's impossible to distinguish between disconnect and attention events. Add a parameter to drm_connector_oob_hotplug_event() to pass the HPD sta

[Intel-gfx] [PATCH v5 0/3] drm/bridge_connector: implement OOB HPD handling

2023-07-08 Thread Dmitry Baryshkov
Note, this is sent as v5, since there were several revisions for this patchset under a different series title ([1]). USB altmodes code would send OOB notifications to the drm_connector specified in the device tree. However as the MSM DP driver uses drm_bridge_connector, there is no way to receive

[Intel-gfx] [PATCH v5 2/3] drm/bridge_connector: stop filtering events in drm_bridge_connector_hpd_cb()

2023-07-08 Thread Dmitry Baryshkov
In some cases the bridge drivers would like to receive hotplug events even in the case new status is equal to the old status. In the DP case this is used to deliver "attention" messages to the DP host. Stop filtering the events in the drm_bridge_connector_hpd_cb() and let drivers decide whether the

[Intel-gfx] [PATCH v5 3/3] drm/bridge_connector: implement oob_hotplug_event

2023-07-08 Thread Dmitry Baryshkov
Implement the oob_hotplug_event() callback. Translate it to the HPD notification sent to the HPD bridge in the chain. Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/drm_bridge_connector.c | 29 +++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/drivers

Re: [Intel-gfx] [PATCH i-g-t] i915_pm_freq_api: Add some debug to tests

2023-07-08 Thread Dixit, Ashutosh
On Fri, 07 Jul 2023 16:23:59 -0700, Vinay Belgaumkar wrote: > > Some subtests seem to be failing in CI, use igt_assert_(lt/eq) which > print the values being compared and some additional debug as well. > > Signed-off-by: Vinay Belgaumkar > --- > tests/i915/i915_pm_freq_api.c | 18