dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes
@ 2017-01-11 23:49 Laurent Pinchart
  2017-01-11 23:49 ` [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses Laurent Pinchart
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-11 23:49 UTC (permalink / raw)
  To: dri-devel
  Cc: Fabio Estevam, Jose Abreu, Nickey Yang, Russell King, Andy Yan,
	Vladimir Zapolskiy

Hello,

These three small patches add to the 20 dw-hdmi patches previously submitted
in the "[PATCH v2 00/29] R-Car Gen3 HDMI output support" series. As only
patches 1 to 16 from that series have been approved and successfully tested
without any reported regression on all three dw-hdmi platforms, I've decided
to submit those three on top of the 16 first patches only and rebase the next
4 after fixing them (which should happen soon).

Patches 1 and 2 are cleanups and don't affect the generated code. Patch 3
is a fix that moves SVSRET setting to the right location as needed by the
hardware (thank you Jose for reporting the problem).

I plan to submit a pull request with the approved patches in the near future.
It will include these 3 patches if they can be acked soon enough.

Laurent Pinchart (3):
  drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  drm: bridge: dw-hdmi: Fix the name of the PHY reset macros
  drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY

 drivers/gpu/drm/bridge/dw-hdmi.c | 45 ++++++++++++++------------
 drivers/gpu/drm/bridge/dw-hdmi.h | 69 ++++++++++++++++++++++++++++++++++++++--
 2 files changed, 92 insertions(+), 22 deletions(-)

-- 
Regards,

Laurent Pinchart

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

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

* [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-11 23:49 [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Laurent Pinchart
@ 2017-01-11 23:49 ` Laurent Pinchart
  2017-01-12  1:45   ` Nickey.Yang
  2017-01-11 23:49 ` [PATCH 2/3] drm: bridge: dw-hdmi: Fix the name of the PHY reset macros Laurent Pinchart
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-11 23:49 UTC (permalink / raw)
  To: dri-devel
  Cc: Fabio Estevam, Jose Abreu, Nickey Yang, Russell King, Andy Yan,
	Vladimir Zapolskiy

Replace the hardcoded register address numerical values with macros to
clarify the code.

This change has been tested by comparing the assembly code before and
after the change.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
 drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
 drivers/gpu/drm/bridge/dw-hdmi.h | 66 ++++++++++++++++++++++++++++++++++++++++
 2 files changed, 86 insertions(+), 15 deletions(-)

diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c b/drivers/gpu/drm/bridge/dw-hdmi.c
index ef4f2f96ed2c..6e605fd910ef 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/dw-hdmi.c
@@ -997,21 +997,26 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi, int cscon)
 		    HDMI_PHY_I2CM_SLAVE_ADDR);
 	hdmi_phy_test_clear(hdmi, 0);
 
-	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce, 0x06);
-	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp, 0x15);
-
-	/* CURRCTRL */
-	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0], 0x10);
-
-	hdmi_phy_i2c_write(hdmi, 0x0000, 0x13);  /* PLLPHBYCTRL */
-	hdmi_phy_i2c_write(hdmi, 0x0006, 0x17);
-
-	hdmi_phy_i2c_write(hdmi, phy_config->term, 0x19);  /* TXTERM */
-	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr, 0x09); /* CKSYMTXCTRL */
-	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr, 0x0E); /* VLEVCTRL */
-
-	/* REMOVE CLK TERM */
-	hdmi_phy_i2c_write(hdmi, 0x8000, 0x05);  /* CKCALCTRL */
+	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
+			   HDMI_3D_TX_PHY_CPCE_CTRL);
+	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
+			   HDMI_3D_TX_PHY_GMPCTRL);
+	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
+			   HDMI_3D_TX_PHY_CURRCTRL);
+
+	hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
+	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
+			   HDMI_3D_TX_PHY_MSM_CTRL);
+
+	hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
+	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
+			   HDMI_3D_TX_PHY_CKSYMTXCTRL);
+	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
+			   HDMI_3D_TX_PHY_VLEVCTRL);
+
+	/* Override and disable clock termination. */
+	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
+			   HDMI_3D_TX_PHY_CKCALCTRL);
 
 	dw_hdmi_phy_enable_powerdown(hdmi, false);
 
diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h b/drivers/gpu/drm/bridge/dw-hdmi.h
index a4fd64a203c9..f3c149c88d71 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.h
+++ b/drivers/gpu/drm/bridge/dw-hdmi.h
@@ -1085,4 +1085,70 @@ enum {
 	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
 };
 
+/*
+ * HDMI 3D TX PHY registers
+ */
+#define HDMI_3D_TX_PHY_PWRCTRL			0x00
+#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
+#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
+#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
+#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
+#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
+#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
+#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
+#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
+#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
+#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
+#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
+#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
+#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
+#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
+#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
+#define HDMI_3D_TX_PHY_CURRCTRL			0x10
+#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
+#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
+#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
+#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
+#define HDMI_3D_TX_PHY_GMPCTRL			0x15
+#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
+#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
+#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
+#define HDMI_3D_TX_PHY_TXTERM			0x19
+#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
+#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
+#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
+#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
+#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
+#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
+#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
+#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
+#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
+#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
+#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
+#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
+#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
+
+/* HDMI_3D_TX_PHY_CKCALCTRL values */
+#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
+
+/* HDMI_3D_TX_PHY_MSM_CTRL values */
+#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
+#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
+#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
+#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
+#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
+#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
+
+/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
+#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
+
 #endif /* __DW_HDMI_H__ */
-- 
Regards,

Laurent Pinchart

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

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

