]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
video: tegra20: dsi: set correct fifo depth
authorJonas Schwöbel <jonasschwoebel@yahoo.de>
Tue, 23 Jan 2024 17:16:32 +0000 (19:16 +0200)
committerAnatolij Gustschin <agust@denx.de>
Sun, 21 Apr 2024 07:07:01 +0000 (09:07 +0200)
According to Thierry Reding's commit in the linux kernel

976cebc35bed0456a42bf96073a26f251d23b264
"drm/tegra: dsi: Make FIFO depths host parameters"

correct depth of the video FIFO is 1920 *words* no *bytes*

Tested-by: Ion Agorria <ion@agorria.com> # HTC One X
Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # Nvidia Tegratab T114
Signed-off-by: Jonas Schwöbel <jonasschwoebel@yahoo.de>
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Reviewed-by: Thierry Reding <treding@nvidia.com>
drivers/video/tegra20/tegra-dsi.c

index ddd74540f2700f0311577dd9c72db6d8cb093bb5..7d63557d1b9fddd72dea5147ee1678210b62e496 100644 (file)
@@ -873,7 +873,7 @@ static int tegra_dsi_bridge_probe(struct udevice *dev)
                return -EINVAL;
        }
 
-       priv->video_fifo_depth = 480;
+       priv->video_fifo_depth = 1920;
        priv->host_fifo_depth = 64;
 
        ret = reset_get_by_name(dev, "dsi", &reset_ctl);