1 #include <linux/component.h>
2 #include <linux/export.h>
3 #include <linux/list.h>
4 #include <linux/of_graph.h>
6 #include <drm/drm_crtc.h>
7 #include <drm/drm_of.h>
10 * drm_crtc_port_mask - find the mask of a registered CRTC by port OF node
14 * Given a port OF node, return the possible mask of the corresponding
15 * CRTC within a device's list of CRTCs. Returns zero if not found.
17 static uint32_t drm_crtc_port_mask(struct drm_device
*dev
,
18 struct device_node
*port
)
20 unsigned int index
= 0;
23 drm_for_each_crtc(tmp
, dev
) {
24 if (tmp
->port
== port
)
34 * drm_of_find_possible_crtcs - find the possible CRTCs for an encoder port
36 * @port: encoder port to scan for endpoints
38 * Scan all endpoints attached to a port, locate their attached CRTCs,
39 * and generate the DRM mask of CRTCs which may be attached to this
42 * See Documentation/devicetree/bindings/graph.txt for the bindings.
44 uint32_t drm_of_find_possible_crtcs(struct drm_device
*dev
,
45 struct device_node
*port
)
47 struct device_node
*remote_port
, *ep
;
48 uint32_t possible_crtcs
= 0;
50 for_each_endpoint_of_node(port
, ep
) {
51 remote_port
= of_graph_get_remote_port(ep
);
57 possible_crtcs
|= drm_crtc_port_mask(dev
, remote_port
);
59 of_node_put(remote_port
);
62 return possible_crtcs
;
64 EXPORT_SYMBOL(drm_of_find_possible_crtcs
);
67 * drm_of_component_probe - Generic probe function for a component based master
68 * @dev: master device containing the OF node
69 * @compare_of: compare function used for matching components
70 * @master_ops: component master ops to be used
72 * Parse the platform device OF node and bind all the components associated
73 * with the master. Interface ports are added before the encoders in order to
74 * satisfy their .bind requirements
75 * See Documentation/devicetree/bindings/graph.txt for the bindings.
77 * Returns zero if successful, or one of the standard error codes if it fails.
79 int drm_of_component_probe(struct device
*dev
,
80 int (*compare_of
)(struct device
*, void *),
81 const struct component_master_ops
*m_ops
)
83 struct device_node
*ep
, *port
, *remote
;
84 struct component_match
*match
= NULL
;
91 * Bind the crtc's ports first, so that drm_of_find_possible_crtcs()
92 * called from encoder's .bind callbacks works as expected
95 port
= of_parse_phandle(dev
->of_node
, "ports", i
);
99 if (!of_device_is_available(port
->parent
)) {
104 component_match_add(dev
, &match
, compare_of
, port
);
109 dev_err(dev
, "missing 'ports' property\n");
114 dev_err(dev
, "no available port\n");
119 * For bound crtcs, bind the encoders attached to their remote endpoint
122 port
= of_parse_phandle(dev
->of_node
, "ports", i
);
126 if (!of_device_is_available(port
->parent
)) {
131 for_each_child_of_node(port
, ep
) {
132 remote
= of_graph_get_remote_port_parent(ep
);
133 if (!remote
|| !of_device_is_available(remote
)) {
136 } else if (!of_device_is_available(remote
->parent
)) {
137 dev_warn(dev
, "parent device of %s is not available\n",
143 component_match_add(dev
, &match
, compare_of
, remote
);
149 return component_master_add_with_match(dev
, m_ops
, match
);
151 EXPORT_SYMBOL(drm_of_component_probe
);
154 * drm_of_encoder_active_endpoint - return the active encoder endpoint
155 * @node: device tree node containing encoder input ports
156 * @encoder: drm_encoder
158 * Given an encoder device node and a drm_encoder with a connected crtc,
159 * parse the encoder endpoint connecting to the crtc port.
161 int drm_of_encoder_active_endpoint(struct device_node
*node
,
162 struct drm_encoder
*encoder
,
163 struct of_endpoint
*endpoint
)
165 struct device_node
*ep
;
166 struct drm_crtc
*crtc
= encoder
->crtc
;
167 struct device_node
*port
;
173 for_each_endpoint_of_node(node
, ep
) {
174 port
= of_graph_get_remote_port(ep
);
176 if (port
== crtc
->port
) {
177 ret
= of_graph_parse_endpoint(ep
, endpoint
);
185 EXPORT_SYMBOL_GPL(drm_of_encoder_active_endpoint
);