* [PATCH 2/3] drm: bridge: dw-hdmi: Fix the name of the PHY reset macros
  2017-01-11 23:49 [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Laurent Pinchart
  2017-01-11 23:49 ` [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses Laurent Pinchart
@ 2017-01-11 23:49 ` Laurent Pinchart
  2017-01-11 23:49 ` [PATCH 3/3] drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY Laurent Pinchart
  2017-01-16 10:40 ` [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Jose Abreu
  3 siblings, 0 replies; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-11 23:49 UTC (permalink / raw)
  To: dri-devel
  Cc: Fabio Estevam, Jose Abreu, Nickey Yang, Russell King, Andy Yan,
	Vladimir Zapolskiy

The PHY reset signal is controlled by bit PHYRSTZ in the MC_PHYRSTZ
register. The signal is active low on Gen1 PHYs and active high on Gen2
PHYs. The driver toggles the signal high then low, which is correct for
all currently supported platforms, but the register values macros are
incorrectly named. Replace them with a single macro named after the bit,
and add a comment to the source code to explain the behaviour.

The driver's behaviour isn't changed by this rename, the code will still
need to be fixed to support Gen1 PHYs.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
 drivers/gpu/drm/bridge/dw-hdmi.c | 6 +++---
 drivers/gpu/drm/bridge/dw-hdmi.h | 3 +--
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c b/drivers/gpu/drm/bridge/dw-hdmi.c
index 6e605fd910ef..93e8816f1f78 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/dw-hdmi.c
@@ -986,9 +986,9 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi, int cscon)
 	/* gen2 pddq */
 	dw_hdmi_phy_gen2_pddq(hdmi, 1);
 
-	/* PHY reset */
-	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_DEASSERT, HDMI_MC_PHYRSTZ);
-	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_ASSERT, HDMI_MC_PHYRSTZ);
+	/* PHY reset. The reset signal is active high on Gen2 PHYs. */
+	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
+	hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
 
 	hdmi_writeb(hdmi, HDMI_MC_HEACPHY_RST_ASSERT, HDMI_MC_HEACPHY_RST);
 
diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h b/drivers/gpu/drm/bridge/dw-hdmi.h
index f3c149c88d71..325b0b8ae639 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.h
+++ b/drivers/gpu/drm/bridge/dw-hdmi.h
@@ -989,8 +989,7 @@ enum {
 	HDMI_MC_FLOWCTRL_FEED_THROUGH_OFF_CSC_BYPASS = 0x0,
 
 /* MC_PHYRSTZ field values */
-	HDMI_MC_PHYRSTZ_ASSERT = 0x0,
-	HDMI_MC_PHYRSTZ_DEASSERT = 0x1,
+	HDMI_MC_PHYRSTZ_PHYRSTZ = 0x01,
 
 /* MC_HEACPHY_RST field values */
 	HDMI_MC_HEACPHY_RST_ASSERT = 0x1,
-- 
Regards,

Laurent Pinchart

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

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

* [PATCH 3/3] drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY
  2017-01-11 23:49 [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Laurent Pinchart
  2017-01-11 23:49 ` [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses Laurent Pinchart
  2017-01-11 23:49 ` [PATCH 2/3] drm: bridge: dw-hdmi: Fix the name of the PHY reset macros Laurent Pinchart
@ 2017-01-11 23:49 ` Laurent Pinchart
  2017-01-16 10:40 ` [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Jose Abreu
  3 siblings, 0 replies; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-11 23:49 UTC (permalink / raw)
  To: dri-devel
  Cc: Fabio Estevam, Jose Abreu, Nickey Yang, Russell King, Andy Yan,
	Vladimir Zapolskiy

According to the PHY IP core vendor, the SVSRET signal must be asserted
before resetting the PHY. Tests on RK3288 and R-Car Gen3 showed no
regression, the change should thus be safe.

Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
---
 drivers/gpu/drm/bridge/dw-hdmi.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c b/drivers/gpu/drm/bridge/dw-hdmi.c
index 93e8816f1f78..4fda0717e789 100644
--- a/drivers/gpu/drm/bridge/dw-hdmi.c
+++ b/drivers/gpu/drm/bridge/dw-hdmi.c
@@ -986,6 +986,10 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi, int cscon)
 	/* gen2 pddq */
 	dw_hdmi_phy_gen2_pddq(hdmi, 1);
 
+	/* Leave low power consumption mode by asserting SVSRET. */
+	if (hdmi->phy->has_svsret)
+		dw_hdmi_phy_enable_svsret(hdmi, 1);
+
 	/* PHY reset. The reset signal is active high on Gen2 PHYs. */
 	hdmi_writeb(hdmi, HDMI_MC_PHYRSTZ_PHYRSTZ, HDMI_MC_PHYRSTZ);
 	hdmi_writeb(hdmi, 0, HDMI_MC_PHYRSTZ);
@@ -1028,11 +1032,7 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi, int cscon)
 	dw_hdmi_phy_gen2_txpwron(hdmi, 1);
 	dw_hdmi_phy_gen2_pddq(hdmi, 0);
 
-	/* The DWC MHL and HDMI 2.0 PHYs need the SVSRET signal to be set. */
-	if (hdmi->phy->has_svsret)
-		dw_hdmi_phy_enable_svsret(hdmi, 1);
-
-	/*Wait for PHY PLL lock */
+	/* Wait for PHY PLL lock */
 	msec = 5;
 	do {
 		val = hdmi_readb(hdmi, HDMI_PHY_STAT0) & HDMI_PHY_TX_PHY_LOCK;
-- 
Regards,

Laurent Pinchart

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

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

* Re: [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-11 23:49 ` [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses Laurent Pinchart
@ 2017-01-12  1:45   ` Nickey.Yang
  2017-01-12 15:26     ` Laurent Pinchart
  0 siblings, 1 reply; 10+ messages in thread
From: Nickey.Yang @ 2017-01-12  1:45 UTC (permalink / raw)
  To: Laurent Pinchart, dri-devel
  Cc: Fabio Estevam, Andy Yan, Jose Abreu, Vladimir Zapolskiy,
	Russell King


[-- Attachment #1.1: Type: text/plain, Size: 5671 bytes --]

Hi Laurent,


在 2017年01月12日 07:49, Laurent Pinchart 写道:
> Replace the hardcoded register address numerical values with macros to
> clarify the code.
>
> This change has been tested by comparing the assembly code before and
> after the change.
>
> Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
> ---
>   drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
>   drivers/gpu/drm/bridge/dw-hdmi.h | 66 ++++++++++++++++++++++++++++++++++++++++
>   2 files changed, 86 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c b/drivers/gpu/drm/bridge/dw-hdmi.c
> index ef4f2f96ed2c..6e605fd910ef 100644
> --- a/drivers/gpu/drm/bridge/dw-hdmi.c
> +++ b/drivers/gpu/drm/bridge/dw-hdmi.c
> @@ -997,21 +997,26 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi, int cscon)
>   		    HDMI_PHY_I2CM_SLAVE_ADDR);
>   	hdmi_phy_test_clear(hdmi, 0);
>   
> -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce, 0x06);
> -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp, 0x15);
> -
> -	/* CURRCTRL */
> -	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0], 0x10);
> -
> -	hdmi_phy_i2c_write(hdmi, 0x0000, 0x13);  /* PLLPHBYCTRL */
> -	hdmi_phy_i2c_write(hdmi, 0x0006, 0x17);
> -
> -	hdmi_phy_i2c_write(hdmi, phy_config->term, 0x19);  /* TXTERM */
> -	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr, 0x09); /* CKSYMTXCTRL */
> -	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr, 0x0E); /* VLEVCTRL */
> -
> -	/* REMOVE CLK TERM */
> -	hdmi_phy_i2c_write(hdmi, 0x8000, 0x05);  /* CKCALCTRL */
> +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
> +			   HDMI_3D_TX_PHY_CPCE_CTRL);
> +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
> +			   HDMI_3D_TX_PHY_GMPCTRL);
> +	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
> +			   HDMI_3D_TX_PHY_CURRCTRL);
> +
> +	hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
> +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
> +			   HDMI_3D_TX_PHY_MSM_CTRL);
> +
> +	hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
> +	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
> +			   HDMI_3D_TX_PHY_CKSYMTXCTRL);
> +	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
> +			   HDMI_3D_TX_PHY_VLEVCTRL);
> +
> +	/* Override and disable clock termination. */
> +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
> +			   HDMI_3D_TX_PHY_CKCALCTRL);
>   
>   	dw_hdmi_phy_enable_powerdown(hdmi, false);
>   
> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h b/drivers/gpu/drm/bridge/dw-hdmi.h
> index a4fd64a203c9..f3c149c88d71 100644
> --- a/drivers/gpu/drm/bridge/dw-hdmi.h
> +++ b/drivers/gpu/drm/bridge/dw-hdmi.h
> @@ -1085,4 +1085,70 @@ enum {
>   	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
>   };
>   
> +/*
> + * HDMI 3D TX PHY registers
> + */

Why is there 3D related words?I did not find "3D" words in PHY IP vendor 
document.
> +#define HDMI_3D_TX_PHY_PWRCTRL			0x00
> +#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
> +#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
> +#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
> +#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
> +#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
> +#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
> +#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
> +#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
> +#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
> +#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
> +#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
> +#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
> +#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
> +#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
> +#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
> +#define HDMI_3D_TX_PHY_CURRCTRL			0x10
> +#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
> +#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
> +#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
> +#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
> +#define HDMI_3D_TX_PHY_GMPCTRL			0x15
> +#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
> +#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
> +#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
> +#define HDMI_3D_TX_PHY_TXTERM			0x19
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
> +#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
> +#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
> +#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
> +#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
> +#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
> +#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
> +#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
> +#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
> +#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
> +#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
> +#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
> +#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
> +
> +/* HDMI_3D_TX_PHY_CKCALCTRL values */
> +#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
> +
> +/* HDMI_3D_TX_PHY_MSM_CTRL values */
> +#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
> +#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
> +
> +/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
> +
>   #endif /* __DW_HDMI_H__ */


[-- Attachment #1.2: Type: text/html, Size: 7349 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

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

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

* Re: [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-12  1:45   ` Nickey.Yang
@ 2017-01-12 15:26     ` Laurent Pinchart
  2017-01-13  1:32       ` Nickey.Yang
  0 siblings, 1 reply; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-12 15:26 UTC (permalink / raw)
  To: Nickey.Yang
  Cc: Fabio Estevam, Jose Abreu, Laurent Pinchart, dri-devel,
	Russell King, Andy Yan, Vladimir Zapolskiy

Hi Nickey,

On Thursday 12 Jan 2017 09:45:31 Nickey.Yang wrote:
> 在 2017年01月12日 07:49, Laurent Pinchart 写道:
> > Replace the hardcoded register address numerical values with macros to
> > clarify the code.
> > 
> > This change has been tested by comparing the assembly code before and
> > after the change.
> > 
> > Signed-off-by: Laurent Pinchart
> > <laurent.pinchart+renesas@ideasonboard.com>
> > ---
> > 
> > drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
> > drivers/gpu/drm/bridge/dw-hdmi.h | 66 ++++++++++++++++++++++++++++++++++++
> > 2 files changed, 86 insertions(+), 15 deletions(-)
> > 
> > diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c
> > b/drivers/gpu/drm/bridge/dw-hdmi.c index ef4f2f96ed2c..6e605fd910ef
> > 100644
> > --- a/drivers/gpu/drm/bridge/dw-hdmi.c
> > +++ b/drivers/gpu/drm/bridge/dw-hdmi.c
> > @@ -997,21 +997,26 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi,
> > int cscon)
> >   		    HDMI_PHY_I2CM_SLAVE_ADDR);
> >   	hdmi_phy_test_clear(hdmi, 0);
> > 
> > -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce, 0x06);
> > -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp, 0x15);
> > -
> > -	/* CURRCTRL */
> > -	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0], 0x10);
> > -
> > -	hdmi_phy_i2c_write(hdmi, 0x0000, 0x13);  /* PLLPHBYCTRL */
> > -	hdmi_phy_i2c_write(hdmi, 0x0006, 0x17);
> > -
> > -	hdmi_phy_i2c_write(hdmi, phy_config->term, 0x19);  /* TXTERM */
> > -	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr, 0x09); /* CKSYMTXCTRL */
> > -	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr, 0x0E); /* VLEVCTRL */
> > -
> > -	/* REMOVE CLK TERM */
> > -	hdmi_phy_i2c_write(hdmi, 0x8000, 0x05);  /* CKCALCTRL */
> > +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
> > +			   HDMI_3D_TX_PHY_CPCE_CTRL);
> > +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
> > +			   HDMI_3D_TX_PHY_GMPCTRL);
> > +	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
> > +			   HDMI_3D_TX_PHY_CURRCTRL);
> > +
> > +	hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
> > +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
> > +			   HDMI_3D_TX_PHY_MSM_CTRL);
> > +
> > +	hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
> > +	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
> > +			   HDMI_3D_TX_PHY_CKSYMTXCTRL);
> > +	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
> > +			   HDMI_3D_TX_PHY_VLEVCTRL);
> > +
> > +	/* Override and disable clock termination. */
> > +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
> > +			   HDMI_3D_TX_PHY_CKCALCTRL);
> > 
> >   	dw_hdmi_phy_enable_powerdown(hdmi, false);
> > 
> > diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h
> > b/drivers/gpu/drm/bridge/dw-hdmi.h index a4fd64a203c9..f3c149c88d71
> > 100644
> > --- a/drivers/gpu/drm/bridge/dw-hdmi.h
> > +++ b/drivers/gpu/drm/bridge/dw-hdmi.h
> > @@ -1085,4 +1085,70 @@ enum {
> >   	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
> >   };
> > 
> > +/*
> > + * HDMI 3D TX PHY registers
> > + */
> 
> Why is there 3D related words?

