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 |
| 24 | * @base: Base address of frame buffer, 0 if not yet known |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 25 | * @copy_base: Base address of a hardware copy of the frame buffer. See |
| 26 | * CONFIG_VIDEO_COPY. |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 27 | * @copy_size: Size of copy framebuffer, used if @size is 0 |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 28 | * @hide_logo: Hide the logo (used for testing) |
Simon Glass | fc6b784 | 2020-07-02 21:12:19 -0600 | [diff] [blame] | 29 | */ |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 30 | struct video_uc_plat { |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 31 | uint align; |
| 32 | uint size; |
| 33 | ulong base; |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 34 | ulong copy_base; |
Simon Glass | df865d3 | 2023-03-10 12:47:17 -0800 | [diff] [blame] | 35 | ulong copy_size; |
Simon Glass | 87a3cd7 | 2021-11-19 13:24:03 -0700 | [diff] [blame] | 36 | bool hide_logo; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Simon Glass | 4947abc | 2016-02-21 21:08:50 -0700 | [diff] [blame] | 39 | enum video_polarity { |
| 40 | VIDEO_ACTIVE_HIGH, /* Pins are active high */ |
| 41 | VIDEO_ACTIVE_LOW, /* Pins are active low */ |
| 42 | }; |
| 43 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 44 | /* |
| 45 | * Bits per pixel selector. Each value n is such that the bits-per-pixel is |
| 46 | * 2 ^ n |
| 47 | */ |
| 48 | enum video_log2_bpp { |
| 49 | VIDEO_BPP1 = 0, |
| 50 | VIDEO_BPP2, |
| 51 | VIDEO_BPP4, |
| 52 | VIDEO_BPP8, |
| 53 | VIDEO_BPP16, |
| 54 | VIDEO_BPP32, |
| 55 | }; |
| 56 | |
| 57 | /* |
| 58 | * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer |
| 59 | * brackets to allow multiplication by fractional pixels. |
| 60 | */ |
| 61 | #define VNBYTES(bpix) (1 << (bpix)) / 8 |
| 62 | |
| 63 | #define VNBITS(bpix) (1 << (bpix)) |
| 64 | |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 65 | enum video_format { |
| 66 | VIDEO_UNKNOWN, |
| 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 | cd01ef8 | 2016-01-14 18:10:52 -0700 | [diff] [blame] | 77 | * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.) |
Simon Glass | 6641437 | 2018-10-01 12:22:48 -0600 | [diff] [blame] | 78 | * @bpix: Encoded bits per pixel (enum video_log2_bpp) |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 79 | * @format: Pixel format (enum video_format) |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 80 | * @vidconsole_drv_name: Driver to use for the text console, NULL to |
| 81 | * select automatically |
| 82 | * @font_size: Font size in pixels (0 to use a default value) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 83 | * @fb: Frame buffer |
| 84 | * @fb_size: Frame buffer size |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 85 | * @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] | 86 | * video_uc_plat |
Simon Glass | 7d18673 | 2018-11-29 15:08:52 -0700 | [diff] [blame] | 87 | * @line_length: Length of each frame buffer line, in bytes. This can be |
| 88 | * set by the driver, but if not, the uclass will set it after |
| 89 | * probing |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 90 | * @colour_fg: Foreground colour (pixel value) |
| 91 | * @colour_bg: Background colour (pixel value) |
| 92 | * @flush_dcache: true to enable flushing of the data cache after |
| 93 | * the LCD is updated |
Heinrich Schuchardt | 2a436db | 2018-02-08 21:47:12 +0100 | [diff] [blame] | 94 | * @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] | 95 | * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color) |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 96 | */ |
| 97 | struct video_priv { |
| 98 | /* Things set up by the driver: */ |
| 99 | ushort xsize; |
| 100 | ushort ysize; |
| 101 | ushort rot; |
| 102 | enum video_log2_bpp bpix; |
Mark Kettenis | 32b7368 | 2021-09-25 22:47:36 +0200 | [diff] [blame] | 103 | enum video_format format; |
Simon Glass | b3a72b3 | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 104 | const char *vidconsole_drv_name; |
| 105 | int font_size; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 106 | |
| 107 | /* |
| 108 | * Things that are private to the uclass: don't use these in the |
| 109 | * driver |
| 110 | */ |
| 111 | void *fb; |
| 112 | int fb_size; |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 113 | void *copy_fb; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 114 | int line_length; |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 115 | u32 colour_fg; |
| 116 | u32 colour_bg; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 117 | bool flush_dcache; |
Heinrich Schuchardt | 2a436db | 2018-02-08 21:47:12 +0100 | [diff] [blame] | 118 | u8 fg_col_idx; |
Andre Przywara | 4ed5bc8 | 2019-03-23 01:29:56 +0000 | [diff] [blame] | 119 | u8 bg_col_idx; |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 120 | }; |
| 121 | |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 122 | /** |
| 123 | * struct video_ops - structure for keeping video operations |
| 124 | * @video_sync: Synchronize FB with device. Some device like SPI based LCD |
| 125 | * displays needs synchronization when data in an FB is available. |
| 126 | * For these devices implement video_sync hook to call a sync |
| 127 | * function. vid is pointer to video device udevice. Function |
| 128 | * should return 0 on success video_sync and error code otherwise |
| 129 | */ |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 130 | struct video_ops { |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 131 | int (*video_sync)(struct udevice *vid); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 132 | }; |
| 133 | |
| 134 | #define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops) |
| 135 | |
Simon Glass | 2a00633 | 2022-10-06 08:36:03 -0600 | [diff] [blame] | 136 | /** enum colour_idx - the 16 colors supported by consoles */ |
| 137 | enum colour_idx { |
| 138 | VID_BLACK = 0, |
| 139 | VID_RED, |
| 140 | VID_GREEN, |
| 141 | VID_BROWN, |
| 142 | VID_BLUE, |
| 143 | VID_MAGENTA, |
| 144 | VID_CYAN, |
| 145 | VID_LIGHT_GRAY, |
| 146 | VID_GRAY, |
| 147 | VID_LIGHT_RED, |
| 148 | VID_LIGHT_GREEN, |
| 149 | VID_YELLOW, |
| 150 | VID_LIGHT_BLUE, |
| 151 | VID_LIGHT_MAGENTA, |
| 152 | VID_LIGHT_CYAN, |
| 153 | VID_WHITE, |
| 154 | |
| 155 | VID_COLOUR_COUNT |
| 156 | }; |
| 157 | |
| 158 | /** |
| 159 | * video_index_to_colour() - convert a color code to a pixel's internal |
| 160 | * representation |
| 161 | * |
| 162 | * The caller has to guarantee that the color index is less than |
| 163 | * VID_COLOR_COUNT. |
| 164 | * |
| 165 | * @priv private data of the console device |
| 166 | * @idx color index |
| 167 | * Return: color value |
| 168 | */ |
| 169 | u32 video_index_to_colour(struct video_priv *priv, unsigned int idx); |
| 170 | |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 171 | /** |
| 172 | * video_reserve() - Reserve frame-buffer memory for video devices |
| 173 | * |
| 174 | * Note: This function is for internal use. |
| 175 | * |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 176 | * 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] | 177 | * a size and position for each frame buffer as part of the pre-relocation |
| 178 | * process of determining the post-relocation memory layout. |
| 179 | * |
| 180 | * gd->video_top is set to the initial value of *@addrp and gd->video_bottom |
| 181 | * is set to the final value. |
| 182 | * |
| 183 | * @addrp: On entry, the top of available memory. On exit, the new top, |
| 184 | * after allocating the required memory. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 185 | * Return: 0 |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 186 | */ |
| 187 | int video_reserve(ulong *addrp); |
| 188 | |
| 189 | /** |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 190 | * video_clear() - Clear a device's frame buffer to background colour. |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 191 | * |
| 192 | * @dev: Device to clear |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 193 | * Return: 0 on success |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 194 | */ |
Simon Glass | 5534312 | 2018-10-01 12:22:26 -0600 | [diff] [blame] | 195 | int video_clear(struct udevice *dev); |
Rob Clark | 06e7a0d | 2017-09-13 18:12:21 -0400 | [diff] [blame] | 196 | |
| 197 | /** |
Simon Glass | 2baa6f8 | 2022-10-06 08:36:08 -0600 | [diff] [blame] | 198 | * video_fill() - Fill a device's frame buffer to a colour. |
| 199 | * |
| 200 | * @dev: Device to fill |
| 201 | * @colour: Colour to use, in the frame buffer's format |
| 202 | * Return: 0 on success |
| 203 | */ |
| 204 | int video_fill(struct udevice *dev, u32 colour); |
| 205 | |
| 206 | /** |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 207 | * video_sync() - Sync a device's frame buffer with its hardware |
| 208 | * |
Michal Simek | 6bc7809 | 2020-12-14 09:14:03 +0100 | [diff] [blame] | 209 | * @vid: Device to sync |
| 210 | * @force: True to force a sync even if there was one recently (this is |
| 211 | * very expensive on sandbox) |
| 212 | * |
Michal Simek | 8ae95df | 2020-12-03 09:30:00 +0100 | [diff] [blame] | 213 | * @return: 0 on success, error code otherwise |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 214 | * |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 215 | * Some frame buffers are cached or have a secondary frame buffer. This |
| 216 | * function syncs these up so that the current contents of the U-Boot frame |
| 217 | * buffer are displayed to the user. |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 218 | */ |
Michal Simek | 632e3d4 | 2020-12-14 08:47:52 +0100 | [diff] [blame] | 219 | int video_sync(struct udevice *vid, bool force); |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 220 | |
| 221 | /** |
| 222 | * video_sync_all() - Sync all devices' frame buffers with there hardware |
| 223 | * |
| 224 | * This calls video_sync() on all active video devices. |
| 225 | */ |
| 226 | void video_sync_all(void); |
| 227 | |
| 228 | /** |
Simon Glass | 7e14804 | 2022-10-06 08:36:17 -0600 | [diff] [blame] | 229 | * video_bmp_get_info() - Get information about a bitmap image |
| 230 | * |
| 231 | * @bmp_image: Pointer to BMP image to check |
| 232 | * @widthp: Returns width in pixels |
| 233 | * @heightp: Returns height in pixels |
| 234 | * @bpixp: Returns log2 of bits per pixel |
| 235 | */ |
| 236 | void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp, |
| 237 | uint *bpixp); |
| 238 | |
| 239 | /** |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 240 | * video_bmp_display() - Display a BMP file |
| 241 | * |
| 242 | * @dev: Device to display the bitmap on |
| 243 | * @bmp_image: Address of bitmap image to display |
| 244 | * @x: X position in pixels from the left |
| 245 | * @y: Y position in pixels from the top |
| 246 | * @align: true to adjust the coordinates to centre the image. If false |
| 247 | * the coordinates are used as is. If true: |
| 248 | * |
| 249 | * - if a coordinate is 0x7fff then the image will be centred in |
| 250 | * that direction |
| 251 | * - if a coordinate is -ve then it will be offset to the |
| 252 | * left/top of the centre by that many pixels |
Simon Glass | c80f3fd | 2023-01-06 08:52:31 -0600 | [diff] [blame] | 253 | * - if a coordinate is positive it will be used unchanged. |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 254 | * Return: 0 if OK, -ve on error |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 255 | */ |
| 256 | int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y, |
| 257 | bool align); |
| 258 | |
| 259 | /** |
| 260 | * video_get_xsize() - Get the width of the display in pixels |
| 261 | * |
| 262 | * @dev: Device to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 263 | * Return: device frame buffer width in pixels |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 264 | */ |
| 265 | int video_get_xsize(struct udevice *dev); |
| 266 | |
| 267 | /** |
| 268 | * video_get_ysize() - Get the height of the display in pixels |
| 269 | * |
| 270 | * @dev: Device to check |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 271 | * Return: device frame buffer height in pixels |
Simon Glass | 623d28f | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 272 | */ |
| 273 | int video_get_ysize(struct udevice *dev); |
| 274 | |
Simon Glass | 6463538 | 2016-01-21 19:44:52 -0700 | [diff] [blame] | 275 | /** |
| 276 | * Set whether we need to flush the dcache when changing the image. This |
| 277 | * defaults to off. |
| 278 | * |
| 279 | * @param flush non-zero to flush cache after update, 0 to skip |
| 280 | */ |
| 281 | void video_set_flush_dcache(struct udevice *dev, bool flush); |
| 282 | |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 283 | /** |
| 284 | * Set default colors and attributes |
| 285 | * |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 286 | * @dev: video device |
| 287 | * @invert true to invert colours |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 288 | */ |
Simon Glass | 2b063b8 | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 289 | void video_set_default_colors(struct udevice *dev, bool invert); |
Heinrich Schuchardt | 290e1d8 | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 290 | |
Simon Glass | 7045990 | 2022-10-06 08:36:18 -0600 | [diff] [blame] | 291 | /** |
| 292 | * video_default_font_height() - Get the default font height |
| 293 | * |
| 294 | * @dev: video device |
| 295 | * Returns: Default font height in pixels, which depends on which console driver |
| 296 | * is in use |
| 297 | */ |
| 298 | int video_default_font_height(struct udevice *dev); |
| 299 | |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 300 | #ifdef CONFIG_VIDEO_COPY |
| 301 | /** |
| 302 | * vidconsole_sync_copy() - Sync back to the copy framebuffer |
| 303 | * |
| 304 | * This ensures that the copy framebuffer has the same data as the framebuffer |
| 305 | * for a particular region. It should be called after the framebuffer is updated |
| 306 | * |
| 307 | * @from and @to can be in either order. The region between them is synced. |
| 308 | * |
| 309 | * @dev: Vidconsole device being updated |
| 310 | * @from: Start/end address within the framebuffer (->fb) |
| 311 | * @to: Other address within the frame buffer |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 312 | * Return: 0 if OK, -EFAULT if the start address is before the start of the |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 313 | * frame buffer start |
| 314 | */ |
| 315 | int video_sync_copy(struct udevice *dev, void *from, void *to); |
Simon Glass | 62b535e | 2021-01-13 20:29:46 -0700 | [diff] [blame] | 316 | |
| 317 | /** |
| 318 | * video_sync_copy_all() - Sync the entire framebuffer to the copy |
| 319 | * |
| 320 | * @dev: Vidconsole device being updated |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 321 | * Return: 0 (always) |
Simon Glass | 62b535e | 2021-01-13 20:29:46 -0700 | [diff] [blame] | 322 | */ |
| 323 | int video_sync_copy_all(struct udevice *dev); |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 324 | #else |
| 325 | static inline int video_sync_copy(struct udevice *dev, void *from, void *to) |
| 326 | { |
| 327 | return 0; |
| 328 | } |
Simon Glass | 62b535e | 2021-01-13 20:29:46 -0700 | [diff] [blame] | 329 | |
| 330 | static inline int video_sync_copy_all(struct udevice *dev) |
| 331 | { |
| 332 | return 0; |
| 333 | } |
| 334 | |
Simon Glass | 73c9c37 | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 335 | #endif |
| 336 | |
Patrick Delaunay | efcc84b | 2021-11-15 16:32:20 +0100 | [diff] [blame] | 337 | /** |
| 338 | * video_is_active() - Test if one video device it active |
| 339 | * |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 340 | * Return: true if at least one video device is active, else false. |
Patrick Delaunay | efcc84b | 2021-11-15 16:32:20 +0100 | [diff] [blame] | 341 | */ |
| 342 | bool video_is_active(void); |
| 343 | |
Simon Glass | 2247742 | 2022-10-06 08:36:09 -0600 | [diff] [blame] | 344 | /** |
| 345 | * video_get_u_boot_logo() - Get a pointer to the U-Boot logo |
| 346 | * |
| 347 | * Returns: Pointer to logo |
| 348 | */ |
| 349 | void *video_get_u_boot_logo(void); |
| 350 | |
Simon Glass | de368f8 | 2022-10-18 07:41:14 -0600 | [diff] [blame] | 351 | /* |
| 352 | * bmp_display() - Display BMP (bitmap) data located in memory |
| 353 | * |
| 354 | * @addr: address of the bmp data |
| 355 | * @x: Position of bitmap from the left side, in pixels |
| 356 | * @y: Position of bitmap from the top, in pixels |
| 357 | */ |
| 358 | int bmp_display(ulong addr, int x, int y); |
| 359 | |
wdenk | 167c589 | 2001-11-03 22:21:15 +0000 | [diff] [blame] | 360 | #endif |