aboutsummaryrefslogtreecommitdiff
path: root/backend/drm/drm-properties.h
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-07-20 13:37:07 +1200
committerScott Anderson <ascent12@hotmail.com>2017-08-06 15:47:00 +1200
commit601bbad5d83387336028c5a721e8e85fccbbf844 (patch)
tree9ff2b417a09c4bf93c06522af410033d4e1bb1f3 /backend/drm/drm-properties.h
parentf95c02eebe54785a4f64332f7e574dddff7e3669 (diff)
Added DRM property infrastructure
Diffstat (limited to 'backend/drm/drm-properties.h')
-rw-r--r--backend/drm/drm-properties.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/backend/drm/drm-properties.h b/backend/drm/drm-properties.h
new file mode 100644
index 00000000..99791958
--- /dev/null
+++ b/backend/drm/drm-properties.h
@@ -0,0 +1,59 @@
+#ifndef DRM_PROPERTIES_H
+#define DRM_PROPERTIES_H
+
+#include <stdbool.h>
+#include <stdint.h>
+
+/*
+ * These types contain the property ids for several DRM objects.
+ * See https://01.org/linuxgraphics/gfx-docs/drm/drm-kms-properties.html
+ * for more details.
+ */
+
+union wlr_drm_connector_props {
+ struct {
+ uint32_t edid;
+ uint32_t dpms;
+
+ // atomic-modesetting only
+
+ uint32_t crtc_id;
+ };
+ uint32_t props[3];
+};
+
+union wlr_drm_crtc_props {
+ struct {
+ // Neither of these are guranteed to exist
+ uint32_t rotation;
+ uint32_t scaling_mode;
+ };
+ uint32_t props[2];
+};
+
+union wlr_drm_plane_props {
+ struct {
+ uint32_t type;
+ uint32_t rotation; // Not guranteed to exist
+
+ // atomic-modesetting only
+
+ uint32_t src_x;
+ uint32_t src_y;
+ uint32_t src_w;
+ uint32_t src_h;
+ uint32_t crtc_x;
+ uint32_t crtc_y;
+ uint32_t crtc_w;
+ uint32_t crtc_h;
+ uint32_t fb_id;
+ uint32_t crtc_id;
+ };
+ uint32_t props[12];
+};
+
+bool wlr_drm_get_connector_props(int fd, uint32_t id, union wlr_drm_connector_props *out);
+bool wlr_drm_get_crtc_props(int fd, uint32_t id, union wlr_drm_crtc_props *out);
+bool wlr_drm_get_plane_props(int fd, uint32_t id, union wlr_drm_plane_props *out);
+
+#endif