The register names come from the i.MX6 datasheet. I don't have access to any 
PHY datasheet from Synopsys, and the Rockchip RK3288 manuals I've been able to 
find don't document the HDMI PHY register. As the PHY used by i.MX6 is a "DWC 
HDMI 3D TX PHY", I'd used that name in the code.

The "DWC MHL PHY" used by RK3288 seems to be use a similar (if not identical) 
registers map, at least for the registers configured by the driver. The "DWC 
HDMI 2.0 TX PHY" PHY used by R-Car Gen3, however, seems not to have a 
compatible register interface, except for the HDMI_3D_TX_PHY_PTRPT_ENBL 
register.

I'm open to suggestions for a better naming scheme. If you have additional 
information that I don't have access to, please feel free to use them to 
propose improvements or to point out my mistakes :-)

> I did not find "3D" words in PHY IP vendor document.

How is the PHY named in the documentation you have access to ?

> > +#define HDMI_3D_TX_PHY_PWRCTRL			0x00
> > +#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
> > +#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
> > +#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
> > +#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
> > +#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
> > +#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
> > +#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
> > +#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
> > +#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
> > +#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
> > +#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
> > +#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
> > +#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
> > +#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
> > +#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
> > +#define HDMI_3D_TX_PHY_CURRCTRL			0x10
> > +#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
> > +#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
> > +#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
> > +#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
> > +#define HDMI_3D_TX_PHY_GMPCTRL			0x15
> > +#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
> > +#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
> > +#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
> > +#define HDMI_3D_TX_PHY_TXTERM			0x19
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
> > +#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
> > +#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
> > +#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
> > +#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
> > +#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
> > +#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
> > +#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
> > +#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
> > +#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
> > +#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
> > +#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
> > +#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
> > +
> > +/* HDMI_3D_TX_PHY_CKCALCTRL values */
> > +#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
> > +
> > +/* HDMI_3D_TX_PHY_MSM_CTRL values */
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
> > +#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
> > +
> > +/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
> > +#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
> > +
> > 
> >   #endif /* __DW_HDMI_H__ */

-- 
Regards,

Laurent Pinchart

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

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

