lkml.org 
[lkml]   [2023]   [Feb]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Date
    Subject[PATCH v3 3/3] drm/bridge: tfp410: If connected, use I2C for polled HPD status.
    From: Michael Williamson <michael.williamson@criticallink.com>

    If the I2C bus is connected on the TFP410, then use the register
    status bit to determine connection state. This is needed, in particular,
    for polling the state when the Hot Plug detect is not connected to
    a controlling CPU via GPIO/IRQ lane.

    Signed-off-by: Michael Williamson <michael.williamson@criticallink.com>
    Signed-off-by: Jonathan Cormier <jcormier@criticallink.com>
    ---
    drivers/gpu/drm/bridge/ti-tfp410.c | 12 ++++++++++++
    1 file changed, 12 insertions(+)

    diff --git a/drivers/gpu/drm/bridge/ti-tfp410.c b/drivers/gpu/drm/bridge/ti-tfp410.c
    index 41007d05d584..eeb7202452aa 100644
    --- a/drivers/gpu/drm/bridge/ti-tfp410.c
    +++ b/drivers/gpu/drm/bridge/ti-tfp410.c
    @@ -28,6 +28,9 @@
    #define TFP410_BIT_BSEL BIT(2)
    #define TFP410_BIT_DSEL BIT(3)

    +#define TFP410_REG_CTL_2_MODE 0x09
    +#define TFP410_BIT_HTPLG BIT(1)
    +
    static const struct regmap_config tfp410_regmap_config = {
    .reg_bits = 8,
    .val_bits = 8,
    @@ -105,6 +108,15 @@ static enum drm_connector_status
    tfp410_connector_detect(struct drm_connector *connector, bool force)
    {
    struct tfp410 *dvi = drm_connector_to_tfp410(connector);
    + int ret;
    +
    + if (dvi->i2c) {
    + ret = regmap_test_bits(dvi->regmap, TFP410_REG_CTL_2_MODE, TFP410_BIT_HTPLG);
    + if (ret < 0)
    + dev_err(dvi->dev, "%s failed to read HTPLG bit : %d\n", __func__, ret);
    + else
    + return ret ? connector_status_connected : connector_status_disconnected;
    + }

    return drm_bridge_detect(dvi->next_bridge);
    }
    --
    2.25.1

    \
     
     \ /
      Last update: 2023-03-27 00:29    [W:4.809 / U:1.664 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site