Re: [Intel-gfx] [PATCH v2 03/13] drm/i915: Move check_digital_port_conflicts() earier

2019-10-24 Thread Lisovskiy, Stanislav
On Tue, 2019-10-15 at 22:30 +0300, Ville Syrjala wrote:
> From: Ville Syrjälä 
> 
> check_digital_port_conflicts() is done needlessly late. Move it
> earlier.
> This will be needed as later on we want to set any_ms=true a bit
> later
> for non-modesets too and we can't call this guy without the
> connection_mutex held.

Reviewed-by: Stanislav Lisovskiy 

> 
> Signed-off-by: Ville Syrjälä 
> ---
>  drivers/gpu/drm/i915/display/intel_display.c | 11 ++-
>  1 file changed, 6 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display.c
> b/drivers/gpu/drm/i915/display/intel_display.c
> index a8444d9841c1..44bd4d15019b 100644
> --- a/drivers/gpu/drm/i915/display/intel_display.c
> +++ b/drivers/gpu/drm/i915/display/intel_display.c
> @@ -13456,11 +13456,6 @@ static int intel_modeset_checks(struct
> intel_atomic_state *state)
>   struct intel_crtc *crtc;
>   int ret, i;
>  
> - if (!check_digital_port_conflicts(state)) {
> - DRM_DEBUG_KMS("rejecting conflicting digital port
> configuration\n");
> - return -EINVAL;
> - }
> -
>   /* keep the current setting */
>   if (!state->cdclk.force_min_cdclk_changed)
>   state->cdclk.force_min_cdclk = dev_priv-
> >cdclk.force_min_cdclk;
> @@ -13622,6 +13617,12 @@ static int intel_atomic_check(struct
> drm_device *dev,
>   any_ms = true;
>   }
>  
> + if (any_ms && !check_digital_port_conflicts(state)) {
> + DRM_DEBUG_KMS("rejecting conflicting digital port
> configuration\n");
> + ret = EINVAL;
> + goto fail;
> + }
> +
>   ret = drm_dp_mst_atomic_check(>base);
>   if (ret)
>   goto fail;
___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

[Intel-gfx] [PATCH v2 03/13] drm/i915: Move check_digital_port_conflicts() earier

2019-10-15 Thread Ville Syrjala
From: Ville Syrjälä 

check_digital_port_conflicts() is done needlessly late. Move it earlier.
This will be needed as later on we want to set any_ms=true a bit later
for non-modesets too and we can't call this guy without the
connection_mutex held.

Signed-off-by: Ville Syrjälä 
---
 drivers/gpu/drm/i915/display/intel_display.c | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/i915/display/intel_display.c 
b/drivers/gpu/drm/i915/display/intel_display.c
index a8444d9841c1..44bd4d15019b 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -13456,11 +13456,6 @@ static int intel_modeset_checks(struct 
intel_atomic_state *state)
struct intel_crtc *crtc;
int ret, i;
 
-   if (!check_digital_port_conflicts(state)) {
-   DRM_DEBUG_KMS("rejecting conflicting digital port 
configuration\n");
-   return -EINVAL;
-   }
-
/* keep the current setting */
if (!state->cdclk.force_min_cdclk_changed)
state->cdclk.force_min_cdclk = dev_priv->cdclk.force_min_cdclk;
@@ -13622,6 +13617,12 @@ static int intel_atomic_check(struct drm_device *dev,
any_ms = true;
}
 
+   if (any_ms && !check_digital_port_conflicts(state)) {
+   DRM_DEBUG_KMS("rejecting conflicting digital port 
configuration\n");
+   ret = EINVAL;
+   goto fail;
+   }
+
ret = drm_dp_mst_atomic_check(>base);
if (ret)
goto fail;
-- 
2.21.0

___
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx