All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/atomic: Don't reject reflect-only rotations
@ 2016-12-07 12:18 Brian Starkey
  2016-12-07 13:20 ` Gustavo Padovan
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Brian Starkey @ 2016-12-07 12:18 UTC (permalink / raw)
  To: dri-devel, ville.syrjala; +Cc: liviu.dudau

The check to reject combinations of multiple rotation angles is overly
restrictive and has the side-effect of also failing any rotation value
which consists only of reflections.

Fix this by relaxing the check to ignore values which contain no
rotation flags.

Fixes: 6e0c7c3358d4 ("drm/atomic: Reject attempts to use multiple rotation angles at once")
Signed-off-by: Brian Starkey <brian.starkey@arm.com>
---
 drivers/gpu/drm/drm_atomic.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
index 362e3ea..44f4030 100644
--- a/drivers/gpu/drm/drm_atomic.c
+++ b/drivers/gpu/drm/drm_atomic.c
@@ -846,7 +846,8 @@ int drm_atomic_plane_set_property(struct drm_plane *plane,
 	} else if (property == config->prop_src_h) {
 		state->src_h = val;
 	} else if (property == plane->rotation_property) {
-		if (!is_power_of_2(val & DRM_ROTATE_MASK))
+		if ((val & DRM_ROTATE_MASK) &&
+		    !is_power_of_2(val & DRM_ROTATE_MASK))
 			return -EINVAL;
 		state->rotation = val;
 	} else if (property == plane->zpos_property) {
-- 
1.7.9.5

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2016-12-07 16:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-12-07 12:18 [PATCH] drm/atomic: Don't reject reflect-only rotations Brian Starkey
2016-12-07 13:20 ` Gustavo Padovan
2016-12-07 13:32 ` Chris Wilson
2016-12-07 14:52   ` Daniel Vetter
2016-12-07 15:13     ` Ville Syrjälä
2016-12-07 15:54       ` Daniel Vetter
2016-12-07 16:02         ` Ville Syrjälä
2016-12-07 14:12 ` Ville Syrjälä
2016-12-07 14:48   ` Brian Starkey

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.