summaryrefslogtreecommitdiffstats
path: root/include/drm/drm_mode_config.h
diff options
context:
space:
mode:
authorPeter Ujfalusi <peter.ujfalusi@ti.com>2018-03-21 12:20:24 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2018-03-28 09:45:43 +0300
commit49efffc7fbd48d5ea3d0dd60c218c7502d4a179d (patch)
treec70bd6cbff1e3d4ce5ae91e2119ce15ce77807db /include/drm/drm_mode_config.h
parentf4392860b4fe55d7d7cadaa64743c9b2466e4fd8 (diff)
downloadlinux-0-day-49efffc7fbd48d5ea3d0dd60c218c7502d4a179d.tar.gz
linux-0-day-49efffc7fbd48d5ea3d0dd60c218c7502d4a179d.tar.xz
drm: Add drm_mode_config->normalize_zpos boolean
Instead of drivers duplicating the drm_atomic_helper_check() code to be able to normalize the zpos they can use the normalize_zpos flag to let the drm core to do it. Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180321102029.15248-2-peter.ujfalusi@ti.com
Diffstat (limited to 'include/drm/drm_mode_config.h')
-rw-r--r--include/drm/drm_mode_config.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/drm/drm_mode_config.h b/include/drm/drm_mode_config.h
index 7569f22ffef6b..33b3a96d66d0a 100644
--- a/include/drm/drm_mode_config.h
+++ b/include/drm/drm_mode_config.h
@@ -796,6 +796,14 @@ struct drm_mode_config {
bool allow_fb_modifiers;
/**
+ * @normalize_zpos:
+ *
+ * If true the drm core will call drm_atomic_normalize_zpos() as part of
+ * atomic mode checking from drm_atomic_helper_check()
+ */
+ bool normalize_zpos;
+
+ /**
* @modifiers_property: Plane property to list support modifier/format
* combination.
*/