* Re: [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-12 15:26     ` Laurent Pinchart
@ 2017-01-13  1:32       ` Nickey.Yang
  2017-01-13 13:46         ` Laurent Pinchart
  0 siblings, 1 reply; 10+ messages in thread
From: Nickey.Yang @ 2017-01-13  1:32 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: Fabio Estevam, Jose Abreu, Laurent Pinchart, dri-devel,
	Russell King, Andy Yan, Vladimir Zapolskiy

Hi  Laurent,


在 2017年01月12日 23:26, Laurent Pinchart 写道:
> Hi Nickey,
>
> On Thursday 12 Jan 2017 09:45:31 Nickey.Yang wrote:
>> 在 2017年01月12日 07:49, Laurent Pinchart 写道:
>>> Replace the hardcoded register address numerical values with macros to
>>> clarify the code.
>>>
>>> This change has been tested by comparing the assembly code before and
>>> after the change.
>>>
>>> Signed-off-by: Laurent Pinchart
>>> <laurent.pinchart+renesas@ideasonboard.com>
>>> ---
>>>
>>> drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
>>> drivers/gpu/drm/bridge/dw-hdmi.h | 66 ++++++++++++++++++++++++++++++++++++
>>> 2 files changed, 86 insertions(+), 15 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.c
>>> b/drivers/gpu/drm/bridge/dw-hdmi.c index ef4f2f96ed2c..6e605fd910ef
>>> 100644
>>> --- a/drivers/gpu/drm/bridge/dw-hdmi.c
>>> +++ b/drivers/gpu/drm/bridge/dw-hdmi.c
>>> @@ -997,21 +997,26 @@ static int hdmi_phy_configure(struct dw_hdmi *hdmi,
>>> int cscon)
>>>    		    HDMI_PHY_I2CM_SLAVE_ADDR);
>>>    	hdmi_phy_test_clear(hdmi, 0);
>>>
>>> -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce, 0x06);
>>> -	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp, 0x15);
>>> -
>>> -	/* CURRCTRL */
>>> -	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0], 0x10);
>>> -
>>> -	hdmi_phy_i2c_write(hdmi, 0x0000, 0x13);  /* PLLPHBYCTRL */
>>> -	hdmi_phy_i2c_write(hdmi, 0x0006, 0x17);
>>> -
>>> -	hdmi_phy_i2c_write(hdmi, phy_config->term, 0x19);  /* TXTERM */
>>> -	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr, 0x09); /* CKSYMTXCTRL */
>>> -	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr, 0x0E); /* VLEVCTRL */
>>> -
>>> -	/* REMOVE CLK TERM */
>>> -	hdmi_phy_i2c_write(hdmi, 0x8000, 0x05);  /* CKCALCTRL */
>>> +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].cpce,
>>> +			   HDMI_3D_TX_PHY_CPCE_CTRL);
>>> +	hdmi_phy_i2c_write(hdmi, mpll_config->res[0].gmp,
>>> +			   HDMI_3D_TX_PHY_GMPCTRL);
>>> +	hdmi_phy_i2c_write(hdmi, curr_ctrl->curr[0],
>>> +			   HDMI_3D_TX_PHY_CURRCTRL);
>>> +
>>> +	hdmi_phy_i2c_write(hdmi, 0, HDMI_3D_TX_PHY_PLLPHBYCTRL);
>>> +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK,
>>> +			   HDMI_3D_TX_PHY_MSM_CTRL);
>>> +
>>> +	hdmi_phy_i2c_write(hdmi, phy_config->term, HDMI_3D_TX_PHY_TXTERM);
>>> +	hdmi_phy_i2c_write(hdmi, phy_config->sym_ctr,
>>> +			   HDMI_3D_TX_PHY_CKSYMTXCTRL);
>>> +	hdmi_phy_i2c_write(hdmi, phy_config->vlev_ctr,
>>> +			   HDMI_3D_TX_PHY_VLEVCTRL);
>>> +
>>> +	/* Override and disable clock termination. */
>>> +	hdmi_phy_i2c_write(hdmi, HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE,
>>> +			   HDMI_3D_TX_PHY_CKCALCTRL);
>>>
>>>    	dw_hdmi_phy_enable_powerdown(hdmi, false);
>>>
>>> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h
>>> b/drivers/gpu/drm/bridge/dw-hdmi.h index a4fd64a203c9..f3c149c88d71
>>> 100644
>>> --- a/drivers/gpu/drm/bridge/dw-hdmi.h
>>> +++ b/drivers/gpu/drm/bridge/dw-hdmi.h
>>> @@ -1085,4 +1085,70 @@ enum {
>>>    	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
>>>    };
>>>
>>> +/*
>>> + * HDMI 3D TX PHY registers
>>> + */
>> Why is there 3D related words?
> The register names come from the i.MX6 datasheet. I don't have access to any
> PHY datasheet from Synopsys, and the Rockchip RK3288 manuals I've been able to
> find don't document the HDMI PHY register. As the PHY used by i.MX6 is a "DWC
> HDMI 3D TX PHY", I'd used that name in the code.
>
> The "DWC MHL PHY" used by RK3288 seems to be use a similar (if not identical)
> registers map, at least for the registers configured by the driver. The "DWC
> HDMI 2.0 TX PHY" PHY used by R-Car Gen3, however, seems not to have a
> compatible register interface, except for the HDMI_3D_TX_PHY_PTRPT_ENBL
> register.
>
> I'm open to suggestions for a better naming scheme. If you have additional
> information that I don't have access to, please feel free to use them to
> propose improvements or to point out my mistakes :-)
>
>> I did not find "3D" words in PHY IP vendor document.
> How is the PHY named in the documentation you have access to ?
>
just remove 3D word,such as  name HDMI_TX_PHY_PWRCTRL instead of 
HDMI_3D_TX_PHY_PWRCTRL
in       doc: HDMI Tx PHY for GLOBAL FOUNDRIES 28-nm SLP/1.8 V Databook, 
LCA Edition
           11.1 Control Registers Module Design Architecture
>>> +#define HDMI_3D_TX_PHY_PWRCTRL			0x00
>>> +#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
>>> +#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
>>> +#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
>>> +#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
>>> +#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
>>> +#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
>>> +#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
>>> +#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
>>> +#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
>>> +#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
>>> +#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
>>> +#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
>>> +#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
>>> +#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
>>> +#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
>>> +#define HDMI_3D_TX_PHY_CURRCTRL			0x10
>>> +#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
>>> +#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
>>> +#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
>>> +#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
>>> +#define HDMI_3D_TX_PHY_GMPCTRL			0x15
>>> +#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
>>> +#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
>>> +#define HDMI_3D_TX_PHY_TXTERM			0x19
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
>>> +#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
>>> +#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
>>> +#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
>>> +#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
>>> +#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
>>> +#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
>>> +#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
>>> +#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
>>> +#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
>>> +#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
>>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
>>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
>>> +
>>> +/* HDMI_3D_TX_PHY_CKCALCTRL values */
>>> +#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
>>> +
>>> +/* HDMI_3D_TX_PHY_MSM_CTRL values */
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
>>> +
>>> +/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
>>> +
>>>
>>>    #endif /* __DW_HDMI_H__ */


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

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

* Re: [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-13  1:32       ` Nickey.Yang
@ 2017-01-13 13:46         ` Laurent Pinchart
  2017-01-16  1:44           ` Nickey.Yang
  0 siblings, 1 reply; 10+ messages in thread
From: Laurent Pinchart @ 2017-01-13 13:46 UTC (permalink / raw)
  To: Nickey.Yang
  Cc: Fabio Estevam, Jose Abreu, Laurent Pinchart, dri-devel,
	Russell King, Andy Yan, Vladimir Zapolskiy

Hi Nickey,

On Friday 13 Jan 2017 09:32:54 Nickey.Yang wrote:
> 在 2017年01月12日 23:26, Laurent Pinchart 写道:
> > On Thursday 12 Jan 2017 09:45:31 Nickey.Yang wrote:
> >> 在 2017年01月12日 07:49, Laurent Pinchart 写道:
> >>> Replace the hardcoded register address numerical values with macros to
> >>> clarify the code.
> >>> 
> >>> This change has been tested by comparing the assembly code before and
> >>> after the change.
> >>> 
> >>> Signed-off-by: Laurent Pinchart
> >>> <laurent.pinchart+renesas@ideasonboard.com>
> >>> ---
> >>> 
> >>> drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
> >>> drivers/gpu/drm/bridge/dw-hdmi.h | 66 +++++++++++++++++++++++++++++++++
> >>> 2 files changed, 86 insertions(+), 15 deletions(-)

[snip]

> >>> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h
> >>> b/drivers/gpu/drm/bridge/dw-hdmi.h index a4fd64a203c9..f3c149c88d71
> >>> 100644
> >>> --- a/drivers/gpu/drm/bridge/dw-hdmi.h
> >>> +++ b/drivers/gpu/drm/bridge/dw-hdmi.h
> >>> @@ -1085,4 +1085,70 @@ enum {
> >>> 
> >>>    	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
> >>>    
> >>>    };
> >>> 
> >>> +/*
> >>> + * HDMI 3D TX PHY registers
> >>> + */
> >> 
> >> Why is there 3D related words?
> > 
> > The register names come from the i.MX6 datasheet. I don't have access to
> > any PHY datasheet from Synopsys, and the Rockchip RK3288 manuals I've
> > been able to find don't document the HDMI PHY register. As the PHY used
> > by i.MX6 is a "DWC HDMI 3D TX PHY", I'd used that name in the code.
> > 
> > The "DWC MHL PHY" used by RK3288 seems to be use a similar (if not
> > identical) registers map, at least for the registers configured by the
> > driver. The "DWC HDMI 2.0 TX PHY" PHY used by R-Car Gen3, however, seems
> > not to have a compatible register interface, except for the
> > HDMI_3D_TX_PHY_PTRPT_ENBL register.
> > 
> > I'm open to suggestions for a better naming scheme. If you have additional
> > information that I don't have access to, please feel free to use them to
> > propose improvements or to point out my mistakes :-)
> > 
> >> I did not find "3D" words in PHY IP vendor document.
> > 
> > How is the PHY named in the documentation you have access to ?
> 
> just remove 3D word,such as  name HDMI_TX_PHY_PWRCTRL instead of
> HDMI_3D_TX_PHY_PWRCTRL
> in doc: HDMI Tx PHY for GLOBAL FOUNDRIES 28-nm SLP/1.8 V Databook,
> LCA Edition
>            11.1 Control Registers Module Design Architecture

