From: Svyatoslav Ryhel Date: Mon, 18 Nov 2024 06:58:18 +0000 (+0200) Subject: video: tegra20: dc: dsi: add Tegra K1 compatible X-Git-Tag: v2025.07-rc1~18^2~55^2~14 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd37937fc313e0235487bbd641fd9bad112b82cd;p=pandora-u-boot.git video: tegra20: dc: dsi: add Tegra K1 compatible Tegra K1 is fully compatible with existing DC and DSI implementation using Tegra 4 data. Signed-off-by: Svyatoslav Ryhel --- diff --git a/drivers/video/tegra20/tegra-dc.c b/drivers/video/tegra20/tegra-dc.c index e366df9ab51..16a2b5281bf 100644 --- a/drivers/video/tegra20/tegra-dc.c +++ b/drivers/video/tegra20/tegra-dc.c @@ -553,6 +553,9 @@ static const struct udevice_id tegra_lcd_ids[] = { }, { .compatible = "nvidia,tegra114-dc", .data = (ulong)&tegra114_dc_soc_info + }, { + .compatible = "nvidia,tegra124-dc", + .data = (ulong)&tegra114_dc_soc_info }, { /* sentinel */ } diff --git a/drivers/video/tegra20/tegra-dsi.c b/drivers/video/tegra20/tegra-dsi.c index 079b00e0f61..25cd4db0061 100644 --- a/drivers/video/tegra20/tegra-dsi.c +++ b/drivers/video/tegra20/tegra-dsi.c @@ -1118,6 +1118,7 @@ static const struct panel_ops tegra_dsi_bridge_ops = { static const struct udevice_id tegra_dsi_bridge_ids[] = { { .compatible = "nvidia,tegra30-dsi", .data = DSI_V0 }, { .compatible = "nvidia,tegra114-dsi", .data = DSI_V1 }, + { .compatible = "nvidia,tegra124-dsi", .data = DSI_V1 }, { } };