diff options
author | Icenowy Zheng <icenowy@aosc.io> | 2017-10-26 03:14:46 (GMT) |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2017-10-26 09:53:39 (GMT) |
commit | f6bdddc92bbbd555868067cc529275327d1ba0fa (patch) | |
tree | ef940250d47dfc0b2d8cd3fda27e6093afe7bfc5 /arch | |
parent | e5f92467d77db8c00b389d2723242f6972e74d37 (diff) | |
download | u-boot-f6bdddc92bbbd555868067cc529275327d1ba0fa.tar.xz |
video: add an option for video simplefb via DT
Add an option to indicate that the video driver should setup a SimpleFB
node that passes the video framebuffer initialized by U-Boot to the
operating system kernel.
Currently only the Allwinner DE driver uses this option, and the
definition of this option in the sunxi-common.h config header is
converted to an imply of this option from CONFIG_VIDEO_SUNXI.
Signed-off-by: Icenowy Zheng <icenowy@aosc.io>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-sunxi/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/mach-sunxi/Kconfig b/arch/arm/mach-sunxi/Kconfig index 3c29fc6..33869a3 100644 --- a/arch/arm/mach-sunxi/Kconfig +++ b/arch/arm/mach-sunxi/Kconfig @@ -615,6 +615,7 @@ config VIDEO_SUNXI depends on !MACH_SUN9I depends on !MACH_SUN50I select VIDEO + imply VIDEO_DT_SIMPLEFB default y ---help--- Say Y here to add support for using a cfb console on the HDMI, LCD |