https://www.synopsys.com/dw/ipdir.php?ds=dwc_hdmi_14_csds_tx doesn't list that 
document, but mentions "DesignWare Cores HDMI 3D TX PHY for GLOBALFOUNDARIES 
28-nm SLP/1.8 V Databook". The description of the corresponding PHY, however, 
is "HDMI 1.4 TX PHY 3.4Gbps in GF 28nm SLP 1.8V, East/West Poly Orientation".

I assume that HDMI 1.4 TX PHYs originally didn't have 3D support, and new PHYs 
with 3D support were then named "HDMI 3D TX PHY". After some time PHYs without 
3D support were dropped from the product line, and 3D then got dropped from 
the name.

We could use the "HDMI_14_TX_PHY" prefix, to differentiate the registers from 
the HDMI 2.0 TX PHY registers that would use a "HDMI_20_TX_PHY" prefix. 
"HDMI_TX_PHY" prefix could be used for registers common between the two PHY 
types. I'm sure that wouldn't cover the whole product range, but with no 
additional information it's hard to come up with a better proposal (actually 
even this wouldn't be very easy, as I don't have much documentation about the 
HDMI 2.0 TX PHY registers).

By the way, does your HDMI TX controller databook (not the TX PHY but the TX 
controller) mention "HDMI 3D TX PHY" in the config2_id register (0x0006) 
documentation ? How does it name PHY type 0xF2 for instance ? And PHY type 
0xC2, which I believe is the PHY used by the RK3288 (please correct me if I'm 
wrong there) ?

> >>> +#define HDMI_3D_TX_PHY_PWRCTRL			0x00
> >>> +#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
> >>> +#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
> >>> +#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
> >>> +#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
> >>> +#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
> >>> +#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
> >>> +#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
> >>> +#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
> >>> +#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
> >>> +#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
> >>> +#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
> >>> +#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
> >>> +#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
> >>> +#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
> >>> +#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
> >>> +#define HDMI_3D_TX_PHY_CURRCTRL			0x10
> >>> +#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
> >>> +#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
> >>> +#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
> >>> +#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
> >>> +#define HDMI_3D_TX_PHY_GMPCTRL			0x15
> >>> +#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
> >>> +#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
> >>> +#define HDMI_3D_TX_PHY_TXTERM			0x19
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
> >>> +#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
> >>> +#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
> >>> +#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
> >>> +#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
> >>> +#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
> >>> +#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
> >>> +#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
> >>> +#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
> >>> +#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
> >>> +#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
> >>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
> >>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
> >>> +
> >>> +/* HDMI_3D_TX_PHY_CKCALCTRL values */
> >>> +#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
> >>> +
> >>> +/* HDMI_3D_TX_PHY_MSM_CTRL values */
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
> >>> +#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
> >>> +
> >>> +/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
> >>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
> >>> +
> >>>  #endif /* __DW_HDMI_H__ */

-- 
Regards,

Laurent Pinchart

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

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

