wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 1 | /* |
Simon Glass | 81464d0 | 2022-01-23 07:04:09 -0700 | [diff] [blame] | 2 | * Video uclass to support displays (see also vidconsole for text) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 3 | * |
| 4 | * Copyright (c) 2015 Google, Inc |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 5 | */ |
wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 6 | |
| 7 | #ifndef _VIDEO_H_ |
| 8 | #define _VIDEO_H_ |
| 9 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 10 | #include <stdio_dev.h> |
| 11 | |
Simon Glass | f74c7bd | 2019-10-27 09:54:03 -0600 | [diff] [blame] | 12 | struct udevice; |
| 13 | |
Simon Glass | fc6b784 | 2020-07-02 21:12:19 -0600 | [diff] [blame] | 14 | /** |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 15 | * struct video_uc_plat - uclass platform data for a video device |
Simon Glass | fc6b784 | 2020-07-02 21:12:19 -0600 | [diff] [blame] | 16 | * |
| 17 | * This holds information that the uclass needs to know about each device. It |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 18 | * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at |
Simon Glass | fc6b784 | 2020-07-02 21:12:19 -0600 | [diff] [blame] | 19 | * the top of video-uclass.c for details on how this information is set. |
| 20 | * |
| 21 | * @align: Frame-buffer alignment, indicating the memory boundary the frame |
| 22 | * buffer should start on. If 0, 1MB is assumed |
| 23 | * @size: Frame-buffer size, in bytes |
Simon Glass | 65ea46f | 2023-10-01 19:14:36 -0600 | [diff] [blame] | 24 | * @base: Base address of frame buffer, 0 if not yet known. If CONFIG_VIDEO_COPY |
| 25 | * is enabled, this is the software copy, so writes to this will not be |
| 26 | * visible until vidconsole_sync_copy() is called. If CONFIG_VIDEO_COPY is |
| 27 | * disabled, this is the hardware framebuffer. |
| 28 | * @copy_base: Base address of a hardware copy of the frame buffer. If |
| 29 | * CONFIG_VIDEO_COPY is disabled, this is not used. |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 30 | * @copy_size: Size of copy framebuffer, used if @size is 0 |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 31 | * @hide_logo: Hide the logo (used for testing) |
Simon Glass | fc6b784 | 2020-07-02 21:12:19 -0600 | [diff] [blame] | 32 | */ |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 33 | struct video_uc_plat { |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 34 | uint align; |
| 35 | uint size; |
| 36 | ulong base; |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 37 | ulong copy_base; |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 38 | ulong copy_size; |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 39 | bool hide_logo; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Simon Glass | 4947abc | 2016-02-21 21:08:50 -0700 | [diff] [blame] | 42 | enum video_polarity { |
| 43 | VIDEO_ACTIVE_HIGH, /* Pins are active high */ |
| 44 | VIDEO_ACTIVE_LOW, /* Pins are active low */ |
| 45 | }; |
| 46 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 47 | /* |
| 48 | * Bits per pixel selector. Each value n is such that the bits-per-pixel is |
| 49 | * 2 ^ n |
| 50 | */ |
| 51 | enum video_log2_bpp { |
| 52 | VIDEO_BPP1 = 0, |
| 53 | VIDEO_BPP2, |
| 54 | VIDEO_BPP4, |
| 55 | VIDEO_BPP8, |
| 56 | VIDEO_BPP16, |
| 57 | VIDEO_BPP32, |
| 58 | }; |
| 59 | |
Miquel Raynal | 5e058e5 | 2024-09-10 11:11:59 +0200 | [diff] [blame] | 60 | /* Convert enum video_log2_bpp to bytes and bits */ |
Dan Carpenter | e310e00 | 2023-07-26 09:54:08 +0300 | [diff] [blame] | 61 | #define VNBYTES(bpix) ((1 << (bpix)) / 8) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 62 | #define VNBITS(bpix) (1 << (bpix)) |
| 63 | |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 64 | enum video_format { |
| 65 | VIDEO_UNKNOWN, |
Michal Simek | 985eac8 | 2023-05-17 10:42:07 +0200 | [diff] [blame] | 66 | VIDEO_RGBA8888, |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 67 | VIDEO_X8B8G8R8, |
| 68 | VIDEO_X8R8G8B8, |
| 69 | VIDEO_X2R10G10B10, |
| 70 | }; |
| 71 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 72 | /** |
| 73 | * struct video_priv - Device information used by the video uclass |
| 74 | * |
| 75 | * @xsize: Number of pixel columns (e.g. 1366) |
| 76 | * @ysize: Number of pixels rows (e.g.. 768) |
Simon Glass | aea571d | 2024-10-14 16:31:54 -0600 | [diff] [blame] | 77 | * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.). THis |
| 78 | * does not affect @xsize and @ysize |
Simon Glass | 6641437 | 2018-10-01 12:22:48 -0600 | [diff] [blame] | 79 | * @bpix: Encoded bits per pixel (enum video_log2_bpp) |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 80 | * @format: Pixel format (enum video_format) |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 81 | * @vidconsole_drv_name: Driver to use for the text console, NULL to |
| 82 | * select automatically |
| 83 | * @font_size: Font size in pixels (0 to use a default value) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 84 | * @fb: Frame buffer |
| 85 | * @fb_size: Frame buffer size |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 86 | * @copy_fb: Copy of the frame buffer to keep up to date; see struct |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 87 | * video_uc_plat |
Alexander Graf | db75775 | 2022-06-10 00:59:15 +0200 | [diff] [blame] | 88 | * @damage: A bounding box of framebuffer regions updated since last sync |
| 89 | * @damage.xstart: X start position in pixels from the left |
| 90 | * @damage.ystart: Y start position in pixels from the top |
| 91 | * @damage.xend: X end position in pixels from the left |
| 92 | * @damage.xend: Y end position in pixels from the top |
Simon Glass | 7d18673 | 2018-11-29 15:08:52 -0700 | [diff] [blame] | 93 | * @line_length: Length of each frame buffer line, in bytes. This can be |
| 94 | * set by the driver, but if not, the uclass will set it after |
| 95 | * probing |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 96 | * @colour_fg: Foreground colour (pixel value) |
| 97 | * @colour_bg: Background colour (pixel value) |
| 98 | * @flush_dcache: true to enable flushing of the data cache after |
| 99 | * the LCD is updated |
Heinrich Schuchardt | 2a436db | 2018-02-08 21:47:12 +0100 | [diff] [blame] | 100 | * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color) |
Andre Przywara | 4ed5bc8 | 2019-03-23 01:29:56 +0000 | [diff] [blame] | 101 | * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color) |
Simon Glass | 7f6280f | 2024-07-31 08:44:09 -0600 | [diff] [blame] | 102 | * @last_sync: Monotonic time of last video sync |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 103 | */ |
| 104 | struct video_priv { |
| 105 | /* Things set up by the driver: */ |
| 106 | ushort xsize; |
| 107 | ushort ysize; |
| 108 | ushort rot; |
| 109 | enum video_log2_bpp bpix; |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 110 | enum video_format format; |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 111 | const char *vidconsole_drv_name; |
| 112 | int font_size; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 113 | |
| 114 | /* |
| 115 | * Things that are private to the uclass: don't use these in the |
| 116 | * driver |
| 117 | */ |
| 118 | void *fb; |
| 119 | int fb_size; |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 120 | void *copy_fb; |
Alexander Graf | db75775 | 2022-06-10 00:59:15 +0200 | [diff] [blame] | 121 | struct { |
| 122 | int xstart; |
| 123 | int ystart; |
| 124 | int xend; |
| 125 | int yend; |
| 126 | } damage; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 127 | int line_length; |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 128 | u32 colour_fg; |
| 129 | u32 colour_bg; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 130 | bool flush_dcache; |
Heinrich Schuchardt | 2a436db | 2018-02-08 21:47:12 +0100 | [diff] [blame] | 131 | u8 fg_col_idx; |
Andre Przywara | 4ed5bc8 | 2019-03-23 01:29:56 +0000 | [diff] [blame] | 132 | u8 bg_col_idx; |
Simon Glass | 7f6280f | 2024-07-31 08:44:09 -0600 | [diff] [blame] | 133 | ulong last_sync; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 136 | /** |
| 137 | * struct video_ops - structure for keeping video operations |
| 138 | * @video_sync: Synchronize FB with device. Some device like SPI based LCD |
| 139 | * displays needs synchronization when data in an FB is available. |
| 140 | * For these devices implement video_sync hook to call a sync |
| 141 | * function. vid is pointer to video device udevice. Function |
| 142 | * should return 0 on success video_sync and error code otherwise |
| 143 | */ |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 144 | struct video_ops { |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 145 | int (*video_sync)(struct udevice *vid); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 146 | }; |
| 147 | |
| 148 | #define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops) |
| 149 | |
Simon Glass | 358077b | 2023-07-15 21:38:59 -0600 | [diff] [blame] | 150 | /** |
| 151 | * struct video_handoff - video information passed from SPL |
| 152 | * |
| 153 | * This is used when video is set up by SPL, to provide the details to U-Boot |
| 154 | * proper. |
| 155 | * |
| 156 | * @fb: Base address of frame buffer, 0 if not yet known |
| 157 | * @size: Frame-buffer size, in bytes |
| 158 | * @xsize: Number of pixel columns (e.g. 1366) |
| 159 | * @ysize: Number of pixels rows (e.g.. 768) |
| 160 | * @line_length: Length of each frame buffer line, in bytes. This can be |
| 161 | * set by the driver, but if not, the uclass will set it after |
| 162 | * probing |
| 163 | * @bpix: Encoded bits per pixel (enum video_log2_bpp) |
Simon Glass | 30aaa9b | 2025-01-10 17:00:19 -0700 | [diff] [blame] | 164 | * @format: Video format (enum video_format) |
Simon Glass | 358077b | 2023-07-15 21:38:59 -0600 | [diff] [blame] | 165 | */ |
| 166 | struct video_handoff { |
| 167 | u64 fb; |
| 168 | u32 size; |
| 169 | u16 xsize; |
| 170 | u16 ysize; |
| 171 | u32 line_length; |
| 172 | u8 bpix; |
Simon Glass | 30aaa9b | 2025-01-10 17:00:19 -0700 | [diff] [blame] | 173 | u8 format; |
Simon Glass | 358077b | 2023-07-15 21:38:59 -0600 | [diff] [blame] | 174 | }; |
| 175 | |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 176 | /** enum colour_idx - the 16 colors supported by consoles */ |
| 177 | enum colour_idx { |
| 178 | VID_BLACK = 0, |
| 179 | VID_RED, |
| 180 | VID_GREEN, |
| 181 | VID_BROWN, |
| 182 | VID_BLUE, |
| 183 | VID_MAGENTA, |
| 184 | VID_CYAN, |
| 185 | VID_LIGHT_GRAY, |
| 186 | VID_GRAY, |
| 187 | VID_LIGHT_RED, |
| 188 | VID_LIGHT_GREEN, |
| 189 | VID_YELLOW, |
| 190 | VID_LIGHT_BLUE, |
| 191 | VID_LIGHT_MAGENTA, |
| 192 | VID_LIGHT_CYAN, |
| 193 | VID_WHITE, |
Simon Glass | bda3adc | 2024-10-14 16:31:53 -0600 | [diff] [blame] | 194 | VID_DARK_GREY, |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 195 | |
| 196 | VID_COLOUR_COUNT |
| 197 | }; |
| 198 | |
| 199 | /** |
| 200 | * video_index_to_colour() - convert a color code to a pixel's internal |
| 201 | * representation |
| 202 | * |
| 203 | * The caller has to guarantee that the color index is less than |
| 204 | * VID_COLOR_COUNT. |
| 205 | * |
Simon Glass | e85e501 | 2023-06-01 10:22:44 -0600 | [diff] [blame] | 206 | * @priv private data of the video device (UCLASS_VIDEO) |
Simon Glass | d17a624 | 2023-06-01 10:22:48 -0600 | [diff] [blame] | 207 | * @idx color index (e.g. VID_YELLOW) |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 208 | * Return: color value |
| 209 | */ |
Simon Glass | d17a624 | 2023-06-01 10:22:48 -0600 | [diff] [blame] | 210 | u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx); |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 211 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 212 | /** |
| 213 | * video_reserve() - Reserve frame-buffer memory for video devices |
| 214 | * |
| 215 | * Note: This function is for internal use. |
| 216 | * |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 217 | * This uses the uclass plat's @size and @align members to figure out |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 218 | * a size and position for each frame buffer as part of the pre-relocation |
| 219 | * process of determining the post-relocation memory layout. |
| 220 | * |
| 221 | * gd->video_top is set to the initial value of *@addrp and gd->video_bottom |
| 222 | * is set to the final value. |
| 223 | * |
| 224 | * @addrp: On entry, the top of available memory. On exit, the new top, |
| 225 | * after allocating the required memory. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 226 | * Return: 0 |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 227 | */ |
| 228 | int video_reserve(ulong *addrp); |
| 229 | |
| 230 | /** |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 231 | * video_clear() - Clear a device's frame buffer to background colour. |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 232 | * |
| 233 | * @dev: Device to clear |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 234 | * Return: 0 on success |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 235 | */ |
Simon Glass | 5534312 | 2018-10-01 12:22:26 -0600 | [diff] [blame] | 236 | int video_clear(struct udevice *dev); |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 237 | |
| 238 | /** |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 239 | * video_fill() - Fill a device's frame buffer to a colour. |
| 240 | * |
| 241 | * @dev: Device to fill |
| 242 | * @colour: Colour to use, in the frame buffer's format |
| 243 | * Return: 0 on success |
| 244 | */ |
| 245 | int video_fill(struct udevice *dev, u32 colour); |
| 246 | |
| 247 | /** |
Simon Glass | 062673b | 2023-06-01 10:22:33 -0600 | [diff] [blame] | 248 | * video_fill_part() - Erase a region |
| 249 | * |
| 250 | * Erase a rectangle of the display within the given bounds. |
| 251 | * |
| 252 | * @dev: Device to update |
| 253 | * @xstart: X start position in pixels from the left |
| 254 | * @ystart: Y start position in pixels from the top |
| 255 | * @xend: X end position in pixels from the left |
| 256 | * @yend: Y end position in pixels from the top |
| 257 | * @colour: Value to write |
| 258 | * Return: 0 if OK, -ENOSYS if the display depth is not supported |
| 259 | */ |
| 260 | int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend, |
| 261 | int yend, u32 colour); |
| 262 | |
| 263 | /** |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 264 | * video_sync() - Sync a device's frame buffer with its hardware |
| 265 | * |
Michal Simek | 6bc7809 | 2020-12-14 09:14:03 +0100 | [diff] [blame] | 266 | * @vid: Device to sync |
| 267 | * @force: True to force a sync even if there was one recently (this is |
| 268 | * very expensive on sandbox) |
| 269 | * |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 270 | * @return: 0 on success, error code otherwise |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 271 | * |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 272 | * Some frame buffers are cached or have a secondary frame buffer. This |
Alexander Graf | db75775 | 2022-06-10 00:59:15 +0200 | [diff] [blame] | 273 | * function syncs the damaged parts of them up so that the current contents |
| 274 | * of the U-Boot frame buffer are displayed to the user. It clears the damage |
| 275 | * buffer. |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 276 | */ |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 277 | int video_sync(struct udevice *vid, bool force); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 278 | |
| 279 | /** |
Heinrich Schuchardt | 7c0cca5 | 2023-08-28 22:40:47 +0200 | [diff] [blame] | 280 | * video_sync_all() - Sync all devices' frame buffers with their hardware |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 281 | * |
| 282 | * This calls video_sync() on all active video devices. |
| 283 | */ |
| 284 | void video_sync_all(void); |
| 285 | |
| 286 | /** |
Simon Glass | 7e14804 | 2022-10-06 08:36:17 -0600 | [diff] [blame] | 287 | * video_bmp_get_info() - Get information about a bitmap image |
| 288 | * |
| 289 | * @bmp_image: Pointer to BMP image to check |
| 290 | * @widthp: Returns width in pixels |
| 291 | * @heightp: Returns height in pixels |
| 292 | * @bpixp: Returns log2 of bits per pixel |
| 293 | */ |
| 294 | void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp, |
| 295 | uint *bpixp); |
| 296 | |
| 297 | /** |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 298 | * video_bmp_display() - Display a BMP file |
| 299 | * |
| 300 | * @dev: Device to display the bitmap on |
| 301 | * @bmp_image: Address of bitmap image to display |
| 302 | * @x: X position in pixels from the left |
| 303 | * @y: Y position in pixels from the top |
| 304 | * @align: true to adjust the coordinates to centre the image. If false |
| 305 | * the coordinates are used as is. If true: |
| 306 | * |
| 307 | * - if a coordinate is 0x7fff then the image will be centred in |
| 308 | * that direction |
| 309 | * - if a coordinate is -ve then it will be offset to the |
| 310 | * left/top of the centre by that many pixels |
Simon Glass | c80f3fd | 2023-01-06 08:52:31 -0600 | [diff] [blame] | 311 | * - if a coordinate is positive it will be used unchanged. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 312 | * Return: 0 if OK, -ve on error |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 313 | */ |
| 314 | int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y, |
| 315 | bool align); |
| 316 | |
| 317 | /** |
| 318 | * video_get_xsize() - Get the width of the display in pixels |
| 319 | * |
| 320 | * @dev: Device to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 321 | * Return: device frame buffer width in pixels |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 322 | */ |
| 323 | int video_get_xsize(struct udevice *dev); |
| 324 | |
| 325 | /** |
| 326 | * video_get_ysize() - Get the height of the display in pixels |
| 327 | * |
| 328 | * @dev: Device to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 329 | * Return: device frame buffer height in pixels |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 330 | */ |
| 331 | int video_get_ysize(struct udevice *dev); |
| 332 | |
Simon Glass | 6463538 | 2016-01-21 19:44:52 -0700 | [diff] [blame] | 333 | /** |
| 334 | * Set whether we need to flush the dcache when changing the image. This |
| 335 | * defaults to off. |
| 336 | * |
| 337 | * @param flush non-zero to flush cache after update, 0 to skip |
| 338 | */ |
| 339 | void video_set_flush_dcache(struct udevice *dev, bool flush); |
| 340 | |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 341 | /** |
| 342 | * Set default colors and attributes |
| 343 | * |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 344 | * @dev: video device |
| 345 | * @invert true to invert colours |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 346 | */ |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 347 | void video_set_default_colors(struct udevice *dev, bool invert); |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 348 | |
Simon Glass | 7045990 | 2022-10-06 08:36:18 -0600 | [diff] [blame] | 349 | /** |
| 350 | * video_default_font_height() - Get the default font height |
| 351 | * |
| 352 | * @dev: video device |
| 353 | * Returns: Default font height in pixels, which depends on which console driver |
| 354 | * is in use |
| 355 | */ |
| 356 | int video_default_font_height(struct udevice *dev); |
| 357 | |
Alexander Graf | db75775 | 2022-06-10 00:59:15 +0200 | [diff] [blame] | 358 | #ifdef CONFIG_VIDEO_DAMAGE |
| 359 | /** |
| 360 | * video_damage() - Notify the video subsystem about screen updates. |
| 361 | * |
| 362 | * @vid: Device to sync |
| 363 | * @x: Upper left X coordinate of the damaged rectangle |
| 364 | * @y: Upper left Y coordinate of the damaged rectangle |
| 365 | * @width: Width of the damaged rectangle |
| 366 | * @height: Height of the damaged rectangle |
| 367 | * |
| 368 | * Some frame buffers are cached or have a secondary frame buffer. This |
| 369 | * function notifies the video subsystem about rectangles that were updated |
| 370 | * within the frame buffer. They may only get written to the screen on the |
| 371 | * next call to video_sync(). |
| 372 | */ |
| 373 | void video_damage(struct udevice *vid, int x, int y, int width, int height); |
| 374 | #else |
| 375 | static inline void video_damage(struct udevice *vid, int x, int y, int width, |
| 376 | int height) |
| 377 | { |
| 378 | return; |
| 379 | } |
| 380 | #endif /* CONFIG_VIDEO_DAMAGE */ |
| 381 | |
Patrick Delaunay | efcc84b | 2021-11-15 16:32:20 +0100 | [diff] [blame] | 382 | /** |
| 383 | * video_is_active() - Test if one video device it active |
| 384 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 385 | * Return: true if at least one video device is active, else false. |
Patrick Delaunay | efcc84b | 2021-11-15 16:32:20 +0100 | [diff] [blame] | 386 | */ |
| 387 | bool video_is_active(void); |
| 388 | |
Simon Glass | 2247742 | 2022-10-06 08:36:09 -0600 | [diff] [blame] | 389 | /** |
| 390 | * video_get_u_boot_logo() - Get a pointer to the U-Boot logo |
| 391 | * |
| 392 | * Returns: Pointer to logo |
| 393 | */ |
| 394 | void *video_get_u_boot_logo(void); |
| 395 | |
Simon Glass | de368f8 | 2022-10-18 07:41:14 -0600 | [diff] [blame] | 396 | /* |
| 397 | * bmp_display() - Display BMP (bitmap) data located in memory |
| 398 | * |
| 399 | * @addr: address of the bmp data |
| 400 | * @x: Position of bitmap from the left side, in pixels |
| 401 | * @y: Position of bitmap from the top, in pixels |
| 402 | */ |
| 403 | int bmp_display(ulong addr, int x, int y); |
| 404 | |
Nikhil M Jain | 737d2ed | 2023-04-20 17:41:06 +0530 | [diff] [blame] | 405 | /* |
| 406 | * bmp_info() - Show information about bmp file |
| 407 | * |
| 408 | * @addr: address of bmp file |
| 409 | * Returns: 0 if OK, else 1 if bmp image not found |
| 410 | */ |
| 411 | int bmp_info(ulong addr); |
| 412 | |
Nikhil M Jain | 7683353 | 2023-07-18 14:27:30 +0530 | [diff] [blame] | 413 | /* |
| 414 | * video_reserve_from_bloblist()- Reserve frame-buffer memory for video devices |
| 415 | * using blobs. |
| 416 | * |
| 417 | * @ho: video information passed from SPL |
| 418 | * Returns: 0 (always) |
| 419 | */ |
| 420 | int video_reserve_from_bloblist(struct video_handoff *ho); |
| 421 | |
Simon Glass | 853e8d2 | 2024-08-21 10:18:55 -0600 | [diff] [blame] | 422 | /** |
| 423 | * video_get_fb() - Get the first framebuffer address |
| 424 | * |
| 425 | * This function does not probe video devices, so can only be used after a video |
| 426 | * device has been activated. |
| 427 | * |
| 428 | * Return: address of the framebuffer of the first video device found, or 0 if |
| 429 | * there is no device |
| 430 | */ |
| 431 | ulong video_get_fb(void); |
| 432 | |
wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 433 | #endif |