drm: xlnx: zynqmp_dpsub: Make drm bridge discoverable
authorAnatoliy Klymenko <anatoliy.klymenko@amd.com>
Wed, 24 Jan 2024 02:53:58 +0000 (18:53 -0800)
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Wed, 7 Feb 2024 13:16:51 +0000 (15:16 +0200)
ZynqMP DPSUB supports 2 input modes: DMA based and live video.

In the first mode, the driver implements CRTC and DP encoder DRM bridge
to model the complete display pipeline. In this case, DRM bridge is
being directly instantiated within the driver, not using any bridge
discovery mechanisms.

In the live video input mode video signal is generated by FPGA fabric
and passed into DPSUB over the connected bus. In this mode driver
exposes the DP encoder as a DRM bridge, expecting external CRTC to
discover it via drm_of_find_panel_or_bridge() or a similar call. This
discovery relies on drm_bridge.of_node being properly set.

Assign device OF node to the bridge prior to registering it. This will
make said bridge discoverable by an external CRTC driver.

Signed-off-by: Anatoliy Klymenko <anatoliy.klymenko@amd.com>
Reviewed-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240124025402.373620-2-anatoliy.klymenko@amd.com
drivers/gpu/drm/xlnx/zynqmp_dp.c

index a0606fab0e22c83bfd2c2597d0538f407368b1d0..d60b7431603ff00bc84d63723a00e67e6701a843 100644 (file)
@@ -1721,6 +1721,7 @@ int zynqmp_dp_probe(struct zynqmp_dpsub *dpsub)
        bridge->ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID
                    | DRM_BRIDGE_OP_HPD;
        bridge->type = DRM_MODE_CONNECTOR_DisplayPort;
+       bridge->of_node = dp->dev->of_node;
        dpsub->bridge = bridge;
 
        /*