From: sonika.jindal@intel.com
To: intel-gfx@lists.freedesktop.org
Cc: dri-devel@lists.freedesktop.org
Subject: [v2 04/11] drm/omap: Switch omapdrm over to drm_mode_create_rotation_property()
Date: Fri, 4 Jul 2014 15:13:56 +0530 [thread overview]
Message-ID: <1404467043-5072-5-git-send-email-sonika.jindal@intel.com> (raw)
In-Reply-To: <1404467043-5072-1-git-send-email-sonika.jindal@intel.com>
From: Ville Syrjälä <ville.syrjala at linux.intel.com>
Use the new drm_mode_create_rotation_property() in omapdrm.
Cc: dri-devel@lists.freedesktop.org
Signed-off-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Reviewed-by: Imre Deak <imre.deak@intel.com>
Reviewed-by: Sagar Kamble <sagar.a.kamble@intel.com>
---
drivers/gpu/drm/omapdrm/omap_plane.c | 20 +++++++-------------
1 file changed, 7 insertions(+), 13 deletions(-)
diff --git a/drivers/gpu/drm/omapdrm/omap_plane.c b/drivers/gpu/drm/omapdrm/omap_plane.c
index aff06e7..da9d15d 100644
--- a/drivers/gpu/drm/omapdrm/omap_plane.c
+++ b/drivers/gpu/drm/omapdrm/omap_plane.c
@@ -308,19 +308,13 @@ void omap_plane_install_properties(struct drm_plane *plane,
if (priv->has_dmm) {
prop = priv->rotation_prop;
if (!prop) {
- const struct drm_prop_enum_list props[] = {
- { DRM_ROTATE_0, "rotate-0" },
- { DRM_ROTATE_90, "rotate-90" },
- { DRM_ROTATE_180, "rotate-180" },
- { DRM_ROTATE_270, "rotate-270" },
- { DRM_REFLECT_X, "reflect-x" },
- { DRM_REFLECT_Y, "reflect-y" },
- };
- prop = drm_property_create_bitmask(dev, 0, "rotation",
- props, ARRAY_SIZE(props),
- BIT(DRM_ROTATE_0) | BIT(DRM_ROTATE_90) |
- BIT(DRM_ROTATE_180) | BIT(DRM_ROTATE_270) |
- BIT(DRM_REFLECT_X) | BIT(DRM_REFLECT_Y));
+ prop = drm_mode_create_rotation_property(dev,
+ BIT(DRM_ROTATE_0) |
+ BIT(DRM_ROTATE_90) |
+ BIT(DRM_ROTATE_180) |
+ BIT(DRM_ROTATE_270) |
+ BIT(DRM_REFLECT_X) |
+ BIT(DRM_REFLECT_Y));
if (prop == NULL)
return;
priv->rotation_prop = prop;
--
1.7.10.4
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2014-07-04 9:43 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-04 9:43 [v2 00/11] Support for 180 degree HW rotation sonika.jindal
2014-07-04 9:43 ` [v2 01/11] drm: Move DRM_ROTATE bits out of omapdrm into drm_crtc.h sonika.jindal
2014-07-04 9:43 ` [v2 02/11] drm: Add support_bits parameter to drm_property_create_bitmask() sonika.jindal
2014-07-04 9:43 ` [v2 03/11] drm: Add drm_mode_create_rotation_property() sonika.jindal
2014-07-04 9:43 ` sonika.jindal [this message]
2014-07-04 9:43 ` [v2 05/11] drm: Add drm_rect rotation functions sonika.jindal
2014-07-04 9:43 ` [v2 06/11] drm: Add drm_rotation_simplify() sonika.jindal
2014-07-04 9:43 ` [v2 07/11] drm/i915: Add 180 degree sprite rotation support sonika.jindal
2014-07-04 9:44 ` [v2 08/11] drm/i915: Make intel_plane_restore() return an error sonika.jindal
2014-07-04 9:44 ` [v2 09/11] drm/i915: Add rotation property for sprites sonika.jindal
2014-07-04 9:44 ` [v2 10/11] drm/i915: Add 180 degree primary plane rotation support sonika.jindal
2014-07-04 14:58 ` Damien Lespiau
2014-07-06 8:08 ` Jindal, Sonika
2014-07-07 5:31 ` [PATCH] " sonika.jindal
2014-07-04 9:44 ` [v2 11/11] drm: Resetting rotation property sonika.jindal
2014-07-04 15:19 ` Damien Lespiau
2014-07-04 15:06 ` [v2 00/11] Support for 180 degree HW rotation Damien Lespiau
2014-07-06 8:11 ` Jindal, Sonika
2014-07-07 13:38 ` Damien Lespiau
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1404467043-5072-5-git-send-email-sonika.jindal@intel.com \
--to=sonika.jindal@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox