aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/drm/drm_of.h
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@arm.linux.org.uk>2014-06-15 11:07:12 +0100
committerRussell King <rmk+kernel@arm.linux.org.uk>2014-07-11 15:38:28 +0100
commit7e435aad38083f378ba7889d8b8fdcdbfe7088e7 (patch)
tree5bbdc53757bc3a2e596160ff938c5be7a2855c58 /include/drm/drm_of.h
parentLinux 3.16-rc3 (diff)
downloadwireguard-linux-7e435aad38083f378ba7889d8b8fdcdbfe7088e7.tar.xz
wireguard-linux-7e435aad38083f378ba7889d8b8fdcdbfe7088e7.zip
drm: add of_graph endpoint helper to find possible CRTCs
Add a helper to allow encoders to find their possible CRTCs from the OF graph without having to re-implement this functionality. We add a device_node to drm_crtc which corresponds with the port node in the DT description of the CRTC device. We can then scan the DRM device list for CRTCs to find their index, matching the appropriate CRTC using the port device_node, thus building up the possible CRTC mask. Reviewed-by: Rob Clark <robdclark@gmail.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'include/drm/drm_of.h')
-rw-r--r--include/drm/drm_of.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/include/drm/drm_of.h b/include/drm/drm_of.h
new file mode 100644
index 000000000000..2441f7112074
--- /dev/null
+++ b/include/drm/drm_of.h
@@ -0,0 +1,18 @@
+#ifndef __DRM_OF_H__
+#define __DRM_OF_H__
+
+struct drm_device;
+struct device_node;
+
+#ifdef CONFIG_OF
+extern uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
+ struct device_node *port);
+#else
+static inline uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
+ struct device_node *port)
+{
+ return 0;
+}
+#endif
+
+#endif /* __DRM_OF_H__ */