mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 23:02:59 +00:00
acbb871af5
Adds support for both DSI outputs found on Tegra. Only very minimal functionality is implemented, so advanced features like ganged mode won't work. Driver is heavily based on mainline Tegra DSI and re-uses much of its features. Only T30 is supported for now but T20 support can be added if any supported devices will be found. Driver is wrapped as panel driver since Tegra DC driver supports only panel drivers calls. Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com> # ASUS TF600T T30 Tested-by: Svyatoslav Ryhel <clamor95@gmail.com> # HTC One X T30 Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
17 lines
637 B
Text
17 lines
637 B
Text
config VIDEO_TEGRA20
|
|
bool "Enable Display Controller support on Tegra20 and Tegra 30"
|
|
depends on OF_CONTROL
|
|
help
|
|
T20/T30 support video output to an attached LCD panel as well as
|
|
other options such as HDMI. Only the LCD is supported in U-Boot.
|
|
This option enables this support which can be used on devices which
|
|
have an LCD display connected.
|
|
|
|
config VIDEO_DSI_TEGRA30
|
|
bool "Enable Tegra 30 DSI support"
|
|
depends on PANEL && DM_GPIO
|
|
select VIDEO_TEGRA20
|
|
select VIDEO_MIPI_DSI
|
|
help
|
|
T30 has native support for DSI panels. This option enables support
|
|
for such panels which can be used on endeavoru and tf600t.
|