[PATCH v2 1/2] drm: exynos: moved exynos drm device registration to drm driver

2012-10-16 Thread Rahul Sharma
This patch moved the exynos-drm platform device registration to the drm driver.
When DT is enabled, platform devices needs to be registered within the driver
code. This patch fits the requirement of both DT and Non DT based drm drivers.

Signed-off-by: Rahul Sharma 
---
 drivers/gpu/drm/exynos/exynos_drm_drv.c |   16 
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c 
b/drivers/gpu/drm/exynos/exynos_drm_drv.c
index d070719..4200f15 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
@@ -50,6 +50,9 @@

 #define VBLANK_OFF_DELAY   5

+/* platform device pointer for eynos drm device. */
+static struct platform_device *exynos_drm_pdev;
+
 static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
 {
struct exynos_drm_private *private;
@@ -280,6 +283,7 @@ static int exynos_drm_platform_probe(struct platform_device 
*pdev)
 {
DRM_DEBUG_DRIVER("%s\n", __FILE__);

+   pdev->dev.coherent_dma_mask = DMA_BIT_MASK(32);
exynos_drm_driver.num_ioctls = DRM_ARRAY_SIZE(exynos_ioctls);

return drm_platform_init(_drm_driver, pdev);
@@ -341,11 +345,21 @@ static int __init exynos_drm_init(void)

ret = platform_driver_register(_drm_platform_driver);
if (ret < 0)
+   goto out_drm;
+
+   exynos_drm_pdev = platform_device_register_simple("exynos-drm", -1,
+   NULL, 0);
+   if (IS_ERR_OR_NULL(exynos_drm_pdev)) {
+   ret = PTR_ERR(exynos_drm_pdev);
goto out;
+   }

return 0;

 out:
+   platform_driver_unregister(_drm_platform_driver);
+
+out_drm:
 #ifdef CONFIG_DRM_EXYNOS_G2D
platform_driver_unregister(_driver);
 out_g2d:
@@ -376,6 +390,8 @@ static void __exit exynos_drm_exit(void)
 {
DRM_DEBUG_DRIVER("%s\n", __FILE__);

+   platform_device_unregister(exynos_drm_pdev);
+
platform_driver_unregister(_drm_platform_driver);

 #ifdef CONFIG_DRM_EXYNOS_G2D
-- 
1.7.0.4



[PATCH v2 1/2] drm: exynos: moved exynos drm device registration to drm driver

2012-10-15 Thread Rahul Sharma
This patch moved the exynos-drm platform device registration to the drm driver.
When DT is enabled, platform devices needs to be registered within the driver
code. This patch fits the requirement of both DT and Non DT based drm drivers.

Signed-off-by: Rahul Sharma rahul.sha...@samsung.com
---
 drivers/gpu/drm/exynos/exynos_drm_drv.c |   16 
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/drivers/gpu/drm/exynos/exynos_drm_drv.c 
b/drivers/gpu/drm/exynos/exynos_drm_drv.c
index d070719..4200f15 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_drv.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_drv.c
@@ -50,6 +50,9 @@
 
 #define VBLANK_OFF_DELAY   5
 
+/* platform device pointer for eynos drm device. */
+static struct platform_device *exynos_drm_pdev;
+
 static int exynos_drm_load(struct drm_device *dev, unsigned long flags)
 {
struct exynos_drm_private *private;
@@ -280,6 +283,7 @@ static int exynos_drm_platform_probe(struct platform_device 
*pdev)
 {
DRM_DEBUG_DRIVER(%s\n, __FILE__);
 
+   pdev-dev.coherent_dma_mask = DMA_BIT_MASK(32);
exynos_drm_driver.num_ioctls = DRM_ARRAY_SIZE(exynos_ioctls);
 
return drm_platform_init(exynos_drm_driver, pdev);
@@ -341,11 +345,21 @@ static int __init exynos_drm_init(void)
 
ret = platform_driver_register(exynos_drm_platform_driver);
if (ret  0)
+   goto out_drm;
+
+   exynos_drm_pdev = platform_device_register_simple(exynos-drm, -1,
+   NULL, 0);
+   if (IS_ERR_OR_NULL(exynos_drm_pdev)) {
+   ret = PTR_ERR(exynos_drm_pdev);
goto out;
+   }
 
return 0;
 
 out:
+   platform_driver_unregister(exynos_drm_platform_driver);
+
+out_drm:
 #ifdef CONFIG_DRM_EXYNOS_G2D
platform_driver_unregister(g2d_driver);
 out_g2d:
@@ -376,6 +390,8 @@ static void __exit exynos_drm_exit(void)
 {
DRM_DEBUG_DRIVER(%s\n, __FILE__);
 
+   platform_device_unregister(exynos_drm_pdev);
+
platform_driver_unregister(exynos_drm_platform_driver);
 
 #ifdef CONFIG_DRM_EXYNOS_G2D
-- 
1.7.0.4

___
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel