提交 24a7eb79 编写于 作者: D Dave Airlie

Merge branch 'exynos-drm-fixes' of...

Merge branch 'exynos-drm-fixes' of git://git.infradead.org/users/kmpark/linux-samsung into drm-fixes

* 'exynos-drm-fixes' of git://git.infradead.org/users/kmpark/linux-samsung:
  drm/exynos: fixed pm feature for fimd module.
  MAINTAINERS: added maintainer entry for Exynos DRM Driver.
  drm/exynos: fixed build dependency for DRM_EXYNOS_FIMD
  drm/exynos: fix build dependency for DRM_EXYNOS_HDMI
  drm/exynos: use release_mem_region instead of release_resource
...@@ -2339,6 +2339,9 @@ F: include/drm/i915* ...@@ -2339,6 +2339,9 @@ F: include/drm/i915*
DRM DRIVERS FOR EXYNOS DRM DRIVERS FOR EXYNOS
M: Inki Dae <inki.dae@samsung.com> M: Inki Dae <inki.dae@samsung.com>
M: Joonyoung Shim <jy0922.shim@samsung.com>
M: Seung-Woo Kim <sw0312.kim@samsung.com>
M: Kyungmin Park <kyungmin.park@samsung.com>
L: dri-devel@lists.freedesktop.org L: dri-devel@lists.freedesktop.org
S: Supported S: Supported
F: drivers/gpu/drm/exynos F: drivers/gpu/drm/exynos
......
...@@ -13,7 +13,7 @@ config DRM_EXYNOS ...@@ -13,7 +13,7 @@ config DRM_EXYNOS
config DRM_EXYNOS_FIMD config DRM_EXYNOS_FIMD
tristate "Exynos DRM FIMD" tristate "Exynos DRM FIMD"
depends on DRM_EXYNOS depends on DRM_EXYNOS && !FB_S3C
default n default n
help help
Choose this option if you want to use Exynos FIMD for DRM. Choose this option if you want to use Exynos FIMD for DRM.
...@@ -21,7 +21,7 @@ config DRM_EXYNOS_FIMD ...@@ -21,7 +21,7 @@ config DRM_EXYNOS_FIMD
config DRM_EXYNOS_HDMI config DRM_EXYNOS_HDMI
tristate "Exynos DRM HDMI" tristate "Exynos DRM HDMI"
depends on DRM_EXYNOS depends on DRM_EXYNOS && !VIDEO_SAMSUNG_S5P_TV
help help
Choose this option if you want to use Exynos HDMI for DRM. Choose this option if you want to use Exynos HDMI for DRM.
If M is selected, the module will be called exynos_drm_hdmi If M is selected, the module will be called exynos_drm_hdmi
...@@ -158,7 +158,8 @@ static void fimd_dpms(struct device *subdrv_dev, int mode) ...@@ -158,7 +158,8 @@ static void fimd_dpms(struct device *subdrv_dev, int mode)
case DRM_MODE_DPMS_STANDBY: case DRM_MODE_DPMS_STANDBY:
case DRM_MODE_DPMS_SUSPEND: case DRM_MODE_DPMS_SUSPEND:
case DRM_MODE_DPMS_OFF: case DRM_MODE_DPMS_OFF:
pm_runtime_put_sync(subdrv_dev); if (!ctx->suspended)
pm_runtime_put_sync(subdrv_dev);
break; break;
default: default:
DRM_DEBUG_KMS("unspecified mode %d\n", mode); DRM_DEBUG_KMS("unspecified mode %d\n", mode);
...@@ -734,6 +735,46 @@ static void fimd_clear_win(struct fimd_context *ctx, int win) ...@@ -734,6 +735,46 @@ static void fimd_clear_win(struct fimd_context *ctx, int win)
writel(val, ctx->regs + SHADOWCON); writel(val, ctx->regs + SHADOWCON);
} }
static int fimd_power_on(struct fimd_context *ctx, bool enable)
{
struct exynos_drm_subdrv *subdrv = &ctx->subdrv;
struct device *dev = subdrv->manager.dev;
DRM_DEBUG_KMS("%s\n", __FILE__);
if (enable != false && enable != true)
return -EINVAL;
if (enable) {
int ret;
ret = clk_enable(ctx->bus_clk);
if (ret < 0)
return ret;
ret = clk_enable(ctx->lcd_clk);
if (ret < 0) {
clk_disable(ctx->bus_clk);
return ret;
}
ctx->suspended = false;
/* if vblank was enabled status, enable it again. */
if (test_and_clear_bit(0, &ctx->irq_flags))
fimd_enable_vblank(dev);
fimd_apply(dev);
} else {
clk_disable(ctx->lcd_clk);
clk_disable(ctx->bus_clk);
ctx->suspended = true;
}
return 0;
}
static int __devinit fimd_probe(struct platform_device *pdev) static int __devinit fimd_probe(struct platform_device *pdev)
{ {
struct device *dev = &pdev->dev; struct device *dev = &pdev->dev;
...@@ -911,39 +952,30 @@ static int __devexit fimd_remove(struct platform_device *pdev) ...@@ -911,39 +952,30 @@ static int __devexit fimd_remove(struct platform_device *pdev)
#ifdef CONFIG_PM_SLEEP #ifdef CONFIG_PM_SLEEP
static int fimd_suspend(struct device *dev) static int fimd_suspend(struct device *dev)
{ {
int ret; struct fimd_context *ctx = get_fimd_context(dev);
if (pm_runtime_suspended(dev)) if (pm_runtime_suspended(dev))
return 0; return 0;
ret = pm_runtime_suspend(dev); /*
if (ret < 0) * do not use pm_runtime_suspend(). if pm_runtime_suspend() is
return ret; * called here, an error would be returned by that interface
* because the usage_count of pm runtime is more than 1.
return 0; */
return fimd_power_on(ctx, false);
} }
static int fimd_resume(struct device *dev) static int fimd_resume(struct device *dev)
{ {
int ret; struct fimd_context *ctx = get_fimd_context(dev);
ret = pm_runtime_resume(dev);
if (ret < 0) {
DRM_ERROR("failed to resume runtime pm.\n");
return ret;
}
pm_runtime_disable(dev);
ret = pm_runtime_set_active(dev);
if (ret < 0) {
DRM_ERROR("failed to active runtime pm.\n");
pm_runtime_enable(dev);
pm_runtime_suspend(dev);
return ret;
}
pm_runtime_enable(dev); /*
* if entered to sleep when lcd panel was on, the usage_count
* of pm runtime would still be 1 so in this case, fimd driver
* should be on directly not drawing on pm runtime interface.
*/
if (!pm_runtime_suspended(dev))
return fimd_power_on(ctx, true);
return 0; return 0;
} }
...@@ -956,39 +988,16 @@ static int fimd_runtime_suspend(struct device *dev) ...@@ -956,39 +988,16 @@ static int fimd_runtime_suspend(struct device *dev)
DRM_DEBUG_KMS("%s\n", __FILE__); DRM_DEBUG_KMS("%s\n", __FILE__);
clk_disable(ctx->lcd_clk); return fimd_power_on(ctx, false);
clk_disable(ctx->bus_clk);
ctx->suspended = true;
return 0;
} }
static int fimd_runtime_resume(struct device *dev) static int fimd_runtime_resume(struct device *dev)
{ {
struct fimd_context *ctx = get_fimd_context(dev); struct fimd_context *ctx = get_fimd_context(dev);
int ret;
DRM_DEBUG_KMS("%s\n", __FILE__); DRM_DEBUG_KMS("%s\n", __FILE__);
ret = clk_enable(ctx->bus_clk); return fimd_power_on(ctx, true);
if (ret < 0)
return ret;
ret = clk_enable(ctx->lcd_clk);
if (ret < 0) {
clk_disable(ctx->bus_clk);
return ret;
}
ctx->suspended = false;
/* if vblank was enabled status, enable it again. */
if (test_and_clear_bit(0, &ctx->irq_flags))
fimd_enable_vblank(dev);
fimd_apply(dev);
return 0;
} }
#endif #endif
......
...@@ -1116,8 +1116,8 @@ static int __devinit hdmi_probe(struct platform_device *pdev) ...@@ -1116,8 +1116,8 @@ static int __devinit hdmi_probe(struct platform_device *pdev)
err_iomap: err_iomap:
iounmap(hdata->regs); iounmap(hdata->regs);
err_req_region: err_req_region:
release_resource(hdata->regs_res); release_mem_region(hdata->regs_res->start,
kfree(hdata->regs_res); resource_size(hdata->regs_res));
err_resource: err_resource:
hdmi_resources_cleanup(hdata); hdmi_resources_cleanup(hdata);
err_data: err_data:
...@@ -1145,8 +1145,8 @@ static int __devexit hdmi_remove(struct platform_device *pdev) ...@@ -1145,8 +1145,8 @@ static int __devexit hdmi_remove(struct platform_device *pdev)
iounmap(hdata->regs); iounmap(hdata->regs);
release_resource(hdata->regs_res); release_mem_region(hdata->regs_res->start,
kfree(hdata->regs_res); resource_size(hdata->regs_res));
/* hdmiphy i2c driver */ /* hdmiphy i2c driver */
i2c_del_driver(&hdmiphy_driver); i2c_del_driver(&hdmiphy_driver);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册