Hi Sam,

Thank you for the patch.

On Sun, Jul 26, 2020 at 10:33:14PM +0200, Sam Ravnborg wrote:
> Prepare the bridge driver for chained operation by adding
> support for the detect operation.
> 
> v2:
>   - Do not announce detect operation if there is no hpd pin (Laurent)
> 
> Signed-off-by: Sam Ravnborg <s...@ravnborg.org>
> Cc: Andrzej Hajda <a.ha...@samsung.com>
> Cc: Neil Armstrong <narmstr...@baylibre.com>
> Cc: Laurent Pinchart <laurent.pinch...@ideasonboard.com>
> Cc: Jonas Karlman <jo...@kwiboo.se>
> Cc: Jernej Skrabec <jernej.skra...@siol.net>
> ---
>  drivers/gpu/drm/bridge/tc358767.c | 30 ++++++++++++++++++++----------
>  1 file changed, 20 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/gpu/drm/bridge/tc358767.c 
> b/drivers/gpu/drm/bridge/tc358767.c
> index c2777b226c75..e8ba713bedac 100644
> --- a/drivers/gpu/drm/bridge/tc358767.c
> +++ b/drivers/gpu/drm/bridge/tc358767.c
> @@ -1369,21 +1369,13 @@ static const struct drm_connector_helper_funcs 
> tc_connector_helper_funcs = {
>       .get_modes = tc_connector_get_modes,
>  };
>  
> -static enum drm_connector_status tc_connector_detect(struct drm_connector 
> *connector,
> -                                                  bool force)
> +static enum drm_connector_status tc_bridge_detect(struct drm_bridge *bridge)
>  {
> -     struct tc_data *tc = connector_to_tc(connector);
> +     struct tc_data *tc = bridge_to_tc(bridge);
>       bool conn;
>       u32 val;
>       int ret;
>  
> -     if (tc->hpd_pin < 0) {
> -             if (tc->panel)
> -                     return connector_status_connected;
> -             else
> -                     return connector_status_unknown;
> -     }
> -
>       ret = regmap_read(tc->regmap, GPIOI, &val);
>       if (ret)
>               return connector_status_unknown;
> @@ -1396,6 +1388,20 @@ static enum drm_connector_status 
> tc_connector_detect(struct drm_connector *conne
>               return connector_status_disconnected;
>  }
>  
> +static enum drm_connector_status
> +tc_connector_detect(struct drm_connector *connector, bool force)
> +{
> +     struct tc_data *tc = connector_to_tc(connector);
> +
> +     if (tc->hpd_pin >= 0)
> +             return tc_bridge_detect(&tc->bridge);
> +     else
> +             if (tc->panel)
> +                     return connector_status_connected;
> +
> +     return connector_status_unknown;

I'd write this

        if (tc->hpd_pin >= 0)
                return tc_bridge_detect(&tc->bridge);

        if (tc->panel)
                return connector_status_connected;
        else
                return connector_status_unknown;

Reviewed-by: Laurent Pinchart <laurent.pinch...@ideasonboard.com>

> +}
> +
>  static const struct drm_connector_funcs tc_connector_funcs = {
>       .detect = tc_connector_detect,
>       .fill_modes = drm_helper_probe_single_connector_modes,
> @@ -1458,6 +1464,7 @@ static const struct drm_bridge_funcs tc_bridge_funcs = {
>       .disable = tc_bridge_disable,
>       .post_disable = tc_bridge_post_disable,
>       .mode_fixup = tc_bridge_mode_fixup,
> +     .detect = tc_bridge_detect,
>  };
>  
>  static bool tc_readable_reg(struct device *dev, unsigned int reg)
> @@ -1680,6 +1687,9 @@ static int tc_probe(struct i2c_client *client, const 
> struct i2c_device_id *id)
>               return ret;
>  
>       tc->bridge.funcs = &tc_bridge_funcs;
> +     if (tc->hpd_pin >= 0)
> +             tc->bridge.ops |= DRM_BRIDGE_OP_DETECT;
> +
>       tc->bridge.of_node = dev->of_node;
>       drm_bridge_add(&tc->bridge);
>  

-- 
Regards,

Laurent Pinchart
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

Reply via email to