Some drivers call video_set_flush_dcache() to indicate that they want to have the dcache flushed for the frame buffer. These drivers benefit from our new video damage control, because we can reduce the amount of memory that gets flushed significantly. This patch enables video damage control for all device drivers that call video_set_flush_dcache() to make sure they benefit from it. Signed-off-by: Alexander Graf <agraf@csgraf.de> [Alper: Add to VIDEO_TIDSS, imply instead of select] Co-developed-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Signed-off-by: Alper Nebi Yasak <alpernebiyasak@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org> Link: https://lore.kernel.org/u-boot/20230821135111.3558478-14-alpernebiyasak@gmail.com/
22 lines
375 B
Plaintext
22 lines
375 B
Plaintext
|
|
menuconfig VIDEO_EXYNOS
|
|
bool "Enable Exynos video support"
|
|
depends on 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"
|
|
imply VIDEO_DAMAGE
|
|
|
|
config EXYNOS_MIPI_DSIM
|
|
bool "Exynos MIPI DSI support"
|
|
depends on EXYNOS_FB
|
|
|
|
endif
|