From: Ville Syrjälä <ville.syrj...@linux.intel.com>

The global mode_config.rotation_property is going away, switch over to
per-plane rotation_property.

v2: Propagate error upwards (Boris)
v3: Drop the BIT()

Cc: Boris Brezillon <boris.brezil...@free-electrons.com>
Signed-off-by: Ville Syrjälä <ville.syrj...@linux.intel.com>
Acked-by: Boris Brezillon <boris.brezil...@free-electrons.com>
---
 drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c | 37 +++++++++++++------------
 1 file changed, 20 insertions(+), 17 deletions(-)

diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c 
b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c
index b380179d4013..246ed1e33d8a 100644
--- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c
+++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_plane.c
@@ -883,9 +883,9 @@ static int atmel_hlcdc_plane_atomic_get_property(struct 
drm_plane *p,
        return 0;
 }
 
-static void atmel_hlcdc_plane_init_properties(struct atmel_hlcdc_plane *plane,
-                               const struct atmel_hlcdc_layer_desc *desc,
-                               struct atmel_hlcdc_plane_properties *props)
+static int atmel_hlcdc_plane_init_properties(struct atmel_hlcdc_plane *plane,
+                                            const struct 
atmel_hlcdc_layer_desc *desc,
+                                            struct 
atmel_hlcdc_plane_properties *props)
 {
        struct regmap *regmap = plane->layer.hlcdc->regmap;
 
@@ -902,10 +902,18 @@ static void atmel_hlcdc_plane_init_properties(struct 
atmel_hlcdc_plane *plane,
                                ATMEL_HLCDC_LAYER_GA_MASK);
        }
 
-       if (desc->layout.xstride && desc->layout.pstride)
-               drm_object_attach_property(&plane->base.base,
-                               plane->base.dev->mode_config.rotation_property,
-                               DRM_ROTATE_0);
+       if (desc->layout.xstride && desc->layout.pstride) {
+               int ret;
+
+               ret = drm_plane_create_rotation_property(&plane->base,
+                                                        DRM_ROTATE_0,
+                                                        DRM_ROTATE_0 |
+                                                        DRM_ROTATE_90 |
+                                                        DRM_ROTATE_180 |
+                                                        DRM_ROTATE_270);
+               if (ret)
+                       return ret;
+       }
 
        if (desc->layout.csc) {
                /*
@@ -925,6 +933,8 @@ static void atmel_hlcdc_plane_init_properties(struct 
atmel_hlcdc_plane *plane,
                             ATMEL_HLCDC_LAYER_CSC_CFG(&plane->layer, 2),
                             0x40040890);
        }
+
+       return 0;
 }
 
 static struct drm_plane_helper_funcs atmel_hlcdc_layer_plane_helper_funcs = {
@@ -1036,7 +1046,9 @@ atmel_hlcdc_plane_create(struct drm_device *dev,
                             &atmel_hlcdc_layer_plane_helper_funcs);
 
        /* Set default property values*/
-       atmel_hlcdc_plane_init_properties(plane, desc, props);
+       ret = atmel_hlcdc_plane_init_properties(plane, desc, props);
+       if (ret)
+               return ERR_PTR(ret);
 
        return plane;
 }
@@ -1054,15 +1066,6 @@ atmel_hlcdc_plane_create_properties(struct drm_device 
*dev)
        if (!props->alpha)
                return ERR_PTR(-ENOMEM);
 
-       dev->mode_config.rotation_property =
-                       drm_mode_create_rotation_property(dev,
-                                                         DRM_ROTATE_0 |
-                                                         DRM_ROTATE_90 |
-                                                         DRM_ROTATE_180 |
-                                                         DRM_ROTATE_270);
-       if (!dev->mode_config.rotation_property)
-               return ERR_PTR(-ENOMEM);
-
        return props;
 }
 
-- 
2.7.4

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

Reply via email to