aboutsummaryrefslogtreecommitdiff
path: root/drivers/video/Kconfig
diff options
context:
space:
mode:
authorMario Six <mario.six@gdsys.cc>2018-09-27 09:19:29 +0200
committerAnatolij Gustschin <agust@denx.de>2018-09-28 18:26:32 +0200
commit39a336f116e97d936268b1d317f22a007a01528d (patch)
treed7e3a91fe0a0fab6447405114eb3b728602baa8e /drivers/video/Kconfig
parent662f381aad11246109b660a36b9028fd76714be0 (diff)
downloadu-boot-39a336f116e97d936268b1d317f22a007a01528d.zip
u-boot-39a336f116e97d936268b1d317f22a007a01528d.tar.gz
u-boot-39a336f116e97d936268b1d317f22a007a01528d.tar.bz2
drivers: Add OSD uclass
Some devices offer a text-based OSD (on-screen display) that can be programmatically controlled (i.e. text displayed on). Add a uclass to support such devices. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Mario Six <mario.six@gdsys.cc>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r--drivers/video/Kconfig8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index ed0b21f..4e627a3 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -683,4 +683,12 @@ config VIDEO_DT_SIMPLEFB
The video output is initialized by U-Boot, and kept by the
kernel.
+config OSD
+ bool "Enable OSD support"
+ depends on DM
+ default n
+ help
+ This supports drivers that provide a OSD (on-screen display), which
+ is a (usually text-oriented) graphics buffer to show information on
+ a display.
endmenu