All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
@ 2014-01-10 14:22 ` Philipp Zabel
  0 siblings, 0 replies; 8+ messages in thread
From: Philipp Zabel @ 2014-01-10 14:22 UTC (permalink / raw)
  To: linux-arm-kernel

Due to the voltage divider on the HPD line, the HDMI connector on
imx6q-sabrelite doesn't reliably detect connected DVI monitors.
This patch allows to use the RX_SENSE0 signal as a workaround when
enabled by a boolean device tree property 'hpd-unreliable'.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
This patch is based on Russell's recent 46-patch imx-drm cleanup series.
Changes since v1:
 - Store the status and polarity bits in struct imx_hdmi
---
 drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
 1 file changed, 26 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
index fb3177d..62cb531 100644
--- a/drivers/staging/imx-drm/imx-hdmi.c
+++ b/drivers/staging/imx-drm/imx-hdmi.c
@@ -140,6 +140,9 @@ struct imx_hdmi {
 	struct regmap *regmap;
 	struct i2c_adapter *ddc;
 	void __iomem *regs;
+	u8 sink_detect_polarity;
+	u8 sink_detect_status;
+	u8 sink_detect_mask;
 
 	unsigned int sample_rate;
 	int ratio;
@@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
 		    HDMI_PHY_I2CM_CTLINT_ADDR);
 
 	/* enable cable hot plug irq */
-	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
 
 	/* Clear Hotplug interrupts */
-	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
 
 	return 0;
 }
@@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
 {
 	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
 					     connector);
+
 	return hdmi->connector_status;
 }
 
@@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
 
 	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
 
-	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
-		if (phy_int_pol & HDMI_PHY_HPD) {
+	if (intr_stat & hdmi->sink_detect_status) {
+		int pol_bit = hdmi->sink_detect_polarity;
+
+		if (phy_int_pol & pol_bit) {
 			dev_dbg(hdmi->dev, "EVENT=plugin\n");
 
-			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
+			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
 
 			hdmi->connector_status = connector_status_connected;
 			imx_hdmi_poweron(hdmi);
 		} else {
 			dev_dbg(hdmi->dev, "EVENT=plugout\n");
 
-			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
+			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
 
 			hdmi->connector_status = connector_status_disconnected;
 			imx_hdmi_poweroff(hdmi);
@@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
 	}
 
 	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
-	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
+	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
 
 	return IRQ_HANDLED;
 }
@@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
 	 */
 	hdmi_init_clk_regenerator(hdmi);
 
+	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
+	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
+	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
+
+	if (of_property_read_bool(np, "hpd-unreliable")) {
+		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
+		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
+		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
+	}
+
 	/*
 	 * Configure registers related to HDMI interrupt
 	 * generation before registering IRQ.
 	 */
-	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
 
 	/* Clear Hotplug interrupts */
-	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
 
 	ret = imx_hdmi_fb_registered(hdmi);
 	if (ret)
@@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
 		goto err_iahb;
 
 	/* Unmute interrupts */
-	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
+	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
 
 	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
 	if (ret)
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
@ 2014-01-10 14:22 ` Philipp Zabel
  0 siblings, 0 replies; 8+ messages in thread
From: Philipp Zabel @ 2014-01-10 14:22 UTC (permalink / raw)
  To: Russell King - ARM Linux
  Cc: devel, Philipp Zabel, David Airlie, Greg Kroah-Hartman,
	Eric Nelson, dri-devel, Laci Tele, kernel, Shawn Guo,
	linux-arm-kernel

Due to the voltage divider on the HPD line, the HDMI connector on
imx6q-sabrelite doesn't reliably detect connected DVI monitors.
This patch allows to use the RX_SENSE0 signal as a workaround when
enabled by a boolean device tree property 'hpd-unreliable'.

Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
---
This patch is based on Russell's recent 46-patch imx-drm cleanup series.
Changes since v1:
 - Store the status and polarity bits in struct imx_hdmi
---
 drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
 1 file changed, 26 insertions(+), 10 deletions(-)

diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
index fb3177d..62cb531 100644
--- a/drivers/staging/imx-drm/imx-hdmi.c
+++ b/drivers/staging/imx-drm/imx-hdmi.c
@@ -140,6 +140,9 @@ struct imx_hdmi {
 	struct regmap *regmap;
 	struct i2c_adapter *ddc;
 	void __iomem *regs;
+	u8 sink_detect_polarity;
+	u8 sink_detect_status;
+	u8 sink_detect_mask;
 
 	unsigned int sample_rate;
 	int ratio;
@@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
 		    HDMI_PHY_I2CM_CTLINT_ADDR);
 
 	/* enable cable hot plug irq */
-	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
 
 	/* Clear Hotplug interrupts */
-	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
 
 	return 0;
 }
@@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
 {
 	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
 					     connector);
+
 	return hdmi->connector_status;
 }
 
@@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
 
 	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
 
-	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
-		if (phy_int_pol & HDMI_PHY_HPD) {
+	if (intr_stat & hdmi->sink_detect_status) {
+		int pol_bit = hdmi->sink_detect_polarity;
+
+		if (phy_int_pol & pol_bit) {
 			dev_dbg(hdmi->dev, "EVENT=plugin\n");
 
-			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
+			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
 
 			hdmi->connector_status = connector_status_connected;
 			imx_hdmi_poweron(hdmi);
 		} else {
 			dev_dbg(hdmi->dev, "EVENT=plugout\n");
 
-			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
+			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
 
 			hdmi->connector_status = connector_status_disconnected;
 			imx_hdmi_poweroff(hdmi);
@@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
 	}
 
 	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
-	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
+	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
 
 	return IRQ_HANDLED;
 }
@@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
 	 */
 	hdmi_init_clk_regenerator(hdmi);
 
+	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
+	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
+	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
+
+	if (of_property_read_bool(np, "hpd-unreliable")) {
+		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
+		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
+		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
+	}
+
 	/*
 	 * Configure registers related to HDMI interrupt
 	 * generation before registering IRQ.
 	 */
-	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
 
 	/* Clear Hotplug interrupts */
-	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
+	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
 
 	ret = imx_hdmi_fb_registered(hdmi);
 	if (ret)
@@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
 		goto err_iahb;
 
 	/* Unmute interrupts */
-	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
+	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
 
 	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
 	if (ret)
-- 
1.8.5.2

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
  2014-01-10 14:22 ` Philipp Zabel
@ 2014-01-10 14:51   ` Russell King - ARM Linux
  -1 siblings, 0 replies; 8+ messages in thread
From: Russell King - ARM Linux @ 2014-01-10 14:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> Due to the voltage divider on the HPD line, the HDMI connector on
> imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> This patch allows to use the RX_SENSE0 signal as a workaround when
> enabled by a boolean device tree property 'hpd-unreliable'.

Yay, much nicer, easier to read, and smaller, thanks.  I'll add it to the
series.

I don't think we've had David Airlie's eyes on the series yet (but then
I think he's rather Rob Clark looked at non-x86 DRM stuff).  Also I've
yet to hear back from Greg wrt the component stuff, so I suspect this
series won't be making this merge window.

-- 
FTTC broadband for 0.8mile line: 5.8Mbps down 500kbps up.  Estimation
in database were 13.1 to 19Mbit for a good line, about 7.5+ for a bad.
Estimate before purchase was "up to 13.2Mbit".

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
@ 2014-01-10 14:51   ` Russell King - ARM Linux
  0 siblings, 0 replies; 8+ messages in thread
From: Russell King - ARM Linux @ 2014-01-10 14:51 UTC (permalink / raw)
  To: Philipp Zabel
  Cc: devel, David Airlie, Greg Kroah-Hartman, Eric Nelson, dri-devel,
	Laci Tele, kernel, Shawn Guo, linux-arm-kernel

On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> Due to the voltage divider on the HPD line, the HDMI connector on
> imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> This patch allows to use the RX_SENSE0 signal as a workaround when
> enabled by a boolean device tree property 'hpd-unreliable'.

Yay, much nicer, easier to read, and smaller, thanks.  I'll add it to the
series.

I don't think we've had David Airlie's eyes on the series yet (but then
I think he's rather Rob Clark looked at non-x86 DRM stuff).  Also I've
yet to hear back from Greg wrt the component stuff, so I suspect this
series won't be making this merge window.

-- 
FTTC broadband for 0.8mile line: 5.8Mbps down 500kbps up.  Estimation
in database were 13.1 to 19Mbit for a good line, about 7.5+ for a bad.
Estimate before purchase was "up to 13.2Mbit".

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
  2014-01-10 14:22 ` Philipp Zabel
@ 2014-01-11  3:23   ` Shawn Guo
  -1 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2014-01-11  3:23 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> Due to the voltage divider on the HPD line, the HDMI connector on
> imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> This patch allows to use the RX_SENSE0 signal as a workaround when
> enabled by a boolean device tree property 'hpd-unreliable'.

If it's a fsl/imx specific property, it should have a 'fsl,' prefix.
It should be added into binding doc.  Oh, we do not even have a binding
doc for this imx-hdmi yet.

Shawn

> 
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> This patch is based on Russell's recent 46-patch imx-drm cleanup series.
> Changes since v1:
>  - Store the status and polarity bits in struct imx_hdmi
> ---
>  drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
>  1 file changed, 26 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
> index fb3177d..62cb531 100644
> --- a/drivers/staging/imx-drm/imx-hdmi.c
> +++ b/drivers/staging/imx-drm/imx-hdmi.c
> @@ -140,6 +140,9 @@ struct imx_hdmi {
>  	struct regmap *regmap;
>  	struct i2c_adapter *ddc;
>  	void __iomem *regs;
> +	u8 sink_detect_polarity;
> +	u8 sink_detect_status;
> +	u8 sink_detect_mask;
>  
>  	unsigned int sample_rate;
>  	int ratio;
> @@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
>  		    HDMI_PHY_I2CM_CTLINT_ADDR);
>  
>  	/* enable cable hot plug irq */
> -	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
>  
>  	/* Clear Hotplug interrupts */
> -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
>  
>  	return 0;
>  }
> @@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
>  {
>  	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
>  					     connector);
> +
>  	return hdmi->connector_status;
>  }
>  
> @@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
>  
>  	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
>  
> -	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
> -		if (phy_int_pol & HDMI_PHY_HPD) {
> +	if (intr_stat & hdmi->sink_detect_status) {
> +		int pol_bit = hdmi->sink_detect_polarity;
> +
> +		if (phy_int_pol & pol_bit) {
>  			dev_dbg(hdmi->dev, "EVENT=plugin\n");
>  
> -			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
>  
>  			hdmi->connector_status = connector_status_connected;
>  			imx_hdmi_poweron(hdmi);
>  		} else {
>  			dev_dbg(hdmi->dev, "EVENT=plugout\n");
>  
> -			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
>  
>  			hdmi->connector_status = connector_status_disconnected;
>  			imx_hdmi_poweroff(hdmi);
> @@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
>  	}
>  
>  	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
> -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
>  
>  	return IRQ_HANDLED;
>  }
> @@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
>  	 */
>  	hdmi_init_clk_regenerator(hdmi);
>  
> +	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
> +	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
> +	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
> +
> +	if (of_property_read_bool(np, "hpd-unreliable")) {
> +		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
> +		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
> +		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
> +	}
> +
>  	/*
>  	 * Configure registers related to HDMI interrupt
>  	 * generation before registering IRQ.
>  	 */
> -	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
>  
>  	/* Clear Hotplug interrupts */
> -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
>  
>  	ret = imx_hdmi_fb_registered(hdmi);
>  	if (ret)
> @@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
>  		goto err_iahb;
>  
>  	/* Unmute interrupts */
> -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
>  
>  	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
>  	if (ret)
> -- 
> 1.8.5.2
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
@ 2014-01-11  3:23   ` Shawn Guo
  0 siblings, 0 replies; 8+ messages in thread
From: Shawn Guo @ 2014-01-11  3:23 UTC (permalink / raw)
  To: Philipp Zabel
  Cc: devel, Russell King - ARM Linux, Greg Kroah-Hartman, Eric Nelson,
	dri-devel, Laci Tele, kernel, linux-arm-kernel

On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> Due to the voltage divider on the HPD line, the HDMI connector on
> imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> This patch allows to use the RX_SENSE0 signal as a workaround when
> enabled by a boolean device tree property 'hpd-unreliable'.

If it's a fsl/imx specific property, it should have a 'fsl,' prefix.
It should be added into binding doc.  Oh, we do not even have a binding
doc for this imx-hdmi yet.

Shawn

> 
> Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> ---
> This patch is based on Russell's recent 46-patch imx-drm cleanup series.
> Changes since v1:
>  - Store the status and polarity bits in struct imx_hdmi
> ---
>  drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
>  1 file changed, 26 insertions(+), 10 deletions(-)
> 
> diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
> index fb3177d..62cb531 100644
> --- a/drivers/staging/imx-drm/imx-hdmi.c
> +++ b/drivers/staging/imx-drm/imx-hdmi.c
> @@ -140,6 +140,9 @@ struct imx_hdmi {
>  	struct regmap *regmap;
>  	struct i2c_adapter *ddc;
>  	void __iomem *regs;
> +	u8 sink_detect_polarity;
> +	u8 sink_detect_status;
> +	u8 sink_detect_mask;
>  
>  	unsigned int sample_rate;
>  	int ratio;
> @@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
>  		    HDMI_PHY_I2CM_CTLINT_ADDR);
>  
>  	/* enable cable hot plug irq */
> -	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
>  
>  	/* Clear Hotplug interrupts */
> -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
>  
>  	return 0;
>  }
> @@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
>  {
>  	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
>  					     connector);
> +
>  	return hdmi->connector_status;
>  }
>  
> @@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
>  
>  	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
>  
> -	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
> -		if (phy_int_pol & HDMI_PHY_HPD) {
> +	if (intr_stat & hdmi->sink_detect_status) {
> +		int pol_bit = hdmi->sink_detect_polarity;
> +
> +		if (phy_int_pol & pol_bit) {
>  			dev_dbg(hdmi->dev, "EVENT=plugin\n");
>  
> -			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
>  
>  			hdmi->connector_status = connector_status_connected;
>  			imx_hdmi_poweron(hdmi);
>  		} else {
>  			dev_dbg(hdmi->dev, "EVENT=plugout\n");
>  
> -			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
>  
>  			hdmi->connector_status = connector_status_disconnected;
>  			imx_hdmi_poweroff(hdmi);
> @@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
>  	}
>  
>  	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
> -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
>  
>  	return IRQ_HANDLED;
>  }
> @@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
>  	 */
>  	hdmi_init_clk_regenerator(hdmi);
>  
> +	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
> +	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
> +	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
> +
> +	if (of_property_read_bool(np, "hpd-unreliable")) {
> +		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
> +		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
> +		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
> +	}
> +
>  	/*
>  	 * Configure registers related to HDMI interrupt
>  	 * generation before registering IRQ.
>  	 */
> -	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
>  
>  	/* Clear Hotplug interrupts */
> -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
>  
>  	ret = imx_hdmi_fb_registered(hdmi);
>  	if (ret)
> @@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
>  		goto err_iahb;
>  
>  	/* Unmute interrupts */
> -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
>  
>  	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
>  	if (ret)
> -- 
> 1.8.5.2
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
  2014-01-11  3:23   ` Shawn Guo
@ 2014-01-13  8:47     ` Philipp Zabel
  -1 siblings, 0 replies; 8+ messages in thread
From: Philipp Zabel @ 2014-01-13  8:47 UTC (permalink / raw)
  To: linux-arm-kernel

Am Samstag, den 11.01.2014, 11:23 +0800 schrieb Shawn Guo:
> On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> > Due to the voltage divider on the HPD line, the HDMI connector on
> > imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> > This patch allows to use the RX_SENSE0 signal as a workaround when
> > enabled by a boolean device tree property 'hpd-unreliable'.
> 
> If it's a fsl/imx specific property, it should have a 'fsl,' prefix.
> It should be added into binding doc.  Oh, we do not even have a binding
> doc for this imx-hdmi yet.

Yes, We need to sort out the componentised DT bindings.
I don't think that this property is particularly i.MX specific, since
anybody could wire up their board in a way that the HDMI hotplug detect
pin doesn't work reliably with some DVI monitors.

regards
Philipp

> Shawn
> 
> > 
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> > ---
> > This patch is based on Russell's recent 46-patch imx-drm cleanup series.
> > Changes since v1:
> >  - Store the status and polarity bits in struct imx_hdmi
> > ---
> >  drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
> >  1 file changed, 26 insertions(+), 10 deletions(-)
> > 
> > diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
> > index fb3177d..62cb531 100644
> > --- a/drivers/staging/imx-drm/imx-hdmi.c
> > +++ b/drivers/staging/imx-drm/imx-hdmi.c
> > @@ -140,6 +140,9 @@ struct imx_hdmi {
> >  	struct regmap *regmap;
> >  	struct i2c_adapter *ddc;
> >  	void __iomem *regs;
> > +	u8 sink_detect_polarity;
> > +	u8 sink_detect_status;
> > +	u8 sink_detect_mask;
> >  
> >  	unsigned int sample_rate;
> >  	int ratio;
> > @@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
> >  		    HDMI_PHY_I2CM_CTLINT_ADDR);
> >  
> >  	/* enable cable hot plug irq */
> > -	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
> >  
> >  	/* Clear Hotplug interrupts */
> > -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
> >  
> >  	return 0;
> >  }
> > @@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
> >  {
> >  	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
> >  					     connector);
> > +
> >  	return hdmi->connector_status;
> >  }
> >  
> > @@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
> >  
> >  	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
> >  
> > -	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
> > -		if (phy_int_pol & HDMI_PHY_HPD) {
> > +	if (intr_stat & hdmi->sink_detect_status) {
> > +		int pol_bit = hdmi->sink_detect_polarity;
> > +
> > +		if (phy_int_pol & pol_bit) {
> >  			dev_dbg(hdmi->dev, "EVENT=plugin\n");
> >  
> > -			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
> >  
> >  			hdmi->connector_status = connector_status_connected;
> >  			imx_hdmi_poweron(hdmi);
> >  		} else {
> >  			dev_dbg(hdmi->dev, "EVENT=plugout\n");
> >  
> > -			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
> >  
> >  			hdmi->connector_status = connector_status_disconnected;
> >  			imx_hdmi_poweroff(hdmi);
> > @@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
> >  	}
> >  
> >  	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
> > -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> > +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
> >  
> >  	return IRQ_HANDLED;
> >  }
> > @@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
> >  	 */
> >  	hdmi_init_clk_regenerator(hdmi);
> >  
> > +	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
> > +	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
> > +	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
> > +
> > +	if (of_property_read_bool(np, "hpd-unreliable")) {
> > +		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
> > +		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
> > +		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
> > +	}
> > +
> >  	/*
> >  	 * Configure registers related to HDMI interrupt
> >  	 * generation before registering IRQ.
> >  	 */
> > -	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
> >  
> >  	/* Clear Hotplug interrupts */
> > -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
> >  
> >  	ret = imx_hdmi_fb_registered(hdmi);
> >  	if (ret)
> > @@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
> >  		goto err_iahb;
> >  
> >  	/* Unmute interrupts */
> > -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> > +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
> >  
> >  	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
> >  	if (ret)
> > -- 
> > 1.8.5.2
> > 
> 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable
@ 2014-01-13  8:47     ` Philipp Zabel
  0 siblings, 0 replies; 8+ messages in thread
From: Philipp Zabel @ 2014-01-13  8:47 UTC (permalink / raw)
  To: Shawn Guo
  Cc: devel, Russell King - ARM Linux, David Airlie,
	Greg Kroah-Hartman, Eric Nelson, dri-devel, Laci Tele, kernel,
	linux-arm-kernel

Am Samstag, den 11.01.2014, 11:23 +0800 schrieb Shawn Guo:
> On Fri, Jan 10, 2014 at 03:22:24PM +0100, Philipp Zabel wrote:
> > Due to the voltage divider on the HPD line, the HDMI connector on
> > imx6q-sabrelite doesn't reliably detect connected DVI monitors.
> > This patch allows to use the RX_SENSE0 signal as a workaround when
> > enabled by a boolean device tree property 'hpd-unreliable'.
> 
> If it's a fsl/imx specific property, it should have a 'fsl,' prefix.
> It should be added into binding doc.  Oh, we do not even have a binding
> doc for this imx-hdmi yet.

Yes, We need to sort out the componentised DT bindings.
I don't think that this property is particularly i.MX specific, since
anybody could wire up their board in a way that the HDMI hotplug detect
pin doesn't work reliably with some DVI monitors.

regards
Philipp

> Shawn
> 
> > 
> > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de>
> > ---
> > This patch is based on Russell's recent 46-patch imx-drm cleanup series.
> > Changes since v1:
> >  - Store the status and polarity bits in struct imx_hdmi
> > ---
> >  drivers/staging/imx-drm/imx-hdmi.c | 36 ++++++++++++++++++++++++++----------
> >  1 file changed, 26 insertions(+), 10 deletions(-)
> > 
> > diff --git a/drivers/staging/imx-drm/imx-hdmi.c b/drivers/staging/imx-drm/imx-hdmi.c
> > index fb3177d..62cb531 100644
> > --- a/drivers/staging/imx-drm/imx-hdmi.c
> > +++ b/drivers/staging/imx-drm/imx-hdmi.c
> > @@ -140,6 +140,9 @@ struct imx_hdmi {
> >  	struct regmap *regmap;
> >  	struct i2c_adapter *ddc;
> >  	void __iomem *regs;
> > +	u8 sink_detect_polarity;
> > +	u8 sink_detect_status;
> > +	u8 sink_detect_mask;
> >  
> >  	unsigned int sample_rate;
> >  	int ratio;
> > @@ -1317,10 +1320,10 @@ static int imx_hdmi_fb_registered(struct imx_hdmi *hdmi)
> >  		    HDMI_PHY_I2CM_CTLINT_ADDR);
> >  
> >  	/* enable cable hot plug irq */
> > -	hdmi_writeb(hdmi, (u8)~HDMI_PHY_HPD, HDMI_PHY_MASK0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_mask, HDMI_PHY_MASK0);
> >  
> >  	/* Clear Hotplug interrupts */
> > -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
> >  
> >  	return 0;
> >  }
> > @@ -1392,6 +1395,7 @@ static enum drm_connector_status imx_hdmi_connector_detect(struct drm_connector
> >  {
> >  	struct imx_hdmi *hdmi = container_of(connector, struct imx_hdmi,
> >  					     connector);
> > +
> >  	return hdmi->connector_status;
> >  }
> >  
> > @@ -1530,18 +1534,20 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
> >  
> >  	phy_int_pol = hdmi_readb(hdmi, HDMI_PHY_POL0);
> >  
> > -	if (intr_stat & HDMI_IH_PHY_STAT0_HPD) {
> > -		if (phy_int_pol & HDMI_PHY_HPD) {
> > +	if (intr_stat & hdmi->sink_detect_status) {
> > +		int pol_bit = hdmi->sink_detect_polarity;
> > +
> > +		if (phy_int_pol & pol_bit) {
> >  			dev_dbg(hdmi->dev, "EVENT=plugin\n");
> >  
> > -			hdmi_modb(hdmi, 0, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +			hdmi_modb(hdmi, 0, pol_bit, HDMI_PHY_POL0);
> >  
> >  			hdmi->connector_status = connector_status_connected;
> >  			imx_hdmi_poweron(hdmi);
> >  		} else {
> >  			dev_dbg(hdmi->dev, "EVENT=plugout\n");
> >  
> > -			hdmi_modb(hdmi, HDMI_PHY_HPD, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +			hdmi_modb(hdmi, pol_bit, pol_bit, HDMI_PHY_POL0);
> >  
> >  			hdmi->connector_status = connector_status_disconnected;
> >  			imx_hdmi_poweroff(hdmi);
> > @@ -1550,7 +1556,7 @@ static irqreturn_t imx_hdmi_irq(int irq, void *dev_id)
> >  	}
> >  
> >  	hdmi_writeb(hdmi, intr_stat, HDMI_IH_PHY_STAT0);
> > -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> > +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
> >  
> >  	return IRQ_HANDLED;
> >  }
> > @@ -1702,14 +1708,24 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
> >  	 */
> >  	hdmi_init_clk_regenerator(hdmi);
> >  
> > +	hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_HPD;
> > +	hdmi->sink_detect_polarity = HDMI_PHY_HPD;
> > +	hdmi->sink_detect_mask = ~HDMI_PHY_HPD;
> > +
> > +	if (of_property_read_bool(np, "hpd-unreliable")) {
> > +		hdmi->sink_detect_status = HDMI_IH_PHY_STAT0_RX_SENSE0;
> > +		hdmi->sink_detect_polarity = HDMI_PHY_RX_SENSE0;
> > +		hdmi->sink_detect_mask = ~HDMI_PHY_RX_SENSE0;
> > +	}
> > +
> >  	/*
> >  	 * Configure registers related to HDMI interrupt
> >  	 * generation before registering IRQ.
> >  	 */
> > -	hdmi_writeb(hdmi, HDMI_PHY_HPD, HDMI_PHY_POL0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_polarity, HDMI_PHY_POL0);
> >  
> >  	/* Clear Hotplug interrupts */
> > -	hdmi_writeb(hdmi, HDMI_IH_PHY_STAT0_HPD, HDMI_IH_PHY_STAT0);
> > +	hdmi_writeb(hdmi, hdmi->sink_detect_status, HDMI_IH_PHY_STAT0);
> >  
> >  	ret = imx_hdmi_fb_registered(hdmi);
> >  	if (ret)
> > @@ -1720,7 +1736,7 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data)
> >  		goto err_iahb;
> >  
> >  	/* Unmute interrupts */
> > -	hdmi_writeb(hdmi, ~HDMI_IH_PHY_STAT0_HPD, HDMI_IH_MUTE_PHY_STAT0);
> > +	hdmi_writeb(hdmi, ~hdmi->sink_detect_status, HDMI_IH_MUTE_PHY_STAT0);
> >  
> >  	ret = snd_dw_hdmi_probe(&hdmi->audio, dev, hdmi->regs, irq, hdmi);
> >  	if (ret)
> > -- 
> > 1.8.5.2
> > 
> 
> 

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-01-13  8:47 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-01-10 14:22 [RFC PATCH v2] staging: imx-hdmi: use rx sense status for plug detection if hpd is unreliable Philipp Zabel
2014-01-10 14:22 ` Philipp Zabel
2014-01-10 14:51 ` Russell King - ARM Linux
2014-01-10 14:51   ` Russell King - ARM Linux
2014-01-11  3:23 ` Shawn Guo
2014-01-11  3:23   ` Shawn Guo
2014-01-13  8:47   ` Philipp Zabel
2014-01-13  8:47     ` Philipp Zabel

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.