OSDN Git Service

drm: bridge: mcde_dsi: Switch to devm_drm_of_get_bridge
authorJagan Teki <jagan@amarulasolutions.com>
Thu, 31 Mar 2022 15:45:03 +0000 (21:15 +0530)
committerRobert Foss <robert.foss@linaro.org>
Thu, 31 Mar 2022 15:52:49 +0000 (17:52 +0200)
devm_drm_of_get_bridge is capable of looking up the downstream
bridge and panel and trying to add a panel bridge if the panel
is found.

Replace explicit finding calls with devm_drm_of_get_bridge.

Cc: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Robert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220331154503.66054-5-jagan@amarulasolutions.com
drivers/gpu/drm/mcde/mcde_dsi.c

index 5651734..083a472 100644 (file)
@@ -19,7 +19,6 @@
 #include <drm/drm_mipi_dsi.h>
 #include <drm/drm_modeset_helper_vtables.h>
 #include <drm/drm_of.h>
-#include <drm/drm_panel.h>
 #include <drm/drm_print.h>
 #include <drm/drm_probe_helper.h>
 
@@ -39,7 +38,6 @@ struct mcde_dsi {
        struct device *dev;
        struct mcde *mcde;
        struct drm_bridge bridge;
-       struct drm_panel *panel;
        struct drm_bridge *bridge_out;
        struct mipi_dsi_host dsi_host;
        struct mipi_dsi_device *mdsi;
@@ -1073,9 +1071,7 @@ static int mcde_dsi_bind(struct device *dev, struct device *master,
        struct drm_device *drm = data;
        struct mcde *mcde = to_mcde(drm);
        struct mcde_dsi *d = dev_get_drvdata(dev);
-       struct device_node *child;
-       struct drm_panel *panel = NULL;
-       struct drm_bridge *bridge = NULL;
+       struct drm_bridge *bridge;
 
        if (!of_get_available_child_count(dev->of_node)) {
                dev_info(dev, "unused DSI interface\n");
@@ -1100,37 +1096,10 @@ static int mcde_dsi_bind(struct device *dev, struct device *master,
                return PTR_ERR(d->lp_clk);
        }
 
-       /* Look for a panel as a child to this node */
-       for_each_available_child_of_node(dev->of_node, child) {
-               panel = of_drm_find_panel(child);
-               if (IS_ERR(panel)) {
-                       dev_err(dev, "failed to find panel try bridge (%ld)\n",
-                               PTR_ERR(panel));
-                       panel = NULL;
-
-                       bridge = of_drm_find_bridge(child);
-                       if (!bridge) {
-                               dev_err(dev, "failed to find bridge\n");
-                               return -EINVAL;
-                       }
-               }
-       }
-       if (panel) {
-               bridge = drm_panel_bridge_add_typed(panel,
-                                                   DRM_MODE_CONNECTOR_DSI);
-               if (IS_ERR(bridge)) {
-                       dev_err(dev, "error adding panel bridge\n");
-                       return PTR_ERR(bridge);
-               }
-               dev_info(dev, "connected to panel\n");
-               d->panel = panel;
-       } else if (bridge) {
-               /* TODO: AV8100 HDMI encoder goes here for example */
-               dev_info(dev, "connected to non-panel bridge (unsupported)\n");
-               return -ENODEV;
-       } else {
-               dev_err(dev, "no panel or bridge\n");
-               return -ENODEV;
+       bridge = devm_drm_of_get_bridge(dev, dev->of_node, 0, 0);
+       if (IS_ERR(bridge)) {
+               dev_err(dev, "error to get bridge\n");
+               return PTR_ERR(bridge);
        }
 
        d->bridge_out = bridge;
@@ -1153,8 +1122,7 @@ static void mcde_dsi_unbind(struct device *dev, struct device *master,
 {
        struct mcde_dsi *d = dev_get_drvdata(dev);
 
-       if (d->panel)
-               drm_panel_bridge_remove(d->bridge_out);
+       drm_bridge_remove(d->bridge_out);
        regmap_update_bits(d->prcmu, PRCM_DSI_SW_RESET,
                           PRCM_DSI_SW_RESET_DSI0_SW_RESETN, 0);
 }