blob: 9ea6b676463eb5b1832b992b01b3b1f294e39360 [file] [log] [blame]
wdenk167c5892001-11-03 22:21:15 +00001/*
Simon Glass81464d02022-01-23 07:04:09 -07002 * Video uclass to support displays (see also vidconsole for text)
Simon Glass623d28f2016-01-18 19:52:15 -07003 *
4 * Copyright (c) 2015 Google, Inc
Simon Glass623d28f2016-01-18 19:52:15 -07005 */
wdenk167c5892001-11-03 22:21:15 +00006
7#ifndef _VIDEO_H_
8#define _VIDEO_H_
9
Simon Glass623d28f2016-01-18 19:52:15 -070010#include <stdio_dev.h>
11
Simon Glassf74c7bd2019-10-27 09:54:03 -060012struct udevice;
13
Simon Glassfc6b7842020-07-02 21:12:19 -060014/**
Simon Glassb75b15b2020-12-03 16:55:23 -070015 * struct video_uc_plat - uclass platform data for a video device
Simon Glassfc6b7842020-07-02 21:12:19 -060016 *
17 * This holds information that the uclass needs to know about each device. It
Simon Glass71fa5b42020-12-03 16:55:18 -070018 * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at
Simon Glassfc6b7842020-07-02 21:12:19 -060019 * 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 Glass65ea46f2023-10-01 19:14:36 -060024 * @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 Glassdf865d32023-03-10 12:47:17 -080030 * @copy_size: Size of copy framebuffer, used if @size is 0
Simon Glass87a3cd72021-11-19 13:24:03 -070031 * @hide_logo: Hide the logo (used for testing)
Simon Glassfc6b7842020-07-02 21:12:19 -060032 */
Simon Glassb75b15b2020-12-03 16:55:23 -070033struct video_uc_plat {
Simon Glass623d28f2016-01-18 19:52:15 -070034 uint align;
35 uint size;
36 ulong base;
Simon Glass73c9c372020-07-02 21:12:20 -060037 ulong copy_base;
Simon Glassdf865d32023-03-10 12:47:17 -080038 ulong copy_size;
Simon Glass87a3cd72021-11-19 13:24:03 -070039 bool hide_logo;
Simon Glass623d28f2016-01-18 19:52:15 -070040};
41
Simon Glass4947abc2016-02-21 21:08:50 -070042enum video_polarity {
43 VIDEO_ACTIVE_HIGH, /* Pins are active high */
44 VIDEO_ACTIVE_LOW, /* Pins are active low */
45};
46
Simon Glass623d28f2016-01-18 19:52:15 -070047/*
48 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
49 * 2 ^ n
50 */
51enum 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 Raynal5e058e52024-09-10 11:11:59 +020060/* Convert enum video_log2_bpp to bytes and bits */
Dan Carpentere310e002023-07-26 09:54:08 +030061#define VNBYTES(bpix) ((1 << (bpix)) / 8)
Simon Glass623d28f2016-01-18 19:52:15 -070062#define VNBITS(bpix) (1 << (bpix))
63
Mark Kettenis32b73682021-09-25 22:47:36 +020064enum video_format {
65 VIDEO_UNKNOWN,
Michal Simek985eac82023-05-17 10:42:07 +020066 VIDEO_RGBA8888,
Mark Kettenis32b73682021-09-25 22:47:36 +020067 VIDEO_X8B8G8R8,
68 VIDEO_X8R8G8B8,
69 VIDEO_X2R10G10B10,
70};
71
Simon Glass623d28f2016-01-18 19:52:15 -070072/**
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 Glassaea571d2024-10-14 16:31:54 -060077 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.). THis
78 * does not affect @xsize and @ysize
Simon Glass66414372018-10-01 12:22:48 -060079 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
Mark Kettenis32b73682021-09-25 22:47:36 +020080 * @format: Pixel format (enum video_format)
Simon Glassb3a72b32016-01-14 18:10:48 -070081 * @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 Glass623d28f2016-01-18 19:52:15 -070084 * @fb: Frame buffer
85 * @fb_size: Frame buffer size
Simon Glass73c9c372020-07-02 21:12:20 -060086 * @copy_fb: Copy of the frame buffer to keep up to date; see struct
Simon Glassb75b15b2020-12-03 16:55:23 -070087 * video_uc_plat
Alexander Grafdb757752022-06-10 00:59:15 +020088 * @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 Glass7d186732018-11-29 15:08:52 -070093 * @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 Glass623d28f2016-01-18 19:52:15 -070096 * @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 Schuchardt2a436db2018-02-08 21:47:12 +0100100 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000101 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
Simon Glass7f6280f2024-07-31 08:44:09 -0600102 * @last_sync: Monotonic time of last video sync
Simon Glass21320da2025-04-02 06:29:33 +1300103 * @white_on_black: Use a black background
Simon Glass623d28f2016-01-18 19:52:15 -0700104 */
105struct video_priv {
106 /* Things set up by the driver: */
107 ushort xsize;
108 ushort ysize;
109 ushort rot;
110 enum video_log2_bpp bpix;
Mark Kettenis32b73682021-09-25 22:47:36 +0200111 enum video_format format;
Simon Glassb3a72b32016-01-14 18:10:48 -0700112 const char *vidconsole_drv_name;
113 int font_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700114
115 /*
116 * Things that are private to the uclass: don't use these in the
117 * driver
118 */
119 void *fb;
120 int fb_size;
Simon Glass73c9c372020-07-02 21:12:20 -0600121 void *copy_fb;
Alexander Grafdb757752022-06-10 00:59:15 +0200122 struct {
123 int xstart;
124 int ystart;
125 int xend;
126 int yend;
127 } damage;
Simon Glass623d28f2016-01-18 19:52:15 -0700128 int line_length;
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100129 u32 colour_fg;
130 u32 colour_bg;
Simon Glass623d28f2016-01-18 19:52:15 -0700131 bool flush_dcache;
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +0100132 u8 fg_col_idx;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000133 u8 bg_col_idx;
Simon Glass7f6280f2024-07-31 08:44:09 -0600134 ulong last_sync;
Simon Glass21320da2025-04-02 06:29:33 +1300135 bool white_on_black;
Simon Glass623d28f2016-01-18 19:52:15 -0700136};
137
Michal Simek8ae95df2020-12-03 09:30:00 +0100138/**
139 * struct video_ops - structure for keeping video operations
140 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
141 * displays needs synchronization when data in an FB is available.
142 * For these devices implement video_sync hook to call a sync
143 * function. vid is pointer to video device udevice. Function
144 * should return 0 on success video_sync and error code otherwise
145 */
Simon Glass623d28f2016-01-18 19:52:15 -0700146struct video_ops {
Michal Simek8ae95df2020-12-03 09:30:00 +0100147 int (*video_sync)(struct udevice *vid);
Simon Glass623d28f2016-01-18 19:52:15 -0700148};
149
150#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
151
Simon Glass358077b2023-07-15 21:38:59 -0600152/**
153 * struct video_handoff - video information passed from SPL
154 *
155 * This is used when video is set up by SPL, to provide the details to U-Boot
156 * proper.
157 *
158 * @fb: Base address of frame buffer, 0 if not yet known
159 * @size: Frame-buffer size, in bytes
160 * @xsize: Number of pixel columns (e.g. 1366)
161 * @ysize: Number of pixels rows (e.g.. 768)
162 * @line_length: Length of each frame buffer line, in bytes. This can be
163 * set by the driver, but if not, the uclass will set it after
164 * probing
165 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
Simon Glass30aaa9b2025-01-10 17:00:19 -0700166 * @format: Video format (enum video_format)
Simon Glass358077b2023-07-15 21:38:59 -0600167 */
168struct video_handoff {
169 u64 fb;
170 u32 size;
171 u16 xsize;
172 u16 ysize;
173 u32 line_length;
174 u8 bpix;
Simon Glass30aaa9b2025-01-10 17:00:19 -0700175 u8 format;
Simon Glass358077b2023-07-15 21:38:59 -0600176};
177
Simon Glass2a006332022-10-06 08:36:03 -0600178/** enum colour_idx - the 16 colors supported by consoles */
179enum colour_idx {
180 VID_BLACK = 0,
181 VID_RED,
182 VID_GREEN,
183 VID_BROWN,
184 VID_BLUE,
185 VID_MAGENTA,
186 VID_CYAN,
187 VID_LIGHT_GRAY,
188 VID_GRAY,
189 VID_LIGHT_RED,
190 VID_LIGHT_GREEN,
191 VID_YELLOW,
192 VID_LIGHT_BLUE,
193 VID_LIGHT_MAGENTA,
194 VID_LIGHT_CYAN,
195 VID_WHITE,
Simon Glassbda3adc2024-10-14 16:31:53 -0600196 VID_DARK_GREY,
Simon Glass2a006332022-10-06 08:36:03 -0600197
198 VID_COLOUR_COUNT
199};
200
201/**
202 * video_index_to_colour() - convert a color code to a pixel's internal
203 * representation
204 *
205 * The caller has to guarantee that the color index is less than
206 * VID_COLOR_COUNT.
207 *
Simon Glasse85e5012023-06-01 10:22:44 -0600208 * @priv private data of the video device (UCLASS_VIDEO)
Simon Glassd17a6242023-06-01 10:22:48 -0600209 * @idx color index (e.g. VID_YELLOW)
Simon Glass2a006332022-10-06 08:36:03 -0600210 * Return: color value
211 */
Simon Glassd17a6242023-06-01 10:22:48 -0600212u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx);
Simon Glass2a006332022-10-06 08:36:03 -0600213
Simon Glass623d28f2016-01-18 19:52:15 -0700214/**
215 * video_reserve() - Reserve frame-buffer memory for video devices
216 *
217 * Note: This function is for internal use.
218 *
Simon Glass71fa5b42020-12-03 16:55:18 -0700219 * This uses the uclass plat's @size and @align members to figure out
Simon Glass623d28f2016-01-18 19:52:15 -0700220 * a size and position for each frame buffer as part of the pre-relocation
221 * process of determining the post-relocation memory layout.
222 *
223 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
224 * is set to the final value.
225 *
226 * @addrp: On entry, the top of available memory. On exit, the new top,
227 * after allocating the required memory.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100228 * Return: 0
Simon Glass623d28f2016-01-18 19:52:15 -0700229 */
230int video_reserve(ulong *addrp);
231
232/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600233 * video_clear() - Clear a device's frame buffer to background colour.
Rob Clark06e7a0d2017-09-13 18:12:21 -0400234 *
235 * @dev: Device to clear
Simon Glass2baa6f82022-10-06 08:36:08 -0600236 * Return: 0 on success
Rob Clark06e7a0d2017-09-13 18:12:21 -0400237 */
Simon Glass55343122018-10-01 12:22:26 -0600238int video_clear(struct udevice *dev);
Rob Clark06e7a0d2017-09-13 18:12:21 -0400239
240/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600241 * video_fill() - Fill a device's frame buffer to a colour.
242 *
243 * @dev: Device to fill
244 * @colour: Colour to use, in the frame buffer's format
245 * Return: 0 on success
246 */
247int video_fill(struct udevice *dev, u32 colour);
248
249/**
Simon Glass062673b2023-06-01 10:22:33 -0600250 * video_fill_part() - Erase a region
251 *
Simon Glassaef8c792025-04-02 06:29:43 +1300252 * Erase a rectangle on the display within the given bounds
Simon Glass062673b2023-06-01 10:22:33 -0600253 *
254 * @dev: Device to update
255 * @xstart: X start position in pixels from the left
256 * @ystart: Y start position in pixels from the top
257 * @xend: X end position in pixels from the left
258 * @yend: Y end position in pixels from the top
259 * @colour: Value to write
260 * Return: 0 if OK, -ENOSYS if the display depth is not supported
261 */
262int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend,
263 int yend, u32 colour);
264
265/**
Simon Glassaef8c792025-04-02 06:29:43 +1300266 * video_draw_box() - Draw a box
267 *
268 * Draw a rectangle on the display within the given bounds
269 *
270 * @dev: Device to update
271 * @x0: X start position in pixels from the left
272 * @y0: Y start position in pixels from the top
273 * @x1: X end position in pixels from the left
274 * @y1: Y end position in pixels from the top
275 * @width: width in pixels
276 * @colour: Value to write
277 * Return: 0 if OK, -ENOSYS if the display depth is not supported
278 */
279int video_draw_box(struct udevice *dev, int x0, int y0, int x1, int y1,
280 int width, u32 colour);
281
282/**
Simon Glass623d28f2016-01-18 19:52:15 -0700283 * video_sync() - Sync a device's frame buffer with its hardware
284 *
Michal Simek6bc78092020-12-14 09:14:03 +0100285 * @vid: Device to sync
286 * @force: True to force a sync even if there was one recently (this is
287 * very expensive on sandbox)
288 *
Michal Simek8ae95df2020-12-03 09:30:00 +0100289 * @return: 0 on success, error code otherwise
Michal Simek632e3d42020-12-14 08:47:52 +0100290 *
Simon Glass623d28f2016-01-18 19:52:15 -0700291 * Some frame buffers are cached or have a secondary frame buffer. This
Alexander Grafdb757752022-06-10 00:59:15 +0200292 * function syncs the damaged parts of them up so that the current contents
293 * of the U-Boot frame buffer are displayed to the user. It clears the damage
294 * buffer.
Simon Glass623d28f2016-01-18 19:52:15 -0700295 */
Michal Simek632e3d42020-12-14 08:47:52 +0100296int video_sync(struct udevice *vid, bool force);
Simon Glass623d28f2016-01-18 19:52:15 -0700297
298/**
Heinrich Schuchardt7c0cca52023-08-28 22:40:47 +0200299 * video_sync_all() - Sync all devices' frame buffers with their hardware
Simon Glass623d28f2016-01-18 19:52:15 -0700300 *
301 * This calls video_sync() on all active video devices.
302 */
303void video_sync_all(void);
304
305/**
Simon Glass7e148042022-10-06 08:36:17 -0600306 * video_bmp_get_info() - Get information about a bitmap image
307 *
308 * @bmp_image: Pointer to BMP image to check
309 * @widthp: Returns width in pixels
310 * @heightp: Returns height in pixels
311 * @bpixp: Returns log2 of bits per pixel
312 */
313void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
314 uint *bpixp);
315
316/**
Simon Glass623d28f2016-01-18 19:52:15 -0700317 * video_bmp_display() - Display a BMP file
318 *
319 * @dev: Device to display the bitmap on
320 * @bmp_image: Address of bitmap image to display
321 * @x: X position in pixels from the left
322 * @y: Y position in pixels from the top
323 * @align: true to adjust the coordinates to centre the image. If false
324 * the coordinates are used as is. If true:
325 *
326 * - if a coordinate is 0x7fff then the image will be centred in
327 * that direction
328 * - if a coordinate is -ve then it will be offset to the
329 * left/top of the centre by that many pixels
Simon Glassc80f3fd2023-01-06 08:52:31 -0600330 * - if a coordinate is positive it will be used unchanged.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100331 * Return: 0 if OK, -ve on error
Simon Glass623d28f2016-01-18 19:52:15 -0700332 */
333int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
334 bool align);
335
336/**
337 * video_get_xsize() - Get the width of the display in pixels
338 *
339 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100340 * Return: device frame buffer width in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700341 */
342int video_get_xsize(struct udevice *dev);
343
344/**
345 * video_get_ysize() - Get the height of the display in pixels
346 *
347 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100348 * Return: device frame buffer height in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700349 */
350int video_get_ysize(struct udevice *dev);
351
Simon Glass64635382016-01-21 19:44:52 -0700352/**
353 * Set whether we need to flush the dcache when changing the image. This
354 * defaults to off.
355 *
356 * @param flush non-zero to flush cache after update, 0 to skip
357 */
358void video_set_flush_dcache(struct udevice *dev, bool flush);
359
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100360/**
361 * Set default colors and attributes
362 *
Simon Glass2b063b82018-11-06 15:21:36 -0700363 * @dev: video device
364 * @invert true to invert colours
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100365 */
Simon Glass2b063b82018-11-06 15:21:36 -0700366void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100367
Simon Glass70459902022-10-06 08:36:18 -0600368/**
Simon Glass21320da2025-04-02 06:29:33 +1300369 * video_set_white_on_black() - Change the setting for white-on-black
370 *
371 * This does nothing if the setting is already the same.
372 *
373 * @dev: video device
374 * @white_on_black: true to use white-on-black, false for black-on-white
375 */
376void video_set_white_on_black(struct udevice *dev, bool white_on_black);
377
378/**
Simon Glass70459902022-10-06 08:36:18 -0600379 * video_default_font_height() - Get the default font height
380 *
381 * @dev: video device
382 * Returns: Default font height in pixels, which depends on which console driver
383 * is in use
384 */
385int video_default_font_height(struct udevice *dev);
386
Alexander Grafdb757752022-06-10 00:59:15 +0200387#ifdef CONFIG_VIDEO_DAMAGE
388/**
389 * video_damage() - Notify the video subsystem about screen updates.
390 *
391 * @vid: Device to sync
392 * @x: Upper left X coordinate of the damaged rectangle
393 * @y: Upper left Y coordinate of the damaged rectangle
394 * @width: Width of the damaged rectangle
395 * @height: Height of the damaged rectangle
396 *
397 * Some frame buffers are cached or have a secondary frame buffer. This
398 * function notifies the video subsystem about rectangles that were updated
399 * within the frame buffer. They may only get written to the screen on the
400 * next call to video_sync().
401 */
402void video_damage(struct udevice *vid, int x, int y, int width, int height);
403#else
404static inline void video_damage(struct udevice *vid, int x, int y, int width,
405 int height)
406{
407 return;
408}
409#endif /* CONFIG_VIDEO_DAMAGE */
410
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100411/**
412 * video_is_active() - Test if one video device it active
413 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100414 * Return: true if at least one video device is active, else false.
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100415 */
416bool video_is_active(void);
417
Simon Glass22477422022-10-06 08:36:09 -0600418/**
419 * video_get_u_boot_logo() - Get a pointer to the U-Boot logo
420 *
421 * Returns: Pointer to logo
422 */
423void *video_get_u_boot_logo(void);
424
Simon Glassde368f82022-10-18 07:41:14 -0600425/*
426 * bmp_display() - Display BMP (bitmap) data located in memory
427 *
428 * @addr: address of the bmp data
429 * @x: Position of bitmap from the left side, in pixels
430 * @y: Position of bitmap from the top, in pixels
431 */
432int bmp_display(ulong addr, int x, int y);
433
Nikhil M Jain737d2ed2023-04-20 17:41:06 +0530434/*
435 * bmp_info() - Show information about bmp file
436 *
437 * @addr: address of bmp file
438 * Returns: 0 if OK, else 1 if bmp image not found
439 */
440int bmp_info(ulong addr);
441
Nikhil M Jain76833532023-07-18 14:27:30 +0530442/*
443 * video_reserve_from_bloblist()- Reserve frame-buffer memory for video devices
444 * using blobs.
445 *
446 * @ho: video information passed from SPL
447 * Returns: 0 (always)
448 */
449int video_reserve_from_bloblist(struct video_handoff *ho);
450
Simon Glass853e8d22024-08-21 10:18:55 -0600451/**
452 * video_get_fb() - Get the first framebuffer address
453 *
454 * This function does not probe video devices, so can only be used after a video
455 * device has been activated.
456 *
457 * Return: address of the framebuffer of the first video device found, or 0 if
458 * there is no device
459 */
460ulong video_get_fb(void);
461
wdenk167c5892001-11-03 22:21:15 +0000462#endif