diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2016-10-09 04:14:16 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2016-10-12 10:58:12 +0800 |
commit | 13b2bfce5104ad7b4243025554a354a2000b352b (patch) | |
tree | cc196045dc73d7d1a52ce1f44c699f893c9a3163 /drivers/video/Kconfig | |
parent | 5f6ad029f31e897fa8bd62d3f42092e051932bc2 (diff) | |
download | u-boot-13b2bfce5104ad7b4243025554a354a2000b352b.tar.gz |
dm: video: Add driver for coreboot framebuffer device
This adds a DM driver for coreboot framebuffer device.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'drivers/video/Kconfig')
-rw-r--r-- | drivers/video/Kconfig | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/drivers/video/Kconfig b/drivers/video/Kconfig index fd26690097..86db0dac5a 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -101,6 +101,15 @@ config VIDCONSOLE_AS_LCD to update the environment, the breakage may be confusing for users. This option will be removed around the end of 2016. +config VIDEO_COREBOOT + bool "Enable coreboot framebuffer driver support" + depends on X86 && SYS_COREBOOT + help + Turn on this option to enable a framebuffer driver when U-Boot is + loaded by coreboot where the graphics device is configured by + coreboot already. This can in principle be used with any platform + that coreboot supports. + config VIDEO_VESA bool "Enable VESA video driver support" default n |