drm/rcar-du: dsi: Add r8a779h0 support
authorTomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Tue, 17 Dec 2024 05:31:40 +0000 (07:31 +0200)
committerTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Tue, 17 Dec 2024 13:13:04 +0000 (15:13 +0200)
Add support for DSI on r8a779h0. As it is identical to DSI on r8a779g0,
all we need is to handle the compatible string.

Signed-off-by: Tomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241217-rcar-gh-dsi-v5-6-e77421093c05@ideasonboard.com
drivers/gpu/drm/renesas/rcar-du/rcar_mipi_dsi.c

index be4ffc0..3c0c18d 100644 (file)
@@ -1081,6 +1081,8 @@ static const struct rcar_mipi_dsi_device_info v4h_data = {
 static const struct of_device_id rcar_mipi_dsi_of_table[] = {
        { .compatible = "renesas,r8a779a0-dsi-csi2-tx", .data = &v3u_data },
        { .compatible = "renesas,r8a779g0-dsi-csi2-tx", .data = &v4h_data },
+       /* DSI in r8a779h0 is identical to r8a779g0 */
+       { .compatible = "renesas,r8a779h0-dsi-csi2-tx", .data = &v4h_data },
        { }
 };