Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1 | # |
| 2 | # Video configuration |
| 3 | # |
| 4 | |
| 5 | menu "Graphics support" |
| 6 | |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 7 | config VIDEO |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 8 | bool "Enable driver model support for LCD/video" |
| 9 | depends on DM |
| 10 | help |
| 11 | This enables driver model for LCD and video devices. These support |
| 12 | a bitmap display of various sizes and depths which can be drawn on |
| 13 | to display a command-line console or splash screen. Enabling this |
| 14 | option compiles in the video uclass and routes all LCD/video access |
| 15 | through this. |
| 16 | |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 17 | if VIDEO |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 18 | |
Dzmitry Sankouski | 39c1fa2 | 2023-03-07 13:21:14 +0300 | [diff] [blame] | 19 | config VIDEO_FONT_4X6 |
| 20 | bool "4 x 6 font size" |
| 21 | help |
| 22 | Font for video console driver, 4 x 6 pixels. |
| 23 | Provides character bitmap data in header file. |
| 24 | When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. |
| 25 | |
| 26 | config VIDEO_FONT_8X16 |
| 27 | bool "8 x 16 font size" |
| 28 | default y |
| 29 | help |
| 30 | Font for video console driver, 8 x 16 pixels |
| 31 | Provides character bitmap data in header file. |
| 32 | When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. |
| 33 | |
Dzmitry Sankouski | e24db86 | 2023-02-27 20:37:07 +0300 | [diff] [blame] | 34 | config VIDEO_FONT_SUN12X22 |
| 35 | bool "12 x 22 font size" |
| 36 | help |
| 37 | Font for video console driver, 12 x 22 pixels |
| 38 | Provides character bitmap data in header file. |
| 39 | When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. |
| 40 | |
Dzmitry Sankouski | 0d6c089 | 2023-02-27 20:37:08 +0300 | [diff] [blame] | 41 | config VIDEO_FONT_16X32 |
| 42 | bool "16 x 32 font size" |
| 43 | help |
| 44 | Font for video console driver, 16 x 32 pixels |
| 45 | Provides character bitmap data in header file. |
| 46 | When selecting multiple fonts, you may want to enable CMD_SELECT_FONT too. |
| 47 | |
Simon Glass | 64cfeda | 2021-11-19 13:24:01 -0700 | [diff] [blame] | 48 | config VIDEO_LOGO |
| 49 | bool "Show the U-Boot logo on the display" |
Simon Glass | 7a8555d | 2021-11-19 13:24:04 -0700 | [diff] [blame] | 50 | default y if !SPLASH_SCREEN |
Simon Glass | 84e63ab | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 51 | select VIDEO_BMP_RLE8 |
Simon Glass | 64cfeda | 2021-11-19 13:24:01 -0700 | [diff] [blame] | 52 | help |
| 53 | This enables showing the U-Boot logo on the display when a video |
| 54 | device is probed. It appears at the top right. The logo itself is at |
| 55 | tools/logos/u-boot_logo.bmp and looks best when the display has a |
| 56 | black background. |
| 57 | |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 58 | config BACKLIGHT |
| 59 | bool "Enable panel backlight uclass support" |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 60 | default y |
| 61 | help |
| 62 | This provides backlight uclass driver that enables basic panel |
| 63 | backlight support. |
| 64 | |
Simon Glass | 551ca0e | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 65 | config VIDEO_PCI_DEFAULT_FB_SIZE |
| 66 | hex "Default framebuffer size to use if no drivers request it" |
Simon Glass | 551ca0e | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 67 | default 0x1000000 if X86 && PCI |
| 68 | default 0 if !(X86 && PCI) |
| 69 | help |
| 70 | Generally, video drivers request the amount of memory they need for |
| 71 | the frame buffer when they are bound, by setting the size field in |
Dario Binacchi | 196947b | 2021-01-23 19:43:52 +0100 | [diff] [blame] | 72 | struct video_uc_plat. That memory is then reserved for use after |
Simon Glass | 551ca0e | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 73 | relocation. But PCI drivers cannot be bound before relocation unless |
| 74 | they are mentioned in the devicetree. |
| 75 | |
| 76 | With this value set appropriately, it is possible for PCI video |
| 77 | devices to have a framebuffer allocated by U-Boot. |
| 78 | |
| 79 | Note: the framebuffer needs to be large enough to store all pixels at |
| 80 | maximum resolution. For example, at 1920 x 1200 with 32 bits per |
| 81 | pixel, 2560 * 1600 * 32 / 8 = 0xfa0000 bytes are needed. |
| 82 | |
Simon Glass | 9beac5d | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 83 | config VIDEO_COPY |
| 84 | bool "Enable copying the frame buffer to a hardware copy" |
Simon Glass | 9beac5d | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 85 | help |
| 86 | On some machines (e.g. x86), reading from the frame buffer is very |
| 87 | slow because it is uncached. To improve performance, this feature |
| 88 | allows the frame buffer to be kept in cached memory (allocated by |
| 89 | U-Boot) and then copied to the hardware frame-buffer as needed. |
| 90 | |
| 91 | To use this, your video driver must set @copy_base in |
Dario Binacchi | 196947b | 2021-01-23 19:43:52 +0100 | [diff] [blame] | 92 | struct video_uc_plat. |
Simon Glass | 9beac5d | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 93 | |
Patrick Delaunay | 08a43cf | 2017-08-03 12:36:06 +0200 | [diff] [blame] | 94 | config BACKLIGHT_PWM |
| 95 | bool "Generic PWM based Backlight Driver" |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 96 | depends on BACKLIGHT && DM_PWM |
Patrick Delaunay | 08a43cf | 2017-08-03 12:36:06 +0200 | [diff] [blame] | 97 | default y |
| 98 | help |
| 99 | If you have a LCD backlight adjustable by PWM, say Y to enable |
| 100 | this driver. |
| 101 | This driver can be use with "simple-panel" and |
| 102 | it understands the standard device tree |
| 103 | (leds/backlight/pwm-backlight.txt) |
| 104 | |
Patrick Delaunay | 5b6a6a9 | 2017-08-03 12:36:07 +0200 | [diff] [blame] | 105 | config BACKLIGHT_GPIO |
| 106 | bool "Generic GPIO based Backlight Driver" |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 107 | depends on BACKLIGHT |
Patrick Delaunay | 5b6a6a9 | 2017-08-03 12:36:07 +0200 | [diff] [blame] | 108 | help |
| 109 | If you have a LCD backlight adjustable by GPIO, say Y to enable |
| 110 | this driver. |
| 111 | This driver can be used with "simple-panel" and |
| 112 | it understands the standard device tree |
| 113 | (leds/backlight/gpio-backlight.txt) |
| 114 | |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 115 | config VIDEO_BPP8 |
| 116 | bool "Support 8-bit-per-pixel displays" |
Anatolij Gustschin | 8a6ffed | 2020-02-04 22:43:06 +0100 | [diff] [blame] | 117 | default y |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 118 | help |
| 119 | Support drawing text and bitmaps onto a 8-bit-per-pixel display. |
| 120 | Enabling this will include code to support this display. Without |
| 121 | this option, such displays will not be supported and console output |
| 122 | will be empty. |
| 123 | |
| 124 | config VIDEO_BPP16 |
| 125 | bool "Support 16-bit-per-pixel displays" |
Anatolij Gustschin | 8a6ffed | 2020-02-04 22:43:06 +0100 | [diff] [blame] | 126 | default y |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 127 | help |
| 128 | Support drawing text and bitmaps onto a 16-bit-per-pixel display. |
| 129 | Enabling this will include code to support this display. Without |
| 130 | this option, such displays will not be supported and console output |
| 131 | will be empty. |
| 132 | |
| 133 | config VIDEO_BPP32 |
| 134 | bool "Support 32-bit-per-pixel displays" |
Anatolij Gustschin | 8a6ffed | 2020-02-04 22:43:06 +0100 | [diff] [blame] | 135 | default y |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 136 | help |
| 137 | Support drawing text and bitmaps onto a 32-bit-per-pixel display. |
| 138 | Enabling this will include code to support this display. Without |
| 139 | this option, such displays will not be supported and console output |
| 140 | will be empty. |
| 141 | |
Rob Clark | a085aa1 | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 142 | config VIDEO_ANSI |
| 143 | bool "Support ANSI escape sequences in video console" |
Simon Glass | 72a0dd8 | 2023-01-06 08:52:29 -0600 | [diff] [blame] | 144 | default y if EFI_LOADER |
Rob Clark | a085aa1 | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 145 | help |
| 146 | Enable ANSI escape sequence decoding for a more fully functional |
Simon Glass | 72a0dd8 | 2023-01-06 08:52:29 -0600 | [diff] [blame] | 147 | console. Functionality includes changing the text colour and moving |
| 148 | the cursor. These date from the 1970s and are still widely used today |
| 149 | to control a text terminal. U-Boot implements these by decoding the |
| 150 | sequences and performing the appropriate operation. |
Rob Clark | a085aa1 | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 151 | |
Yannick Fertré | 66c3724 | 2019-10-07 15:29:04 +0200 | [diff] [blame] | 152 | config VIDEO_MIPI_DSI |
| 153 | bool "Support MIPI DSI interface" |
Yannick Fertré | 66c3724 | 2019-10-07 15:29:04 +0200 | [diff] [blame] | 154 | help |
| 155 | Support MIPI DSI interface for driving a MIPI compatible device. |
| 156 | The MIPI Display Serial Interface (MIPI DSI) defines a high-speed |
| 157 | serial interface between a host processor and a display module. |
| 158 | |
Simon Glass | 6e42e25 | 2016-01-22 21:53:37 +0100 | [diff] [blame] | 159 | config CONSOLE_NORMAL |
| 160 | bool "Support a simple text console" |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 161 | default y |
Simon Glass | 6e42e25 | 2016-01-22 21:53:37 +0100 | [diff] [blame] | 162 | help |
| 163 | Support drawing text on the frame buffer console so that it can be |
| 164 | used as a console. Rotation is not supported by this driver (see |
| 165 | CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used |
| 166 | for the display. |
| 167 | |
| 168 | config CONSOLE_ROTATION |
Simon Glass | b5146b2 | 2016-01-18 19:52:19 -0700 | [diff] [blame] | 169 | bool "Support rotated displays" |
Simon Glass | b5146b2 | 2016-01-18 19:52:19 -0700 | [diff] [blame] | 170 | help |
| 171 | Sometimes, for example if the display is mounted in portrait |
| 172 | mode or even if it's mounted landscape but rotated by 180degree, |
| 173 | we need to rotate our content of the display relative to the |
| 174 | framebuffer, so that user can read the messages which are |
| 175 | printed out. Enable this option to include a text driver which can |
| 176 | support this. The rotation is set by the 'rot' parameter in |
| 177 | struct video_priv: 0=unrotated, 1=90 degrees clockwise, 2=180 |
| 178 | degrees, 3=270 degrees. |
| 179 | |
Simon Glass | a29b012 | 2016-01-14 18:10:42 -0700 | [diff] [blame] | 180 | config CONSOLE_TRUETYPE |
| 181 | bool "Support a console that uses TrueType fonts" |
Dzmitry Sankouski | e7ee1fd | 2023-03-07 13:21:16 +0300 | [diff] [blame] | 182 | select CMD_SELECT_FONT |
Simon Glass | a29b012 | 2016-01-14 18:10:42 -0700 | [diff] [blame] | 183 | help |
| 184 | TrueTrype fonts can provide outline-drawing capability rather than |
| 185 | needing to provide a bitmap for each font and size that is needed. |
| 186 | With this option you can adjust the text size and use a variety of |
| 187 | fonts. Note that this is noticeably slower than with normal console. |
| 188 | |
| 189 | config CONSOLE_TRUETYPE_SIZE |
| 190 | int "TrueType font size" |
| 191 | depends on CONSOLE_TRUETYPE |
| 192 | default 18 |
| 193 | help |
| 194 | This sets the font size for the console. The size is measured in |
| 195 | pixels and is the nominal height of a character. Note that fonts |
| 196 | are commonly measured in 'points', being 1/72 inch (about 3.52mm). |
| 197 | However that measurement depends on the size of your display and |
| 198 | there is no standard display density. At present there is not a |
| 199 | method to select the display's physical size, which would allow |
| 200 | U-Boot to calculate the correct font size. |
| 201 | |
Simon Glass | 31efa25 | 2022-10-06 08:36:11 -0600 | [diff] [blame] | 202 | config CONSOLE_TRUETYPE_MAX_METRICS |
| 203 | int "TrueType maximum number of font / size combinations" |
| 204 | depends on CONSOLE_TRUETYPE |
| 205 | default 10 if EXPO |
| 206 | default 1 |
| 207 | help |
| 208 | This sets the number of font / size combinations which can be used by |
| 209 | the console. For simple console use a single font is enough. When |
| 210 | boot menus are in use, this may need to be increased. |
| 211 | |
| 212 | Note that a separate entry is needed for each font size, even if the |
| 213 | font itself is the same. This is because the entry caches various |
| 214 | font metrics which are expensive to regenerate each time the font |
| 215 | size changes. |
| 216 | |
Simon Glass | 983b103 | 2017-04-26 22:27:57 -0600 | [diff] [blame] | 217 | config SYS_WHITE_ON_BLACK |
| 218 | bool "Display console as white on a black background" |
Trevor Woerner | 18138ab | 2020-05-06 08:02:41 -0400 | [diff] [blame] | 219 | default y if ARCH_AT91 || ARCH_EXYNOS || ARCH_ROCKCHIP || ARCH_TEGRA || X86 || ARCH_SUNXI |
Simon Glass | 983b103 | 2017-04-26 22:27:57 -0600 | [diff] [blame] | 220 | help |
| 221 | Normally the display is black on a white background, Enable this |
| 222 | option to invert this, i.e. white on a black background. This can be |
| 223 | better in low-light situations or to reduce eye strain in some |
| 224 | cases. |
| 225 | |
Rob Clark | 8ef0535 | 2017-08-03 12:47:01 -0400 | [diff] [blame] | 226 | config NO_FB_CLEAR |
| 227 | bool "Skip framebuffer clear" |
| 228 | help |
| 229 | If firmware (whatever loads u-boot) has already put a splash image |
| 230 | on screen, you might want to preserve it until whatever u-boot |
| 231 | loads takes over the screen. This, for example, can be used to |
| 232 | keep splash image on screen until grub graphical boot menu starts. |
| 233 | |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 234 | config PANEL |
| 235 | bool "Enable panel uclass support" |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 236 | default y |
| 237 | help |
| 238 | This provides panel uclass driver that enables basic panel support. |
| 239 | |
| 240 | config SIMPLE_PANEL |
| 241 | bool "Enable simple panel support" |
Asherah Connor | 1bed576 | 2021-03-03 14:46:47 +1100 | [diff] [blame] | 242 | depends on PANEL && BACKLIGHT && DM_GPIO |
Anatolij Gustschin | e26e520 | 2020-05-26 00:20:49 +0200 | [diff] [blame] | 243 | default y |
| 244 | help |
| 245 | This turns on a simple panel driver that enables a compatible |
| 246 | video panel. |
| 247 | |
Simon Glass | 820b589 | 2022-10-06 08:36:07 -0600 | [diff] [blame] | 248 | config PANEL_HX8238D |
| 249 | bool "Enable Himax HX-8238D LCD driver" |
| 250 | depends on PANEL |
| 251 | help |
| 252 | Support for HX-8238D LCD Panel |
| 253 | The HX8238-D is a single chip controller and driver LSI that |
| 254 | integrates the power circuit. |
| 255 | It can drive a maximum 960x240 dot graphics on a-TFT panel |
| 256 | displays in 16M colors with dithering. |
| 257 | |
Simon Glass | a29b012 | 2016-01-14 18:10:42 -0700 | [diff] [blame] | 258 | source "drivers/video/fonts/Kconfig" |
| 259 | |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 260 | config VIDCONSOLE_AS_LCD |
Patrick Delaunay | 27b5b9e | 2020-07-01 14:56:10 +0200 | [diff] [blame] | 261 | bool "Use 'vidconsole' when CONFIG_VIDCONSOLE_AS_NAME string is seen in stdout" |
Patrick Delaunay | 27b5b9e | 2020-07-01 14:56:10 +0200 | [diff] [blame] | 262 | help |
| 263 | This is a work-around for boards which have 'lcd' or 'vga' in their |
| 264 | stdout environment variable, but have moved to use driver model for |
| 265 | video. In this case the console will no-longer work. While it is |
| 266 | possible to update the environment, the breakage may be confusing for |
| 267 | users. This option will be removed around the end of 2020. |
| 268 | |
| 269 | config VIDCONSOLE_AS_NAME |
| 270 | string "Use 'vidconsole' when string defined here is seen in stdout" |
| 271 | depends on VIDCONSOLE_AS_LCD |
Anatolij Gustschin | 22b897a | 2020-05-23 17:11:20 +0200 | [diff] [blame] | 272 | default "lcd" if LCD || TEGRA_COMMON |
| 273 | default "vga" if !LCD |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 274 | help |
Anatolij Gustschin | 22b897a | 2020-05-23 17:11:20 +0200 | [diff] [blame] | 275 | This is a work-around for boards which have 'lcd' or 'vga' in their |
| 276 | stdout environment variable, but have moved to use driver model for |
| 277 | video. In this case the console will no-longer work. While it is |
| 278 | possible to update the environment, the breakage may be confusing for |
| 279 | users. This option will be removed around the end of 2020. |
Simon Glass | a2931b3 | 2016-02-06 14:31:37 -0700 | [diff] [blame] | 280 | |
Bin Meng | 13b2bfc | 2016-10-09 04:14:16 -0700 | [diff] [blame] | 281 | config VIDEO_COREBOOT |
| 282 | bool "Enable coreboot framebuffer driver support" |
Simon Glass | 19987c9 | 2021-03-15 18:00:27 +1300 | [diff] [blame] | 283 | depends on X86 |
Bin Meng | 13b2bfc | 2016-10-09 04:14:16 -0700 | [diff] [blame] | 284 | help |
| 285 | Turn on this option to enable a framebuffer driver when U-Boot is |
| 286 | loaded by coreboot where the graphics device is configured by |
| 287 | coreboot already. This can in principle be used with any platform |
| 288 | that coreboot supports. |
| 289 | |
Bin Meng | 4a08c74 | 2018-06-12 08:36:22 -0700 | [diff] [blame] | 290 | config VIDEO_EFI |
| 291 | bool "Enable EFI framebuffer driver support" |
Simon Glass | 1834c08 | 2021-11-03 21:09:10 -0600 | [diff] [blame] | 292 | depends on EFI_STUB || EFI_APP |
Bin Meng | 4a08c74 | 2018-06-12 08:36:22 -0700 | [diff] [blame] | 293 | help |
| 294 | Turn on this option to enable a framebuffeer driver when U-Boot is |
| 295 | loaded as a payload (see README.u-boot_on_efi) by an EFI BIOS where |
| 296 | the graphics device is configured by the EFI BIOS already. This can |
| 297 | in principle be used with any platform that has an EFI BIOS. |
| 298 | |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 299 | config VIDEO_VESA |
| 300 | bool "Enable VESA video driver support" |
Simon Glass | 6b1ba98 | 2014-12-29 19:32:28 -0700 | [diff] [blame] | 301 | help |
| 302 | Turn on this option to enable a very simple driver which uses vesa |
| 303 | to discover the video mode and then provides a frame buffer for use |
| 304 | by U-Boot. This can in principle be used with any platform that |
| 305 | supports PCI and video cards that support VESA BIOS Extension (VBE). |
| 306 | |
Bin Meng | 6bde2dc | 2015-05-11 07:36:29 +0800 | [diff] [blame] | 307 | config FRAMEBUFFER_SET_VESA_MODE |
| 308 | bool "Set framebuffer graphics resolution" |
Simon Glass | 97cb092 | 2016-03-11 22:07:30 -0700 | [diff] [blame] | 309 | depends on VIDEO_VESA || VIDEO_BROADWELL_IGD |
Bin Meng | 6bde2dc | 2015-05-11 07:36:29 +0800 | [diff] [blame] | 310 | help |
| 311 | Set VESA/native framebuffer mode (needed for bootsplash and graphical |
| 312 | framebuffer console) |
| 313 | |
| 314 | choice |
| 315 | prompt "framebuffer graphics resolution" |
Bin Meng | 17b07d7 | 2018-04-11 22:02:16 -0700 | [diff] [blame] | 316 | default FRAMEBUFFER_VESA_MODE_118 |
Bin Meng | 6bde2dc | 2015-05-11 07:36:29 +0800 | [diff] [blame] | 317 | depends on FRAMEBUFFER_SET_VESA_MODE |
| 318 | help |
| 319 | This option sets the resolution used for the U-Boot framebuffer (and |
| 320 | bootsplash screen). |
| 321 | |
| 322 | config FRAMEBUFFER_VESA_MODE_100 |
| 323 | bool "640x400 256-color" |
| 324 | |
| 325 | config FRAMEBUFFER_VESA_MODE_101 |
| 326 | bool "640x480 256-color" |
| 327 | |
| 328 | config FRAMEBUFFER_VESA_MODE_102 |
| 329 | bool "800x600 16-color" |
| 330 | |
| 331 | config FRAMEBUFFER_VESA_MODE_103 |
| 332 | bool "800x600 256-color" |
| 333 | |
| 334 | config FRAMEBUFFER_VESA_MODE_104 |
| 335 | bool "1024x768 16-color" |
| 336 | |
| 337 | config FRAMEBUFFER_VESA_MODE_105 |
Bin Meng | 57dccb5 | 2015-08-09 23:26:59 -0700 | [diff] [blame] | 338 | bool "1024x768 256-color" |
Bin Meng | 6bde2dc | 2015-05-11 07:36:29 +0800 | [diff] [blame] | 339 | |
| 340 | config FRAMEBUFFER_VESA_MODE_106 |
| 341 | bool "1280x1024 16-color" |
| 342 | |
| 343 | config FRAMEBUFFER_VESA_MODE_107 |
| 344 | bool "1280x1024 256-color" |
| 345 | |
| 346 | config FRAMEBUFFER_VESA_MODE_108 |
| 347 | bool "80x60 text" |
| 348 | |
| 349 | config FRAMEBUFFER_VESA_MODE_109 |
| 350 | bool "132x25 text" |
| 351 | |
| 352 | config FRAMEBUFFER_VESA_MODE_10A |
| 353 | bool "132x43 text" |
| 354 | |
| 355 | config FRAMEBUFFER_VESA_MODE_10B |
| 356 | bool "132x50 text" |
| 357 | |
| 358 | config FRAMEBUFFER_VESA_MODE_10C |
| 359 | bool "132x60 text" |
| 360 | |
| 361 | config FRAMEBUFFER_VESA_MODE_10D |
| 362 | bool "320x200 32k-color (1:5:5:5)" |
| 363 | |
| 364 | config FRAMEBUFFER_VESA_MODE_10E |
| 365 | bool "320x200 64k-color (5:6:5)" |
| 366 | |
| 367 | config FRAMEBUFFER_VESA_MODE_10F |
| 368 | bool "320x200 16.8M-color (8:8:8)" |
| 369 | |
| 370 | config FRAMEBUFFER_VESA_MODE_110 |
| 371 | bool "640x480 32k-color (1:5:5:5)" |
| 372 | |
| 373 | config FRAMEBUFFER_VESA_MODE_111 |
| 374 | bool "640x480 64k-color (5:6:5)" |
| 375 | |
| 376 | config FRAMEBUFFER_VESA_MODE_112 |
| 377 | bool "640x480 16.8M-color (8:8:8)" |
| 378 | |
| 379 | config FRAMEBUFFER_VESA_MODE_113 |
| 380 | bool "800x600 32k-color (1:5:5:5)" |
| 381 | |
| 382 | config FRAMEBUFFER_VESA_MODE_114 |
| 383 | bool "800x600 64k-color (5:6:5)" |
| 384 | |
| 385 | config FRAMEBUFFER_VESA_MODE_115 |
| 386 | bool "800x600 16.8M-color (8:8:8)" |
| 387 | |
| 388 | config FRAMEBUFFER_VESA_MODE_116 |
| 389 | bool "1024x768 32k-color (1:5:5:5)" |
| 390 | |
| 391 | config FRAMEBUFFER_VESA_MODE_117 |
| 392 | bool "1024x768 64k-color (5:6:5)" |
| 393 | |
| 394 | config FRAMEBUFFER_VESA_MODE_118 |
| 395 | bool "1024x768 16.8M-color (8:8:8)" |
| 396 | |
| 397 | config FRAMEBUFFER_VESA_MODE_119 |
| 398 | bool "1280x1024 32k-color (1:5:5:5)" |
| 399 | |
| 400 | config FRAMEBUFFER_VESA_MODE_11A |
| 401 | bool "1280x1024 64k-color (5:6:5)" |
| 402 | |
| 403 | config FRAMEBUFFER_VESA_MODE_11B |
| 404 | bool "1280x1024 16.8M-color (8:8:8)" |
| 405 | |
| 406 | config FRAMEBUFFER_VESA_MODE_USER |
| 407 | bool "Manually select VESA mode" |
| 408 | |
| 409 | endchoice |
| 410 | |
| 411 | # Map the config names to an integer (KB). |
| 412 | config FRAMEBUFFER_VESA_MODE |
| 413 | prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER |
| 414 | hex |
| 415 | default 0x100 if FRAMEBUFFER_VESA_MODE_100 |
| 416 | default 0x101 if FRAMEBUFFER_VESA_MODE_101 |
| 417 | default 0x102 if FRAMEBUFFER_VESA_MODE_102 |
| 418 | default 0x103 if FRAMEBUFFER_VESA_MODE_103 |
| 419 | default 0x104 if FRAMEBUFFER_VESA_MODE_104 |
| 420 | default 0x105 if FRAMEBUFFER_VESA_MODE_105 |
| 421 | default 0x106 if FRAMEBUFFER_VESA_MODE_106 |
| 422 | default 0x107 if FRAMEBUFFER_VESA_MODE_107 |
| 423 | default 0x108 if FRAMEBUFFER_VESA_MODE_108 |
| 424 | default 0x109 if FRAMEBUFFER_VESA_MODE_109 |
| 425 | default 0x10A if FRAMEBUFFER_VESA_MODE_10A |
| 426 | default 0x10B if FRAMEBUFFER_VESA_MODE_10B |
| 427 | default 0x10C if FRAMEBUFFER_VESA_MODE_10C |
| 428 | default 0x10D if FRAMEBUFFER_VESA_MODE_10D |
| 429 | default 0x10E if FRAMEBUFFER_VESA_MODE_10E |
| 430 | default 0x10F if FRAMEBUFFER_VESA_MODE_10F |
| 431 | default 0x110 if FRAMEBUFFER_VESA_MODE_110 |
| 432 | default 0x111 if FRAMEBUFFER_VESA_MODE_111 |
| 433 | default 0x112 if FRAMEBUFFER_VESA_MODE_112 |
| 434 | default 0x113 if FRAMEBUFFER_VESA_MODE_113 |
| 435 | default 0x114 if FRAMEBUFFER_VESA_MODE_114 |
| 436 | default 0x115 if FRAMEBUFFER_VESA_MODE_115 |
| 437 | default 0x116 if FRAMEBUFFER_VESA_MODE_116 |
| 438 | default 0x117 if FRAMEBUFFER_VESA_MODE_117 |
| 439 | default 0x118 if FRAMEBUFFER_VESA_MODE_118 |
| 440 | default 0x119 if FRAMEBUFFER_VESA_MODE_119 |
| 441 | default 0x11A if FRAMEBUFFER_VESA_MODE_11A |
| 442 | default 0x11B if FRAMEBUFFER_VESA_MODE_11B |
| 443 | default 0x117 if FRAMEBUFFER_VESA_MODE_USER |
| 444 | |
Hans de Goede | 66525bb | 2015-08-08 16:03:29 +0200 | [diff] [blame] | 445 | config VIDEO_LCD_ANX9804 |
| 446 | bool "ANX9804 bridge chip" |
Hans de Goede | 66525bb | 2015-08-08 16:03:29 +0200 | [diff] [blame] | 447 | ---help--- |
| 448 | Support for the ANX9804 bridge chip, which can take pixel data coming |
| 449 | from a parallel LCD interface and translate it on the fy into a DP |
| 450 | interface for driving eDP TFT displays. It uses I2C for configuration. |
| 451 | |
Tom Rini | 286c453 | 2022-03-18 08:38:28 -0400 | [diff] [blame] | 452 | config ATMEL_LCD |
| 453 | bool "Atmel LCD panel support" |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 454 | depends on ARCH_AT91 |
Tom Rini | 286c453 | 2022-03-18 08:38:28 -0400 | [diff] [blame] | 455 | |
| 456 | config ATMEL_LCD_BGR555 |
| 457 | bool "Display in BGR555 mode" |
| 458 | help |
| 459 | Use the BGR555 output mode. Otherwise RGB565 is used. |
| 460 | |
Simon Glass | 2cbc1c0 | 2022-01-23 07:04:14 -0700 | [diff] [blame] | 461 | config VIDEO_BCM2835 |
| 462 | bool "Display support for BCM2835" |
| 463 | help |
| 464 | The graphics processor already sets up the display so this driver |
| 465 | simply checks the resolution and then sets up the frame buffer with |
| 466 | that same resolution (or as near as possible) and 32bpp depth, so |
| 467 | that U-Boot can access it with full colour depth. |
| 468 | |
Svyatoslav Ryhel | def72d5 | 2023-04-25 10:51:47 +0300 | [diff] [blame] | 469 | config VIDEO_LCD_ENDEAVORU |
| 470 | tristate "Endeavoru 720x1280 DSI video mode panel" |
| 471 | depends on PANEL && BACKLIGHT |
| 472 | select VIDEO_MIPI_DSI |
| 473 | help |
| 474 | Say Y here if you want to enable support for the IPS-LCD panel |
| 475 | module for HTC One X. Driver supports a family of panels, |
| 476 | made at least by 3 vendors (Sharp, Sony and AUO), but set up |
| 477 | using the same DSI command sequence. The panel has a 720x1280 |
| 478 | resolution and uses 24 bit RGB per pixel. |
| 479 | |
Ondrej Jirman | 6a0b888 | 2023-05-25 14:34:35 +0200 | [diff] [blame^] | 480 | config VIDEO_LCD_HIMAX_HX8394 |
| 481 | bool "Himax HX8394 DSI LCD panel support" |
| 482 | depends on PANEL && BACKLIGHT |
| 483 | select VIDEO_MIPI_DSI |
| 484 | help |
| 485 | Say Y here if you want to enable support for Himax HX8394 |
| 486 | dsi 4dl panel. |
| 487 | |
Yannick Fertré | 78157b2 | 2019-10-07 15:29:08 +0200 | [diff] [blame] | 488 | config VIDEO_LCD_ORISETECH_OTM8009A |
| 489 | bool "OTM8009A DSI LCD panel support" |
Yannick Fertré | 78157b2 | 2019-10-07 15:29:08 +0200 | [diff] [blame] | 490 | select VIDEO_MIPI_DSI |
Yannick Fertré | 78157b2 | 2019-10-07 15:29:08 +0200 | [diff] [blame] | 491 | help |
| 492 | Say Y here if you want to enable support for Orise Technology |
| 493 | otm8009a 480x800 dsi 2dl panel. |
| 494 | |
Yannick Fertré | 06ef131 | 2019-10-07 15:29:09 +0200 | [diff] [blame] | 495 | config VIDEO_LCD_RAYDIUM_RM68200 |
| 496 | bool "RM68200 DSI LCD panel support" |
Yannick Fertré | 06ef131 | 2019-10-07 15:29:09 +0200 | [diff] [blame] | 497 | select VIDEO_MIPI_DSI |
Yannick Fertré | 06ef131 | 2019-10-07 15:29:09 +0200 | [diff] [blame] | 498 | help |
| 499 | Say Y here if you want to enable support for Raydium RM68200 |
| 500 | 720x1280 DSI video mode panel. |
| 501 | |
Svyatoslav Ryhel | dcee478 | 2023-04-25 10:51:44 +0300 | [diff] [blame] | 502 | config VIDEO_LCD_RENESAS_R61307 |
| 503 | tristate "Renesas R61307 DSI video mode panel" |
| 504 | depends on PANEL && BACKLIGHT |
| 505 | select VIDEO_MIPI_DSI |
| 506 | help |
| 507 | Say Y here if you want to enable support for KOE tx13d100vm0eaa |
| 508 | IPS-LCD module with Renesas R69328 IC. The panel has a 1024x768 |
| 509 | resolution and uses 24 bit RGB per pixel. |
| 510 | |
Svyatoslav Ryhel | 6d9b3a7 | 2023-04-25 10:51:45 +0300 | [diff] [blame] | 511 | config VIDEO_LCD_RENESAS_R69328 |
| 512 | tristate "Renesas R69328 720x1280 DSI video mode panel" |
| 513 | depends on PANEL && BACKLIGHT |
| 514 | select VIDEO_MIPI_DSI |
| 515 | help |
| 516 | Say Y here if you want to enable support for JDI dx12d100vm0eaa |
| 517 | IPS-LCD module with Renesas R69328 IC. The panel has a 720x1280 |
| 518 | resolution and uses 24 bit RGB per pixel. |
| 519 | |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 520 | config VIDEO_LCD_SSD2828 |
| 521 | bool "SSD2828 bridge chip" |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 522 | ---help--- |
| 523 | Support for the SSD2828 bridge chip, which can take pixel data coming |
| 524 | from a parallel LCD interface and translate it on the fly into MIPI DSI |
| 525 | interface for driving a MIPI compatible LCD panel. It uses SPI for |
| 526 | configuration. |
| 527 | |
| 528 | config VIDEO_LCD_SSD2828_TX_CLK |
| 529 | int "SSD2828 TX_CLK frequency (in MHz)" |
| 530 | depends on VIDEO_LCD_SSD2828 |
Siarhei Siamashka | dddccd6 | 2015-01-19 05:23:35 +0200 | [diff] [blame] | 531 | default 0 |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 532 | ---help--- |
| 533 | The frequency of the crystal, which is clocking SSD2828. It may be |
| 534 | anything in the 8MHz-30MHz range and the exact value should be |
| 535 | retrieved from the board schematics. Or in the case of Allwinner |
| 536 | hardware, it can be usually found as 'lcd_xtal_freq' variable in |
Siarhei Siamashka | dddccd6 | 2015-01-19 05:23:35 +0200 | [diff] [blame] | 537 | FEX files. It can be also set to 0 for selecting PCLK from the |
| 538 | parallel LCD interface instead of TX_CLK as the PLL clock source. |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 539 | |
| 540 | config VIDEO_LCD_SSD2828_RESET |
| 541 | string "RESET pin of SSD2828" |
| 542 | depends on VIDEO_LCD_SSD2828 |
| 543 | default "" |
| 544 | ---help--- |
| 545 | The reset pin of SSD2828 chip. This takes a string in the format |
Samuel Holland | 4d9958b | 2021-09-11 16:50:48 -0500 | [diff] [blame] | 546 | understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H. |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 547 | |
Neil Armstrong | c823f24 | 2020-09-29 11:53:53 +0200 | [diff] [blame] | 548 | config VIDEO_LCD_TDO_TL070WSH30 |
| 549 | bool "TDO TL070WSH30 DSI LCD panel support" |
Neil Armstrong | c823f24 | 2020-09-29 11:53:53 +0200 | [diff] [blame] | 550 | select VIDEO_MIPI_DSI |
Neil Armstrong | c823f24 | 2020-09-29 11:53:53 +0200 | [diff] [blame] | 551 | help |
| 552 | Say Y here if you want to enable support for TDO TL070WSH30 |
| 553 | 1024x600 DSI video mode panel. |
| 554 | |
Hans de Goede | a5464f2 | 2015-01-20 09:22:26 +0100 | [diff] [blame] | 555 | config VIDEO_LCD_HITACHI_TX18D42VM |
| 556 | bool "Hitachi tx18d42vm LVDS LCD panel support" |
Hans de Goede | a5464f2 | 2015-01-20 09:22:26 +0100 | [diff] [blame] | 557 | ---help--- |
| 558 | Support for Hitachi tx18d42vm LVDS LCD panels, these panels have a |
| 559 | lcd controller which needs to be initialized over SPI, once that is |
| 560 | done they work like a regular LVDS panel. |
| 561 | |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 562 | config VIDEO_LCD_SPI_CS |
| 563 | string "SPI CS pin for LCD related config job" |
Hans de Goede | a5464f2 | 2015-01-20 09:22:26 +0100 | [diff] [blame] | 564 | depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 565 | default "" |
| 566 | ---help--- |
| 567 | This is one of the SPI communication pins, involved in setting up a |
| 568 | working LCD configuration. The exact role of SPI may differ for |
| 569 | different hardware setups. The option takes a string in the format |
Samuel Holland | 4d9958b | 2021-09-11 16:50:48 -0500 | [diff] [blame] | 570 | understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H. |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 571 | |
| 572 | config VIDEO_LCD_SPI_SCLK |
| 573 | string "SPI SCLK pin for LCD related config job" |
Hans de Goede | a5464f2 | 2015-01-20 09:22:26 +0100 | [diff] [blame] | 574 | depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 575 | default "" |
| 576 | ---help--- |
| 577 | This is one of the SPI communication pins, involved in setting up a |
| 578 | working LCD configuration. The exact role of SPI may differ for |
| 579 | different hardware setups. The option takes a string in the format |
Samuel Holland | 4d9958b | 2021-09-11 16:50:48 -0500 | [diff] [blame] | 580 | understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H. |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 581 | |
| 582 | config VIDEO_LCD_SPI_MOSI |
| 583 | string "SPI MOSI pin for LCD related config job" |
Hans de Goede | a5464f2 | 2015-01-20 09:22:26 +0100 | [diff] [blame] | 584 | depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 585 | default "" |
| 586 | ---help--- |
| 587 | This is one of the SPI communication pins, involved in setting up a |
| 588 | working LCD configuration. The exact role of SPI may differ for |
| 589 | different hardware setups. The option takes a string in the format |
Samuel Holland | 4d9958b | 2021-09-11 16:50:48 -0500 | [diff] [blame] | 590 | understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H. |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 591 | |
| 592 | config VIDEO_LCD_SPI_MISO |
| 593 | string "SPI MISO pin for LCD related config job (optional)" |
| 594 | depends on VIDEO_LCD_SSD2828 |
| 595 | default "" |
| 596 | ---help--- |
| 597 | This is one of the SPI communication pins, involved in setting up a |
| 598 | working LCD configuration. The exact role of SPI may differ for |
| 599 | different hardware setups. If wired up, this pin may provide additional |
| 600 | useful functionality. Such as bi-directional communication with the |
| 601 | hardware and LCD panel id retrieval (if the panel can report it). The |
Samuel Holland | 4d9958b | 2021-09-11 16:50:48 -0500 | [diff] [blame] | 602 | option takes a string in the format understood by 'sunxi_name_to_gpio' |
Siarhei Siamashka | b8329ac | 2015-01-19 05:23:32 +0200 | [diff] [blame] | 603 | function, e.g. PH1 for pin 1 of port H. |
Simon Glass | 51f2c99 | 2015-04-14 21:03:38 -0600 | [diff] [blame] | 604 | |
Neil Armstrong | 3bed422 | 2018-07-24 17:45:28 +0200 | [diff] [blame] | 605 | source "drivers/video/meson/Kconfig" |
| 606 | |
Stefan Roese | 913d1be | 2016-01-20 08:13:28 +0100 | [diff] [blame] | 607 | config VIDEO_MVEBU |
| 608 | bool "Armada XP LCD controller" |
Stefan Roese | 913d1be | 2016-01-20 08:13:28 +0100 | [diff] [blame] | 609 | ---help--- |
| 610 | Support for the LCD controller integrated in the Marvell |
| 611 | Armada XP SoC. |
| 612 | |
Adam Ford | 244eaea | 2018-08-02 08:50:20 -0500 | [diff] [blame] | 613 | config VIDEO_OMAP3 |
| 614 | bool "Enable OMAP3+ DSS Support" |
| 615 | depends on ARCH_OMAP2PLUS |
| 616 | help |
| 617 | This enables the Display subsystem (DSS) on OMAP3+ boards. |
| 618 | |
Anatolij Gustschin | 7588c31 | 2016-01-25 17:17:22 +0100 | [diff] [blame] | 619 | config I2C_EDID |
| 620 | bool "Enable EDID library" |
Anatolij Gustschin | 7588c31 | 2016-01-25 17:17:22 +0100 | [diff] [blame] | 621 | help |
| 622 | This enables library for accessing EDID data from an LCD panel. |
| 623 | |
Simon Glass | 2dcf143 | 2016-01-21 19:45:00 -0700 | [diff] [blame] | 624 | config DISPLAY |
| 625 | bool "Enable Display support" |
| 626 | depends on DM |
Anatolij Gustschin | 7588c31 | 2016-01-25 17:17:22 +0100 | [diff] [blame] | 627 | select I2C_EDID |
Simon Glass | 51f2c99 | 2015-04-14 21:03:38 -0600 | [diff] [blame] | 628 | help |
Simon Glass | 2dcf143 | 2016-01-21 19:45:00 -0700 | [diff] [blame] | 629 | This supports drivers that provide a display, such as eDP (Embedded |
| 630 | DisplayPort) and HDMI (High Definition Multimedia Interface). |
| 631 | The devices provide a simple interface to start up the display, |
| 632 | read display information and enable it. |
Simon Glass | e7e8823 | 2015-04-14 21:03:42 -0600 | [diff] [blame] | 633 | |
Liviu Dudau | 055da18 | 2018-09-28 13:49:31 +0100 | [diff] [blame] | 634 | config NXP_TDA19988 |
| 635 | bool "Enable NXP TDA19988 support" |
| 636 | depends on DISPLAY |
Liviu Dudau | 055da18 | 2018-09-28 13:49:31 +0100 | [diff] [blame] | 637 | help |
| 638 | This enables support for the NXP TDA19988 HDMI encoder. This encoder |
| 639 | will convert RGB data streams into HDMI-encoded signals. |
| 640 | |
Songjun Wu | 7927831 | 2017-04-11 16:33:30 +0800 | [diff] [blame] | 641 | config ATMEL_HLCD |
| 642 | bool "Enable ATMEL video support using HLCDC" |
Songjun Wu | 7927831 | 2017-04-11 16:33:30 +0800 | [diff] [blame] | 643 | help |
| 644 | HLCDC supports video output to an attached LCD panel. |
| 645 | |
Svyatoslav Ryhel | 0602083 | 2023-04-25 10:51:42 +0300 | [diff] [blame] | 646 | config BACKLIGHT_LM3533 |
| 647 | bool "Backlight Driver for LM3533" |
| 648 | depends on BACKLIGHT |
| 649 | select DM_I2C |
| 650 | help |
| 651 | Say Y to enable the backlight driver for National Semiconductor / TI |
| 652 | LM3533 Lighting Power chip. Only Bank A is supported as for now. |
| 653 | Supported backlight level range is from 2 to 255 with step of 1. |
| 654 | |
Dario Binacchi | f4cf871 | 2023-01-28 16:55:31 +0100 | [diff] [blame] | 655 | source "drivers/video/ti/Kconfig" |
| 656 | |
Tom Rini | 4d2cab3 | 2022-06-10 22:59:34 -0400 | [diff] [blame] | 657 | source "drivers/video/exynos/Kconfig" |
| 658 | |
Mario Six | 25a9f97 | 2018-08-09 14:51:23 +0200 | [diff] [blame] | 659 | config LOGICORE_DP_TX |
| 660 | bool "Enable Logicore DP TX driver" |
| 661 | depends on DISPLAY |
| 662 | help |
| 663 | Enable the driver for the transmitter part of the Xilinx LogiCORE |
| 664 | DisplayPort, a IP core for Xilinx FPGAs that implements a DisplayPort |
| 665 | video interface as defined by VESA DisplayPort v1.2. |
| 666 | |
| 667 | Note that this is a pure transmitter device, and has no display |
| 668 | capabilities by itself. |
| 669 | |
Simon Glass | 97cb092 | 2016-03-11 22:07:30 -0700 | [diff] [blame] | 670 | config VIDEO_BROADWELL_IGD |
| 671 | bool "Enable Intel Broadwell integrated graphics device" |
| 672 | depends on X86 |
| 673 | help |
Simon Glass | 1df9127 | 2016-10-05 20:42:14 -0600 | [diff] [blame] | 674 | This enables support for integrated graphics on Intel broadwell |
Simon Glass | 97cb092 | 2016-03-11 22:07:30 -0700 | [diff] [blame] | 675 | devices. Initialisation is mostly performed by a VGA boot ROM, with |
| 676 | some setup handled by U-Boot itself. The graphics adaptor works as |
| 677 | a VESA device and supports LCD panels, eDP and LVDS outputs. |
| 678 | Configuration of most aspects of device operation is performed using |
| 679 | a special tool which configures the VGA ROM, but the graphics |
| 680 | resolution can be selected in U-Boot. |
| 681 | |
Simon Glass | 2c94380 | 2016-10-05 20:42:15 -0600 | [diff] [blame] | 682 | config VIDEO_IVYBRIDGE_IGD |
| 683 | bool "Enable Intel Ivybridge integration graphics support" |
| 684 | depends on X86 |
| 685 | help |
| 686 | This enables support for integrated graphics on Intel ivybridge |
| 687 | devices. Initialisation is mostly performed by a VGA boot ROM, with |
| 688 | some setup handled by U-Boot itself. The graphics adaptor works as |
| 689 | a VESA device and supports LCD panels, eDP and LVDS outputs. |
| 690 | Configuration of most aspects of device operation is performed using |
| 691 | a special tool which configures the VGA ROM, but the graphics |
| 692 | resolution can be selected in U-Boot. |
| 693 | |
eric.gao@rock-chips.com | b98f0a3 | 2017-04-17 22:24:23 +0800 | [diff] [blame] | 694 | source "drivers/video/rockchip/Kconfig" |
Simon Glass | c253948 | 2016-01-21 19:45:03 -0700 | [diff] [blame] | 695 | |
Liviu Dudau | c1a65a8 | 2018-09-28 13:50:53 +0100 | [diff] [blame] | 696 | config VIDEO_ARM_MALIDP |
| 697 | bool "Enable Arm Mali Display Processor support" |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 698 | depends on OF_CONTROL |
Liviu Dudau | c1a65a8 | 2018-09-28 13:50:53 +0100 | [diff] [blame] | 699 | select VEXPRESS_CLK |
| 700 | help |
| 701 | This enables support for Arm Ltd Mali Display Processors from |
| 702 | the DP500, DP550 and DP650 family. |
| 703 | |
Simon Glass | 1e69ad0 | 2016-01-18 19:52:24 -0700 | [diff] [blame] | 704 | config VIDEO_SANDBOX_SDL |
| 705 | bool "Enable sandbox video console using SDL" |
Tom Rini | d948c89 | 2022-11-19 18:45:43 -0500 | [diff] [blame] | 706 | depends on SANDBOX_SDL |
Simon Glass | 1e69ad0 | 2016-01-18 19:52:24 -0700 | [diff] [blame] | 707 | help |
| 708 | When using sandbox you can enable an emulated LCD display which |
| 709 | appears as an SDL (Simple DirectMedia Layer) window. This is a |
| 710 | console device and can display stdout output. Within U-Boot is is |
| 711 | a normal bitmap display and can display images as well as text. |
| 712 | |
Philippe CORNU | 72719d2 | 2017-08-03 12:36:08 +0200 | [diff] [blame] | 713 | source "drivers/video/stm32/Kconfig" |
| 714 | |
Nikhil M Jain | 5f9f816 | 2023-01-31 15:35:17 +0530 | [diff] [blame] | 715 | source "drivers/video/tidss/Kconfig" |
| 716 | |
Simon Glass | e7e8823 | 2015-04-14 21:03:42 -0600 | [diff] [blame] | 717 | config VIDEO_TEGRA124 |
| 718 | bool "Enable video support on Tegra124" |
| 719 | help |
| 720 | Tegra124 supports many video output options including eDP and |
| 721 | HDMI. At present only eDP is supported by U-Boot. This option |
| 722 | enables this support which can be used on devices which |
| 723 | have an eDP display connected. |
Simon Glass | 801ab9e | 2015-07-02 18:16:08 -0600 | [diff] [blame] | 724 | |
| 725 | source "drivers/video/bridge/Kconfig" |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 726 | |
Svyatoslav Ryhel | cf291ba | 2023-03-27 11:11:41 +0300 | [diff] [blame] | 727 | source "drivers/video/tegra20/Kconfig" |
| 728 | |
Anatolij Gustschin | bffd131 | 2019-03-18 23:29:32 +0100 | [diff] [blame] | 729 | source "drivers/video/imx/Kconfig" |
Anatolij Gustschin | 57f065f | 2019-03-18 23:29:31 +0100 | [diff] [blame] | 730 | |
Anatolij Gustschin | 79c0533 | 2021-10-04 17:33:12 +0200 | [diff] [blame] | 731 | config VIDEO_MXS |
| 732 | bool "Enable video support on i.MX28/i.MX6UL/i.MX7 SoCs" |
Anatolij Gustschin | 79c0533 | 2021-10-04 17:33:12 +0200 | [diff] [blame] | 733 | help |
| 734 | Enable framebuffer driver for i.MX28/i.MX6UL/i.MX7 processors |
| 735 | |
Stefan Bosch | e1e96ba | 2020-07-10 19:07:36 +0200 | [diff] [blame] | 736 | config VIDEO_NX |
| 737 | bool "Enable video support on Nexell SoC" |
| 738 | depends on ARCH_S5P6818 || ARCH_S5P4418 |
| 739 | help |
| 740 | Nexell SoC supports many video output options including eDP and |
| 741 | HDMI. This option enables this support which can be used on devices |
| 742 | which have an eDP display connected. |
| 743 | |
Michal Simek | b66d7af | 2020-12-03 09:31:35 +0100 | [diff] [blame] | 744 | config VIDEO_SEPS525 |
| 745 | bool "Enable video support for Seps525" |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 746 | depends on DM_GPIO |
Michal Simek | b66d7af | 2020-12-03 09:31:35 +0100 | [diff] [blame] | 747 | help |
| 748 | Enable support for the Syncoam PM-OLED display driver (RGB 160x128). |
| 749 | Currently driver is supporting only SPI interface. |
| 750 | |
Venkatesh Yadav Abbarapu | c4865e1 | 2023-05-17 10:42:09 +0200 | [diff] [blame] | 751 | source "drivers/video/zynqmp/Kconfig" |
Stefan Bosch | e1e96ba | 2020-07-10 19:07:36 +0200 | [diff] [blame] | 752 | source "drivers/video/nexell/Kconfig" |
| 753 | |
Simon Glass | b87ca80 | 2016-10-17 20:12:57 -0600 | [diff] [blame] | 754 | config CONSOLE_SCROLL_LINES |
| 755 | int "Number of lines to scroll the console by" |
Simon Glass | b87ca80 | 2016-10-17 20:12:57 -0600 | [diff] [blame] | 756 | default 1 |
| 757 | help |
| 758 | When the console need to be scrolled, this is the number of |
| 759 | lines to scroll by. It defaults to 1. Increasing this makes the |
| 760 | console jump but can help speed up operation when scrolling |
| 761 | is slow. |
| 762 | |
Philipp Tomsich | 8517f64 | 2017-05-05 21:48:26 +0200 | [diff] [blame] | 763 | config VIDEO_DW_HDMI |
| 764 | bool |
| 765 | help |
| 766 | Enables the common driver code for the Designware HDMI TX |
| 767 | block found in SoCs from various vendors. |
| 768 | As this does not provide any functionality by itself (but |
| 769 | rather requires a SoC-specific glue driver to call it), it |
| 770 | can not be enabled from the configuration menu. |
| 771 | |
Yannick Fertré | 23f965a | 2019-10-07 15:29:05 +0200 | [diff] [blame] | 772 | config VIDEO_DSI_HOST_SANDBOX |
| 773 | bool "Enable sandbox for dsi host" |
| 774 | depends on SANDBOX |
| 775 | select VIDEO_MIPI_DSI |
| 776 | help |
| 777 | Enable support for sandbox dsi host device used for testing |
| 778 | purposes. |
| 779 | Display Serial Interface (DSI) defines a serial bus and |
| 780 | a communication protocol between the host and the device |
| 781 | (panel, bridge). |
| 782 | |
Yannick Fertré | d4f7ea8 | 2019-10-07 15:29:06 +0200 | [diff] [blame] | 783 | config VIDEO_DW_MIPI_DSI |
| 784 | bool |
| 785 | select VIDEO_MIPI_DSI |
| 786 | help |
| 787 | Enables the common driver code for the Synopsis Designware |
| 788 | MIPI DSI block found in SoCs from various vendors. |
| 789 | As this does not provide any functionality by itself (but |
| 790 | rather requires a SoC-specific glue driver to call it), it |
| 791 | can not be enabled from the configuration menu. |
| 792 | |
Rob Clark | 971d7e6 | 2017-08-03 12:47:00 -0400 | [diff] [blame] | 793 | config VIDEO_SIMPLE |
| 794 | bool "Simple display driver for preconfigured display" |
| 795 | help |
| 796 | Enables a simple generic display driver which utilizes the |
| 797 | simple-framebuffer devicetree bindings. |
| 798 | |
| 799 | This driver assumes that the display hardware has been initialized |
| 800 | before u-boot starts, and u-boot will simply render to the pre- |
| 801 | allocated frame buffer surface. |
| 802 | |
Icenowy Zheng | f6bdddc | 2017-10-26 11:14:46 +0800 | [diff] [blame] | 803 | config VIDEO_DT_SIMPLEFB |
| 804 | bool "Enable SimpleFB support for passing framebuffer to OS" |
| 805 | help |
| 806 | Enables the code to pass the framebuffer to the kernel as a |
| 807 | simple framebuffer in the device tree. |
| 808 | The video output is initialized by U-Boot, and kept by the |
| 809 | kernel. |
| 810 | |
Stephan Gerhold | 21a151a | 2021-07-02 19:21:56 +0200 | [diff] [blame] | 811 | config VIDEO_MCDE_SIMPLE |
| 812 | bool "Simple driver for ST-Ericsson MCDE with preconfigured display" |
Stephan Gerhold | 21a151a | 2021-07-02 19:21:56 +0200 | [diff] [blame] | 813 | help |
| 814 | Enables a simple display driver for ST-Ericsson MCDE |
| 815 | (Multichannel Display Engine), which reads the configuration from |
| 816 | the MCDE registers. |
| 817 | |
| 818 | This driver assumes that the display hardware has been initialized |
| 819 | before u-boot starts, and u-boot will simply render to the pre- |
| 820 | allocated frame buffer surface. |
| 821 | |
Mario Six | 39a336f | 2018-09-27 09:19:29 +0200 | [diff] [blame] | 822 | config OSD |
| 823 | bool "Enable OSD support" |
| 824 | depends on DM |
Mario Six | 39a336f | 2018-09-27 09:19:29 +0200 | [diff] [blame] | 825 | help |
| 826 | This supports drivers that provide a OSD (on-screen display), which |
| 827 | is a (usually text-oriented) graphics buffer to show information on |
| 828 | a display. |
Mario Six | 9671f69 | 2018-09-27 09:19:30 +0200 | [diff] [blame] | 829 | |
Mario Six | 4eea531 | 2018-09-27 09:19:31 +0200 | [diff] [blame] | 830 | config SANDBOX_OSD |
| 831 | bool "Enable sandbox OSD" |
| 832 | depends on OSD |
| 833 | help |
| 834 | Enable support for sandbox OSD device used for testing purposes. |
| 835 | |
Mario Six | 9671f69 | 2018-09-27 09:19:30 +0200 | [diff] [blame] | 836 | config IHS_VIDEO_OUT |
| 837 | bool "Enable IHS video out driver" |
| 838 | depends on OSD |
| 839 | help |
| 840 | Enable support for the gdsys Integrated Hardware Systems (IHS) video |
| 841 | out On-screen Display (OSD) used on gdsys FPGAs to control dynamic |
| 842 | textual overlays of the display outputs. |
| 843 | |
Simon Glass | 35bd70c | 2020-08-11 11:23:35 -0600 | [diff] [blame] | 844 | config SPLASH_SCREEN |
| 845 | bool "Show a splash-screen image" |
| 846 | help |
| 847 | If this option is set, the environment is checked for a variable |
| 848 | "splashimage". If found, the usual display of logo, copyright and |
| 849 | system information on the LCD is suppressed and the BMP image at the |
| 850 | address specified in "splashimage" is loaded instead. The console is |
| 851 | redirected to the "nulldev", too. This allows for a "silent" boot |
| 852 | where a splash screen is loaded very quickly after power-on. |
| 853 | |
| 854 | The splash_screen_prepare() function is a weak function defined in |
| 855 | common/splash.c. It is called as part of the splash screen display |
| 856 | sequence. It gives the board an opportunity to prepare the splash |
| 857 | image data before it is processed and sent to the frame buffer by |
| 858 | U-Boot. Define your own version to use this feature. |
| 859 | |
Simon Glass | 988d19d | 2022-10-18 06:24:16 -0600 | [diff] [blame] | 860 | if SPLASH_SCREEN |
| 861 | |
Simon Glass | 35bd70c | 2020-08-11 11:23:35 -0600 | [diff] [blame] | 862 | config SPLASH_SCREEN_ALIGN |
| 863 | bool "Allow positioning the splash image anywhere on the display" |
Simon Glass | 35bd70c | 2020-08-11 11:23:35 -0600 | [diff] [blame] | 864 | help |
| 865 | If this option is set the splash image can be freely positioned |
| 866 | on the screen. Environment variable "splashpos" specifies the |
| 867 | position as "x,y". If a positive number is given it is used as |
| 868 | number of pixel from left/top. If a negative number is given it |
| 869 | is used as number of pixel from right/bottom. You can also |
| 870 | specify 'm' for centering the image. |
| 871 | |
| 872 | Example: |
| 873 | setenv splashpos m,m |
| 874 | => image at center of screen |
| 875 | |
| 876 | setenv splashpos 30,20 |
| 877 | => image at x = 30 and y = 20 |
| 878 | |
| 879 | setenv splashpos -10,m |
| 880 | => vertically centered image |
| 881 | at x = dspWidth - bmpWidth - 9 |
| 882 | |
Simon Glass | 4adc28e | 2022-10-18 06:30:56 -0600 | [diff] [blame] | 883 | config HIDE_LOGO_VERSION |
| 884 | bool "Hide the version information on the splash screen" |
| 885 | help |
| 886 | Normally the U-Boot version string is shown on the display when the |
| 887 | splash screen is enabled. This information is not otherwise visible |
| 888 | since video starts up after U-Boot has displayed the initial banner. |
| 889 | |
| 890 | Enable this option to hide this information. |
| 891 | |
Simon Glass | 35bd70c | 2020-08-11 11:23:35 -0600 | [diff] [blame] | 892 | config SPLASH_SOURCE |
| 893 | bool "Control the source of the splash image" |
Simon Glass | 35bd70c | 2020-08-11 11:23:35 -0600 | [diff] [blame] | 894 | help |
| 895 | Use the splash_source.c library. This library provides facilities to |
| 896 | declare board specific splash image locations, routines for loading |
| 897 | splash image from supported locations, and a way of controlling the |
| 898 | selected splash location using the "splashsource" environment |
| 899 | variable. |
| 900 | |
| 901 | This CONFIG works as follows: |
| 902 | |
| 903 | - If splashsource is set to a supported location name as defined by |
| 904 | board code, use that splash location. |
| 905 | - If splashsource is undefined, use the first splash location as |
| 906 | default. |
| 907 | - If splashsource is set to an unsupported value, do not load a splash |
| 908 | screen. |
| 909 | |
| 910 | A splash source location can describe either storage with raw data, a |
| 911 | storage formatted with a file system or a FIT image. In case of a |
| 912 | filesystem, the splash screen data is loaded as a file. The name of |
| 913 | the splash screen file can be controlled with the environment variable |
| 914 | "splashfile". |
| 915 | |
| 916 | To enable loading the splash image from a FIT image, CONFIG_FIT must |
| 917 | be enabled. The FIT image has to start at the 'offset' field address |
| 918 | in the selected splash location. The name of splash image within the |
| 919 | FIT shall be specified by the environment variable "splashfile". |
| 920 | |
| 921 | In case the environment variable "splashfile" is not defined the |
| 922 | default name 'splash.bmp' will be used. |
| 923 | |
Simon Glass | 988d19d | 2022-10-18 06:24:16 -0600 | [diff] [blame] | 924 | endif # SPLASH_SCREEN |
| 925 | |
Patrick Delaunay | 0ed6c0f | 2020-09-28 11:30:14 +0200 | [diff] [blame] | 926 | config VIDEO_BMP_GZIP |
| 927 | bool "Gzip compressed BMP image support" |
Nikhil M Jain | 857d02d | 2023-04-20 17:40:59 +0530 | [diff] [blame] | 928 | depends on BMP || SPLASH_SCREEN |
Patrick Delaunay | 0ed6c0f | 2020-09-28 11:30:14 +0200 | [diff] [blame] | 929 | help |
| 930 | If this option is set, additionally to standard BMP |
| 931 | images, gzipped BMP images can be displayed via the |
| 932 | splashscreen support or the bmp command. |
| 933 | |
Simon Glass | e655003 | 2022-10-18 06:46:08 -0600 | [diff] [blame] | 934 | config VIDEO_LOGO_MAX_SIZE |
Simon Glass | 2fd5a57 | 2022-10-18 06:49:18 -0600 | [diff] [blame] | 935 | hex "Maximum size of the bitmap logo in bytes" |
| 936 | default 0x100000 |
| 937 | help |
| 938 | Sets the maximum uncompressed size of the logo. This is needed when |
| 939 | decompressing a BMP file using the gzip algorithm, since it cannot |
| 940 | read the size from the bitmap header. |
Simon Glass | e655003 | 2022-10-18 06:46:08 -0600 | [diff] [blame] | 941 | |
Patrick Delaunay | f9a4865 | 2020-09-28 11:30:15 +0200 | [diff] [blame] | 942 | config VIDEO_BMP_RLE8 |
| 943 | bool "Run length encoded BMP image (RLE8) support" |
Patrick Delaunay | f9a4865 | 2020-09-28 11:30:15 +0200 | [diff] [blame] | 944 | help |
| 945 | If this option is set, the 8-bit RLE compressed BMP images |
| 946 | is supported. |
| 947 | |
Patrick Delaunay | 8fc78fc | 2020-09-28 11:30:16 +0200 | [diff] [blame] | 948 | config BMP_16BPP |
| 949 | bool "16-bit-per-pixel BMP image support" |
Patrick Delaunay | 8fc78fc | 2020-09-28 11:30:16 +0200 | [diff] [blame] | 950 | help |
| 951 | Support display of bitmaps file with 16-bit-per-pixel |
| 952 | |
| 953 | config BMP_24BPP |
| 954 | bool "24-bit-per-pixel BMP image support" |
Patrick Delaunay | 8fc78fc | 2020-09-28 11:30:16 +0200 | [diff] [blame] | 955 | help |
| 956 | Support display of bitmaps file with 24-bit-per-pixel. |
| 957 | |
| 958 | config BMP_32BPP |
| 959 | bool "32-bit-per-pixel BMP image support" |
Patrick Delaunay | 8fc78fc | 2020-09-28 11:30:16 +0200 | [diff] [blame] | 960 | help |
| 961 | Support display of bitmaps file with 32-bit-per-pixel. |
| 962 | |
Simon Glass | b86986c | 2022-10-18 07:46:31 -0600 | [diff] [blame] | 963 | endif # VIDEO |
Simon Glass | feda193 | 2022-10-18 07:35:17 -0600 | [diff] [blame] | 964 | |
Nikhil M Jain | 857d02d | 2023-04-20 17:40:59 +0530 | [diff] [blame] | 965 | config SPL_VIDEO |
John Keeping | 03972ff | 2023-05-09 12:02:50 +0100 | [diff] [blame] | 966 | bool "Enable driver model support for LCD/video in SPL" |
Nikhil M Jain | 857d02d | 2023-04-20 17:40:59 +0530 | [diff] [blame] | 967 | depends on SPL_DM |
| 968 | help |
| 969 | The video subsystem adds a small amount of overhead to the image. |
| 970 | If this is acceptable and you have a need to use video drivers in |
| 971 | SPL, enable this option. It might provide a cleaner interface to |
| 972 | setting up video within SPL, and allows the same drivers to be |
| 973 | used as U-Boot proper. |
| 974 | |
| 975 | if SPL_VIDEO |
| 976 | source "drivers/video/tidss/Kconfig" |
| 977 | |
| 978 | config SPL_VIDEO_LOGO |
| 979 | bool "Show the U-Boot logo on the display at SPL" |
| 980 | default y if !SPL_SPLASH_SCREEN |
| 981 | select SPL_VIDEO_BMP_RLE8 |
| 982 | help |
| 983 | This enables showing the U-Boot logo on the display when a video |
| 984 | device is probed. It appears at the top right. The logo itself is at |
| 985 | tools/logos/u-boot_logo.bmp and looks best when the display has a |
| 986 | black background. |
| 987 | |
| 988 | config SPL_SPLASH_SCREEN |
| 989 | bool "Show a splash-screen image at SPL" |
| 990 | help |
| 991 | If this option is set, the environment is checked for a variable |
| 992 | "splashimage" at spl stage. |
| 993 | |
| 994 | config SPL_SYS_WHITE_ON_BLACK |
| 995 | bool "Display console as white on a black background at SPL" |
| 996 | help |
| 997 | Normally the display is black on a white background, Enable this |
| 998 | option to invert this, i.e. white on a black background at spl stage. |
| 999 | This can be better in low-light situations or to reduce eye strain in |
| 1000 | some cases. |
| 1001 | |
| 1002 | config SPL_VIDEO_PCI_DEFAULT_FB_SIZE |
| 1003 | hex "Default framebuffer size to use if no drivers request it at SPL" |
| 1004 | default 0x1000000 if X86 && PCI |
| 1005 | default 0 if !(X86 && PCI) |
| 1006 | help |
| 1007 | Generally, video drivers request the amount of memory they need for |
| 1008 | the frame buffer when they are bound, by setting the size field in |
| 1009 | struct video_uc_plat. That memory is then reserved for use after |
| 1010 | relocation. But PCI drivers cannot be bound before relocation unless |
| 1011 | they are mentioned in the devicetree. |
| 1012 | |
| 1013 | With this value set appropriately, it is possible for PCI video |
| 1014 | devices to have a framebuffer allocated by U-Boot. |
| 1015 | |
| 1016 | Note: the framebuffer needs to be large enough to store all pixels at |
| 1017 | maximum resolution. For example, at 1920 x 1200 with 32 bits per |
| 1018 | pixel, 2560 * 1600 * 32 / 8 = 0xfa0000 bytes are needed. |
| 1019 | |
| 1020 | config SPL_CONSOLE_SCROLL_LINES |
| 1021 | int "Number of lines to scroll the console by at SPL" |
| 1022 | default 1 |
| 1023 | help |
| 1024 | When the console need to be scrolled, this is the number of |
| 1025 | lines to scroll by. It defaults to 1. Increasing this makes the |
| 1026 | console jump but can help speed up operation when scrolling |
| 1027 | is slow. |
| 1028 | |
| 1029 | config SPL_CONSOLE_NORMAL |
| 1030 | bool "Support a simple text console at SPL" |
| 1031 | default y |
| 1032 | help |
| 1033 | Support drawing text on the frame buffer console so that it can be |
| 1034 | used as a console. Rotation is not supported by this driver (see |
| 1035 | CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used |
| 1036 | for the display. |
| 1037 | |
| 1038 | config SPL_BACKLIGHT |
| 1039 | bool "Enable panel backlight uclass support at SPL" |
| 1040 | default y |
| 1041 | help |
| 1042 | This provides backlight uclass driver that enables basic panel |
| 1043 | backlight support. |
| 1044 | |
| 1045 | config SPL_PANEL |
| 1046 | bool "Enable panel uclass support at SPL" |
| 1047 | default y |
| 1048 | help |
| 1049 | This provides panel uclass driver that enables basic panel support. |
| 1050 | |
| 1051 | config SPL_SIMPLE_PANEL |
| 1052 | bool "Enable simple panel support at SPL" |
| 1053 | depends on SPL_PANEL && SPL_BACKLIGHT && SPL_DM_GPIO |
| 1054 | default y |
| 1055 | help |
| 1056 | This turns on a simple panel driver that enables a compatible |
| 1057 | video panel. |
| 1058 | |
| 1059 | config SPL_SYS_WHITE_ON_BLACK |
| 1060 | bool "Display console as white on a black background at SPL" |
| 1061 | help |
| 1062 | Normally the display is black on a white background, Enable this |
| 1063 | option to invert this, i.e. white on a black background at spl stage. |
| 1064 | This can be better in low-light situations or to reduce eye strain in |
| 1065 | some cases. |
| 1066 | |
| 1067 | if SPL_SPLASH_SCREEN |
| 1068 | |
| 1069 | config SPL_SPLASH_SCREEN_ALIGN |
| 1070 | bool "Allow positioning the splash image anywhere on the display at SPL" |
| 1071 | help |
| 1072 | If this option is set the splash image can be freely positioned |
| 1073 | on the screen only at SPL. Environment variable "splashpos" specifies |
| 1074 | the position as "x,y". If a positive number is given it is used as |
| 1075 | number of pixel from left/top. If a negative number is given it |
| 1076 | is used as number of pixel from right/bottom. |
| 1077 | |
| 1078 | config SPL_SPLASH_SOURCE |
| 1079 | bool "Control the source of the splash image at SPL" |
| 1080 | help |
| 1081 | Use the splash_source.c library. This library provides facilities to |
| 1082 | declare board specific splash image locations, routines for loading |
| 1083 | splash image from supported locations, and a way of controlling the |
| 1084 | selected splash location using the "splashsource" environment |
| 1085 | variable. |
| 1086 | |
| 1087 | This CONFIG works as follows: |
| 1088 | |
| 1089 | - If splashsource is set to a supported location name as defined by |
| 1090 | board code, use that splash location. |
| 1091 | - If splashsource is undefined, use the first splash location as |
| 1092 | default. |
| 1093 | - If splashsource is set to an unsupported value, do not load a splash |
| 1094 | screen. |
| 1095 | |
| 1096 | A splash source location can describe either storage with raw data, a |
| 1097 | storage formatted with a file system or a FIT image. In case of a |
| 1098 | filesystem, the splash screen data is loaded as a file. The name of |
| 1099 | the splash screen file can be controlled with the environment variable |
| 1100 | "splashfile". |
| 1101 | |
| 1102 | To enable loading the splash image from a FIT image, CONFIG_FIT must |
| 1103 | be enabled. The FIT image has to start at the 'offset' field address |
| 1104 | in the selected splash location. The name of splash image within the |
| 1105 | FIT shall be specified by the environment variable "splashfile". |
| 1106 | |
| 1107 | In case the environment variable "splashfile" is not defined the |
| 1108 | default name 'splash.bmp' will be used. |
| 1109 | |
| 1110 | endif # SPL_SPLASH_SCREEN |
| 1111 | |
| 1112 | config SPL_VIDEO_BMP_GZIP |
| 1113 | bool "Gzip compressed BMP image support at SPL" |
| 1114 | depends on SPL_SPLASH_SCREEN || SPL_BMP |
| 1115 | help |
| 1116 | If this option is set, additionally to standard BMP |
| 1117 | images, gzipped BMP images can be displayed via the |
| 1118 | splashscreen supportat SPL stage. |
| 1119 | |
| 1120 | config SPL_VIDEO_LOGO_MAX_SIZE |
| 1121 | hex "Maximum size of the bitmap logo in bytes at SPL" |
| 1122 | default 0x100000 |
| 1123 | help |
| 1124 | Sets the maximum uncompressed size of the logo. This is needed when |
| 1125 | decompressing a BMP file using the gzip algorithm, since it cannot |
| 1126 | read the size from the bitmap header. |
| 1127 | |
| 1128 | config SPL_VIDEO_BMP_RLE8 |
| 1129 | bool "Run length encoded BMP image (RLE8) support at SPL" |
| 1130 | help |
| 1131 | If this option is set, the 8-bit RLE compressed BMP images |
| 1132 | is supported. |
| 1133 | |
| 1134 | config SPL_BMP_16BPP |
| 1135 | bool "16-bit-per-pixel BMP image support at SPL" |
| 1136 | help |
| 1137 | Support display of bitmaps file with 16-bit-per-pixel |
| 1138 | |
| 1139 | config SPL_BMP_24BPP |
| 1140 | bool "24-bit-per-pixel BMP image support at SPL" |
| 1141 | help |
| 1142 | Support display of bitmaps file with 24-bit-per-pixel. |
| 1143 | |
| 1144 | config SPL_BMP_32BPP |
| 1145 | bool "32-bit-per-pixel BMP image support at SPL" |
| 1146 | help |
| 1147 | Support display of bitmaps file with 32-bit-per-pixel. |
| 1148 | |
| 1149 | config SPL_VIDEO_BPP8 |
| 1150 | bool "Support 8-bit-per-pixel displays at SPL" |
| 1151 | default y |
| 1152 | help |
| 1153 | Support drawing text and bitmaps onto a 8-bit-per-pixel display. |
| 1154 | Enabling this will include code to support this display. Without |
| 1155 | this option, such displays will not be supported and console output |
| 1156 | will be empty. |
| 1157 | |
| 1158 | config SPL_VIDEO_BPP16 |
| 1159 | bool "Support 16-bit-per-pixel displays at SPL" |
| 1160 | default y |
| 1161 | help |
| 1162 | Support drawing text and bitmaps onto a 16-bit-per-pixel display. |
| 1163 | Enabling this will include code to support this display. Without |
| 1164 | this option, such displays will not be supported and console output |
| 1165 | will be empty. |
| 1166 | |
| 1167 | config SPL_VIDEO_BPP32 |
| 1168 | bool "Support 32-bit-per-pixel displays at SPL" |
| 1169 | default y |
| 1170 | help |
| 1171 | Support drawing text and bitmaps onto a 32-bit-per-pixel display. |
| 1172 | Enabling this will include code to support this display. Without |
| 1173 | this option, such displays will not be supported and console output |
| 1174 | will be empty. |
| 1175 | |
| 1176 | config SPL_HIDE_LOGO_VERSION |
| 1177 | bool "Hide the version information on the splash screen at SPL" |
| 1178 | help |
| 1179 | Normally the U-Boot version string is shown on the display when the |
| 1180 | splash screen is enabled. This information is not otherwise visible |
| 1181 | since video starts up after U-Boot has displayed the initial banner. |
| 1182 | |
| 1183 | Enable this option to hide this information. |
| 1184 | endif |
| 1185 | |
Masahiro Yamada | 0b11dbf | 2015-07-26 02:46:26 +0900 | [diff] [blame] | 1186 | endmenu |