All of lore.kernel.org
 help / color / mirror / Atom feed
* [RFC] drm: atomic mode set API
@ 2012-02-15 22:42 Jesse Barnes
  2012-02-15 22:59 ` Adam Jackson
  2012-02-16 12:46 ` Jakob Bornecrantz
  0 siblings, 2 replies; 9+ messages in thread
From: Jesse Barnes @ 2012-02-15 22:42 UTC (permalink / raw)
  To: dri-devel

Many of us really want (and need) a way to set the whole display
configuration atomically, as well as test a global config.

In talking with Rob and Alex here at ELC a bit, I think this may be
enough:

diff --git a/include/drm/drm_mode.h b/include/drm/drm_mode.h
index 2a2acda..2864b02 100644
--- a/include/drm/drm_mode.h
+++ b/include/drm/drm_mode.h
@@ -157,6 +157,26 @@ struct drm_mode_get_plane_res {
 	__u32 count_planes;
 };
 
+#define DRM_SET_CONFIG_TEST (1<<0) /* don't change the config, just test it for validity */
+
+struct drm_mode_set_config {
+	__u64 crtcs;
+	__u64 crtc_fbs;
+	__u64 crtc_xpos; /* array of x coords for crtcs */
+	__u64 crtc_ypos; /* array of y coords for crtcs */
+	__u32 count_crtcs;
+
+	__u64 plane_sets; /* array of set_plane structs */
+
+	__u32 count_planes;
+
+	__u64 connectors;
+	__u64 connector_modes;
+	__u32 count_connectors;
+
+	__u32 flags;
+};
+
 #define DRM_MODE_ENCODER_NONE	0
 #define DRM_MODE_ENCODER_DAC	1
 #define DRM_MODE_ENCODER_TMDS	2

This allows you to bind a bunch of fbs to crtcs with independent
positions, as well as set a bunch of planes to specific fbs and
layouts.  Finally, it lets you change the connector config at the same
time, with a flag to simply test a config instead of actually setting
it.

Any comments?  Do we also need to set gamma or other properties as part
of this?  What about cursors?

Thanks,
Jesse

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

end of thread, other threads:[~2012-02-16 16:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-15 22:42 [RFC] drm: atomic mode set API Jesse Barnes
2012-02-15 22:59 ` Adam Jackson
2012-02-15 23:12   ` Daniel Vetter
2012-02-16  1:55     ` Jesse Barnes
2012-02-16 12:36     ` Ville Syrjälä
2012-02-16  1:53   ` Jesse Barnes
2012-02-16  7:52   ` Rob Clark
2012-02-16 12:46 ` Jakob Bornecrantz
2012-02-16 16:53   ` Jesse Barnes

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.