diff options
author | John Stultz <john.stultz@linaro.org> | 2017-01-16 19:52:51 -0500 |
---|---|---|
committer | Archit Taneja <architt@codeaurora.org> | 2017-01-18 22:44:04 -0500 |
commit | 4226d9b127cf4758ba0e07931b3f0d59f1b1a50c (patch) | |
tree | 16cdaa6e5fb6cbcf0fbac87b10080ffde9e0de80 | |
parent | 651e4769ba2a9f20c4b8a823ae2727bf7fa9c9f0 (diff) |
drm/bridge: adv7511: Reuse __adv7511_power_on/off() when probing EDID
Thus this patch changes the EDID probing logic so that we
re-use the __adv7511_power_on/off() calls instead of duplciating
logic.
This does change behavior slightly as it adds the HPD signal
pulse to the EDID probe path, but Archit has had a patch to
add HPD signal pulse to the EDID probe path before, so this
should address the cases where that helped. Another difference
is that regcache_mark_dirty() is also called in the power off
path once EDID is probed.
Cc: David Airlie <airlied@linux.ie>
Cc: Archit Taneja <architt@codeaurora.org>
Cc: Wolfram Sang <wsa+renesas@sang-engineering.com>
Cc: Lars-Peter Clausen <lars@metafoo.de>
Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: dri-devel@lists.freedesktop.org
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Tested-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: John Stultz <john.stultz@linaro.org>
Signed-off-by: Archit Taneja <architt@codeaurora.org>
Link: http://patchwork.freedesktop.org/patch/msgid/1484614372-15342-6-git-send-email-john.stultz@linaro.org
-rw-r--r-- | drivers/gpu/drm/bridge/adv7511/adv7511_drv.c | 17 |
1 files changed, 3 insertions, 14 deletions
diff --git a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c index 545ceff5890f..17b9e98b151b 100644 --- a/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c +++ b/drivers/gpu/drm/bridge/adv7511/adv7511_drv.c | |||
@@ -573,24 +573,13 @@ static int adv7511_get_modes(struct adv7511 *adv7511, | |||
573 | unsigned int count; | 573 | unsigned int count; |
574 | 574 | ||
575 | /* Reading the EDID only works if the device is powered */ | 575 | /* Reading the EDID only works if the device is powered */ |
576 | if (!adv7511->powered) { | 576 | if (!adv7511->powered) |
577 | regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, | 577 | __adv7511_power_on(adv7511); |
578 | ADV7511_POWER_POWER_DOWN, 0); | ||
579 | if (adv7511->i2c_main->irq) { | ||
580 | regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(0), | ||
581 | ADV7511_INT0_EDID_READY); | ||
582 | regmap_write(adv7511->regmap, ADV7511_REG_INT_ENABLE(1), | ||
583 | ADV7511_INT1_DDC_ERROR); | ||
584 | } | ||
585 | adv7511->current_edid_segment = -1; | ||
586 | } | ||
587 | 578 | ||
588 | edid = drm_do_get_edid(connector, adv7511_get_edid_block, adv7511); | 579 | edid = drm_do_get_edid(connector, adv7511_get_edid_block, adv7511); |
589 | 580 | ||
590 | if (!adv7511->powered) | 581 | if (!adv7511->powered) |
591 | regmap_update_bits(adv7511->regmap, ADV7511_REG_POWER, | 582 | __adv7511_power_off(adv7511); |
592 | ADV7511_POWER_POWER_DOWN, | ||
593 | ADV7511_POWER_POWER_DOWN); | ||
594 | 583 | ||
595 | kfree(adv7511->edid); | 584 | kfree(adv7511->edid); |
596 | adv7511->edid = edid; | 585 | adv7511->edid = edid; |