diff options
author | Nikhil M Jain <n-jain1@ti.com> | 2023-01-31 15:35:17 +0530 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2023-02-04 18:16:30 +0100 |
commit | 5f9f816bb8e474709d7b81aa27bd73e542fe299a (patch) | |
tree | 12b2d3cc78c122b4daa27079f0168a1f4bc1cf32 /drivers/video/Kconfig | |
parent | 3ebe3c703bf549c740f5bcc08289c2bab6aca1ca (diff) | |
download | u-boot-5f9f816bb8e474709d7b81aa27bd73e542fe299a.tar.gz u-boot-5f9f816bb8e474709d7b81aa27bd73e542fe299a.tar.bz2 u-boot-5f9f816bb8e474709d7b81aa27bd73e542fe299a.zip |
drivers: video: tidss: TIDSS video driver support for AM62x
Added tidss video driver support which enables display
on oldi panel using AM62x, it creates a simple pipeline
framebuffer==>vidl1==>ovr1==>vp1==>oldi_panel and
calculates clock rates for panel from panel node in
device tree.
To compile TIDSS when user sets CONFIG_VIDEO_TIDSS
add rule in Makefile. Include tidss folder location
in Kconfig.
TIDSS is ported from linux kernel version 5.10.145
Signed-off-by: Nikhil M Jain <n-jain1@ti.com>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index e08b7a77dd..2a76d19cc8 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -636,6 +636,8 @@ config VIDEO_SANDBOX_SDL source "drivers/video/stm32/Kconfig" +source "drivers/video/tidss/Kconfig" + config VIDEO_TEGRA20 bool "Enable LCD support on Tegra20" depends on OF_CONTROL |