Re: [PATCH v3 3/5] video: exynos_mipi_dsim: Use the generic PHY driver

2013-06-27 Thread Donghwa Lee

On 06/28/2013 00:02, Sylwester Nawrocki wrote:

Use the generic PHY API instead of the platform callback to control
the MIPI DSIM DPHY. The 'phy_label' field is added to the platform
data structure to allow PHY lookup on non-dt platforms.

Signed-off-by: Sylwester Nawrocki 
Signed-off-by: Kyungmin Park 
Acked-by: Felipe Balbi 
---
  drivers/video/exynos/exynos_mipi_dsi.c |   18 +-
  include/video/exynos_mipi_dsim.h   |6 --
  2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/drivers/video/exynos/exynos_mipi_dsi.c 
b/drivers/video/exynos/exynos_mipi_dsi.c
index 32e5406..1f96004 100644
--- a/drivers/video/exynos/exynos_mipi_dsi.c
+++ b/drivers/video/exynos/exynos_mipi_dsi.c
@@ -156,8 +156,7 @@ static int exynos_mipi_dsi_blank_mode(struct 
mipi_dsim_device *dsim, int power)
exynos_mipi_regulator_enable(dsim);
  
  		/* enable MIPI-DSI PHY. */

-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
  
  		clk_enable(dsim->clock);
  
@@ -373,6 +372,10 @@ static int exynos_mipi_dsi_probe(struct platform_device *pdev)

return ret;
}
  
+	dsim->phy = devm_phy_get(&pdev->dev, dsim_pd->phy_label);

+   if (IS_ERR(dsim->phy))
+   return PTR_ERR(dsim->phy);
+
dsim->clock = devm_clk_get(&pdev->dev, "dsim0");
if (IS_ERR(dsim->clock)) {
dev_err(&pdev->dev, "failed to get dsim clock source\n");
@@ -439,8 +442,7 @@ static int exynos_mipi_dsi_probe(struct platform_device 
*pdev)
exynos_mipi_regulator_enable(dsim);
  
  	/* enable MIPI-DSI PHY. */

-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
  
  	exynos_mipi_update_cfg(dsim);
  
@@ -504,9 +506,8 @@ static int exynos_mipi_dsi_suspend(struct device *dev)

if (client_drv && client_drv->suspend)
client_drv->suspend(client_dev);
  
-	/* enable MIPI-DSI PHY. */

-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, false);
+   /* disable MIPI-DSI PHY. */
+   phy_power_off(dsim->phy);
  
  	clk_disable(dsim->clock);
  
@@ -536,8 +537,7 @@ static int exynos_mipi_dsi_resume(struct device *dev)

exynos_mipi_regulator_enable(dsim);
  
  	/* enable MIPI-DSI PHY. */

-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
  
  	clk_enable(dsim->clock);
  
diff --git a/include/video/exynos_mipi_dsim.h b/include/video/exynos_mipi_dsim.h