* Re: [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
  2017-01-13 13:46         ` Laurent Pinchart
@ 2017-01-16  1:44           ` Nickey.Yang
  0 siblings, 0 replies; 10+ messages in thread
From: Nickey.Yang @ 2017-01-16  1:44 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: Fabio Estevam, Jose Abreu, Laurent Pinchart, dri-devel,
	Russell King, Andy Yan, Vladimir Zapolskiy

Hi Laurent,


在 2017年01月13日 21:46, Laurent Pinchart 写道:
> On Friday 13 Jan 2017 09:32:54 Nickey.Yang wrote:
>> 在 2017年01月12日 23:26, Laurent Pinchart 写道:
>>> On Thursday 12 Jan 2017 09:45:31 Nickey.Yang wrote:
>>>> 在 2017年01月12日 07:49, Laurent Pinchart 写道:
>>>>> Replace the hardcoded register address numerical values with macros to
>>>>> clarify the code.
>>>>>
>>>>> This change has been tested by comparing the assembly code before and
>>>>> after the change.
>>>>>
>>>>> Signed-off-by: Laurent Pinchart
>>>>> <laurent.pinchart+renesas@ideasonboard.com>
>>>>> ---
>>>>>
>>>>> drivers/gpu/drm/bridge/dw-hdmi.c | 35 ++++++++++++---------
>>>>> drivers/gpu/drm/bridge/dw-hdmi.h | 66 +++++++++++++++++++++++++++++++++
>>>>> 2 files changed, 86 insertions(+), 15 deletions(-)
>>>>>
>>>>>
>>>>> diff --git a/drivers/gpu/drm/bridge/dw-hdmi.h
>>>>> b/drivers/gpu/drm/bridge/dw-hdmi.h index a4fd64a203c9..f3c149c88d71
>>>>> 100644
>>>>> --- a/drivers/gpu/drm/bridge/dw-hdmi.h
>>>>> +++ b/drivers/gpu/drm/bridge/dw-hdmi.h
>>>>> @@ -1085,4 +1085,70 @@ enum {
>>>>>
>>>>>     	HDMI_I2CM_CTLINT_ARB_MASK = 0x4,
>>>>>     
>>>>>     };
>>>>>
>>>>> +/*
>>>>> + * HDMI 3D TX PHY registers
>>>>> + */
>>>> Why is there 3D related words?
>>> The register names come from the i.MX6 datasheet. I don't have access to
>>> any PHY datasheet from Synopsys, and the Rockchip RK3288 manuals I've
>>> been able to find don't document the HDMI PHY register. As the PHY used
>>> by i.MX6 is a "DWC HDMI 3D TX PHY", I'd used that name in the code.
>>>
>>> The "DWC MHL PHY" used by RK3288 seems to be use a similar (if not
>>> identical) registers map, at least for the registers configured by the
>>> driver. The "DWC HDMI 2.0 TX PHY" PHY used by R-Car Gen3, however, seems
>>> not to have a compatible register interface, except for the
>>> HDMI_3D_TX_PHY_PTRPT_ENBL register.
>>>
>>> I'm open to suggestions for a better naming scheme. If you have additional
>>> information that I don't have access to, please feel free to use them to
>>> propose improvements or to point out my mistakes :-)
>>>
>>>> I did not find "3D" words in PHY IP vendor document.
>>> How is the PHY named in the documentation you have access to ?
>> just remove 3D word,such as  name HDMI_TX_PHY_PWRCTRL instead of
>> HDMI_3D_TX_PHY_PWRCTRL
>> in doc: HDMI Tx PHY for GLOBAL FOUNDRIES 28-nm SLP/1.8 V Databook,
>> LCA Edition
>>             11.1 Control Registers Module Design Architecture
> https://www.synopsys.com/dw/ipdir.php?ds=dwc_hdmi_14_csds_tx doesn't list that
> document, but mentions "DesignWare Cores HDMI 3D TX PHY for GLOBALFOUNDARIES
> 28-nm SLP/1.8 V Databook". The description of the corresponding PHY, however,
> is "HDMI 1.4 TX PHY 3.4Gbps in GF 28nm SLP 1.8V, East/West Poly Orientation".
>
> I assume that HDMI 1.4 TX PHYs originally didn't have 3D support, and new PHYs
> with 3D support were then named "HDMI 3D TX PHY". After some time PHYs without
> 3D support were dropped from the product line, and 3D then got dropped from
> the name.
I agree with your point, I have compared the whole of registers, most of 
them is the same.
This patch should not affect use, so i think weather the 3D words are 
reserved or not is OK.
> We could use the "HDMI_14_TX_PHY" prefix, to differentiate the registers from
> the HDMI 2.0 TX PHY registers that would use a "HDMI_20_TX_PHY" prefix.
> "HDMI_TX_PHY" prefix could be used for registers common between the two PHY
> types. I'm sure that wouldn't cover the whole product range, but with no
> additional information it's hard to come up with a better proposal (actually
> even this wouldn't be very easy, as I don't have much documentation about the
> HDMI 2.0 TX PHY registers).
>
> By the way, does your HDMI TX controller databook (not the TX PHY but the TX
> controller) mention "HDMI 3D TX PHY" in the config2_id register (0x0006)
> documentation ? How does it name PHY type 0xF2 for instance ? And PHY type
> 0xC2, which I believe is the PHY used by the RK3288 (please correct me if I'm
> wrong there) ?
Configuration Identification Register 2(0x0006)
Bits           Name               Description
7:0          phytype              Indicates the type of PHY interface 
selected:
                                             0x00: Legacy PHY (HDMI TX PHY)
                                             0xB2: PHY_HDMI-MHL with HEAC
                                             0xC2: PHY_HDMI-MHL
                                             0xF2: PHY_GEN2 (HDMI 3D TX PHY)
                                             0xE2: PHY_GEN2 (HDMI 3D TX 
PHY) + HEAC PHY

