blob: 646fec70262c5fef18eaf66d559d8aef862d8fe8 [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001#
2# Video configuration
3#
4
5menu "Graphics support"
6
Simon Glass1acafc72016-01-18 19:52:15 -07007config DM_VIDEO
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 Glass64cfeda2021-11-19 13:24:01 -070017config VIDEO_LOGO
18 bool "Show the U-Boot logo on the display"
19 depends on DM_VIDEO
Simon Glass7a8555d2021-11-19 13:24:04 -070020 default y if !SPLASH_SCREEN
Simon Glass84e63ab2021-11-19 13:24:03 -070021 select VIDEO_BMP_RLE8
Simon Glass64cfeda2021-11-19 13:24:01 -070022 help
23 This enables showing the U-Boot logo on the display when a video
24 device is probed. It appears at the top right. The logo itself is at
25 tools/logos/u-boot_logo.bmp and looks best when the display has a
26 black background.
27
Anatolij Gustschine26e5202020-05-26 00:20:49 +020028config BACKLIGHT
29 bool "Enable panel backlight uclass support"
30 depends on DM_VIDEO
31 default y
32 help
33 This provides backlight uclass driver that enables basic panel
34 backlight support.
35
Simon Glass551ca0e2020-07-02 21:12:33 -060036config VIDEO_PCI_DEFAULT_FB_SIZE
37 hex "Default framebuffer size to use if no drivers request it"
38 depends on DM_VIDEO
39 default 0x1000000 if X86 && PCI
40 default 0 if !(X86 && PCI)
41 help
42 Generally, video drivers request the amount of memory they need for
43 the frame buffer when they are bound, by setting the size field in
Dario Binacchi196947b2021-01-23 19:43:52 +010044 struct video_uc_plat. That memory is then reserved for use after
Simon Glass551ca0e2020-07-02 21:12:33 -060045 relocation. But PCI drivers cannot be bound before relocation unless
46 they are mentioned in the devicetree.
47
48 With this value set appropriately, it is possible for PCI video
49 devices to have a framebuffer allocated by U-Boot.
50
51 Note: the framebuffer needs to be large enough to store all pixels at
52 maximum resolution. For example, at 1920 x 1200 with 32 bits per
53 pixel, 2560 * 1600 * 32 / 8 = 0xfa0000 bytes are needed.
54
Simon Glass9beac5d2020-07-02 21:12:20 -060055config VIDEO_COPY
56 bool "Enable copying the frame buffer to a hardware copy"
57 depends on DM_VIDEO
58 help
59 On some machines (e.g. x86), reading from the frame buffer is very
60 slow because it is uncached. To improve performance, this feature
61 allows the frame buffer to be kept in cached memory (allocated by
62 U-Boot) and then copied to the hardware frame-buffer as needed.
63
64 To use this, your video driver must set @copy_base in
Dario Binacchi196947b2021-01-23 19:43:52 +010065 struct video_uc_plat.
Simon Glass9beac5d2020-07-02 21:12:20 -060066
Patrick Delaunay08a43cf2017-08-03 12:36:06 +020067config BACKLIGHT_PWM
68 bool "Generic PWM based Backlight Driver"
Anatolij Gustschine26e5202020-05-26 00:20:49 +020069 depends on BACKLIGHT && DM_PWM
Patrick Delaunay08a43cf2017-08-03 12:36:06 +020070 default y
71 help
72 If you have a LCD backlight adjustable by PWM, say Y to enable
73 this driver.
74 This driver can be use with "simple-panel" and
75 it understands the standard device tree
76 (leds/backlight/pwm-backlight.txt)
77
Patrick Delaunay5b6a6a92017-08-03 12:36:07 +020078config BACKLIGHT_GPIO
79 bool "Generic GPIO based Backlight Driver"
Anatolij Gustschine26e5202020-05-26 00:20:49 +020080 depends on BACKLIGHT
Patrick Delaunay5b6a6a92017-08-03 12:36:07 +020081 help
82 If you have a LCD backlight adjustable by GPIO, say Y to enable
83 this driver.
84 This driver can be used with "simple-panel" and
85 it understands the standard device tree
86 (leds/backlight/gpio-backlight.txt)
87
Anatolij Gustschin39b95552020-05-25 21:47:19 +020088config CMD_VIDCONSOLE
89 bool "Enable vidconsole commands lcdputs and setcurs"
90 depends on DM_VIDEO
91 default y
92 help
93 Enabling this will provide 'setcurs' and 'lcdputs' commands which
94 support cursor positioning and drawing strings on video framebuffer.
95
Simon Glass1acafc72016-01-18 19:52:15 -070096config VIDEO_BPP8
97 bool "Support 8-bit-per-pixel displays"
98 depends on DM_VIDEO
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +010099 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700100 help
101 Support drawing text and bitmaps onto a 8-bit-per-pixel display.
102 Enabling this will include code to support this display. Without
103 this option, such displays will not be supported and console output
104 will be empty.
105
106config VIDEO_BPP16
107 bool "Support 16-bit-per-pixel displays"
108 depends on DM_VIDEO
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100109 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700110 help
111 Support drawing text and bitmaps onto a 16-bit-per-pixel display.
112 Enabling this will include code to support this display. Without
113 this option, such displays will not be supported and console output
114 will be empty.
115
116config VIDEO_BPP32
117 bool "Support 32-bit-per-pixel displays"
118 depends on DM_VIDEO
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100119 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700120 help
121 Support drawing text and bitmaps onto a 32-bit-per-pixel display.
122 Enabling this will include code to support this display. Without
123 this option, such displays will not be supported and console output
124 will be empty.
125
Rob Clarka085aa12017-09-13 18:12:21 -0400126config VIDEO_ANSI
127 bool "Support ANSI escape sequences in video console"
128 depends on DM_VIDEO
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100129 default y
Rob Clarka085aa12017-09-13 18:12:21 -0400130 help
131 Enable ANSI escape sequence decoding for a more fully functional
132 console.
133
Yannick Fertré66c37242019-10-07 15:29:04 +0200134config VIDEO_MIPI_DSI
135 bool "Support MIPI DSI interface"
136 depends on DM_VIDEO
137 help
138 Support MIPI DSI interface for driving a MIPI compatible device.
139 The MIPI Display Serial Interface (MIPI DSI) defines a high-speed
140 serial interface between a host processor and a display module.
141
Simon Glass6e42e252016-01-22 21:53:37 +0100142config CONSOLE_NORMAL
143 bool "Support a simple text console"
144 depends on DM_VIDEO
145 default y if DM_VIDEO
146 help
147 Support drawing text on the frame buffer console so that it can be
148 used as a console. Rotation is not supported by this driver (see
149 CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used
150 for the display.
151
152config CONSOLE_ROTATION
Simon Glassb5146b22016-01-18 19:52:19 -0700153 bool "Support rotated displays"
154 depends on DM_VIDEO
155 help
156 Sometimes, for example if the display is mounted in portrait
157 mode or even if it's mounted landscape but rotated by 180degree,
158 we need to rotate our content of the display relative to the
159 framebuffer, so that user can read the messages which are
160 printed out. Enable this option to include a text driver which can
161 support this. The rotation is set by the 'rot' parameter in
162 struct video_priv: 0=unrotated, 1=90 degrees clockwise, 2=180
163 degrees, 3=270 degrees.
164
Simon Glassa29b0122016-01-14 18:10:42 -0700165config CONSOLE_TRUETYPE
166 bool "Support a console that uses TrueType fonts"
167 depends on DM_VIDEO
168 help
169 TrueTrype fonts can provide outline-drawing capability rather than
170 needing to provide a bitmap for each font and size that is needed.
171 With this option you can adjust the text size and use a variety of
172 fonts. Note that this is noticeably slower than with normal console.
173
Moses Christopher0f425612021-01-06 15:31:35 +0000174config DM_PANEL_HX8238D
175 bool "Enable Himax HX-8238D LCD driver"
176 depends on DM_VIDEO
177 help
178 Support for HX-8238D LCD Panel
179 The HX8238-D is a single chip controller and driver LSI that
180 integrates the power circuit.
181 It can drive a maximum 960x240 dot graphics on a-TFT panel
182 displays in 16M colors with dithering.
183
Simon Glassa29b0122016-01-14 18:10:42 -0700184config CONSOLE_TRUETYPE_SIZE
185 int "TrueType font size"
186 depends on CONSOLE_TRUETYPE
187 default 18
188 help
189 This sets the font size for the console. The size is measured in
190 pixels and is the nominal height of a character. Note that fonts
191 are commonly measured in 'points', being 1/72 inch (about 3.52mm).
192 However that measurement depends on the size of your display and
193 there is no standard display density. At present there is not a
194 method to select the display's physical size, which would allow
195 U-Boot to calculate the correct font size.
196
Simon Glass983b1032017-04-26 22:27:57 -0600197config SYS_WHITE_ON_BLACK
198 bool "Display console as white on a black background"
Trevor Woerner18138ab2020-05-06 08:02:41 -0400199 default y if ARCH_AT91 || ARCH_EXYNOS || ARCH_ROCKCHIP || ARCH_TEGRA || X86 || ARCH_SUNXI
Simon Glass983b1032017-04-26 22:27:57 -0600200 help
201 Normally the display is black on a white background, Enable this
202 option to invert this, i.e. white on a black background. This can be
203 better in low-light situations or to reduce eye strain in some
204 cases.
205
Rob Clark8ef05352017-08-03 12:47:01 -0400206config NO_FB_CLEAR
207 bool "Skip framebuffer clear"
208 help
209 If firmware (whatever loads u-boot) has already put a splash image
210 on screen, you might want to preserve it until whatever u-boot
211 loads takes over the screen. This, for example, can be used to
212 keep splash image on screen until grub graphical boot menu starts.
213
Anatolij Gustschine26e5202020-05-26 00:20:49 +0200214config PANEL
215 bool "Enable panel uclass support"
216 depends on DM_VIDEO
217 default y
218 help
219 This provides panel uclass driver that enables basic panel support.
220
221config SIMPLE_PANEL
222 bool "Enable simple panel support"
Asherah Connor1bed5762021-03-03 14:46:47 +1100223 depends on PANEL && BACKLIGHT && DM_GPIO
Anatolij Gustschine26e5202020-05-26 00:20:49 +0200224 default y
225 help
226 This turns on a simple panel driver that enables a compatible
227 video panel.
228
Simon Glassa29b0122016-01-14 18:10:42 -0700229source "drivers/video/fonts/Kconfig"
230
Simon Glassa2931b32016-02-06 14:31:37 -0700231config VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200232 bool "Use 'vidconsole' when CONFIG_VIDCONSOLE_AS_NAME string is seen in stdout"
Simon Glassa2931b32016-02-06 14:31:37 -0700233 depends on DM_VIDEO
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200234 help
235 This is a work-around for boards which have 'lcd' or 'vga' in their
236 stdout environment variable, but have moved to use driver model for
237 video. In this case the console will no-longer work. While it is
238 possible to update the environment, the breakage may be confusing for
239 users. This option will be removed around the end of 2020.
240
241config VIDCONSOLE_AS_NAME
242 string "Use 'vidconsole' when string defined here is seen in stdout"
243 depends on VIDCONSOLE_AS_LCD
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200244 default "lcd" if LCD || TEGRA_COMMON
245 default "vga" if !LCD
Simon Glassa2931b32016-02-06 14:31:37 -0700246 help
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200247 This is a work-around for boards which have 'lcd' or 'vga' in their
248 stdout environment variable, but have moved to use driver model for
249 video. In this case the console will no-longer work. While it is
250 possible to update the environment, the breakage may be confusing for
251 users. This option will be removed around the end of 2020.
Simon Glassa2931b32016-02-06 14:31:37 -0700252
Bin Meng13b2bfc2016-10-09 04:14:16 -0700253config VIDEO_COREBOOT
254 bool "Enable coreboot framebuffer driver support"
Simon Glass19987c92021-03-15 18:00:27 +1300255 depends on X86
Bin Meng13b2bfc2016-10-09 04:14:16 -0700256 help
257 Turn on this option to enable a framebuffer driver when U-Boot is
258 loaded by coreboot where the graphics device is configured by
259 coreboot already. This can in principle be used with any platform
260 that coreboot supports.
261
Bin Meng4a08c742018-06-12 08:36:22 -0700262config VIDEO_EFI
263 bool "Enable EFI framebuffer driver support"
Simon Glass1834c082021-11-03 21:09:10 -0600264 depends on EFI_STUB || EFI_APP
Bin Meng4a08c742018-06-12 08:36:22 -0700265 help
266 Turn on this option to enable a framebuffeer driver when U-Boot is
267 loaded as a payload (see README.u-boot_on_efi) by an EFI BIOS where
268 the graphics device is configured by the EFI BIOS already. This can
269 in principle be used with any platform that has an EFI BIOS.
270
Simon Glass6b1ba982014-12-29 19:32:28 -0700271config VIDEO_VESA
272 bool "Enable VESA video driver support"
Simon Glass6b1ba982014-12-29 19:32:28 -0700273 help
274 Turn on this option to enable a very simple driver which uses vesa
275 to discover the video mode and then provides a frame buffer for use
276 by U-Boot. This can in principle be used with any platform that
277 supports PCI and video cards that support VESA BIOS Extension (VBE).
278
Bin Meng6bde2dc2015-05-11 07:36:29 +0800279config FRAMEBUFFER_SET_VESA_MODE
280 bool "Set framebuffer graphics resolution"
Simon Glass97cb0922016-03-11 22:07:30 -0700281 depends on VIDEO_VESA || VIDEO_BROADWELL_IGD
Bin Meng6bde2dc2015-05-11 07:36:29 +0800282 help
283 Set VESA/native framebuffer mode (needed for bootsplash and graphical
284 framebuffer console)
285
286choice
287 prompt "framebuffer graphics resolution"
Bin Meng17b07d72018-04-11 22:02:16 -0700288 default FRAMEBUFFER_VESA_MODE_118
Bin Meng6bde2dc2015-05-11 07:36:29 +0800289 depends on FRAMEBUFFER_SET_VESA_MODE
290 help
291 This option sets the resolution used for the U-Boot framebuffer (and
292 bootsplash screen).
293
294config FRAMEBUFFER_VESA_MODE_100
295 bool "640x400 256-color"
296
297config FRAMEBUFFER_VESA_MODE_101
298 bool "640x480 256-color"
299
300config FRAMEBUFFER_VESA_MODE_102
301 bool "800x600 16-color"
302
303config FRAMEBUFFER_VESA_MODE_103
304 bool "800x600 256-color"
305
306config FRAMEBUFFER_VESA_MODE_104
307 bool "1024x768 16-color"
308
309config FRAMEBUFFER_VESA_MODE_105
Bin Meng57dccb52015-08-09 23:26:59 -0700310 bool "1024x768 256-color"
Bin Meng6bde2dc2015-05-11 07:36:29 +0800311
312config FRAMEBUFFER_VESA_MODE_106
313 bool "1280x1024 16-color"
314
315config FRAMEBUFFER_VESA_MODE_107
316 bool "1280x1024 256-color"
317
318config FRAMEBUFFER_VESA_MODE_108
319 bool "80x60 text"
320
321config FRAMEBUFFER_VESA_MODE_109
322 bool "132x25 text"
323
324config FRAMEBUFFER_VESA_MODE_10A
325 bool "132x43 text"
326
327config FRAMEBUFFER_VESA_MODE_10B
328 bool "132x50 text"
329
330config FRAMEBUFFER_VESA_MODE_10C
331 bool "132x60 text"
332
333config FRAMEBUFFER_VESA_MODE_10D
334 bool "320x200 32k-color (1:5:5:5)"
335
336config FRAMEBUFFER_VESA_MODE_10E
337 bool "320x200 64k-color (5:6:5)"
338
339config FRAMEBUFFER_VESA_MODE_10F
340 bool "320x200 16.8M-color (8:8:8)"
341
342config FRAMEBUFFER_VESA_MODE_110
343 bool "640x480 32k-color (1:5:5:5)"
344
345config FRAMEBUFFER_VESA_MODE_111
346 bool "640x480 64k-color (5:6:5)"
347
348config FRAMEBUFFER_VESA_MODE_112
349 bool "640x480 16.8M-color (8:8:8)"
350
351config FRAMEBUFFER_VESA_MODE_113
352 bool "800x600 32k-color (1:5:5:5)"
353
354config FRAMEBUFFER_VESA_MODE_114
355 bool "800x600 64k-color (5:6:5)"
356
357config FRAMEBUFFER_VESA_MODE_115
358 bool "800x600 16.8M-color (8:8:8)"
359
360config FRAMEBUFFER_VESA_MODE_116
361 bool "1024x768 32k-color (1:5:5:5)"
362
363config FRAMEBUFFER_VESA_MODE_117
364 bool "1024x768 64k-color (5:6:5)"
365
366config FRAMEBUFFER_VESA_MODE_118
367 bool "1024x768 16.8M-color (8:8:8)"
368
369config FRAMEBUFFER_VESA_MODE_119
370 bool "1280x1024 32k-color (1:5:5:5)"
371
372config FRAMEBUFFER_VESA_MODE_11A
373 bool "1280x1024 64k-color (5:6:5)"
374
375config FRAMEBUFFER_VESA_MODE_11B
376 bool "1280x1024 16.8M-color (8:8:8)"
377
378config FRAMEBUFFER_VESA_MODE_USER
379 bool "Manually select VESA mode"
380
381endchoice
382
383# Map the config names to an integer (KB).
384config FRAMEBUFFER_VESA_MODE
385 prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER
386 hex
387 default 0x100 if FRAMEBUFFER_VESA_MODE_100
388 default 0x101 if FRAMEBUFFER_VESA_MODE_101
389 default 0x102 if FRAMEBUFFER_VESA_MODE_102
390 default 0x103 if FRAMEBUFFER_VESA_MODE_103
391 default 0x104 if FRAMEBUFFER_VESA_MODE_104
392 default 0x105 if FRAMEBUFFER_VESA_MODE_105
393 default 0x106 if FRAMEBUFFER_VESA_MODE_106
394 default 0x107 if FRAMEBUFFER_VESA_MODE_107
395 default 0x108 if FRAMEBUFFER_VESA_MODE_108
396 default 0x109 if FRAMEBUFFER_VESA_MODE_109
397 default 0x10A if FRAMEBUFFER_VESA_MODE_10A
398 default 0x10B if FRAMEBUFFER_VESA_MODE_10B
399 default 0x10C if FRAMEBUFFER_VESA_MODE_10C
400 default 0x10D if FRAMEBUFFER_VESA_MODE_10D
401 default 0x10E if FRAMEBUFFER_VESA_MODE_10E
402 default 0x10F if FRAMEBUFFER_VESA_MODE_10F
403 default 0x110 if FRAMEBUFFER_VESA_MODE_110
404 default 0x111 if FRAMEBUFFER_VESA_MODE_111
405 default 0x112 if FRAMEBUFFER_VESA_MODE_112
406 default 0x113 if FRAMEBUFFER_VESA_MODE_113
407 default 0x114 if FRAMEBUFFER_VESA_MODE_114
408 default 0x115 if FRAMEBUFFER_VESA_MODE_115
409 default 0x116 if FRAMEBUFFER_VESA_MODE_116
410 default 0x117 if FRAMEBUFFER_VESA_MODE_117
411 default 0x118 if FRAMEBUFFER_VESA_MODE_118
412 default 0x119 if FRAMEBUFFER_VESA_MODE_119
413 default 0x11A if FRAMEBUFFER_VESA_MODE_11A
414 default 0x11B if FRAMEBUFFER_VESA_MODE_11B
415 default 0x117 if FRAMEBUFFER_VESA_MODE_USER
416
Hans de Goede66525bb2015-08-08 16:03:29 +0200417config VIDEO_LCD_ANX9804
418 bool "ANX9804 bridge chip"
Hans de Goede66525bb2015-08-08 16:03:29 +0200419 ---help---
420 Support for the ANX9804 bridge chip, which can take pixel data coming
421 from a parallel LCD interface and translate it on the fy into a DP
422 interface for driving eDP TFT displays. It uses I2C for configuration.
423
Yannick Fertré78157b22019-10-07 15:29:08 +0200424config VIDEO_LCD_ORISETECH_OTM8009A
425 bool "OTM8009A DSI LCD panel support"
426 depends on DM_VIDEO
427 select VIDEO_MIPI_DSI
Yannick Fertré78157b22019-10-07 15:29:08 +0200428 help
429 Say Y here if you want to enable support for Orise Technology
430 otm8009a 480x800 dsi 2dl panel.
431
Yannick Fertré06ef1312019-10-07 15:29:09 +0200432config VIDEO_LCD_RAYDIUM_RM68200
433 bool "RM68200 DSI LCD panel support"
434 depends on DM_VIDEO
435 select VIDEO_MIPI_DSI
Yannick Fertré06ef1312019-10-07 15:29:09 +0200436 help
437 Say Y here if you want to enable support for Raydium RM68200
438 720x1280 DSI video mode panel.
439
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200440config VIDEO_LCD_SSD2828
441 bool "SSD2828 bridge chip"
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200442 ---help---
443 Support for the SSD2828 bridge chip, which can take pixel data coming
444 from a parallel LCD interface and translate it on the fly into MIPI DSI
445 interface for driving a MIPI compatible LCD panel. It uses SPI for
446 configuration.
447
448config VIDEO_LCD_SSD2828_TX_CLK
449 int "SSD2828 TX_CLK frequency (in MHz)"
450 depends on VIDEO_LCD_SSD2828
Siarhei Siamashkadddccd62015-01-19 05:23:35 +0200451 default 0
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200452 ---help---
453 The frequency of the crystal, which is clocking SSD2828. It may be
454 anything in the 8MHz-30MHz range and the exact value should be
455 retrieved from the board schematics. Or in the case of Allwinner
456 hardware, it can be usually found as 'lcd_xtal_freq' variable in
Siarhei Siamashkadddccd62015-01-19 05:23:35 +0200457 FEX files. It can be also set to 0 for selecting PCLK from the
458 parallel LCD interface instead of TX_CLK as the PLL clock source.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200459
460config VIDEO_LCD_SSD2828_RESET
461 string "RESET pin of SSD2828"
462 depends on VIDEO_LCD_SSD2828
463 default ""
464 ---help---
465 The reset pin of SSD2828 chip. This takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500466 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200467
Neil Armstrongc823f242020-09-29 11:53:53 +0200468config VIDEO_LCD_TDO_TL070WSH30
469 bool "TDO TL070WSH30 DSI LCD panel support"
470 depends on DM_VIDEO
471 select VIDEO_MIPI_DSI
Neil Armstrongc823f242020-09-29 11:53:53 +0200472 help
473 Say Y here if you want to enable support for TDO TL070WSH30
474 1024x600 DSI video mode panel.
475
Hans de Goedea5464f22015-01-20 09:22:26 +0100476config VIDEO_LCD_HITACHI_TX18D42VM
477 bool "Hitachi tx18d42vm LVDS LCD panel support"
Hans de Goedea5464f22015-01-20 09:22:26 +0100478 ---help---
479 Support for Hitachi tx18d42vm LVDS LCD panels, these panels have a
480 lcd controller which needs to be initialized over SPI, once that is
481 done they work like a regular LVDS panel.
482
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200483config VIDEO_LCD_SPI_CS
484 string "SPI CS pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100485 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200486 default ""
487 ---help---
488 This is one of the SPI communication pins, involved in setting up a
489 working LCD configuration. The exact role of SPI may differ for
490 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500491 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200492
493config VIDEO_LCD_SPI_SCLK
494 string "SPI SCLK pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100495 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200496 default ""
497 ---help---
498 This is one of the SPI communication pins, involved in setting up a
499 working LCD configuration. The exact role of SPI may differ for
500 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500501 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200502
503config VIDEO_LCD_SPI_MOSI
504 string "SPI MOSI pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100505 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200506 default ""
507 ---help---
508 This is one of the SPI communication pins, involved in setting up a
509 working LCD configuration. The exact role of SPI may differ for
510 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500511 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200512
513config VIDEO_LCD_SPI_MISO
514 string "SPI MISO pin for LCD related config job (optional)"
515 depends on VIDEO_LCD_SSD2828
516 default ""
517 ---help---
518 This is one of the SPI communication pins, involved in setting up a
519 working LCD configuration. The exact role of SPI may differ for
520 different hardware setups. If wired up, this pin may provide additional
521 useful functionality. Such as bi-directional communication with the
522 hardware and LCD panel id retrieval (if the panel can report it). The
Samuel Holland4d9958b2021-09-11 16:50:48 -0500523 option takes a string in the format understood by 'sunxi_name_to_gpio'
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200524 function, e.g. PH1 for pin 1 of port H.
Simon Glass51f2c992015-04-14 21:03:38 -0600525
Neil Armstrong3bed4222018-07-24 17:45:28 +0200526source "drivers/video/meson/Kconfig"
527
Stefan Roese913d1be2016-01-20 08:13:28 +0100528config VIDEO_MVEBU
529 bool "Armada XP LCD controller"
Stefan Roese913d1be2016-01-20 08:13:28 +0100530 ---help---
531 Support for the LCD controller integrated in the Marvell
532 Armada XP SoC.
533
Adam Ford244eaea2018-08-02 08:50:20 -0500534config VIDEO_OMAP3
535 bool "Enable OMAP3+ DSS Support"
536 depends on ARCH_OMAP2PLUS
537 help
538 This enables the Display subsystem (DSS) on OMAP3+ boards.
539
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100540config I2C_EDID
541 bool "Enable EDID library"
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100542 help
543 This enables library for accessing EDID data from an LCD panel.
544
Simon Glass2dcf1432016-01-21 19:45:00 -0700545config DISPLAY
546 bool "Enable Display support"
547 depends on DM
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100548 select I2C_EDID
Simon Glass51f2c992015-04-14 21:03:38 -0600549 help
Simon Glass2dcf1432016-01-21 19:45:00 -0700550 This supports drivers that provide a display, such as eDP (Embedded
551 DisplayPort) and HDMI (High Definition Multimedia Interface).
552 The devices provide a simple interface to start up the display,
553 read display information and enable it.
Simon Glasse7e88232015-04-14 21:03:42 -0600554
Liviu Dudau055da182018-09-28 13:49:31 +0100555config NXP_TDA19988
556 bool "Enable NXP TDA19988 support"
557 depends on DISPLAY
Liviu Dudau055da182018-09-28 13:49:31 +0100558 help
559 This enables support for the NXP TDA19988 HDMI encoder. This encoder
560 will convert RGB data streams into HDMI-encoded signals.
561
Songjun Wu79278312017-04-11 16:33:30 +0800562config ATMEL_HLCD
563 bool "Enable ATMEL video support using HLCDC"
Songjun Wu79278312017-04-11 16:33:30 +0800564 help
565 HLCDC supports video output to an attached LCD panel.
566
Dario Binacchi260cbc92020-12-30 00:16:31 +0100567source "drivers/video/ti/Kconfig"
Dario Binacchi96b109b2020-02-22 14:05:45 +0100568
Mario Six25a9f972018-08-09 14:51:23 +0200569config LOGICORE_DP_TX
570 bool "Enable Logicore DP TX driver"
571 depends on DISPLAY
572 help
573 Enable the driver for the transmitter part of the Xilinx LogiCORE
574 DisplayPort, a IP core for Xilinx FPGAs that implements a DisplayPort
575 video interface as defined by VESA DisplayPort v1.2.
576
577 Note that this is a pure transmitter device, and has no display
578 capabilities by itself.
579
Simon Glass97cb0922016-03-11 22:07:30 -0700580config VIDEO_BROADWELL_IGD
581 bool "Enable Intel Broadwell integrated graphics device"
582 depends on X86
583 help
Simon Glass1df91272016-10-05 20:42:14 -0600584 This enables support for integrated graphics on Intel broadwell
Simon Glass97cb0922016-03-11 22:07:30 -0700585 devices. Initialisation is mostly performed by a VGA boot ROM, with
586 some setup handled by U-Boot itself. The graphics adaptor works as
587 a VESA device and supports LCD panels, eDP and LVDS outputs.
588 Configuration of most aspects of device operation is performed using
589 a special tool which configures the VGA ROM, but the graphics
590 resolution can be selected in U-Boot.
591
Simon Glass2c943802016-10-05 20:42:15 -0600592config VIDEO_IVYBRIDGE_IGD
593 bool "Enable Intel Ivybridge integration graphics support"
594 depends on X86
595 help
596 This enables support for integrated graphics on Intel ivybridge
597 devices. Initialisation is mostly performed by a VGA boot ROM, with
598 some setup handled by U-Boot itself. The graphics adaptor works as
599 a VESA device and supports LCD panels, eDP and LVDS outputs.
600 Configuration of most aspects of device operation is performed using
601 a special tool which configures the VGA ROM, but the graphics
602 resolution can be selected in U-Boot.
603
Sanchayan Maityb215fb32017-04-11 11:12:09 +0530604config VIDEO_FSL_DCU_FB
605 bool "Enable Freescale Display Control Unit"
Igor Opaniukbe3f1a52019-06-10 14:47:50 +0300606 depends on VIDEO || DM_VIDEO
Sanchayan Maityb215fb32017-04-11 11:12:09 +0530607 help
608 This enables support for Freescale Display Control Unit (DCU4)
609 module found on Freescale Vybrid and QorIQ family of SoCs.
610
Stefan Agner77810e62017-04-11 11:12:10 +0530611config VIDEO_FSL_DCU_MAX_FB_SIZE_MB
612 int "Freescale DCU framebuffer size"
613 depends on VIDEO_FSL_DCU_FB
614 default 4194304
615 help
616 Set maximum framebuffer size to be used for Freescale Display
617 Controller Unit (DCU4).
618
eric.gao@rock-chips.comb98f0a32017-04-17 22:24:23 +0800619source "drivers/video/rockchip/Kconfig"
Simon Glassc2539482016-01-21 19:45:03 -0700620
Liviu Dudauc1a65a82018-09-28 13:50:53 +0100621config VIDEO_ARM_MALIDP
622 bool "Enable Arm Mali Display Processor support"
623 depends on DM_VIDEO && OF_CONTROL
624 select VEXPRESS_CLK
625 help
626 This enables support for Arm Ltd Mali Display Processors from
627 the DP500, DP550 and DP650 family.
628
Simon Glass1e69ad02016-01-18 19:52:24 -0700629config VIDEO_SANDBOX_SDL
630 bool "Enable sandbox video console using SDL"
631 depends on SANDBOX
632 help
633 When using sandbox you can enable an emulated LCD display which
634 appears as an SDL (Simple DirectMedia Layer) window. This is a
635 console device and can display stdout output. Within U-Boot is is
636 a normal bitmap display and can display images as well as text.
637
Philippe CORNU72719d22017-08-03 12:36:08 +0200638source "drivers/video/stm32/Kconfig"
639
Simon Glassd2f90652016-01-30 16:37:51 -0700640config VIDEO_TEGRA20
641 bool "Enable LCD support on Tegra20"
Simon Glass40d56a92016-01-30 16:37:54 -0700642 depends on OF_CONTROL
Simon Glassd2f90652016-01-30 16:37:51 -0700643 help
644 Tegra20 supports video output to an attached LCD panel as well as
645 other options such as HDMI. Only the LCD is supported in U-Boot.
646 This option enables this support which can be used on devices which
647 have an LCD display connected.
648
Simon Glasse7e88232015-04-14 21:03:42 -0600649config VIDEO_TEGRA124
650 bool "Enable video support on Tegra124"
Simon Glassd7659212016-01-30 16:37:50 -0700651 depends on DM_VIDEO
Simon Glasse7e88232015-04-14 21:03:42 -0600652 help
653 Tegra124 supports many video output options including eDP and
654 HDMI. At present only eDP is supported by U-Boot. This option
655 enables this support which can be used on devices which
656 have an eDP display connected.
Simon Glass801ab9e2015-07-02 18:16:08 -0600657
658source "drivers/video/bridge/Kconfig"
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +0900659
Anatolij Gustschinbffd1312019-03-18 23:29:32 +0100660source "drivers/video/imx/Kconfig"
Anatolij Gustschin57f065f2019-03-18 23:29:31 +0100661
Anatolij Gustschin79c05332021-10-04 17:33:12 +0200662config VIDEO_MXS
663 bool "Enable video support on i.MX28/i.MX6UL/i.MX7 SoCs"
664 depends on DM_VIDEO
665 help
666 Enable framebuffer driver for i.MX28/i.MX6UL/i.MX7 processors
667
Stefan Bosche1e96ba2020-07-10 19:07:36 +0200668config VIDEO_NX
669 bool "Enable video support on Nexell SoC"
670 depends on ARCH_S5P6818 || ARCH_S5P4418
671 help
672 Nexell SoC supports many video output options including eDP and
673 HDMI. This option enables this support which can be used on devices
674 which have an eDP display connected.
675
Michal Simekb66d7af2020-12-03 09:31:35 +0100676config VIDEO_SEPS525
677 bool "Enable video support for Seps525"
Michal Simek25a5fa12022-02-04 08:36:54 +0100678 depends on DM_VIDEO && DM_GPIO
Michal Simekb66d7af2020-12-03 09:31:35 +0100679 help
680 Enable support for the Syncoam PM-OLED display driver (RGB 160x128).
681 Currently driver is supporting only SPI interface.
682
Michal Simek98cacab2022-02-23 15:52:02 +0100683config VIDEO_ZYNQMP_DPSUB
684 bool "Enable video support for ZynqMP Display Port"
685 depends on DM_VIDEO && ZYNQMP_POWER_DOMAIN
686 help
687 Enable support for Xilinx ZynqMP Display Port. Currently this file
688 is used as placeholder for driver. The main reason is to record
689 compatible string and calling power domain driver.
690
Stefan Bosche1e96ba2020-07-10 19:07:36 +0200691source "drivers/video/nexell/Kconfig"
692
Simon Glass27604b12016-10-17 20:12:40 -0600693config VIDEO
694 bool "Enable legacy video support"
695 depends on !DM_VIDEO
696 help
697 Define this for video support, without using driver model. Some
698 drivers use this because they are not yet converted to driver
699 model. Video drivers typically provide a colour text console and
700 cursor.
701
Simon Glassbdba2b32016-10-17 20:12:41 -0600702config CFB_CONSOLE
703 bool "Enable colour frame buffer console"
Anatolij Gustschin9dec5a02020-10-26 19:50:58 +0100704 depends on VIDEO || ARCH_OMAP2PLUS
Simon Glassbdba2b32016-10-17 20:12:41 -0600705 default y if VIDEO
706 help
707 Enables the colour frame buffer driver. This supports colour
708 output on a bitmap display from an in-memory frame buffer.
709 Several colour devices are supported along with various options to
710 adjust the supported features. The driver is implemented in
711 cfb_console.c
712
713 The following defines are needed (cf. smiLynxEM, i8042)
714 VIDEO_FB_LITTLE_ENDIAN graphic memory organisation
715 (default big endian)
716 VIDEO_HW_RECTFILL graphic chip supports
717 rectangle fill (cf. smiLynxEM)
718 VIDEO_HW_BITBLT graphic chip supports
719 bit-blit (cf. smiLynxEM)
720 VIDEO_VISIBLE_COLS visible pixel columns (cols=pitch)
721 VIDEO_VISIBLE_ROWS visible pixel rows
722 VIDEO_PIXEL_SIZE bytes per pixel
723 VIDEO_DATA_FORMAT graphic data format
724 (0-5, cf. cfb_console.c)
725 VIDEO_FB_ADRS framebuffer address
726 VIDEO_KBD_INIT_FCT keyboard int fct (i.e. rx51_kp_init())
727 VIDEO_TSTC_FCT test char fct (i.e. rx51_kp_tstc)
728 VIDEO_GETC_FCT get char fct (i.e. rx51_kp_getc)
729 CONFIG_VIDEO_LOGO display Linux logo in upper left corner
730 CONFIG_VIDEO_BMP_LOGO use bmp_logo.h instead of linux_logo.h
731 for logo. Requires CONFIG_VIDEO_LOGO
732 CONFIG_CONSOLE_EXTRA_INFO
733 additional board info beside
734 the logo
735 CONFIG_HIDE_LOGO_VERSION
736 do not display bootloader
737 version string
738
739 When CONFIG_CFB_CONSOLE is defined, the video console is the
740 default console. The serial console can be forced by setting the
741 environment 'console=serial'.
742
Simon Glassc6745192016-10-17 20:12:42 -0600743config CFB_CONSOLE_ANSI
744 bool "Support ANSI escape sequences"
745 depends on CFB_CONSOLE
746 help
747 This allows the colour buffer frame buffer driver to support
748 a limited number of ANSI escape sequences (cursor control,
749 erase functions and limited graphics rendition control). Normal
750 output from U-Boot will pass through this filter.
751
Simon Glass1e1a0fb2016-10-17 20:12:49 -0600752config VGA_AS_SINGLE_DEVICE
753 bool "Set the video as an output-only device"
754 depends on CFB_CONSOLE
755 default y
756 help
757 If enable the framebuffer device will be initialized as an
758 output-only device. The Keyboard driver will not be set up. This
759 may be used if you have no keyboard device, or more than one
760 (USB Keyboard, AT Keyboard).
761
Simon Glass0872d442016-10-17 20:12:51 -0600762config VIDEO_SW_CURSOR
763 bool "Enable a software cursor"
764 depends on CFB_CONSOLE
765 default y if CFB_CONSOLE
766 help
767 This draws a cursor after the last character. No blinking is
768 provided. This makes it possible to see the current cursor
769 position when entering text on the console. It is recommended to
770 enable this.
771
Simon Glassfbda6832016-10-17 20:12:53 -0600772config CONSOLE_EXTRA_INFO
773 bool "Display additional board information"
774 depends on CFB_CONSOLE
775 help
776 Display additional board information strings that normally go to
777 the serial port. When this option is enabled, a board-specific
778 function video_get_info_str() is called to get the string for
779 each line of the display. The function should return the string,
780 which can be empty if there is nothing to display for that line.
781
Simon Glassb87ca802016-10-17 20:12:57 -0600782config CONSOLE_SCROLL_LINES
783 int "Number of lines to scroll the console by"
784 depends on CFB_CONSOLE || DM_VIDEO || LCD
785 default 1
786 help
787 When the console need to be scrolled, this is the number of
788 lines to scroll by. It defaults to 1. Increasing this makes the
789 console jump but can help speed up operation when scrolling
790 is slow.
791
Simon Glass002f9672016-10-17 20:12:44 -0600792config SYS_CONSOLE_BG_COL
793 hex "Background colour"
Bin Mengc674e002017-08-03 21:56:50 -0700794 depends on CFB_CONSOLE
Simon Glass002f9672016-10-17 20:12:44 -0600795 default 0x00
796 help
797 Defines the background colour for the console. The value is from
798 0x00 to 0xff and the meaning depends on the graphics card.
799 Typically, 0x00 means black and 0xff means white. Do not set
800 the background and foreground to the same colour or you will see
801 nothing.
802
803config SYS_CONSOLE_FG_COL
804 hex "Foreground colour"
Bin Mengc674e002017-08-03 21:56:50 -0700805 depends on CFB_CONSOLE
Simon Glass002f9672016-10-17 20:12:44 -0600806 default 0xa0
807 help
808 Defines the foreground colour for the console. The value is from
809 0x00 to 0xff and the meaning depends on the graphics card.
810 Typically, 0x00 means black and 0xff means white. Do not set
811 the background and foreground to the same colour or you will see
812 nothing.
813
Simon Glassf8b19a82016-10-17 20:12:56 -0600814config LCD
815 bool "Enable legacy LCD support"
816 help
817 Define this to enable LCD support (for output to LCD display).
818 You will also need to select an LCD driver using an additional
819 CONFIG option. See the README for details. Drives which have been
820 converted to driver model will instead used CONFIG_DM_VIDEO.
821
Philipp Tomsich8517f642017-05-05 21:48:26 +0200822config VIDEO_DW_HDMI
823 bool
824 help
825 Enables the common driver code for the Designware HDMI TX
826 block found in SoCs from various vendors.
827 As this does not provide any functionality by itself (but
828 rather requires a SoC-specific glue driver to call it), it
829 can not be enabled from the configuration menu.
830
Yannick Fertré23f965a2019-10-07 15:29:05 +0200831config VIDEO_DSI_HOST_SANDBOX
832 bool "Enable sandbox for dsi host"
833 depends on SANDBOX
834 select VIDEO_MIPI_DSI
835 help
836 Enable support for sandbox dsi host device used for testing
837 purposes.
838 Display Serial Interface (DSI) defines a serial bus and
839 a communication protocol between the host and the device
840 (panel, bridge).
841
Yannick Fertréd4f7ea82019-10-07 15:29:06 +0200842config VIDEO_DW_MIPI_DSI
843 bool
844 select VIDEO_MIPI_DSI
845 help
846 Enables the common driver code for the Synopsis Designware
847 MIPI DSI block found in SoCs from various vendors.
848 As this does not provide any functionality by itself (but
849 rather requires a SoC-specific glue driver to call it), it
850 can not be enabled from the configuration menu.
851
Rob Clark971d7e62017-08-03 12:47:00 -0400852config VIDEO_SIMPLE
853 bool "Simple display driver for preconfigured display"
854 help
855 Enables a simple generic display driver which utilizes the
856 simple-framebuffer devicetree bindings.
857
858 This driver assumes that the display hardware has been initialized
859 before u-boot starts, and u-boot will simply render to the pre-
860 allocated frame buffer surface.
861
Icenowy Zhengf6bdddc2017-10-26 11:14:46 +0800862config VIDEO_DT_SIMPLEFB
863 bool "Enable SimpleFB support for passing framebuffer to OS"
864 help
865 Enables the code to pass the framebuffer to the kernel as a
866 simple framebuffer in the device tree.
867 The video output is initialized by U-Boot, and kept by the
868 kernel.
869
Stephan Gerhold21a151a2021-07-02 19:21:56 +0200870config VIDEO_MCDE_SIMPLE
871 bool "Simple driver for ST-Ericsson MCDE with preconfigured display"
872 depends on DM_VIDEO
873 help
874 Enables a simple display driver for ST-Ericsson MCDE
875 (Multichannel Display Engine), which reads the configuration from
876 the MCDE registers.
877
878 This driver assumes that the display hardware has been initialized
879 before u-boot starts, and u-boot will simply render to the pre-
880 allocated frame buffer surface.
881
Mario Six39a336f2018-09-27 09:19:29 +0200882config OSD
883 bool "Enable OSD support"
884 depends on DM
Mario Six39a336f2018-09-27 09:19:29 +0200885 help
886 This supports drivers that provide a OSD (on-screen display), which
887 is a (usually text-oriented) graphics buffer to show information on
888 a display.
Mario Six9671f692018-09-27 09:19:30 +0200889
Mario Six4eea5312018-09-27 09:19:31 +0200890config SANDBOX_OSD
891 bool "Enable sandbox OSD"
892 depends on OSD
893 help
894 Enable support for sandbox OSD device used for testing purposes.
895
Mario Six9671f692018-09-27 09:19:30 +0200896config IHS_VIDEO_OUT
897 bool "Enable IHS video out driver"
898 depends on OSD
899 help
900 Enable support for the gdsys Integrated Hardware Systems (IHS) video
901 out On-screen Display (OSD) used on gdsys FPGAs to control dynamic
902 textual overlays of the display outputs.
903
Simon Glass35bd70c2020-08-11 11:23:35 -0600904config SPLASH_SCREEN
905 bool "Show a splash-screen image"
906 help
907 If this option is set, the environment is checked for a variable
908 "splashimage". If found, the usual display of logo, copyright and
909 system information on the LCD is suppressed and the BMP image at the
910 address specified in "splashimage" is loaded instead. The console is
911 redirected to the "nulldev", too. This allows for a "silent" boot
912 where a splash screen is loaded very quickly after power-on.
913
914 The splash_screen_prepare() function is a weak function defined in
915 common/splash.c. It is called as part of the splash screen display
916 sequence. It gives the board an opportunity to prepare the splash
917 image data before it is processed and sent to the frame buffer by
918 U-Boot. Define your own version to use this feature.
919
920config SPLASHIMAGE_GUARD
921 bool "Support unaligned BMP images"
922 depends on SPLASH_SCREEN
923 help
924 If this option is set, then U-Boot will prevent the environment
925 variable "splashimage" from being set to a problematic address
926 (see doc/README.displaying-bmps).
927
928 This option is useful for targets where, due to alignment
929 restrictions, an improperly aligned BMP image will cause a data
930 abort. If you think you will not have problems with unaligned
931 accesses (for example because your toolchain prevents them)
932 there is no need to set this option.
933
934config SPLASH_SCREEN_ALIGN
935 bool "Allow positioning the splash image anywhere on the display"
936 depends on SPLASH_SCREEN || CMD_BMP
937 help
938 If this option is set the splash image can be freely positioned
939 on the screen. Environment variable "splashpos" specifies the
940 position as "x,y". If a positive number is given it is used as
941 number of pixel from left/top. If a negative number is given it
942 is used as number of pixel from right/bottom. You can also
943 specify 'm' for centering the image.
944
945 Example:
946 setenv splashpos m,m
947 => image at center of screen
948
949 setenv splashpos 30,20
950 => image at x = 30 and y = 20
951
952 setenv splashpos -10,m
953 => vertically centered image
954 at x = dspWidth - bmpWidth - 9
955
956config SPLASH_SOURCE
957 bool "Control the source of the splash image"
958 depends on SPLASH_SCREEN
959 help
960 Use the splash_source.c library. This library provides facilities to
961 declare board specific splash image locations, routines for loading
962 splash image from supported locations, and a way of controlling the
963 selected splash location using the "splashsource" environment
964 variable.
965
966 This CONFIG works as follows:
967
968 - If splashsource is set to a supported location name as defined by
969 board code, use that splash location.
970 - If splashsource is undefined, use the first splash location as
971 default.
972 - If splashsource is set to an unsupported value, do not load a splash
973 screen.
974
975 A splash source location can describe either storage with raw data, a
976 storage formatted with a file system or a FIT image. In case of a
977 filesystem, the splash screen data is loaded as a file. The name of
978 the splash screen file can be controlled with the environment variable
979 "splashfile".
980
981 To enable loading the splash image from a FIT image, CONFIG_FIT must
982 be enabled. The FIT image has to start at the 'offset' field address
983 in the selected splash location. The name of splash image within the
984 FIT shall be specified by the environment variable "splashfile".
985
986 In case the environment variable "splashfile" is not defined the
987 default name 'splash.bmp' will be used.
988
Patrick Delaunay0ed6c0f2020-09-28 11:30:14 +0200989config VIDEO_BMP_GZIP
990 bool "Gzip compressed BMP image support"
991 depends on CMD_BMP || SPLASH_SCREEN
992 help
993 If this option is set, additionally to standard BMP
994 images, gzipped BMP images can be displayed via the
995 splashscreen support or the bmp command.
996
Patrick Delaunayf9a48652020-09-28 11:30:15 +0200997config VIDEO_BMP_RLE8
998 bool "Run length encoded BMP image (RLE8) support"
999 depends on DM_VIDEO || CFB_CONSOLE
1000 help
1001 If this option is set, the 8-bit RLE compressed BMP images
1002 is supported.
1003
Patrick Delaunay8fc78fc2020-09-28 11:30:16 +02001004config BMP_16BPP
1005 bool "16-bit-per-pixel BMP image support"
1006 depends on DM_VIDEO || LCD
1007 help
1008 Support display of bitmaps file with 16-bit-per-pixel
1009
1010config BMP_24BPP
1011 bool "24-bit-per-pixel BMP image support"
1012 depends on DM_VIDEO || LCD
1013 help
1014 Support display of bitmaps file with 24-bit-per-pixel.
1015
1016config BMP_32BPP
1017 bool "32-bit-per-pixel BMP image support"
1018 depends on DM_VIDEO || LCD
1019 help
1020 Support display of bitmaps file with 32-bit-per-pixel.
1021
Anatolij Gustschin8c9940d2020-10-18 20:32:35 +02001022config VIDEO_VCXK
1023 bool "Enable VCXK video controller driver support"
Anatolij Gustschin8c9940d2020-10-18 20:32:35 +02001024 help
1025 This enables VCXK driver which can be used with VC2K, VC4K
1026 and VC8K devices on various boards from BuS Elektronik GmbH.
1027
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001028endmenu