mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-04-27 11:58:32 -04:00
drm/omap: Use the drm_panel_bridge API
Replace the manual panel handling code by a drm_panel_bridge. This simplifies the driver and allows all components in the display pipeline to be treated as bridges, paving the way to generic connector handling. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Tested-by: Sebastian Reichel <sebastian.reichel@collabora.com> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200226112514.12455-25-laurent.pinchart@ideasonboard.com
This commit is contained in:
committed by
Tomi Valkeinen
parent
514fc91083
commit
a779618b4a
@@ -149,8 +149,7 @@ struct omap_dss_device *omapdss_device_next_output(struct omap_dss_device *from)
|
||||
goto done;
|
||||
}
|
||||
|
||||
if (dssdev->id &&
|
||||
(dssdev->next || dssdev->bridge || dssdev->panel))
|
||||
if (dssdev->id && (dssdev->next || dssdev->bridge))
|
||||
goto done;
|
||||
}
|
||||
|
||||
@@ -185,11 +184,10 @@ int omapdss_device_connect(struct dss_device *dss,
|
||||
if (!dst) {
|
||||
/*
|
||||
* The destination is NULL when the source is connected to a
|
||||
* bridge or panel instead of a DSS device. Stop here, we will
|
||||
* attach the bridge or panel later when we will have a DRM
|
||||
* encoder.
|
||||
* bridge instead of a DSS device. Stop here, we will attach
|
||||
* the bridge later when we will have a DRM encoder.
|
||||
*/
|
||||
return src && (src->bridge || src->panel) ? 0 : -EINVAL;
|
||||
return src && src->bridge ? 0 : -EINVAL;
|
||||
}
|
||||
|
||||
if (omapdss_device_is_connected(dst))
|
||||
@@ -217,7 +215,7 @@ void omapdss_device_disconnect(struct omap_dss_device *src,
|
||||
dst ? dev_name(dst->dev) : "NULL");
|
||||
|
||||
if (!dst) {
|
||||
WARN_ON(!src->bridge && !src->panel);
|
||||
WARN_ON(!src->bridge);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
@@ -21,6 +21,7 @@
|
||||
int omapdss_device_init_output(struct omap_dss_device *out)
|
||||
{
|
||||
struct device_node *remote_node;
|
||||
int ret;
|
||||
|
||||
remote_node = of_graph_get_remote_node(out->dev->of_node,
|
||||
ffs(out->of_ports) - 1, 0);
|
||||
@@ -39,17 +40,39 @@ int omapdss_device_init_output(struct omap_dss_device *out)
|
||||
|
||||
if (out->next && out->type != out->next->type) {
|
||||
dev_err(out->dev, "output type and display type don't match\n");
|
||||
omapdss_device_put(out->next);
|
||||
out->next = NULL;
|
||||
return -EINVAL;
|
||||
ret = -EINVAL;
|
||||
goto error;
|
||||
}
|
||||
|
||||
return out->next || out->bridge || out->panel ? 0 : -EPROBE_DEFER;
|
||||
if (out->panel) {
|
||||
struct drm_bridge *bridge;
|
||||
|
||||
bridge = drm_panel_bridge_add(out->panel);
|
||||
if (IS_ERR(bridge)) {
|
||||
dev_err(out->dev,
|
||||
"unable to create panel bridge (%ld)\n",
|
||||
PTR_ERR(bridge));
|
||||
ret = PTR_ERR(bridge);
|
||||
goto error;
|
||||
}
|
||||
|
||||
out->bridge = bridge;
|
||||
}
|
||||
|
||||
return out->next || out->bridge ? 0 : -EPROBE_DEFER;
|
||||
|
||||
error:
|
||||
omapdss_device_put(out->next);
|
||||
out->next = NULL;
|
||||
return ret;
|
||||
}
|
||||
EXPORT_SYMBOL(omapdss_device_init_output);
|
||||
|
||||
void omapdss_device_cleanup_output(struct omap_dss_device *out)
|
||||
{
|
||||
if (out->bridge && out->panel)
|
||||
drm_panel_bridge_remove(out->bridge);
|
||||
|
||||
if (out->next)
|
||||
omapdss_device_put(out->next);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user