blob: 2fe2f73a865ba5cbf726d010f4434de811f7feaa [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 Glass623d28f2016-01-18 19:52:15 -0700103 */
104struct 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 Kettenis32b73682021-09-25 22:47:36 +0200110 enum video_format format;
Simon Glassb3a72b32016-01-14 18:10:48 -0700111 const char *vidconsole_drv_name;
112 int font_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700113
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 Glass73c9c372020-07-02 21:12:20 -0600120 void *copy_fb;
Alexander Grafdb757752022-06-10 00:59:15 +0200121 struct {
122 int xstart;
123 int ystart;
124 int xend;
125 int yend;
126 } damage;
Simon Glass623d28f2016-01-18 19:52:15 -0700127 int line_length;
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100128 u32 colour_fg;
129 u32 colour_bg;
Simon Glass623d28f2016-01-18 19:52:15 -0700130 bool flush_dcache;
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +0100131 u8 fg_col_idx;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000132 u8 bg_col_idx;
Simon Glass7f6280f2024-07-31 08:44:09 -0600133 ulong last_sync;
Simon Glass623d28f2016-01-18 19:52:15 -0700134};
135
Michal Simek8ae95df2020-12-03 09:30:00 +0100136/**
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 Glass623d28f2016-01-18 19:52:15 -0700144struct video_ops {
Michal Simek8ae95df2020-12-03 09:30:00 +0100145 int (*video_sync)(struct udevice *vid);
Simon Glass623d28f2016-01-18 19:52:15 -0700146};
147
148#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
149
Simon Glass358077b2023-07-15 21:38:59 -0600150/**
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 Glass30aaa9b2025-01-10 17:00:19 -0700164 * @format: Video format (enum video_format)
Simon Glass358077b2023-07-15 21:38:59 -0600165 */
166struct video_handoff {
167 u64 fb;
168 u32 size;
169 u16 xsize;
170 u16 ysize;
171 u32 line_length;
172 u8 bpix;
Simon Glass30aaa9b2025-01-10 17:00:19 -0700173 u8 format;
Simon Glass358077b2023-07-15 21:38:59 -0600174};
175
Simon Glass2a006332022-10-06 08:36:03 -0600176/** enum colour_idx - the 16 colors supported by consoles */
177enum 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 Glassbda3adc2024-10-14 16:31:53 -0600194 VID_DARK_GREY,
Simon Glass2a006332022-10-06 08:36:03 -0600195
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 Glasse85e5012023-06-01 10:22:44 -0600206 * @priv private data of the video device (UCLASS_VIDEO)
Simon Glassd17a6242023-06-01 10:22:48 -0600207 * @idx color index (e.g. VID_YELLOW)
Simon Glass2a006332022-10-06 08:36:03 -0600208 * Return: color value
209 */
Simon Glassd17a6242023-06-01 10:22:48 -0600210u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx);
Simon Glass2a006332022-10-06 08:36:03 -0600211
Simon Glass623d28f2016-01-18 19:52:15 -0700212/**
213 * video_reserve() - Reserve frame-buffer memory for video devices
214 *
215 * Note: This function is for internal use.
216 *
Simon Glass71fa5b42020-12-03 16:55:18 -0700217 * This uses the uclass plat's @size and @align members to figure out
Simon Glass623d28f2016-01-18 19:52:15 -0700218 * 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 Schuchardt47b4c022022-01-19 18:05:50 +0100226 * Return: 0
Simon Glass623d28f2016-01-18 19:52:15 -0700227 */
228int video_reserve(ulong *addrp);
229
230/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600231 * video_clear() - Clear a device's frame buffer to background colour.
Rob Clark06e7a0d2017-09-13 18:12:21 -0400232 *
233 * @dev: Device to clear
Simon Glass2baa6f82022-10-06 08:36:08 -0600234 * Return: 0 on success
Rob Clark06e7a0d2017-09-13 18:12:21 -0400235 */
Simon Glass55343122018-10-01 12:22:26 -0600236int video_clear(struct udevice *dev);
Rob Clark06e7a0d2017-09-13 18:12:21 -0400237
238/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600239 * 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 */
245int video_fill(struct udevice *dev, u32 colour);
246
247/**
Simon Glass062673b2023-06-01 10:22:33 -0600248 * 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 */
260int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend,
261 int yend, u32 colour);
262
263/**
Simon Glass623d28f2016-01-18 19:52:15 -0700264 * video_sync() - Sync a device's frame buffer with its hardware
265 *
Michal Simek6bc78092020-12-14 09:14:03 +0100266 * @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 Simek8ae95df2020-12-03 09:30:00 +0100270 * @return: 0 on success, error code otherwise
Michal Simek632e3d42020-12-14 08:47:52 +0100271 *
Simon Glass623d28f2016-01-18 19:52:15 -0700272 * Some frame buffers are cached or have a secondary frame buffer. This
Alexander Grafdb757752022-06-10 00:59:15 +0200273 * 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 Glass623d28f2016-01-18 19:52:15 -0700276 */
Michal Simek632e3d42020-12-14 08:47:52 +0100277int video_sync(struct udevice *vid, bool force);
Simon Glass623d28f2016-01-18 19:52:15 -0700278
279/**
Heinrich Schuchardt7c0cca52023-08-28 22:40:47 +0200280 * video_sync_all() - Sync all devices' frame buffers with their hardware
Simon Glass623d28f2016-01-18 19:52:15 -0700281 *
282 * This calls video_sync() on all active video devices.
283 */
284void video_sync_all(void);
285
286/**
Simon Glass7e148042022-10-06 08:36:17 -0600287 * 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 */
294void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
295 uint *bpixp);
296
297/**
Simon Glass623d28f2016-01-18 19:52:15 -0700298 * 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 Glassc80f3fd2023-01-06 08:52:31 -0600311 * - if a coordinate is positive it will be used unchanged.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100312 * Return: 0 if OK, -ve on error
Simon Glass623d28f2016-01-18 19:52:15 -0700313 */
314int 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 Schuchardt47b4c022022-01-19 18:05:50 +0100321 * Return: device frame buffer width in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700322 */
323int 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 Schuchardt47b4c022022-01-19 18:05:50 +0100329 * Return: device frame buffer height in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700330 */
331int video_get_ysize(struct udevice *dev);
332
Simon Glass64635382016-01-21 19:44:52 -0700333/**
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 */
339void video_set_flush_dcache(struct udevice *dev, bool flush);
340
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100341/**
342 * Set default colors and attributes
343 *
Simon Glass2b063b82018-11-06 15:21:36 -0700344 * @dev: video device
345 * @invert true to invert colours
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100346 */
Simon Glass2b063b82018-11-06 15:21:36 -0700347void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100348
Simon Glass70459902022-10-06 08:36:18 -0600349/**
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 */
356int video_default_font_height(struct udevice *dev);
357
Alexander Grafdb757752022-06-10 00:59:15 +0200358#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 */
373void video_damage(struct udevice *vid, int x, int y, int width, int height);
374#else
375static 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 Delaunayefcc84b2021-11-15 16:32:20 +0100382/**
383 * video_is_active() - Test if one video device it active
384 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100385 * Return: true if at least one video device is active, else false.
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100386 */
387bool video_is_active(void);
388
Simon Glass22477422022-10-06 08:36:09 -0600389/**
390 * video_get_u_boot_logo() - Get a pointer to the U-Boot logo
391 *
392 * Returns: Pointer to logo
393 */
394void *video_get_u_boot_logo(void);
395
Simon Glassde368f82022-10-18 07:41:14 -0600396/*
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 */
403int bmp_display(ulong addr, int x, int y);
404
Nikhil M Jain737d2ed2023-04-20 17:41:06 +0530405/*
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 */
411int bmp_info(ulong addr);
412
Nikhil M Jain76833532023-07-18 14:27:30 +0530413/*
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 */
420int video_reserve_from_bloblist(struct video_handoff *ho);
421
Simon Glass853e8d22024-08-21 10:18:55 -0600422/**
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 */
431ulong video_get_fb(void);
432
wdenk167c5892001-11-03 22:21:15 +0000433#endif