mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-04 02:20:25 +00:00
4d2cab33d4
Following how it's done for the majority of drivers, add a new VIDEO_EXYNOS option and Kconfig file under drivers/video/exynos and list the current options there. Cc: Anatolij Gustschin <agust@denx.de> Cc: Jaehoon Chung <jh80.chung@samsung.com> Cc: Minkyu Kang <mk7.kang@samsung.com> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Minkyu Kang <mk7.kang@samsung.com>
20 lines
358 B
Text
20 lines
358 B
Text
|
|
menuconfig VIDEO_EXYNOS
|
|
bool "Enable Exynos video support"
|
|
depends on DM_VIDEO
|
|
help
|
|
Enable support for various video output options on Exynos SoCs.
|
|
|
|
if VIDEO_EXYNOS
|
|
|
|
config EXYNOS_DP
|
|
bool "Exynos Display Port support"
|
|
|
|
config EXYNOS_FB
|
|
bool "Exynos FIMD support"
|
|
|
|
config EXYNOS_MIPI_DSIM
|
|
bool "Exynos MIPI DSI support"
|
|
depends on EXYNOS_FB
|
|
|
|
endif
|