summaryrefslogtreecommitdiffstats
path: root/drivers/video/Kconfig
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2014-12-15 15:03:13 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2015-07-13 08:38:19 +0200
commit427d637327bb4714085ea748bc5e7564ea0acfe6 (patch)
tree4f74d168f16e8d867928c50ebb5fa040f26a0b8a /drivers/video/Kconfig
parent2505fc391c45d77510e39a0370c0c32f849324d0 (diff)
downloadbarebox-427d637327bb4714085ea748bc5e7564ea0acfe6.tar.gz
barebox-427d637327bb4714085ea748bc5e7564ea0acfe6.tar.xz
video: Add simple-panel support
This adds support for simple panels. These are panels which don't need special handling but can have enable gpios and such. Unlike the Linux kernel implementation this one is able to understand display-timings nodes so that it's not necessary to keep a list of all known displays with their corresponding timings in barebox. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r--drivers/video/Kconfig9
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig
index 6637877798..323fb779f0 100644
--- a/drivers/video/Kconfig
+++ b/drivers/video/Kconfig
@@ -117,4 +117,13 @@ config DRIVER_VIDEO_MTL017
The MTL017 is a parallel to lvds video encoder chip found on the
Efika MX Smartbook.
+config DRIVER_VIDEO_SIMPLE_PANEL
+ bool "Simple panel support"
+ select VIDEO_VPL
+ help
+ This enabled support for simple panels, i.e. panels which consist of
+ a mode definition and enable gpios in the devicetree. Unlike the
+ Linux Kernel implementation this one is able to understand display-timings
+ nodes so that it's not necessary to keep a list of all known displays
+ with their corresponding timings in barebox.
endif