blob: fd19723b1d2627c99efaffe48c246c9243ce6d4f [file] [log] [blame]
wdenk167c5892001-11-03 22:21:15 +00001/*
Simon Glass508001472022-01-23 07:04:09 -07002 * Video uclass to support displays (see also vidconsole for text)
Simon Glass1acafc72016-01-18 19:52:15 -07003 *
4 * Copyright (c) 2015 Google, Inc
Simon Glass1acafc72016-01-18 19:52:15 -07005 */
wdenk167c5892001-11-03 22:21:15 +00006
7#ifndef _VIDEO_H_
8#define _VIDEO_H_
9
Simon Glass1acafc72016-01-18 19:52:15 -070010#include <stdio_dev.h>
11
Simon Glassb9dea622019-10-27 09:54:03 -060012struct udevice;
13
Simon Glass5a6cea32020-07-02 21:12:19 -060014/**
Simon Glass8a8d24b2020-12-03 16:55:23 -070015 * struct video_uc_plat - uclass platform data for a video device
Simon Glass5a6cea32020-07-02 21:12:19 -060016 *
17 * This holds information that the uclass needs to know about each device. It
Simon Glasscaa4daa2020-12-03 16:55:18 -070018 * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at
Simon Glass5a6cea32020-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 Glassa75cf702023-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 Glass315e3672023-03-10 12:47:17 -080030 * @copy_size: Size of copy framebuffer, used if @size is 0
Simon Glass84e63ab2021-11-19 13:24:03 -070031 * @hide_logo: Hide the logo (used for testing)
Simon Glass5a6cea32020-07-02 21:12:19 -060032 */
Simon Glass8a8d24b2020-12-03 16:55:23 -070033struct video_uc_plat {
Simon Glass1acafc72016-01-18 19:52:15 -070034 uint align;
35 uint size;
36 ulong base;
Simon Glass9beac5d2020-07-02 21:12:20 -060037 ulong copy_base;
Simon Glass315e3672023-03-10 12:47:17 -080038 ulong copy_size;
Simon Glass84e63ab2021-11-19 13:24:03 -070039 bool hide_logo;
Simon Glass1acafc72016-01-18 19:52:15 -070040};
41
Simon Glass21c561b2016-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 Glass1acafc72016-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
60/*
61 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
62 * brackets to allow multiplication by fractional pixels.
63 */
Dan Carpentercc05d352023-07-26 09:54:08 +030064#define VNBYTES(bpix) ((1 << (bpix)) / 8)
Simon Glass1acafc72016-01-18 19:52:15 -070065
66#define VNBITS(bpix) (1 << (bpix))
67
Mark Kettenis0efe41c2021-09-25 22:47:36 +020068enum video_format {
69 VIDEO_UNKNOWN,
Michal Simeke9500ba2023-05-17 10:42:07 +020070 VIDEO_RGBA8888,
Mark Kettenis0efe41c2021-09-25 22:47:36 +020071 VIDEO_X8B8G8R8,
72 VIDEO_X8R8G8B8,
73 VIDEO_X2R10G10B10,
74};
75
Simon Glass1acafc72016-01-18 19:52:15 -070076/**
77 * struct video_priv - Device information used by the video uclass
78 *
79 * @xsize: Number of pixel columns (e.g. 1366)
80 * @ysize: Number of pixels rows (e.g.. 768)
Simon Glass8cdae1d2016-01-14 18:10:52 -070081 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
Simon Glass8c466ed2018-10-01 12:22:48 -060082 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
Mark Kettenis0efe41c2021-09-25 22:47:36 +020083 * @format: Pixel format (enum video_format)
Simon Glass826f35f2016-01-14 18:10:48 -070084 * @vidconsole_drv_name: Driver to use for the text console, NULL to
85 * select automatically
86 * @font_size: Font size in pixels (0 to use a default value)
Simon Glass1acafc72016-01-18 19:52:15 -070087 * @fb: Frame buffer
88 * @fb_size: Frame buffer size
Simon Glass9beac5d2020-07-02 21:12:20 -060089 * @copy_fb: Copy of the frame buffer to keep up to date; see struct
Simon Glass8a8d24b2020-12-03 16:55:23 -070090 * video_uc_plat
Simon Glass06696eb2018-11-29 15:08:52 -070091 * @line_length: Length of each frame buffer line, in bytes. This can be
92 * set by the driver, but if not, the uclass will set it after
93 * probing
Simon Glass1acafc72016-01-18 19:52:15 -070094 * @colour_fg: Foreground colour (pixel value)
95 * @colour_bg: Background colour (pixel value)
96 * @flush_dcache: true to enable flushing of the data cache after
97 * the LCD is updated
Heinrich Schuchardt9ffa4d12018-02-08 21:47:12 +010098 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Andre Przywaraeabb0722019-03-23 01:29:56 +000099 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
Simon Glassb0239482024-07-31 08:44:09 -0600100 * @last_sync: Monotonic time of last video sync
Simon Glass1acafc72016-01-18 19:52:15 -0700101 */
102struct video_priv {
103 /* Things set up by the driver: */
104 ushort xsize;
105 ushort ysize;
106 ushort rot;
107 enum video_log2_bpp bpix;
Mark Kettenis0efe41c2021-09-25 22:47:36 +0200108 enum video_format format;
Simon Glass826f35f2016-01-14 18:10:48 -0700109 const char *vidconsole_drv_name;
110 int font_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700111
112 /*
113 * Things that are private to the uclass: don't use these in the
114 * driver
115 */
116 void *fb;
117 int fb_size;
Simon Glass9beac5d2020-07-02 21:12:20 -0600118 void *copy_fb;
Simon Glass1acafc72016-01-18 19:52:15 -0700119 int line_length;
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100120 u32 colour_fg;
121 u32 colour_bg;
Simon Glass1acafc72016-01-18 19:52:15 -0700122 bool flush_dcache;
Heinrich Schuchardt9ffa4d12018-02-08 21:47:12 +0100123 u8 fg_col_idx;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000124 u8 bg_col_idx;
Simon Glassb0239482024-07-31 08:44:09 -0600125 ulong last_sync;
Simon Glass1acafc72016-01-18 19:52:15 -0700126};
127
Michal Simek9d69c2d2020-12-03 09:30:00 +0100128/**
129 * struct video_ops - structure for keeping video operations
130 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
131 * displays needs synchronization when data in an FB is available.
132 * For these devices implement video_sync hook to call a sync
133 * function. vid is pointer to video device udevice. Function
134 * should return 0 on success video_sync and error code otherwise
135 */
Simon Glass1acafc72016-01-18 19:52:15 -0700136struct video_ops {
Michal Simek9d69c2d2020-12-03 09:30:00 +0100137 int (*video_sync)(struct udevice *vid);
Simon Glass1acafc72016-01-18 19:52:15 -0700138};
139
140#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
141
Simon Glass03fe79c2023-07-15 21:38:59 -0600142/**
143 * struct video_handoff - video information passed from SPL
144 *
145 * This is used when video is set up by SPL, to provide the details to U-Boot
146 * proper.
147 *
148 * @fb: Base address of frame buffer, 0 if not yet known
149 * @size: Frame-buffer size, in bytes
150 * @xsize: Number of pixel columns (e.g. 1366)
151 * @ysize: Number of pixels rows (e.g.. 768)
152 * @line_length: Length of each frame buffer line, in bytes. This can be
153 * set by the driver, but if not, the uclass will set it after
154 * probing
155 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
156 */
157struct video_handoff {
158 u64 fb;
159 u32 size;
160 u16 xsize;
161 u16 ysize;
162 u32 line_length;
163 u8 bpix;
164};
165
Simon Glassa032e4b2022-10-06 08:36:03 -0600166/** enum colour_idx - the 16 colors supported by consoles */
167enum colour_idx {
168 VID_BLACK = 0,
169 VID_RED,
170 VID_GREEN,
171 VID_BROWN,
172 VID_BLUE,
173 VID_MAGENTA,
174 VID_CYAN,
175 VID_LIGHT_GRAY,
176 VID_GRAY,
177 VID_LIGHT_RED,
178 VID_LIGHT_GREEN,
179 VID_YELLOW,
180 VID_LIGHT_BLUE,
181 VID_LIGHT_MAGENTA,
182 VID_LIGHT_CYAN,
183 VID_WHITE,
Simon Glass52c19172024-10-14 16:31:53 -0600184 VID_DARK_GREY,
Simon Glassa032e4b2022-10-06 08:36:03 -0600185
186 VID_COLOUR_COUNT
187};
188
189/**
190 * video_index_to_colour() - convert a color code to a pixel's internal
191 * representation
192 *
193 * The caller has to guarantee that the color index is less than
194 * VID_COLOR_COUNT.
195 *
Simon Glass7ea207d2023-06-01 10:22:44 -0600196 * @priv private data of the video device (UCLASS_VIDEO)
Simon Glass2d6ee922023-06-01 10:22:48 -0600197 * @idx color index (e.g. VID_YELLOW)
Simon Glassa032e4b2022-10-06 08:36:03 -0600198 * Return: color value
199 */
Simon Glass2d6ee922023-06-01 10:22:48 -0600200u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx);
Simon Glassa032e4b2022-10-06 08:36:03 -0600201
Simon Glass1acafc72016-01-18 19:52:15 -0700202/**
203 * video_reserve() - Reserve frame-buffer memory for video devices
204 *
205 * Note: This function is for internal use.
206 *
Simon Glasscaa4daa2020-12-03 16:55:18 -0700207 * This uses the uclass plat's @size and @align members to figure out
Simon Glass1acafc72016-01-18 19:52:15 -0700208 * a size and position for each frame buffer as part of the pre-relocation
209 * process of determining the post-relocation memory layout.
210 *
211 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
212 * is set to the final value.
213 *
214 * @addrp: On entry, the top of available memory. On exit, the new top,
215 * after allocating the required memory.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100216 * Return: 0
Simon Glass1acafc72016-01-18 19:52:15 -0700217 */
218int video_reserve(ulong *addrp);
219
220/**
Simon Glass50d562c2022-10-06 08:36:08 -0600221 * video_clear() - Clear a device's frame buffer to background colour.
Rob Clarka085aa12017-09-13 18:12:21 -0400222 *
223 * @dev: Device to clear
Simon Glass50d562c2022-10-06 08:36:08 -0600224 * Return: 0 on success
Rob Clarka085aa12017-09-13 18:12:21 -0400225 */
Simon Glassc6ebd012018-10-01 12:22:26 -0600226int video_clear(struct udevice *dev);
Rob Clarka085aa12017-09-13 18:12:21 -0400227
228/**
Simon Glass50d562c2022-10-06 08:36:08 -0600229 * video_fill() - Fill a device's frame buffer to a colour.
230 *
231 * @dev: Device to fill
232 * @colour: Colour to use, in the frame buffer's format
233 * Return: 0 on success
234 */
235int video_fill(struct udevice *dev, u32 colour);
236
237/**
Simon Glass0ab4f912023-06-01 10:22:33 -0600238 * video_fill_part() - Erase a region
239 *
240 * Erase a rectangle of the display within the given bounds.
241 *
242 * @dev: Device to update
243 * @xstart: X start position in pixels from the left
244 * @ystart: Y start position in pixels from the top
245 * @xend: X end position in pixels from the left
246 * @yend: Y end position in pixels from the top
247 * @colour: Value to write
248 * Return: 0 if OK, -ENOSYS if the display depth is not supported
249 */
250int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend,
251 int yend, u32 colour);
252
253/**
Simon Glass1acafc72016-01-18 19:52:15 -0700254 * video_sync() - Sync a device's frame buffer with its hardware
255 *
Michal Simek17da3102020-12-14 09:14:03 +0100256 * @vid: Device to sync
257 * @force: True to force a sync even if there was one recently (this is
258 * very expensive on sandbox)
259 *
Michal Simek9d69c2d2020-12-03 09:30:00 +0100260 * @return: 0 on success, error code otherwise
Michal Simek9de731f2020-12-14 08:47:52 +0100261 *
Simon Glass1acafc72016-01-18 19:52:15 -0700262 * Some frame buffers are cached or have a secondary frame buffer. This
263 * function syncs these up so that the current contents of the U-Boot frame
264 * buffer are displayed to the user.
Simon Glass1acafc72016-01-18 19:52:15 -0700265 */
Michal Simek9de731f2020-12-14 08:47:52 +0100266int video_sync(struct udevice *vid, bool force);
Simon Glass1acafc72016-01-18 19:52:15 -0700267
268/**
Heinrich Schuchardt0926de22023-08-28 22:40:47 +0200269 * video_sync_all() - Sync all devices' frame buffers with their hardware
Simon Glass1acafc72016-01-18 19:52:15 -0700270 *
271 * This calls video_sync() on all active video devices.
272 */
273void video_sync_all(void);
274
275/**
Simon Glasse90322f2022-10-06 08:36:17 -0600276 * video_bmp_get_info() - Get information about a bitmap image
277 *
278 * @bmp_image: Pointer to BMP image to check
279 * @widthp: Returns width in pixels
280 * @heightp: Returns height in pixels
281 * @bpixp: Returns log2 of bits per pixel
282 */
283void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
284 uint *bpixp);
285
286/**
Simon Glass1acafc72016-01-18 19:52:15 -0700287 * video_bmp_display() - Display a BMP file
288 *
289 * @dev: Device to display the bitmap on
290 * @bmp_image: Address of bitmap image to display
291 * @x: X position in pixels from the left
292 * @y: Y position in pixels from the top
293 * @align: true to adjust the coordinates to centre the image. If false
294 * the coordinates are used as is. If true:
295 *
296 * - if a coordinate is 0x7fff then the image will be centred in
297 * that direction
298 * - if a coordinate is -ve then it will be offset to the
299 * left/top of the centre by that many pixels
Simon Glass5abd8bb2023-01-06 08:52:31 -0600300 * - if a coordinate is positive it will be used unchanged.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100301 * Return: 0 if OK, -ve on error
Simon Glass1acafc72016-01-18 19:52:15 -0700302 */
303int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
304 bool align);
305
306/**
307 * video_get_xsize() - Get the width of the display in pixels
308 *
309 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100310 * Return: device frame buffer width in pixels
Simon Glass1acafc72016-01-18 19:52:15 -0700311 */
312int video_get_xsize(struct udevice *dev);
313
314/**
315 * video_get_ysize() - Get the height of the display in pixels
316 *
317 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100318 * Return: device frame buffer height in pixels
Simon Glass1acafc72016-01-18 19:52:15 -0700319 */
320int video_get_ysize(struct udevice *dev);
321
Simon Glass68dcdc92016-01-21 19:44:52 -0700322/**
323 * Set whether we need to flush the dcache when changing the image. This
324 * defaults to off.
325 *
326 * @param flush non-zero to flush cache after update, 0 to skip
327 */
328void video_set_flush_dcache(struct udevice *dev, bool flush);
329
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100330/**
331 * Set default colors and attributes
332 *
Simon Glassb9f210a2018-11-06 15:21:36 -0700333 * @dev: video device
334 * @invert true to invert colours
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100335 */
Simon Glassb9f210a2018-11-06 15:21:36 -0700336void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100337
Simon Glassc830e282022-10-06 08:36:18 -0600338/**
339 * video_default_font_height() - Get the default font height
340 *
341 * @dev: video device
342 * Returns: Default font height in pixels, which depends on which console driver
343 * is in use
344 */
345int video_default_font_height(struct udevice *dev);
346
Simon Glass9beac5d2020-07-02 21:12:20 -0600347#ifdef CONFIG_VIDEO_COPY
348/**
349 * vidconsole_sync_copy() - Sync back to the copy framebuffer
350 *
351 * This ensures that the copy framebuffer has the same data as the framebuffer
352 * for a particular region. It should be called after the framebuffer is updated
353 *
354 * @from and @to can be in either order. The region between them is synced.
355 *
356 * @dev: Vidconsole device being updated
357 * @from: Start/end address within the framebuffer (->fb)
358 * @to: Other address within the frame buffer
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100359 * Return: 0 if OK, -EFAULT if the start address is before the start of the
Simon Glass9beac5d2020-07-02 21:12:20 -0600360 * frame buffer start
361 */
362int video_sync_copy(struct udevice *dev, void *from, void *to);
Simon Glass7d701162021-01-13 20:29:46 -0700363
364/**
365 * video_sync_copy_all() - Sync the entire framebuffer to the copy
366 *
367 * @dev: Vidconsole device being updated
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100368 * Return: 0 (always)
Simon Glass7d701162021-01-13 20:29:46 -0700369 */
370int video_sync_copy_all(struct udevice *dev);
Simon Glass9beac5d2020-07-02 21:12:20 -0600371#else
372static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
373{
374 return 0;
375}
Simon Glass7d701162021-01-13 20:29:46 -0700376
377static inline int video_sync_copy_all(struct udevice *dev)
378{
379 return 0;
380}
381
Simon Glass9beac5d2020-07-02 21:12:20 -0600382#endif
383
Patrick Delaunay2e2e6d82021-11-15 16:32:20 +0100384/**
385 * video_is_active() - Test if one video device it active
386 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100387 * Return: true if at least one video device is active, else false.
Patrick Delaunay2e2e6d82021-11-15 16:32:20 +0100388 */
389bool video_is_active(void);
390
Simon Glass0d389012022-10-06 08:36:09 -0600391/**
392 * video_get_u_boot_logo() - Get a pointer to the U-Boot logo
393 *
394 * Returns: Pointer to logo
395 */
396void *video_get_u_boot_logo(void);
397
Simon Glassf24404d2022-10-18 07:41:14 -0600398/*
399 * bmp_display() - Display BMP (bitmap) data located in memory
400 *
401 * @addr: address of the bmp data
402 * @x: Position of bitmap from the left side, in pixels
403 * @y: Position of bitmap from the top, in pixels
404 */
405int bmp_display(ulong addr, int x, int y);
406
Nikhil M Jain58182b22023-04-20 17:41:06 +0530407/*
408 * bmp_info() - Show information about bmp file
409 *
410 * @addr: address of bmp file
411 * Returns: 0 if OK, else 1 if bmp image not found
412 */
413int bmp_info(ulong addr);
414
Nikhil M Jainccd21ee2023-07-18 14:27:30 +0530415/*
416 * video_reserve_from_bloblist()- Reserve frame-buffer memory for video devices
417 * using blobs.
418 *
419 * @ho: video information passed from SPL
420 * Returns: 0 (always)
421 */
422int video_reserve_from_bloblist(struct video_handoff *ho);
423
Simon Glassb5c59232024-08-21 10:18:55 -0600424/**
425 * video_get_fb() - Get the first framebuffer address
426 *
427 * This function does not probe video devices, so can only be used after a video
428 * device has been activated.
429 *
430 * Return: address of the framebuffer of the first video device found, or 0 if
431 * there is no device
432 */
433ulong video_get_fb(void);
434
wdenk167c5892001-11-03 22:21:15 +0000435#endif