blob: 26a64805cc15eefb2958478bc2831fa43cbc8684 [file] [log] [blame]
Russell King7e435aa2014-06-15 11:07:12 +01001#ifndef __DRM_OF_H__
2#define __DRM_OF_H__
3
Philipp Zabel4cacf912015-02-24 11:34:01 +01004#include <linux/of_graph.h>
5
Liviu Dudaudf785aa2015-10-20 10:23:12 +01006struct component_master_ops;
Russell King97ac0e42016-10-19 11:28:27 +01007struct component_match;
Liviu Dudaudf785aa2015-10-20 10:23:12 +01008struct device;
Russell King7e435aa2014-06-15 11:07:12 +01009struct drm_device;
Philipp Zabel4cacf912015-02-24 11:34:01 +010010struct drm_encoder;
Russell King7e435aa2014-06-15 11:07:12 +010011struct device_node;
12
13#ifdef CONFIG_OF
14extern uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
15 struct device_node *port);
Russell King97ac0e42016-10-19 11:28:27 +010016extern void drm_of_component_match_add(struct device *master,
17 struct component_match **matchptr,
18 int (*compare)(struct device *, void *),
19 struct device_node *node);
Liviu Dudaudf785aa2015-10-20 10:23:12 +010020extern int drm_of_component_probe(struct device *dev,
21 int (*compare_of)(struct device *, void *),
22 const struct component_master_ops *m_ops);
Philipp Zabel4cacf912015-02-24 11:34:01 +010023extern int drm_of_encoder_active_endpoint(struct device_node *node,
24 struct drm_encoder *encoder,
25 struct of_endpoint *endpoint);
Russell King7e435aa2014-06-15 11:07:12 +010026#else
27static inline uint32_t drm_of_find_possible_crtcs(struct drm_device *dev,
28 struct device_node *port)
29{
30 return 0;
31}
Liviu Dudaudf785aa2015-10-20 10:23:12 +010032
Arnd Bergmann329f4c82016-10-26 10:57:47 +020033static inline void
34drm_of_component_match_add(struct device *master,
35 struct component_match **matchptr,
36 int (*compare)(struct device *, void *),
37 struct device_node *node)
Russell King97ac0e42016-10-19 11:28:27 +010038{
39}
40
Liviu Dudaudf785aa2015-10-20 10:23:12 +010041static inline int
42drm_of_component_probe(struct device *dev,
43 int (*compare_of)(struct device *, void *),
44 const struct component_master_ops *m_ops)
45{
46 return -EINVAL;
47}
Philipp Zabel4cacf912015-02-24 11:34:01 +010048
49static inline int drm_of_encoder_active_endpoint(struct device_node *node,
50 struct drm_encoder *encoder,
51 struct of_endpoint *endpoint)
52{
53 return -EINVAL;
54}
Russell King7e435aa2014-06-15 11:07:12 +010055#endif
56
Philipp Zabel4cacf912015-02-24 11:34:01 +010057static inline int drm_of_encoder_active_endpoint_id(struct device_node *node,
58 struct drm_encoder *encoder)
59{
60 struct of_endpoint endpoint;
61 int ret = drm_of_encoder_active_endpoint(node, encoder,
62 &endpoint);
63
64 return ret ?: endpoint.id;
65}
66
67static inline int drm_of_encoder_active_port_id(struct device_node *node,
68 struct drm_encoder *encoder)
69{
70 struct of_endpoint endpoint;
71 int ret = drm_of_encoder_active_endpoint(node, encoder,
72 &endpoint);
73
74 return ret ?: endpoint.port;
75}
76
Russell King7e435aa2014-06-15 11:07:12 +010077#endif /* __DRM_OF_H__ */