blob: 2ba4f5eac7f3163b76a8f0493e6625b220ed8eab [file] [log] [blame]
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001#
2# Video configuration
3#
4
5menu "Graphics support"
6
Simon Glassb86986c2022-10-18 07:46:31 -06007config VIDEO
Simon Glass1acafc72016-01-18 19:52:15 -07008 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 Glassb86986c2022-10-18 07:46:31 -060017if VIDEO
Simon Glassfeda1932022-10-18 07:35:17 -060018
Dzmitry Sankouski39c1fa22023-03-07 13:21:14 +030019config 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
26config 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 Sankouskie24db862023-02-27 20:37:07 +030034config 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 Sankouski0d6c0892023-02-27 20:37:08 +030041config 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 Glass64cfeda2021-11-19 13:24:01 -070048config VIDEO_LOGO
49 bool "Show the U-Boot logo on the display"
Simon Glass7a8555d2021-11-19 13:24:04 -070050 default y if !SPLASH_SCREEN
Simon Glass84e63ab2021-11-19 13:24:03 -070051 select VIDEO_BMP_RLE8
Simon Glass64cfeda2021-11-19 13:24:01 -070052 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 Gustschine26e5202020-05-26 00:20:49 +020058config BACKLIGHT
59 bool "Enable panel backlight uclass support"
Anatolij Gustschine26e5202020-05-26 00:20:49 +020060 default y
61 help
62 This provides backlight uclass driver that enables basic panel
63 backlight support.
64
Simon Glass551ca0e2020-07-02 21:12:33 -060065config VIDEO_PCI_DEFAULT_FB_SIZE
66 hex "Default framebuffer size to use if no drivers request it"
Simon Glass551ca0e2020-07-02 21:12:33 -060067 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 Binacchi196947b2021-01-23 19:43:52 +010072 struct video_uc_plat. That memory is then reserved for use after
Simon Glass551ca0e2020-07-02 21:12:33 -060073 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 Glass9beac5d2020-07-02 21:12:20 -060083config VIDEO_COPY
84 bool "Enable copying the frame buffer to a hardware copy"
Simon Glass9beac5d2020-07-02 21:12:20 -060085 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 Binacchi196947b2021-01-23 19:43:52 +010092 struct video_uc_plat.
Simon Glass9beac5d2020-07-02 21:12:20 -060093
Patrick Delaunay08a43cf2017-08-03 12:36:06 +020094config BACKLIGHT_PWM
95 bool "Generic PWM based Backlight Driver"
Anatolij Gustschine26e5202020-05-26 00:20:49 +020096 depends on BACKLIGHT && DM_PWM
Patrick Delaunay08a43cf2017-08-03 12:36:06 +020097 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 Delaunay5b6a6a92017-08-03 12:36:07 +0200105config BACKLIGHT_GPIO
106 bool "Generic GPIO based Backlight Driver"
Anatolij Gustschine26e5202020-05-26 00:20:49 +0200107 depends on BACKLIGHT
Patrick Delaunay5b6a6a92017-08-03 12:36:07 +0200108 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 Glass1acafc72016-01-18 19:52:15 -0700115config VIDEO_BPP8
116 bool "Support 8-bit-per-pixel displays"
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100117 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700118 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
124config VIDEO_BPP16
125 bool "Support 16-bit-per-pixel displays"
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100126 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700127 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
133config VIDEO_BPP32
134 bool "Support 32-bit-per-pixel displays"
Anatolij Gustschin8a6ffed2020-02-04 22:43:06 +0100135 default y
Simon Glass1acafc72016-01-18 19:52:15 -0700136 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 Clarka085aa12017-09-13 18:12:21 -0400142config VIDEO_ANSI
143 bool "Support ANSI escape sequences in video console"
Simon Glass72a0dd82023-01-06 08:52:29 -0600144 default y if EFI_LOADER
Rob Clarka085aa12017-09-13 18:12:21 -0400145 help
146 Enable ANSI escape sequence decoding for a more fully functional
Simon Glass72a0dd82023-01-06 08:52:29 -0600147 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 Clarka085aa12017-09-13 18:12:21 -0400151
Yannick Fertré66c37242019-10-07 15:29:04 +0200152config VIDEO_MIPI_DSI
153 bool "Support MIPI DSI interface"
Yannick Fertré66c37242019-10-07 15:29:04 +0200154 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 Glass6e42e252016-01-22 21:53:37 +0100159config CONSOLE_NORMAL
160 bool "Support a simple text console"
Simon Glassfeda1932022-10-18 07:35:17 -0600161 default y
Simon Glass6e42e252016-01-22 21:53:37 +0100162 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
168config CONSOLE_ROTATION
Simon Glassb5146b22016-01-18 19:52:19 -0700169 bool "Support rotated displays"
Simon Glassb5146b22016-01-18 19:52:19 -0700170 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 Glassa29b0122016-01-14 18:10:42 -0700180config CONSOLE_TRUETYPE
181 bool "Support a console that uses TrueType fonts"
Dzmitry Sankouskie7ee1fd2023-03-07 13:21:16 +0300182 select CMD_SELECT_FONT
Simon Glassa29b0122016-01-14 18:10:42 -0700183 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
189config 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 Glass31efa252022-10-06 08:36:11 -0600202config 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 Glass983b1032017-04-26 22:27:57 -0600217config SYS_WHITE_ON_BLACK
218 bool "Display console as white on a black background"
Trevor Woerner18138ab2020-05-06 08:02:41 -0400219 default y if ARCH_AT91 || ARCH_EXYNOS || ARCH_ROCKCHIP || ARCH_TEGRA || X86 || ARCH_SUNXI
Simon Glass983b1032017-04-26 22:27:57 -0600220 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 Clark8ef05352017-08-03 12:47:01 -0400226config 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 Gustschine26e5202020-05-26 00:20:49 +0200234config PANEL
235 bool "Enable panel uclass support"
Anatolij Gustschine26e5202020-05-26 00:20:49 +0200236 default y
237 help
238 This provides panel uclass driver that enables basic panel support.
239
240config SIMPLE_PANEL
241 bool "Enable simple panel support"
Asherah Connor1bed5762021-03-03 14:46:47 +1100242 depends on PANEL && BACKLIGHT && DM_GPIO
Anatolij Gustschine26e5202020-05-26 00:20:49 +0200243 default y
244 help
245 This turns on a simple panel driver that enables a compatible
246 video panel.
247
Simon Glass820b5892022-10-06 08:36:07 -0600248config 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 Glassa29b0122016-01-14 18:10:42 -0700258source "drivers/video/fonts/Kconfig"
259
Simon Glassa2931b32016-02-06 14:31:37 -0700260config VIDCONSOLE_AS_LCD
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200261 bool "Use 'vidconsole' when CONFIG_VIDCONSOLE_AS_NAME string is seen in stdout"
Patrick Delaunay27b5b9e2020-07-01 14:56:10 +0200262 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
269config VIDCONSOLE_AS_NAME
270 string "Use 'vidconsole' when string defined here is seen in stdout"
271 depends on VIDCONSOLE_AS_LCD
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200272 default "lcd" if LCD || TEGRA_COMMON
273 default "vga" if !LCD
Simon Glassa2931b32016-02-06 14:31:37 -0700274 help
Anatolij Gustschin22b897a2020-05-23 17:11:20 +0200275 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 Glassa2931b32016-02-06 14:31:37 -0700280
Simon Glasse2d934b2023-07-15 21:39:18 -0600281config VIDEO_BOCHS
282 bool "Enable Bochs video emulation for QEMU"
283 depends on X86
284 help
285 Enable this to use the Bochs video support provided in the QEMU
286 emulator. This appears as a PCI device which U-Boot can set up to
287 provide a frame buffer.
288
289if VIDEO_BOCHS
290
291config VIDEO_BOCHS_SIZE_X
292 int "Width of display (X resolution)"
293 default 1280
294 help
295 Sets the width of the display.
296
297 These two options control the size of the display set up by QEMU.
298 Typical sizes are 1024 x 768 or 1280 x 1024.
299
300config VIDEO_BOCHS_SIZE_Y
301 int "High of display (Y resolution)"
302 default 1024
303 help
304 Sets the height of the display.
305
306 These two options control the size of the display set up by QEMU.
307 Typical sizes are 1024 x 768 or 1280 x 1024.
308
309endif
310
Bin Meng13b2bfc2016-10-09 04:14:16 -0700311config VIDEO_COREBOOT
312 bool "Enable coreboot framebuffer driver support"
Simon Glass19987c92021-03-15 18:00:27 +1300313 depends on X86
Bin Meng13b2bfc2016-10-09 04:14:16 -0700314 help
315 Turn on this option to enable a framebuffer driver when U-Boot is
316 loaded by coreboot where the graphics device is configured by
317 coreboot already. This can in principle be used with any platform
318 that coreboot supports.
319
Bin Meng4a08c742018-06-12 08:36:22 -0700320config VIDEO_EFI
321 bool "Enable EFI framebuffer driver support"
Simon Glass1834c082021-11-03 21:09:10 -0600322 depends on EFI_STUB || EFI_APP
Bin Meng4a08c742018-06-12 08:36:22 -0700323 help
324 Turn on this option to enable a framebuffeer driver when U-Boot is
325 loaded as a payload (see README.u-boot_on_efi) by an EFI BIOS where
326 the graphics device is configured by the EFI BIOS already. This can
327 in principle be used with any platform that has an EFI BIOS.
328
Simon Glass6b1ba982014-12-29 19:32:28 -0700329config VIDEO_VESA
330 bool "Enable VESA video driver support"
Simon Glass6b1ba982014-12-29 19:32:28 -0700331 help
332 Turn on this option to enable a very simple driver which uses vesa
333 to discover the video mode and then provides a frame buffer for use
334 by U-Boot. This can in principle be used with any platform that
335 supports PCI and video cards that support VESA BIOS Extension (VBE).
336
Bin Meng6bde2dc2015-05-11 07:36:29 +0800337config FRAMEBUFFER_SET_VESA_MODE
338 bool "Set framebuffer graphics resolution"
Simon Glass97cb0922016-03-11 22:07:30 -0700339 depends on VIDEO_VESA || VIDEO_BROADWELL_IGD
Bin Meng6bde2dc2015-05-11 07:36:29 +0800340 help
341 Set VESA/native framebuffer mode (needed for bootsplash and graphical
342 framebuffer console)
343
344choice
345 prompt "framebuffer graphics resolution"
Bin Meng17b07d72018-04-11 22:02:16 -0700346 default FRAMEBUFFER_VESA_MODE_118
Bin Meng6bde2dc2015-05-11 07:36:29 +0800347 depends on FRAMEBUFFER_SET_VESA_MODE
348 help
349 This option sets the resolution used for the U-Boot framebuffer (and
350 bootsplash screen).
351
352config FRAMEBUFFER_VESA_MODE_100
353 bool "640x400 256-color"
354
355config FRAMEBUFFER_VESA_MODE_101
356 bool "640x480 256-color"
357
358config FRAMEBUFFER_VESA_MODE_102
359 bool "800x600 16-color"
360
361config FRAMEBUFFER_VESA_MODE_103
362 bool "800x600 256-color"
363
364config FRAMEBUFFER_VESA_MODE_104
365 bool "1024x768 16-color"
366
367config FRAMEBUFFER_VESA_MODE_105
Bin Meng57dccb52015-08-09 23:26:59 -0700368 bool "1024x768 256-color"
Bin Meng6bde2dc2015-05-11 07:36:29 +0800369
370config FRAMEBUFFER_VESA_MODE_106
371 bool "1280x1024 16-color"
372
373config FRAMEBUFFER_VESA_MODE_107
374 bool "1280x1024 256-color"
375
376config FRAMEBUFFER_VESA_MODE_108
377 bool "80x60 text"
378
379config FRAMEBUFFER_VESA_MODE_109
380 bool "132x25 text"
381
382config FRAMEBUFFER_VESA_MODE_10A
383 bool "132x43 text"
384
385config FRAMEBUFFER_VESA_MODE_10B
386 bool "132x50 text"
387
388config FRAMEBUFFER_VESA_MODE_10C
389 bool "132x60 text"
390
391config FRAMEBUFFER_VESA_MODE_10D
392 bool "320x200 32k-color (1:5:5:5)"
393
394config FRAMEBUFFER_VESA_MODE_10E
395 bool "320x200 64k-color (5:6:5)"
396
397config FRAMEBUFFER_VESA_MODE_10F
398 bool "320x200 16.8M-color (8:8:8)"
399
400config FRAMEBUFFER_VESA_MODE_110
401 bool "640x480 32k-color (1:5:5:5)"
402
403config FRAMEBUFFER_VESA_MODE_111
404 bool "640x480 64k-color (5:6:5)"
405
406config FRAMEBUFFER_VESA_MODE_112
407 bool "640x480 16.8M-color (8:8:8)"
408
409config FRAMEBUFFER_VESA_MODE_113
410 bool "800x600 32k-color (1:5:5:5)"
411
412config FRAMEBUFFER_VESA_MODE_114
413 bool "800x600 64k-color (5:6:5)"
414
415config FRAMEBUFFER_VESA_MODE_115
416 bool "800x600 16.8M-color (8:8:8)"
417
418config FRAMEBUFFER_VESA_MODE_116
419 bool "1024x768 32k-color (1:5:5:5)"
420
421config FRAMEBUFFER_VESA_MODE_117
422 bool "1024x768 64k-color (5:6:5)"
423
424config FRAMEBUFFER_VESA_MODE_118
425 bool "1024x768 16.8M-color (8:8:8)"
426
427config FRAMEBUFFER_VESA_MODE_119
428 bool "1280x1024 32k-color (1:5:5:5)"
429
430config FRAMEBUFFER_VESA_MODE_11A
431 bool "1280x1024 64k-color (5:6:5)"
432
433config FRAMEBUFFER_VESA_MODE_11B
434 bool "1280x1024 16.8M-color (8:8:8)"
435
436config FRAMEBUFFER_VESA_MODE_USER
437 bool "Manually select VESA mode"
438
439endchoice
440
441# Map the config names to an integer (KB).
442config FRAMEBUFFER_VESA_MODE
443 prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER
444 hex
445 default 0x100 if FRAMEBUFFER_VESA_MODE_100
446 default 0x101 if FRAMEBUFFER_VESA_MODE_101
447 default 0x102 if FRAMEBUFFER_VESA_MODE_102
448 default 0x103 if FRAMEBUFFER_VESA_MODE_103
449 default 0x104 if FRAMEBUFFER_VESA_MODE_104
450 default 0x105 if FRAMEBUFFER_VESA_MODE_105
451 default 0x106 if FRAMEBUFFER_VESA_MODE_106
452 default 0x107 if FRAMEBUFFER_VESA_MODE_107
453 default 0x108 if FRAMEBUFFER_VESA_MODE_108
454 default 0x109 if FRAMEBUFFER_VESA_MODE_109
455 default 0x10A if FRAMEBUFFER_VESA_MODE_10A
456 default 0x10B if FRAMEBUFFER_VESA_MODE_10B
457 default 0x10C if FRAMEBUFFER_VESA_MODE_10C
458 default 0x10D if FRAMEBUFFER_VESA_MODE_10D
459 default 0x10E if FRAMEBUFFER_VESA_MODE_10E
460 default 0x10F if FRAMEBUFFER_VESA_MODE_10F
461 default 0x110 if FRAMEBUFFER_VESA_MODE_110
462 default 0x111 if FRAMEBUFFER_VESA_MODE_111
463 default 0x112 if FRAMEBUFFER_VESA_MODE_112
464 default 0x113 if FRAMEBUFFER_VESA_MODE_113
465 default 0x114 if FRAMEBUFFER_VESA_MODE_114
466 default 0x115 if FRAMEBUFFER_VESA_MODE_115
467 default 0x116 if FRAMEBUFFER_VESA_MODE_116
468 default 0x117 if FRAMEBUFFER_VESA_MODE_117
469 default 0x118 if FRAMEBUFFER_VESA_MODE_118
470 default 0x119 if FRAMEBUFFER_VESA_MODE_119
471 default 0x11A if FRAMEBUFFER_VESA_MODE_11A
472 default 0x11B if FRAMEBUFFER_VESA_MODE_11B
473 default 0x117 if FRAMEBUFFER_VESA_MODE_USER
474
Hans de Goede66525bb2015-08-08 16:03:29 +0200475config VIDEO_LCD_ANX9804
476 bool "ANX9804 bridge chip"
Hans de Goede66525bb2015-08-08 16:03:29 +0200477 ---help---
478 Support for the ANX9804 bridge chip, which can take pixel data coming
479 from a parallel LCD interface and translate it on the fy into a DP
480 interface for driving eDP TFT displays. It uses I2C for configuration.
481
Tom Rini286c4532022-03-18 08:38:28 -0400482config ATMEL_LCD
483 bool "Atmel LCD panel support"
Simon Glassfeda1932022-10-18 07:35:17 -0600484 depends on ARCH_AT91
Tom Rini286c4532022-03-18 08:38:28 -0400485
486config ATMEL_LCD_BGR555
487 bool "Display in BGR555 mode"
488 help
489 Use the BGR555 output mode. Otherwise RGB565 is used.
490
Simon Glass2cbc1c02022-01-23 07:04:14 -0700491config VIDEO_BCM2835
492 bool "Display support for BCM2835"
493 help
494 The graphics processor already sets up the display so this driver
495 simply checks the resolution and then sets up the frame buffer with
496 that same resolution (or as near as possible) and 32bpp depth, so
497 that U-Boot can access it with full colour depth.
498
Svyatoslav Ryheldef72d52023-04-25 10:51:47 +0300499config VIDEO_LCD_ENDEAVORU
500 tristate "Endeavoru 720x1280 DSI video mode panel"
501 depends on PANEL && BACKLIGHT
502 select VIDEO_MIPI_DSI
503 help
504 Say Y here if you want to enable support for the IPS-LCD panel
505 module for HTC One X. Driver supports a family of panels,
506 made at least by 3 vendors (Sharp, Sony and AUO), but set up
507 using the same DSI command sequence. The panel has a 720x1280
508 resolution and uses 24 bit RGB per pixel.
509
Yannick Fertré78157b22019-10-07 15:29:08 +0200510config VIDEO_LCD_ORISETECH_OTM8009A
511 bool "OTM8009A DSI LCD panel support"
Yannick Fertré78157b22019-10-07 15:29:08 +0200512 select VIDEO_MIPI_DSI
Yannick Fertré78157b22019-10-07 15:29:08 +0200513 help
514 Say Y here if you want to enable support for Orise Technology
515 otm8009a 480x800 dsi 2dl panel.
516
Yannick Fertré06ef1312019-10-07 15:29:09 +0200517config VIDEO_LCD_RAYDIUM_RM68200
518 bool "RM68200 DSI LCD panel support"
Yannick Fertré06ef1312019-10-07 15:29:09 +0200519 select VIDEO_MIPI_DSI
Yannick Fertré06ef1312019-10-07 15:29:09 +0200520 help
521 Say Y here if you want to enable support for Raydium RM68200
522 720x1280 DSI video mode panel.
523
Svyatoslav Ryheldcee4782023-04-25 10:51:44 +0300524config VIDEO_LCD_RENESAS_R61307
525 tristate "Renesas R61307 DSI video mode panel"
526 depends on PANEL && BACKLIGHT
527 select VIDEO_MIPI_DSI
528 help
529 Say Y here if you want to enable support for KOE tx13d100vm0eaa
530 IPS-LCD module with Renesas R69328 IC. The panel has a 1024x768
531 resolution and uses 24 bit RGB per pixel.
532
Svyatoslav Ryhel6d9b3a72023-04-25 10:51:45 +0300533config VIDEO_LCD_RENESAS_R69328
534 tristate "Renesas R69328 720x1280 DSI video mode panel"
535 depends on PANEL && BACKLIGHT
536 select VIDEO_MIPI_DSI
537 help
538 Say Y here if you want to enable support for JDI dx12d100vm0eaa
539 IPS-LCD module with Renesas R69328 IC. The panel has a 720x1280
540 resolution and uses 24 bit RGB per pixel.
541
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200542config VIDEO_LCD_SSD2828
543 bool "SSD2828 bridge chip"
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200544 ---help---
545 Support for the SSD2828 bridge chip, which can take pixel data coming
546 from a parallel LCD interface and translate it on the fly into MIPI DSI
547 interface for driving a MIPI compatible LCD panel. It uses SPI for
548 configuration.
549
550config VIDEO_LCD_SSD2828_TX_CLK
551 int "SSD2828 TX_CLK frequency (in MHz)"
552 depends on VIDEO_LCD_SSD2828
Siarhei Siamashkadddccd62015-01-19 05:23:35 +0200553 default 0
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200554 ---help---
555 The frequency of the crystal, which is clocking SSD2828. It may be
556 anything in the 8MHz-30MHz range and the exact value should be
557 retrieved from the board schematics. Or in the case of Allwinner
558 hardware, it can be usually found as 'lcd_xtal_freq' variable in
Siarhei Siamashkadddccd62015-01-19 05:23:35 +0200559 FEX files. It can be also set to 0 for selecting PCLK from the
560 parallel LCD interface instead of TX_CLK as the PLL clock source.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200561
562config VIDEO_LCD_SSD2828_RESET
563 string "RESET pin of SSD2828"
564 depends on VIDEO_LCD_SSD2828
565 default ""
566 ---help---
567 The reset pin of SSD2828 chip. This takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500568 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200569
Neil Armstrongc823f242020-09-29 11:53:53 +0200570config VIDEO_LCD_TDO_TL070WSH30
571 bool "TDO TL070WSH30 DSI LCD panel support"
Neil Armstrongc823f242020-09-29 11:53:53 +0200572 select VIDEO_MIPI_DSI
Neil Armstrongc823f242020-09-29 11:53:53 +0200573 help
574 Say Y here if you want to enable support for TDO TL070WSH30
575 1024x600 DSI video mode panel.
576
Hans de Goedea5464f22015-01-20 09:22:26 +0100577config VIDEO_LCD_HITACHI_TX18D42VM
578 bool "Hitachi tx18d42vm LVDS LCD panel support"
Hans de Goedea5464f22015-01-20 09:22:26 +0100579 ---help---
580 Support for Hitachi tx18d42vm LVDS LCD panels, these panels have a
581 lcd controller which needs to be initialized over SPI, once that is
582 done they work like a regular LVDS panel.
583
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200584config VIDEO_LCD_SPI_CS
585 string "SPI CS pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100586 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200587 default ""
588 ---help---
589 This is one of the SPI communication pins, involved in setting up a
590 working LCD configuration. The exact role of SPI may differ for
591 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500592 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200593
594config VIDEO_LCD_SPI_SCLK
595 string "SPI SCLK pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100596 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200597 default ""
598 ---help---
599 This is one of the SPI communication pins, involved in setting up a
600 working LCD configuration. The exact role of SPI may differ for
601 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500602 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200603
604config VIDEO_LCD_SPI_MOSI
605 string "SPI MOSI pin for LCD related config job"
Hans de Goedea5464f22015-01-20 09:22:26 +0100606 depends on VIDEO_LCD_SSD2828 || VIDEO_LCD_HITACHI_TX18D42VM
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200607 default ""
608 ---help---
609 This is one of the SPI communication pins, involved in setting up a
610 working LCD configuration. The exact role of SPI may differ for
611 different hardware setups. The option takes a string in the format
Samuel Holland4d9958b2021-09-11 16:50:48 -0500612 understood by 'sunxi_name_to_gpio' function, e.g. PH1 for pin 1 of port H.
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200613
614config VIDEO_LCD_SPI_MISO
615 string "SPI MISO pin for LCD related config job (optional)"
616 depends on VIDEO_LCD_SSD2828
617 default ""
618 ---help---
619 This is one of the SPI communication pins, involved in setting up a
620 working LCD configuration. The exact role of SPI may differ for
621 different hardware setups. If wired up, this pin may provide additional
622 useful functionality. Such as bi-directional communication with the
623 hardware and LCD panel id retrieval (if the panel can report it). The
Samuel Holland4d9958b2021-09-11 16:50:48 -0500624 option takes a string in the format understood by 'sunxi_name_to_gpio'
Siarhei Siamashkab8329ac2015-01-19 05:23:32 +0200625 function, e.g. PH1 for pin 1 of port H.
Simon Glass51f2c992015-04-14 21:03:38 -0600626
Neil Armstrong3bed4222018-07-24 17:45:28 +0200627source "drivers/video/meson/Kconfig"
628
Stefan Roese913d1be2016-01-20 08:13:28 +0100629config VIDEO_MVEBU
630 bool "Armada XP LCD controller"
Stefan Roese913d1be2016-01-20 08:13:28 +0100631 ---help---
632 Support for the LCD controller integrated in the Marvell
633 Armada XP SoC.
634
Adam Ford244eaea2018-08-02 08:50:20 -0500635config VIDEO_OMAP3
636 bool "Enable OMAP3+ DSS Support"
637 depends on ARCH_OMAP2PLUS
638 help
639 This enables the Display subsystem (DSS) on OMAP3+ boards.
640
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100641config I2C_EDID
642 bool "Enable EDID library"
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100643 help
644 This enables library for accessing EDID data from an LCD panel.
645
Simon Glass2dcf1432016-01-21 19:45:00 -0700646config DISPLAY
647 bool "Enable Display support"
648 depends on DM
Anatolij Gustschin7588c312016-01-25 17:17:22 +0100649 select I2C_EDID
Simon Glass51f2c992015-04-14 21:03:38 -0600650 help
Simon Glass2dcf1432016-01-21 19:45:00 -0700651 This supports drivers that provide a display, such as eDP (Embedded
652 DisplayPort) and HDMI (High Definition Multimedia Interface).
653 The devices provide a simple interface to start up the display,
654 read display information and enable it.
Simon Glasse7e88232015-04-14 21:03:42 -0600655
Liviu Dudau055da182018-09-28 13:49:31 +0100656config NXP_TDA19988
657 bool "Enable NXP TDA19988 support"
658 depends on DISPLAY
Liviu Dudau055da182018-09-28 13:49:31 +0100659 help
660 This enables support for the NXP TDA19988 HDMI encoder. This encoder
661 will convert RGB data streams into HDMI-encoded signals.
662
Songjun Wu79278312017-04-11 16:33:30 +0800663config ATMEL_HLCD
664 bool "Enable ATMEL video support using HLCDC"
Songjun Wu79278312017-04-11 16:33:30 +0800665 help
666 HLCDC supports video output to an attached LCD panel.
667
Svyatoslav Ryhel06020832023-04-25 10:51:42 +0300668config BACKLIGHT_LM3533
669 bool "Backlight Driver for LM3533"
670 depends on BACKLIGHT
671 select DM_I2C
672 help
673 Say Y to enable the backlight driver for National Semiconductor / TI
674 LM3533 Lighting Power chip. Only Bank A is supported as for now.
675 Supported backlight level range is from 2 to 255 with step of 1.
676
Dario Binacchif4cf8712023-01-28 16:55:31 +0100677source "drivers/video/ti/Kconfig"
678
Tom Rini4d2cab32022-06-10 22:59:34 -0400679source "drivers/video/exynos/Kconfig"
680
Mario Six25a9f972018-08-09 14:51:23 +0200681config LOGICORE_DP_TX
682 bool "Enable Logicore DP TX driver"
683 depends on DISPLAY
684 help
685 Enable the driver for the transmitter part of the Xilinx LogiCORE
686 DisplayPort, a IP core for Xilinx FPGAs that implements a DisplayPort
687 video interface as defined by VESA DisplayPort v1.2.
688
689 Note that this is a pure transmitter device, and has no display
690 capabilities by itself.
691
Simon Glass97cb0922016-03-11 22:07:30 -0700692config VIDEO_BROADWELL_IGD
693 bool "Enable Intel Broadwell integrated graphics device"
694 depends on X86
695 help
Simon Glass1df91272016-10-05 20:42:14 -0600696 This enables support for integrated graphics on Intel broadwell
Simon Glass97cb0922016-03-11 22:07:30 -0700697 devices. Initialisation is mostly performed by a VGA boot ROM, with
698 some setup handled by U-Boot itself. The graphics adaptor works as
699 a VESA device and supports LCD panels, eDP and LVDS outputs.
700 Configuration of most aspects of device operation is performed using
701 a special tool which configures the VGA ROM, but the graphics
702 resolution can be selected in U-Boot.
703
Simon Glass2c943802016-10-05 20:42:15 -0600704config VIDEO_IVYBRIDGE_IGD
705 bool "Enable Intel Ivybridge integration graphics support"
706 depends on X86
707 help
708 This enables support for integrated graphics on Intel ivybridge
709 devices. Initialisation is mostly performed by a VGA boot ROM, with
710 some setup handled by U-Boot itself. The graphics adaptor works as
711 a VESA device and supports LCD panels, eDP and LVDS outputs.
712 Configuration of most aspects of device operation is performed using
713 a special tool which configures the VGA ROM, but the graphics
714 resolution can be selected in U-Boot.
715
eric.gao@rock-chips.comb98f0a32017-04-17 22:24:23 +0800716source "drivers/video/rockchip/Kconfig"
Simon Glassc2539482016-01-21 19:45:03 -0700717
Liviu Dudauc1a65a82018-09-28 13:50:53 +0100718config VIDEO_ARM_MALIDP
719 bool "Enable Arm Mali Display Processor support"
Simon Glassfeda1932022-10-18 07:35:17 -0600720 depends on OF_CONTROL
Liviu Dudauc1a65a82018-09-28 13:50:53 +0100721 select VEXPRESS_CLK
722 help
723 This enables support for Arm Ltd Mali Display Processors from
724 the DP500, DP550 and DP650 family.
725
Simon Glass1e69ad02016-01-18 19:52:24 -0700726config VIDEO_SANDBOX_SDL
727 bool "Enable sandbox video console using SDL"
Tom Rinid948c892022-11-19 18:45:43 -0500728 depends on SANDBOX_SDL
Simon Glass1e69ad02016-01-18 19:52:24 -0700729 help
730 When using sandbox you can enable an emulated LCD display which
731 appears as an SDL (Simple DirectMedia Layer) window. This is a
732 console device and can display stdout output. Within U-Boot is is
733 a normal bitmap display and can display images as well as text.
734
Philippe CORNU72719d22017-08-03 12:36:08 +0200735source "drivers/video/stm32/Kconfig"
736
Nikhil M Jain5f9f8162023-01-31 15:35:17 +0530737source "drivers/video/tidss/Kconfig"
738
Simon Glasse7e88232015-04-14 21:03:42 -0600739config VIDEO_TEGRA124
740 bool "Enable video support on Tegra124"
741 help
742 Tegra124 supports many video output options including eDP and
743 HDMI. At present only eDP is supported by U-Boot. This option
744 enables this support which can be used on devices which
745 have an eDP display connected.
Simon Glass801ab9e2015-07-02 18:16:08 -0600746
747source "drivers/video/bridge/Kconfig"
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +0900748
Svyatoslav Ryhelcf291ba2023-03-27 11:11:41 +0300749source "drivers/video/tegra20/Kconfig"
750
Anatolij Gustschinbffd1312019-03-18 23:29:32 +0100751source "drivers/video/imx/Kconfig"
Anatolij Gustschin57f065f2019-03-18 23:29:31 +0100752
Anatolij Gustschin79c05332021-10-04 17:33:12 +0200753config VIDEO_MXS
754 bool "Enable video support on i.MX28/i.MX6UL/i.MX7 SoCs"
Anatolij Gustschin79c05332021-10-04 17:33:12 +0200755 help
756 Enable framebuffer driver for i.MX28/i.MX6UL/i.MX7 processors
757
Stefan Bosche1e96ba2020-07-10 19:07:36 +0200758config VIDEO_NX
759 bool "Enable video support on Nexell SoC"
760 depends on ARCH_S5P6818 || ARCH_S5P4418
761 help
762 Nexell SoC supports many video output options including eDP and
763 HDMI. This option enables this support which can be used on devices
764 which have an eDP display connected.
765
Michal Simekb66d7af2020-12-03 09:31:35 +0100766config VIDEO_SEPS525
767 bool "Enable video support for Seps525"
Simon Glassfeda1932022-10-18 07:35:17 -0600768 depends on DM_GPIO
Michal Simekb66d7af2020-12-03 09:31:35 +0100769 help
770 Enable support for the Syncoam PM-OLED display driver (RGB 160x128).
771 Currently driver is supporting only SPI interface.
772
Venkatesh Yadav Abbarapuc4865e12023-05-17 10:42:09 +0200773source "drivers/video/zynqmp/Kconfig"
Stefan Bosche1e96ba2020-07-10 19:07:36 +0200774source "drivers/video/nexell/Kconfig"
775
Simon Glassb87ca802016-10-17 20:12:57 -0600776config CONSOLE_SCROLL_LINES
777 int "Number of lines to scroll the console by"
Simon Glassb87ca802016-10-17 20:12:57 -0600778 default 1
779 help
780 When the console need to be scrolled, this is the number of
781 lines to scroll by. It defaults to 1. Increasing this makes the
782 console jump but can help speed up operation when scrolling
783 is slow.
784
Philipp Tomsich8517f642017-05-05 21:48:26 +0200785config VIDEO_DW_HDMI
786 bool
787 help
788 Enables the common driver code for the Designware HDMI TX
789 block found in SoCs from various vendors.
790 As this does not provide any functionality by itself (but
791 rather requires a SoC-specific glue driver to call it), it
792 can not be enabled from the configuration menu.
793
Yannick Fertré23f965a2019-10-07 15:29:05 +0200794config VIDEO_DSI_HOST_SANDBOX
795 bool "Enable sandbox for dsi host"
796 depends on SANDBOX
797 select VIDEO_MIPI_DSI
798 help
799 Enable support for sandbox dsi host device used for testing
800 purposes.
801 Display Serial Interface (DSI) defines a serial bus and
802 a communication protocol between the host and the device
803 (panel, bridge).
804
Yannick Fertréd4f7ea82019-10-07 15:29:06 +0200805config VIDEO_DW_MIPI_DSI
806 bool
807 select VIDEO_MIPI_DSI
808 help
809 Enables the common driver code for the Synopsis Designware
810 MIPI DSI block found in SoCs from various vendors.
811 As this does not provide any functionality by itself (but
812 rather requires a SoC-specific glue driver to call it), it
813 can not be enabled from the configuration menu.
814
Rob Clark971d7e62017-08-03 12:47:00 -0400815config VIDEO_SIMPLE
816 bool "Simple display driver for preconfigured display"
817 help
818 Enables a simple generic display driver which utilizes the
819 simple-framebuffer devicetree bindings.
820
821 This driver assumes that the display hardware has been initialized
822 before u-boot starts, and u-boot will simply render to the pre-
823 allocated frame buffer surface.
824
Icenowy Zhengf6bdddc2017-10-26 11:14:46 +0800825config VIDEO_DT_SIMPLEFB
826 bool "Enable SimpleFB support for passing framebuffer to OS"
827 help
828 Enables the code to pass the framebuffer to the kernel as a
829 simple framebuffer in the device tree.
830 The video output is initialized by U-Boot, and kept by the
831 kernel.
832
Stephan Gerhold21a151a2021-07-02 19:21:56 +0200833config VIDEO_MCDE_SIMPLE
834 bool "Simple driver for ST-Ericsson MCDE with preconfigured display"
Stephan Gerhold21a151a2021-07-02 19:21:56 +0200835 help
836 Enables a simple display driver for ST-Ericsson MCDE
837 (Multichannel Display Engine), which reads the configuration from
838 the MCDE registers.
839
840 This driver assumes that the display hardware has been initialized
841 before u-boot starts, and u-boot will simply render to the pre-
842 allocated frame buffer surface.
843
Mario Six39a336f2018-09-27 09:19:29 +0200844config OSD
845 bool "Enable OSD support"
846 depends on DM
Mario Six39a336f2018-09-27 09:19:29 +0200847 help
848 This supports drivers that provide a OSD (on-screen display), which
849 is a (usually text-oriented) graphics buffer to show information on
850 a display.
Mario Six9671f692018-09-27 09:19:30 +0200851
Mario Six4eea5312018-09-27 09:19:31 +0200852config SANDBOX_OSD
853 bool "Enable sandbox OSD"
854 depends on OSD
855 help
856 Enable support for sandbox OSD device used for testing purposes.
857
Mario Six9671f692018-09-27 09:19:30 +0200858config IHS_VIDEO_OUT
859 bool "Enable IHS video out driver"
860 depends on OSD
861 help
862 Enable support for the gdsys Integrated Hardware Systems (IHS) video
863 out On-screen Display (OSD) used on gdsys FPGAs to control dynamic
864 textual overlays of the display outputs.
865
Simon Glass35bd70c2020-08-11 11:23:35 -0600866config SPLASH_SCREEN
867 bool "Show a splash-screen image"
868 help
869 If this option is set, the environment is checked for a variable
870 "splashimage". If found, the usual display of logo, copyright and
871 system information on the LCD is suppressed and the BMP image at the
872 address specified in "splashimage" is loaded instead. The console is
873 redirected to the "nulldev", too. This allows for a "silent" boot
874 where a splash screen is loaded very quickly after power-on.
875
876 The splash_screen_prepare() function is a weak function defined in
877 common/splash.c. It is called as part of the splash screen display
878 sequence. It gives the board an opportunity to prepare the splash
879 image data before it is processed and sent to the frame buffer by
880 U-Boot. Define your own version to use this feature.
881
Simon Glass988d19d2022-10-18 06:24:16 -0600882if SPLASH_SCREEN
883
Simon Glass35bd70c2020-08-11 11:23:35 -0600884config SPLASH_SCREEN_ALIGN
885 bool "Allow positioning the splash image anywhere on the display"
Simon Glass35bd70c2020-08-11 11:23:35 -0600886 help
887 If this option is set the splash image can be freely positioned
888 on the screen. Environment variable "splashpos" specifies the
889 position as "x,y". If a positive number is given it is used as
890 number of pixel from left/top. If a negative number is given it
891 is used as number of pixel from right/bottom. You can also
892 specify 'm' for centering the image.
893
894 Example:
895 setenv splashpos m,m
896 => image at center of screen
897
898 setenv splashpos 30,20
899 => image at x = 30 and y = 20
900
901 setenv splashpos -10,m
902 => vertically centered image
903 at x = dspWidth - bmpWidth - 9
904
Simon Glass4adc28e2022-10-18 06:30:56 -0600905config HIDE_LOGO_VERSION
906 bool "Hide the version information on the splash screen"
907 help
908 Normally the U-Boot version string is shown on the display when the
909 splash screen is enabled. This information is not otherwise visible
910 since video starts up after U-Boot has displayed the initial banner.
911
912 Enable this option to hide this information.
913
Simon Glass35bd70c2020-08-11 11:23:35 -0600914config SPLASH_SOURCE
915 bool "Control the source of the splash image"
Simon Glass35bd70c2020-08-11 11:23:35 -0600916 help
917 Use the splash_source.c library. This library provides facilities to
918 declare board specific splash image locations, routines for loading
919 splash image from supported locations, and a way of controlling the
920 selected splash location using the "splashsource" environment
921 variable.
922
923 This CONFIG works as follows:
924
925 - If splashsource is set to a supported location name as defined by
926 board code, use that splash location.
927 - If splashsource is undefined, use the first splash location as
928 default.
929 - If splashsource is set to an unsupported value, do not load a splash
930 screen.
931
932 A splash source location can describe either storage with raw data, a
933 storage formatted with a file system or a FIT image. In case of a
934 filesystem, the splash screen data is loaded as a file. The name of
935 the splash screen file can be controlled with the environment variable
936 "splashfile".
937
938 To enable loading the splash image from a FIT image, CONFIG_FIT must
939 be enabled. The FIT image has to start at the 'offset' field address
940 in the selected splash location. The name of splash image within the
941 FIT shall be specified by the environment variable "splashfile".
942
943 In case the environment variable "splashfile" is not defined the
944 default name 'splash.bmp' will be used.
945
Simon Glass988d19d2022-10-18 06:24:16 -0600946endif # SPLASH_SCREEN
947
Patrick Delaunay0ed6c0f2020-09-28 11:30:14 +0200948config VIDEO_BMP_GZIP
949 bool "Gzip compressed BMP image support"
Nikhil M Jain857d02d2023-04-20 17:40:59 +0530950 depends on BMP || SPLASH_SCREEN
Patrick Delaunay0ed6c0f2020-09-28 11:30:14 +0200951 help
952 If this option is set, additionally to standard BMP
953 images, gzipped BMP images can be displayed via the
954 splashscreen support or the bmp command.
955
Simon Glasse6550032022-10-18 06:46:08 -0600956config VIDEO_LOGO_MAX_SIZE
Simon Glass2fd5a572022-10-18 06:49:18 -0600957 hex "Maximum size of the bitmap logo in bytes"
958 default 0x100000
959 help
960 Sets the maximum uncompressed size of the logo. This is needed when
961 decompressing a BMP file using the gzip algorithm, since it cannot
962 read the size from the bitmap header.
Simon Glasse6550032022-10-18 06:46:08 -0600963
Patrick Delaunayf9a48652020-09-28 11:30:15 +0200964config VIDEO_BMP_RLE8
965 bool "Run length encoded BMP image (RLE8) support"
Patrick Delaunayf9a48652020-09-28 11:30:15 +0200966 help
967 If this option is set, the 8-bit RLE compressed BMP images
968 is supported.
969
Patrick Delaunay8fc78fc2020-09-28 11:30:16 +0200970config BMP_16BPP
971 bool "16-bit-per-pixel BMP image support"
Patrick Delaunay8fc78fc2020-09-28 11:30:16 +0200972 help
973 Support display of bitmaps file with 16-bit-per-pixel
974
975config BMP_24BPP
976 bool "24-bit-per-pixel BMP image support"
Patrick Delaunay8fc78fc2020-09-28 11:30:16 +0200977 help
978 Support display of bitmaps file with 24-bit-per-pixel.
979
980config BMP_32BPP
981 bool "32-bit-per-pixel BMP image support"
Patrick Delaunay8fc78fc2020-09-28 11:30:16 +0200982 help
983 Support display of bitmaps file with 32-bit-per-pixel.
984
Simon Glassb86986c2022-10-18 07:46:31 -0600985endif # VIDEO
Simon Glassfeda1932022-10-18 07:35:17 -0600986
Nikhil M Jain857d02d2023-04-20 17:40:59 +0530987config SPL_VIDEO
John Keeping03972ff2023-05-09 12:02:50 +0100988 bool "Enable driver model support for LCD/video in SPL"
Nikhil M Jain857d02d2023-04-20 17:40:59 +0530989 depends on SPL_DM
990 help
991 The video subsystem adds a small amount of overhead to the image.
992 If this is acceptable and you have a need to use video drivers in
993 SPL, enable this option. It might provide a cleaner interface to
994 setting up video within SPL, and allows the same drivers to be
995 used as U-Boot proper.
996
997if SPL_VIDEO
998source "drivers/video/tidss/Kconfig"
999
1000config SPL_VIDEO_LOGO
1001 bool "Show the U-Boot logo on the display at SPL"
1002 default y if !SPL_SPLASH_SCREEN
1003 select SPL_VIDEO_BMP_RLE8
1004 help
1005 This enables showing the U-Boot logo on the display when a video
1006 device is probed. It appears at the top right. The logo itself is at
1007 tools/logos/u-boot_logo.bmp and looks best when the display has a
1008 black background.
1009
1010config SPL_SPLASH_SCREEN
1011 bool "Show a splash-screen image at SPL"
1012 help
1013 If this option is set, the environment is checked for a variable
1014 "splashimage" at spl stage.
1015
1016config SPL_SYS_WHITE_ON_BLACK
1017 bool "Display console as white on a black background at SPL"
1018 help
1019 Normally the display is black on a white background, Enable this
1020 option to invert this, i.e. white on a black background at spl stage.
1021 This can be better in low-light situations or to reduce eye strain in
1022 some cases.
1023
1024config SPL_VIDEO_PCI_DEFAULT_FB_SIZE
1025 hex "Default framebuffer size to use if no drivers request it at SPL"
1026 default 0x1000000 if X86 && PCI
1027 default 0 if !(X86 && PCI)
1028 help
1029 Generally, video drivers request the amount of memory they need for
1030 the frame buffer when they are bound, by setting the size field in
1031 struct video_uc_plat. That memory is then reserved for use after
1032 relocation. But PCI drivers cannot be bound before relocation unless
1033 they are mentioned in the devicetree.
1034
1035 With this value set appropriately, it is possible for PCI video
1036 devices to have a framebuffer allocated by U-Boot.
1037
1038 Note: the framebuffer needs to be large enough to store all pixels at
1039 maximum resolution. For example, at 1920 x 1200 with 32 bits per
1040 pixel, 2560 * 1600 * 32 / 8 = 0xfa0000 bytes are needed.
1041
1042config SPL_CONSOLE_SCROLL_LINES
1043 int "Number of lines to scroll the console by at SPL"
1044 default 1
1045 help
1046 When the console need to be scrolled, this is the number of
1047 lines to scroll by. It defaults to 1. Increasing this makes the
1048 console jump but can help speed up operation when scrolling
1049 is slow.
1050
1051config SPL_CONSOLE_NORMAL
1052 bool "Support a simple text console at SPL"
1053 default y
1054 help
1055 Support drawing text on the frame buffer console so that it can be
1056 used as a console. Rotation is not supported by this driver (see
1057 CONFIG_CONSOLE_ROTATION for that). A built-in 8x16 font is used
1058 for the display.
1059
1060config SPL_BACKLIGHT
1061 bool "Enable panel backlight uclass support at SPL"
1062 default y
1063 help
1064 This provides backlight uclass driver that enables basic panel
1065 backlight support.
1066
1067config SPL_PANEL
1068 bool "Enable panel uclass support at SPL"
1069 default y
1070 help
1071 This provides panel uclass driver that enables basic panel support.
1072
1073config SPL_SIMPLE_PANEL
1074 bool "Enable simple panel support at SPL"
1075 depends on SPL_PANEL && SPL_BACKLIGHT && SPL_DM_GPIO
1076 default y
1077 help
1078 This turns on a simple panel driver that enables a compatible
1079 video panel.
1080
1081config SPL_SYS_WHITE_ON_BLACK
1082 bool "Display console as white on a black background at SPL"
1083 help
1084 Normally the display is black on a white background, Enable this
1085 option to invert this, i.e. white on a black background at spl stage.
1086 This can be better in low-light situations or to reduce eye strain in
1087 some cases.
1088
1089if SPL_SPLASH_SCREEN
1090
1091config SPL_SPLASH_SCREEN_ALIGN
1092 bool "Allow positioning the splash image anywhere on the display at SPL"
1093 help
1094 If this option is set the splash image can be freely positioned
1095 on the screen only at SPL. Environment variable "splashpos" specifies
1096 the position as "x,y". If a positive number is given it is used as
1097 number of pixel from left/top. If a negative number is given it
1098 is used as number of pixel from right/bottom.
1099
1100config SPL_SPLASH_SOURCE
1101 bool "Control the source of the splash image at SPL"
1102 help
1103 Use the splash_source.c library. This library provides facilities to
1104 declare board specific splash image locations, routines for loading
1105 splash image from supported locations, and a way of controlling the
1106 selected splash location using the "splashsource" environment
1107 variable.
1108
1109 This CONFIG works as follows:
1110
1111 - If splashsource is set to a supported location name as defined by
1112 board code, use that splash location.
1113 - If splashsource is undefined, use the first splash location as
1114 default.
1115 - If splashsource is set to an unsupported value, do not load a splash
1116 screen.
1117
1118 A splash source location can describe either storage with raw data, a
1119 storage formatted with a file system or a FIT image. In case of a
1120 filesystem, the splash screen data is loaded as a file. The name of
1121 the splash screen file can be controlled with the environment variable
1122 "splashfile".
1123
1124 To enable loading the splash image from a FIT image, CONFIG_FIT must
1125 be enabled. The FIT image has to start at the 'offset' field address
1126 in the selected splash location. The name of splash image within the
1127 FIT shall be specified by the environment variable "splashfile".
1128
1129 In case the environment variable "splashfile" is not defined the
1130 default name 'splash.bmp' will be used.
1131
1132endif # SPL_SPLASH_SCREEN
1133
1134config SPL_VIDEO_BMP_GZIP
1135 bool "Gzip compressed BMP image support at SPL"
1136 depends on SPL_SPLASH_SCREEN || SPL_BMP
1137 help
1138 If this option is set, additionally to standard BMP
1139 images, gzipped BMP images can be displayed via the
1140 splashscreen supportat SPL stage.
1141
1142config SPL_VIDEO_LOGO_MAX_SIZE
1143 hex "Maximum size of the bitmap logo in bytes at SPL"
1144 default 0x100000
1145 help
1146 Sets the maximum uncompressed size of the logo. This is needed when
1147 decompressing a BMP file using the gzip algorithm, since it cannot
1148 read the size from the bitmap header.
1149
1150config SPL_VIDEO_BMP_RLE8
1151 bool "Run length encoded BMP image (RLE8) support at SPL"
1152 help
1153 If this option is set, the 8-bit RLE compressed BMP images
1154 is supported.
1155
1156config SPL_BMP_16BPP
1157 bool "16-bit-per-pixel BMP image support at SPL"
1158 help
1159 Support display of bitmaps file with 16-bit-per-pixel
1160
1161config SPL_BMP_24BPP
1162 bool "24-bit-per-pixel BMP image support at SPL"
1163 help
1164 Support display of bitmaps file with 24-bit-per-pixel.
1165
1166config SPL_BMP_32BPP
1167 bool "32-bit-per-pixel BMP image support at SPL"
1168 help
1169 Support display of bitmaps file with 32-bit-per-pixel.
1170
1171config SPL_VIDEO_BPP8
1172 bool "Support 8-bit-per-pixel displays at SPL"
1173 default y
1174 help
1175 Support drawing text and bitmaps onto a 8-bit-per-pixel display.
1176 Enabling this will include code to support this display. Without
1177 this option, such displays will not be supported and console output
1178 will be empty.
1179
1180config SPL_VIDEO_BPP16
1181 bool "Support 16-bit-per-pixel displays at SPL"
1182 default y
1183 help
1184 Support drawing text and bitmaps onto a 16-bit-per-pixel display.
1185 Enabling this will include code to support this display. Without
1186 this option, such displays will not be supported and console output
1187 will be empty.
1188
1189config SPL_VIDEO_BPP32
1190 bool "Support 32-bit-per-pixel displays at SPL"
1191 default y
1192 help
1193 Support drawing text and bitmaps onto a 32-bit-per-pixel display.
1194 Enabling this will include code to support this display. Without
1195 this option, such displays will not be supported and console output
1196 will be empty.
1197
1198config SPL_HIDE_LOGO_VERSION
1199 bool "Hide the version information on the splash screen at SPL"
1200 help
1201 Normally the U-Boot version string is shown on the display when the
1202 splash screen is enabled. This information is not otherwise visible
1203 since video starts up after U-Boot has displayed the initial banner.
1204
1205 Enable this option to hide this information.
1206endif
1207
Masahiro Yamada0b11dbf2015-07-26 02:46:26 +09001208endmenu