index 89dc88a..fd69beb 100644
--- a/include/video/exynos_mipi_dsim.h
+++ b/include/video/exynos_mipi_dsim.h
@@ -216,6 +216,7 @@ struct mipi_dsim_config {
   *automatically.
   * @e_clk_src: select byte clock source.
   * @pd: pointer to MIPI-DSI driver platform data.
+ * @phy: pointer to the generic PHY
   */
  struct mipi_dsim_device {
struct device   *dev;
@@ -236,6 +237,7 @@ struct mipi_dsim_device {
boolsuspended;
  
  	struct mipi_dsim_platform_data	*pd;

+   struct phy  *phy;
  };
  
  /*

@@ -248,7 +250,7 @@ struct mipi_dsim_device {
   * @enabled: indicate whether mipi controller got enabled or not.
   * @lcd_panel_info: pointer for lcd panel specific structure.
   *this structure specifies width, height, timing and polarity and so on.
- * @phy_enable: pointer to a callback controlling D-PHY enable/reset
+ * @phy_label: the generic PHY label
   */
  struct mipi_dsim_platform_data {
charlcd_panel_name[PANEL_NAME_SIZE];
@@ -257,7 +259,7 @@ struct mipi_dsim_platform_data {
unsigned intenabled;
void*lcd_panel_info;
  
-	int (*phy_enable)(struct platform_device *pdev, bool on);

+   const char  *phy_label;
  };
  
  /*

I confirmed that this patch operates well. It looks good to me.

Acked-by: Donghwa Lee 

Thank you,
Donghwa Lee

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v3 3/5] video: exynos_mipi_dsim: Use the generic PHY driver

2013-06-26 Thread Sylwester Nawrocki
Use the generic PHY API instead of the platform callback to control
the MIPI DSIM DPHY. The 'phy_label' field is added to the platform
data structure to allow PHY lookup on non-dt platforms.

Signed-off-by: Sylwester Nawrocki 
Signed-off-by: Kyungmin Park 
Acked-by: Felipe Balbi 
---
 drivers/video/exynos/exynos_mipi_dsi.c |   18 +-
 include/video/exynos_mipi_dsim.h   |6 --
 2 files changed, 13 insertions(+), 11 deletions(-)

diff --git a/drivers/video/exynos/exynos_mipi_dsi.c 
b/drivers/video/exynos/exynos_mipi_dsi.c
index 32e5406..1f96004 100644
--- a/drivers/video/exynos/exynos_mipi_dsi.c
+++ b/drivers/video/exynos/exynos_mipi_dsi.c
@@ -156,8 +156,7 @@ static int exynos_mipi_dsi_blank_mode(struct 
mipi_dsim_device *dsim, int power)
exynos_mipi_regulator_enable(dsim);
 
/* enable MIPI-DSI PHY. */
-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
 
clk_enable(dsim->clock);
 
@@ -373,6 +372,10 @@ static int exynos_mipi_dsi_probe(struct platform_device 
*pdev)
return ret;
}
 
+   dsim->phy = devm_phy_get(&pdev->dev, dsim_pd->phy_label);
+   if (IS_ERR(dsim->phy))
+   return PTR_ERR(dsim->phy);
+
dsim->clock = devm_clk_get(&pdev->dev, "dsim0");
if (IS_ERR(dsim->clock)) {
dev_err(&pdev->dev, "failed to get dsim clock source\n");
@@ -439,8 +442,7 @@ static int exynos_mipi_dsi_probe(struct platform_device 
*pdev)
exynos_mipi_regulator_enable(dsim);
 
/* enable MIPI-DSI PHY. */
-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
 
exynos_mipi_update_cfg(dsim);
 
@@ -504,9 +506,8 @@ static int exynos_mipi_dsi_suspend(struct device *dev)
if (client_drv && client_drv->suspend)
client_drv->suspend(client_dev);
 
-   /* enable MIPI-DSI PHY. */
-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, false);
+   /* disable MIPI-DSI PHY. */
+   phy_power_off(dsim->phy);
 
clk_disable(dsim->clock);
 
@@ -536,8 +537,7 @@ static int exynos_mipi_dsi_resume(struct device *dev)
exynos_mipi_regulator_enable(dsim);
 
/* enable MIPI-DSI PHY. */
-   if (dsim->pd->phy_enable)
-   dsim->pd->phy_enable(pdev, true);
+   phy_power_on(dsim->phy);
 
clk_enable(dsim->clock);
 
diff --git a/include/video/exynos_mipi_dsim.h b/include/video/exynos_mipi_dsim.h
index 89dc88a..fd69beb 100644
--- a/include/video/exynos_mipi_dsim.h
+++ b/include/video/exynos_mipi_dsim.h
@@ -216,6 +216,7 @@ struct mipi_dsim_config {
  * automatically.
  * @e_clk_src: select byte clock source.
  * @pd: pointer to MIPI-DSI driver platform data.
+ * @phy: pointer to the generic PHY
  */
 struct mipi_dsim_device {
struct device   *dev;
@@ -236,6 +237,7 @@ struct mipi_dsim_device {
boolsuspended;
 
struct mipi_dsim_platform_data  *pd;
+   struct phy  *phy;
 };
 
 /*
@@ -248,7 +250,7 @@ struct mipi_dsim_device {
  * @enabled: indicate whether mipi controller got enabled or not.
  * @lcd_panel_info: pointer for lcd panel specific structure.
  * this structure specifies width, height, timing and polarity and so on.
- * @phy_enable: pointer to a callback controlling D-PHY enable/reset
+ * @phy_label: the generic PHY label
  */
 struct mipi_dsim_platform_data {
charlcd_panel_name[PANEL_NAME_SIZE];
@@ -257,7 +259,7 @@ struct mipi_dsim_platform_data {
unsigned intenabled;
void*lcd_panel_info;
 
-   int (*phy_enable)(struct platform_device *pdev, bool on);
+   const char  *phy_label;
 };
 
 /*
-- 
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html