Commit c303814c authored by Tomi Valkeinen's avatar Tomi Valkeinen Committed by Tomi Valkeinen
Browse files

drm/rcar-du: dsi: Add r8a779h0 support



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: default avatarTomi Valkeinen <tomi.valkeinen+renesas@ideasonboard.com>
Reviewed-by: default avatarLaurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Tested-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarTomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20241217-rcar-gh-dsi-v5-6-e77421093c05@ideasonboard.com
parent a409a905
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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 },
	{ }
};