diff options
author | Bin Meng <bmeng.cn@gmail.com> | 2018-06-12 08:36:22 -0700 |
---|---|---|
committer | Bin Meng <bmeng.cn@gmail.com> | 2018-06-17 21:16:04 +0800 |
commit | 4a08c74697c679607f1ddb56167c74fc31d53068 (patch) | |
tree | 4816671c72cba2b2aee0935d0ac44229da285ee9 /drivers/video/Kconfig | |
parent | d1fe9927465c3df03c7c0c8f62bd8468d24f66bc (diff) | |
download | u-boot-4a08c74697c679607f1ddb56167c74fc31d53068.tar.gz u-boot-4a08c74697c679607f1ddb56167c74fc31d53068.tar.xz u-boot-4a08c74697c679607f1ddb56167c74fc31d53068.zip |
dm: video: Add an EFI framebuffer driver
This adds a DM video driver for U-Boot as the EFI payload. The driver
makes use of all necessary information from the passed EFI GOP info
to create a linear framebuffer device, as if it were initialized by
U-Boot itself.
Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Anatolij Gustschin <agust@denx.de>
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 4c4d2861fe..5ee9032dc9 100644 --- a/drivers/video/Kconfig +++ b/drivers/video/Kconfig @@ -156,6 +156,15 @@ config VIDEO_COREBOOT coreboot already. This can in principle be used with any platform that coreboot supports. +config VIDEO_EFI + bool "Enable EFI framebuffer driver support" + depends on EFI_STUB + help + Turn on this option to enable a framebuffeer driver when U-Boot is + loaded as a payload (see README.u-boot_on_efi) by an EFI BIOS where + the graphics device is configured by the EFI BIOS already. This can + in principle be used with any platform that has an EFI BIOS. + config VIDEO_VESA bool "Enable VESA video driver support" default n |