mirror of
https://github.com/torvalds/linux.git
synced 2024-12-07 19:41:31 +00:00
a25b988ff8
Most bridge drivers create a DRM connector to model the connector at the output of the bridge. This model is historical and has worked pretty well so far, but causes several issues: - It prevents supporting more complex display pipelines where DRM connector operations are split over multiple components. For instance a pipeline with a bridge connected to the DDC signals to read EDID data, and another one connected to the HPD signal to detect connection and disconnection, will not be possible to support through this model. - It requires every bridge driver to implement similar connector handling code, resulting in code duplication. - It assumes that a bridge will either be wired to a connector or to another bridge, but doesn't support bridges that can be used in both positions very well (although there is some ad-hoc support for this in the analogix_dp bridge driver). In order to solve these issues, ownership of the connector should be moved to the display controller driver (where it can be implemented using helpers provided by the core). Extend the bridge API to allow disabling connector creation in bridge drivers as a first step towards the new model. The new flags argument to the bridge .attach() operation allows instructing the bridge driver to skip creating a connector. Unconditionally set the new flags argument to 0 for now to keep the existing behaviour, and modify all existing bridge drivers to return an error when connector creation is not requested as they don't support this feature yet. The change is based on the following semantic patch, with manual review and edits. @ rule1 @ identifier funcs; identifier fn; @@ struct drm_bridge_funcs funcs = { ..., .attach = fn }; @ depends on rule1 @ identifier rule1.fn; identifier bridge; statement S, S1; @@ int fn( struct drm_bridge *bridge + , enum drm_bridge_attach_flags flags ) { ... when != S + if (flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR) { + DRM_ERROR("Fix bridge driver to make connector optional!"); + return -EINVAL; + } + S1 ... } @ depends on rule1 @ identifier rule1.fn; identifier bridge, flags; expression E1, E2, E3; @@ int fn( struct drm_bridge *bridge, enum drm_bridge_attach_flags flags ) { <... drm_bridge_attach(E1, E2, E3 + , flags ) ...> } @@ expression E1, E2, E3; @@ drm_bridge_attach(E1, E2, E3 + , 0 ) Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Acked-by: Sam Ravnborg <sam@ravnborg.org> Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Tested-by: Sebastian Reichel <sebastian.reichel@collabora.com> Reviewed-by: Sebastian Reichel <sebastian.reichel@collabora.com> Acked-by: Daniel Vetter <daniel.vetter@ffwll.ch> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com> Link: https://patchwork.freedesktop.org/patch/msgid/20200226112514.12455-10-laurent.pinchart@ideasonboard.com
155 lines
3.9 KiB
C
155 lines
3.9 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (C) 2019 Renesas Electronics Corporation
|
|
* Copyright (C) 2016 Laurent Pinchart <laurent.pinchart@ideasonboard.com>
|
|
*/
|
|
|
|
#include <linux/gpio/consumer.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_device.h>
|
|
#include <linux/of_graph.h>
|
|
#include <linux/platform_device.h>
|
|
|
|
#include <drm/drm_bridge.h>
|
|
#include <drm/drm_panel.h>
|
|
|
|
struct lvds_codec {
|
|
struct drm_bridge bridge;
|
|
struct drm_bridge *panel_bridge;
|
|
struct gpio_desc *powerdown_gpio;
|
|
u32 connector_type;
|
|
};
|
|
|
|
static inline struct lvds_codec *to_lvds_codec(struct drm_bridge *bridge)
|
|
{
|
|
return container_of(bridge, struct lvds_codec, bridge);
|
|
}
|
|
|
|
static int lvds_codec_attach(struct drm_bridge *bridge,
|
|
enum drm_bridge_attach_flags flags)
|
|
{
|
|
struct lvds_codec *lvds_codec = to_lvds_codec(bridge);
|
|
|
|
return drm_bridge_attach(bridge->encoder, lvds_codec->panel_bridge,
|
|
bridge, flags);
|
|
}
|
|
|
|
static void lvds_codec_enable(struct drm_bridge *bridge)
|
|
{
|
|
struct lvds_codec *lvds_codec = to_lvds_codec(bridge);
|
|
|
|
if (lvds_codec->powerdown_gpio)
|
|
gpiod_set_value_cansleep(lvds_codec->powerdown_gpio, 0);
|
|
}
|
|
|
|
static void lvds_codec_disable(struct drm_bridge *bridge)
|
|
{
|
|
struct lvds_codec *lvds_codec = to_lvds_codec(bridge);
|
|
|
|
if (lvds_codec->powerdown_gpio)
|
|
gpiod_set_value_cansleep(lvds_codec->powerdown_gpio, 1);
|
|
}
|
|
|
|
static const struct drm_bridge_funcs funcs = {
|
|
.attach = lvds_codec_attach,
|
|
.enable = lvds_codec_enable,
|
|
.disable = lvds_codec_disable,
|
|
};
|
|
|
|
static int lvds_codec_probe(struct platform_device *pdev)
|
|
{
|
|
struct device *dev = &pdev->dev;
|
|
struct device_node *panel_node;
|
|
struct drm_panel *panel;
|
|
struct lvds_codec *lvds_codec;
|
|
|
|
lvds_codec = devm_kzalloc(dev, sizeof(*lvds_codec), GFP_KERNEL);
|
|
if (!lvds_codec)
|
|
return -ENOMEM;
|
|
|
|
lvds_codec->connector_type = (uintptr_t)of_device_get_match_data(dev);
|
|
lvds_codec->powerdown_gpio = devm_gpiod_get_optional(dev, "powerdown",
|
|
GPIOD_OUT_HIGH);
|
|
if (IS_ERR(lvds_codec->powerdown_gpio)) {
|
|
int err = PTR_ERR(lvds_codec->powerdown_gpio);
|
|
|
|
if (err != -EPROBE_DEFER)
|
|
dev_err(dev, "powerdown GPIO failure: %d\n", err);
|
|
return err;
|
|
}
|
|
|
|
/* Locate the panel DT node. */
|
|
panel_node = of_graph_get_remote_node(dev->of_node, 1, 0);
|
|
if (!panel_node) {
|
|
dev_dbg(dev, "panel DT node not found\n");
|
|
return -ENXIO;
|
|
}
|
|
|
|
panel = of_drm_find_panel(panel_node);
|
|
of_node_put(panel_node);
|
|
if (IS_ERR(panel)) {
|
|
dev_dbg(dev, "panel not found, deferring probe\n");
|
|
return PTR_ERR(panel);
|
|
}
|
|
|
|
lvds_codec->panel_bridge =
|
|
devm_drm_panel_bridge_add_typed(dev, panel,
|
|
lvds_codec->connector_type);
|
|
if (IS_ERR(lvds_codec->panel_bridge))
|
|
return PTR_ERR(lvds_codec->panel_bridge);
|
|
|
|
/*
|
|
* The panel_bridge bridge is attached to the panel's of_node,
|
|
* but we need a bridge attached to our of_node for our user
|
|
* to look up.
|
|
*/
|
|
lvds_codec->bridge.of_node = dev->of_node;
|
|
lvds_codec->bridge.funcs = &funcs;
|
|
drm_bridge_add(&lvds_codec->bridge);
|
|
|
|
platform_set_drvdata(pdev, lvds_codec);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int lvds_codec_remove(struct platform_device *pdev)
|
|
{
|
|
struct lvds_codec *lvds_codec = platform_get_drvdata(pdev);
|
|
|
|
drm_bridge_remove(&lvds_codec->bridge);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct of_device_id lvds_codec_match[] = {
|
|
{
|
|
.compatible = "lvds-decoder",
|
|
.data = (void *)DRM_MODE_CONNECTOR_DPI,
|
|
},
|
|
{
|
|
.compatible = "lvds-encoder",
|
|
.data = (void *)DRM_MODE_CONNECTOR_LVDS,
|
|
},
|
|
{
|
|
.compatible = "thine,thc63lvdm83d",
|
|
.data = (void *)DRM_MODE_CONNECTOR_LVDS,
|
|
},
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, lvds_codec_match);
|
|
|
|
static struct platform_driver lvds_codec_driver = {
|
|
.probe = lvds_codec_probe,
|
|
.remove = lvds_codec_remove,
|
|
.driver = {
|
|
.name = "lvds-codec",
|
|
.of_match_table = lvds_codec_match,
|
|
},
|
|
};
|
|
module_platform_driver(lvds_codec_driver);
|
|
|
|
MODULE_AUTHOR("Laurent Pinchart <laurent.pinchart@ideasonboard.com>");
|
|
MODULE_DESCRIPTION("LVDS encoders and decoders");
|
|
MODULE_LICENSE("GPL");
|