and in rk3288
root@linaro-alip:~# io -4 0xff980018
ff980018:  000000c2
RK3288 use "PHY_HDMI-MHL"
>>>>> +#define HDMI_3D_TX_PHY_PWRCTRL			0x00
>>>>> +#define HDMI_3D_TX_PHY_SERDIVCTRL		0x01
>>>>> +#define HDMI_3D_TX_PHY_SERCKCTRL		0x02
>>>>> +#define HDMI_3D_TX_PHY_SERCKKILLCTRL		0x03
>>>>> +#define HDMI_3D_TX_PHY_TXRESCTRL		0x04
>>>>> +#define HDMI_3D_TX_PHY_CKCALCTRL		0x05
>>>>> +#define HDMI_3D_TX_PHY_CPCE_CTRL		0x06
>>>>> +#define HDMI_3D_TX_PHY_TXCLKMEASCTRL		0x07
>>>>> +#define HDMI_3D_TX_PHY_TXMEASCTRL		0x08
>>>>> +#define HDMI_3D_TX_PHY_CKSYMTXCTRL		0x09
>>>>> +#define HDMI_3D_TX_PHY_CMPSEQCTRL		0x0a
>>>>> +#define HDMI_3D_TX_PHY_CMPPWRCTRL		0x0b
>>>>> +#define HDMI_3D_TX_PHY_CMPMODECTRL		0x0c
>>>>> +#define HDMI_3D_TX_PHY_MEASCTRL			0x0d
>>>>> +#define HDMI_3D_TX_PHY_VLEVCTRL			0x0e
>>>>> +#define HDMI_3D_TX_PHY_D2ACTRL			0x0f
>>>>> +#define HDMI_3D_TX_PHY_CURRCTRL			0x10
>>>>> +#define HDMI_3D_TX_PHY_DRVANACTRL		0x11
>>>>> +#define HDMI_3D_TX_PHY_PLLMEASCTRL		0x12
>>>>> +#define HDMI_3D_TX_PHY_PLLPHBYCTRL		0x13
>>>>> +#define HDMI_3D_TX_PHY_GRP_CTRL			0x14
>>>>> +#define HDMI_3D_TX_PHY_GMPCTRL			0x15
>>>>> +#define HDMI_3D_TX_PHY_MPLLMEASCTRL		0x16
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL			0x17
>>>>> +#define HDMI_3D_TX_PHY_SCRPB_STATUS		0x18
>>>>> +#define HDMI_3D_TX_PHY_TXTERM			0x19
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL		0x1a
>>>>> +#define HDMI_3D_TX_PHY_PATTERNGEN		0x1b
>>>>> +#define HDMI_3D_TX_PHY_SDCAP_MODE		0x1c
>>>>> +#define HDMI_3D_TX_PHY_SCOPEMODE		0x1d
>>>>> +#define HDMI_3D_TX_PHY_DIGTXMODE		0x1e
>>>>> +#define HDMI_3D_TX_PHY_STR_STATUS		0x1f
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNT0		0x20
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNT1		0x21
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNT2		0x22
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNTCLK		0x23
>>>>> +#define HDMI_3D_TX_PHY_SCOPESAMPLE		0x24
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB01		0x25
>>>>> +#define HDMI_3D_TX_PHY_SCOPECNTMSB2CK		0x26
>>>>> +
>>>>> +/* HDMI_3D_TX_PHY_CKCALCTRL values */
>>>>> +#define HDMI_3D_TX_PHY_CKCALCTRL_OVERRIDE		BIT(15)
>>>>> +
>>>>> +/* HDMI_3D_TX_PHY_MSM_CTRL values */
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_MPLL_PH_SEL_CK		BIT(13)
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_CLK_REF_MPLL	(0 << 1)
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_OFF		(1 << 1)
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_PCLK		(2 << 1)
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_CKO_SEL_FB_CLK		(3 << 1)
>>>>> +#define HDMI_3D_TX_PHY_MSM_CTRL_SCOPE_CK_SEL		BIT(0)
>>>>> +
>>>>> +/* HDMI_3D_TX_PHY_PTRPT_ENBL values */
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_OVERRIDE		BIT(15)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT2		BIT(8)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT1		BIT(7)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_PG_SKIP_BIT0		BIT(6)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CK_REF_ENB		BIT(5)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_RCAL_ENB		BIT(4)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_CLK_ALIGN_ENB	BIT(3)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_TX_READY		BIT(2)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_CKO_WORD_ENB		BIT(1)
>>>>> +#define HDMI_3D_TX_PHY_PTRPT_ENBL_REFCLK_ENB		BIT(0)
>>>>> +
>>>>>   #endif /* __DW_HDMI_H__ */


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

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

* Re: [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes
  2017-01-11 23:49 [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Laurent Pinchart
                   ` (2 preceding siblings ...)
  2017-01-11 23:49 ` [PATCH 3/3] drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY Laurent Pinchart
@ 2017-01-16 10:40 ` Jose Abreu
  3 siblings, 0 replies; 10+ messages in thread
From: Jose Abreu @ 2017-01-16 10:40 UTC (permalink / raw)
  To: Laurent Pinchart, dri-devel
  Cc: Fabio Estevam, Jose Abreu, Nickey Yang, Russell King, Andy Yan,
	Vladimir Zapolskiy

Hi Laurent,


Sorry for the late review.


On 11-01-2017 23:49, Laurent Pinchart wrote:
> Hello,
>
> These three small patches add to the 20 dw-hdmi patches previously submitted
> in the "[PATCH v2 00/29] R-Car Gen3 HDMI output support" series. As only
> patches 1 to 16 from that series have been approved and successfully tested
> without any reported regression on all three dw-hdmi platforms, I've decided
> to submit those three on top of the 16 first patches only and rebase the next
> 4 after fixing them (which should happen soon).
>
> Patches 1 and 2 are cleanups and don't affect the generated code. Patch 3
> is a fix that moves SVSRET setting to the right location as needed by the
> hardware (thank you Jose for reporting the problem).
>
> I plan to submit a pull request with the approved patches in the near future.
> It will include these 3 patches if they can be acked soon enough.
>
> Laurent Pinchart (3):
>   drm: bridge: dw-hdmi: Define and use macros for PHY register addresses
>   drm: bridge: dw-hdmi: Fix the name of the PHY reset macros
>   drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY

The whole patchset is: Reviewed-by: Jose Abreu <joabreu@synopsys.com>

Thanks! :)

Best regards,
Jose Miguel Abreu

>
>  drivers/gpu/drm/bridge/dw-hdmi.c | 45 ++++++++++++++------------
>  drivers/gpu/drm/bridge/dw-hdmi.h | 69 ++++++++++++++++++++++++++++++++++++++--
>  2 files changed, 92 insertions(+), 22 deletions(-)
>

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

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

end of thread, other threads:[~2017-01-16 10:46 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-01-11 23:49 [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Laurent Pinchart
2017-01-11 23:49 ` [PATCH 1/3] drm: bridge: dw-hdmi: Define and use macros for PHY register addresses Laurent Pinchart
2017-01-12  1:45   ` Nickey.Yang
2017-01-12 15:26     ` Laurent Pinchart
2017-01-13  1:32       ` Nickey.Yang
2017-01-13 13:46         ` Laurent Pinchart
2017-01-16  1:44           ` Nickey.Yang
2017-01-11 23:49 ` [PATCH 2/3] drm: bridge: dw-hdmi: Fix the name of the PHY reset macros Laurent Pinchart
2017-01-11 23:49 ` [PATCH 3/3] drm: bridge: dw-hdmi: Assert SVSRET before resetting the PHY Laurent Pinchart
2017-01-16 10:40 ` [PATCH 0/3] dw-hdmi: miscellaneous cleanups and fixes Jose Abreu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox