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