]> git.sur5r.net Git - u-boot/blobdiff - drivers/video/Kconfig
Convert CONFIG_VIDEO to Kconfig
[u-boot] / drivers / video / Kconfig
index 19f9429cce784450d5fbcea2d9d114638ebf3ed9..866fafd7ebdf2b911a99c416c5522c21338f95bc 100644 (file)
@@ -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
@@ -112,7 +121,7 @@ config VIDEO_VESA
 
 config FRAMEBUFFER_SET_VESA_MODE
        bool "Set framebuffer graphics resolution"
-       depends on VIDEO_VESA
+       depends on VIDEO_VESA || VIDEO_BROADWELL_IGD
        help
          Set VESA/native framebuffer mode (needed for bootsplash and graphical
          framebuffer console)
@@ -362,6 +371,30 @@ config DISPLAY
           The devices provide a simple interface to start up the display,
           read display information and enable it.
 
+config VIDEO_BROADWELL_IGD
+       bool "Enable Intel Broadwell integrated graphics device"
+       depends on X86
+       help
+         This enables support for integrated graphics on Intel broadwell
+         devices. Initialisation is mostly performed by a VGA boot ROM, with
+         some setup handled by U-Boot itself. The graphics adaptor works as
+         a VESA device and supports LCD panels, eDP and LVDS outputs.
+         Configuration of most aspects of device operation is performed using
+         a special tool which configures the VGA ROM, but the graphics
+         resolution can be selected in U-Boot.
+
+config VIDEO_IVYBRIDGE_IGD
+       bool "Enable Intel Ivybridge integration graphics support"
+       depends on X86
+       help
+         This enables support for integrated graphics on Intel ivybridge
+         devices. Initialisation is mostly performed by a VGA boot ROM, with
+         some setup handled by U-Boot itself. The graphics adaptor works as
+         a VESA device and supports LCD panels, eDP and LVDS outputs.
+         Configuration of most aspects of device operation is performed using
+         a special tool which configures the VGA ROM, but the graphics
+         resolution can be selected in U-Boot.
+
 config VIDEO_ROCKCHIP
        bool "Enable Rockchip video support"
        depends on DM_VIDEO
@@ -381,8 +414,18 @@ config VIDEO_SANDBOX_SDL
          console device and can display stdout output. Within U-Boot is is
          a normal bitmap display and can display images as well as text.
 
+config VIDEO_TEGRA20
+       bool "Enable LCD support on Tegra20"
+       depends on OF_CONTROL
+       help
+          Tegra20 supports video output to an attached LCD panel as well as
+          other options such as HDMI. Only the LCD is supported in U-Boot.
+          This option enables this support which can be used on devices which
+          have an LCD display connected.
+
 config VIDEO_TEGRA124
        bool "Enable video support on Tegra124"
+       depends on DM_VIDEO
        help
           Tegra124 supports many video output options including eDP and
           HDMI. At present only eDP is supported by U-Boot. This option
@@ -391,4 +434,13 @@ config VIDEO_TEGRA124
 
 source "drivers/video/bridge/Kconfig"
 
+config VIDEO
+       bool "Enable legacy video support"
+       depends on !DM_VIDEO
+       help
+         Define this for video support, without using driver model. Some
+         drivers use this because they are not yet converted to driver
+         model. Video drivers typically provide a colour text console and
+         cursor.
+
 endmenu