Commit b708b36a authored by Xin Ji's avatar Xin Ji Committed by Robert Foss

drm/bridge: anx7625: Use DPI bus type

As V4L2_FWNODE_BUS_TYPE_PARALLEL not properly descript for DPI
interface, this patch use new defined V4L2_FWNODE_BUS_TYPE_DPI for it.

Fixes: fd0310b6 ("drm/bridge: anx7625: add MIPI DPI input feature")
Signed-off-by: default avatarXin Ji <xji@analogixsemi.com>
Tested-by: default avatarChen-Yu Tsai <wenst@chromium.org>
Acked-by: default avatarRobert Foss <robert.foss@linaro.org>
Reviewed-by: default avatarRobert Foss <robert.foss@linaro.org>
Signed-off-by: default avatarRobert Foss <robert.foss@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20220422084720.959271-4-xji@analogixsemi.com
parent 0a61ef9c
...@@ -1623,14 +1623,14 @@ static int anx7625_parse_dt(struct device *dev, ...@@ -1623,14 +1623,14 @@ static int anx7625_parse_dt(struct device *dev,
anx7625_get_swing_setting(dev, pdata); anx7625_get_swing_setting(dev, pdata);
pdata->is_dpi = 1; /* default dpi mode */ pdata->is_dpi = 0; /* default dsi mode */
pdata->mipi_host_node = of_graph_get_remote_node(np, 0, 0); pdata->mipi_host_node = of_graph_get_remote_node(np, 0, 0);
if (!pdata->mipi_host_node) { if (!pdata->mipi_host_node) {
DRM_DEV_ERROR(dev, "fail to get internal panel.\n"); DRM_DEV_ERROR(dev, "fail to get internal panel.\n");
return -ENODEV; return -ENODEV;
} }
bus_type = V4L2_FWNODE_BUS_TYPE_PARALLEL; bus_type = 0;
mipi_lanes = MAX_LANES_SUPPORT; mipi_lanes = MAX_LANES_SUPPORT;
ep0 = of_graph_get_endpoint_by_regs(np, 0, 0); ep0 = of_graph_get_endpoint_by_regs(np, 0, 0);
if (ep0) { if (ep0) {
...@@ -1641,8 +1641,8 @@ static int anx7625_parse_dt(struct device *dev, ...@@ -1641,8 +1641,8 @@ static int anx7625_parse_dt(struct device *dev,
of_node_put(ep0); of_node_put(ep0);
} }
if (bus_type == V4L2_FWNODE_BUS_TYPE_PARALLEL) /* bus type is Parallel(DSI) */ if (bus_type == V4L2_FWNODE_BUS_TYPE_DPI) /* bus type is DPI */
pdata->is_dpi = 0; pdata->is_dpi = 1;
pdata->mipi_lanes = MAX_LANES_SUPPORT; pdata->mipi_lanes = MAX_LANES_SUPPORT;
if (mipi_lanes > 0) if (mipi_lanes > 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment