|
@@ -166,6 +166,11 @@ static const struct component_master_ops sun4i_drv_master_ops = {
|
|
|
.unbind = sun4i_drv_unbind,
|
|
|
};
|
|
|
|
|
|
+static bool sun4i_drv_node_is_connector(struct device_node *node)
|
|
|
+{
|
|
|
+ return of_device_is_compatible(node, "hdmi-connector");
|
|
|
+}
|
|
|
+
|
|
|
static bool sun4i_drv_node_is_frontend(struct device_node *node)
|
|
|
{
|
|
|
return of_device_is_compatible(node, "allwinner,sun5i-a13-display-frontend") ||
|
|
@@ -207,6 +212,13 @@ static int sun4i_drv_add_endpoints(struct device *dev,
|
|
|
!of_device_is_available(node))
|
|
|
return 0;
|
|
|
|
|
|
+ /*
|
|
|
+ * The connectors will be the last nodes in our pipeline, we
|
|
|
+ * can just bail out.
|
|
|
+ */
|
|
|
+ if (sun4i_drv_node_is_connector(node))
|
|
|
+ return 0;
|
|
|
+
|
|
|
if (!sun4i_drv_node_is_frontend(node)) {
|
|
|
/* Add current component */
|
|
|
DRM_DEBUG_DRIVER("Adding component %s\n",
|