blob: e98d0f9c895db8e381b9f3559d34441f3e57bece [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
24 * @base: Base address of frame buffer, 0 if not yet known
Simon Glass73c9c372020-07-02 21:12:20 -060025 * @copy_base: Base address of a hardware copy of the frame buffer. See
26 * CONFIG_VIDEO_COPY.
Simon Glassdf865d32023-03-10 12:47:17 -080027 * @copy_size: Size of copy framebuffer, used if @size is 0
Simon Glass87a3cd72021-11-19 13:24:03 -070028 * @hide_logo: Hide the logo (used for testing)
Simon Glassfc6b7842020-07-02 21:12:19 -060029 */
Simon Glassb75b15b2020-12-03 16:55:23 -070030struct video_uc_plat {
Simon Glass623d28f2016-01-18 19:52:15 -070031 uint align;
32 uint size;
33 ulong base;
Simon Glass73c9c372020-07-02 21:12:20 -060034 ulong copy_base;
Simon Glassdf865d32023-03-10 12:47:17 -080035 ulong copy_size;
Simon Glass87a3cd72021-11-19 13:24:03 -070036 bool hide_logo;
Simon Glass623d28f2016-01-18 19:52:15 -070037};
38
Simon Glass4947abc2016-02-21 21:08:50 -070039enum video_polarity {
40 VIDEO_ACTIVE_HIGH, /* Pins are active high */
41 VIDEO_ACTIVE_LOW, /* Pins are active low */
42};
43
Simon Glass623d28f2016-01-18 19:52:15 -070044/*
45 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
46 * 2 ^ n
47 */
48enum 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 Kettenis32b73682021-09-25 22:47:36 +020065enum video_format {
66 VIDEO_UNKNOWN,
Michal Simek985eac82023-05-17 10:42:07 +020067 VIDEO_RGBA8888,
Mark Kettenis32b73682021-09-25 22:47:36 +020068 VIDEO_X8B8G8R8,
69 VIDEO_X8R8G8B8,
70 VIDEO_X2R10G10B10,
71};
72
Simon Glass623d28f2016-01-18 19:52:15 -070073/**
74 * struct video_priv - Device information used by the video uclass
75 *
76 * @xsize: Number of pixel columns (e.g. 1366)
77 * @ysize: Number of pixels rows (e.g.. 768)
Simon Glasscd01ef82016-01-14 18:10:52 -070078 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
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
Simon Glass7d186732018-11-29 15:08:52 -070088 * @line_length: Length of each frame buffer line, in bytes. This can be
89 * set by the driver, but if not, the uclass will set it after
90 * probing
Simon Glass623d28f2016-01-18 19:52:15 -070091 * @colour_fg: Foreground colour (pixel value)
92 * @colour_bg: Background colour (pixel value)
93 * @flush_dcache: true to enable flushing of the data cache after
94 * the LCD is updated
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +010095 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Andre Przywara4ed5bc82019-03-23 01:29:56 +000096 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
Simon Glass623d28f2016-01-18 19:52:15 -070097 */
98struct video_priv {
99 /* Things set up by the driver: */
100 ushort xsize;
101 ushort ysize;
102 ushort rot;
103 enum video_log2_bpp bpix;
Mark Kettenis32b73682021-09-25 22:47:36 +0200104 enum video_format format;
Simon Glassb3a72b32016-01-14 18:10:48 -0700105 const char *vidconsole_drv_name;
106 int font_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700107
108 /*
109 * Things that are private to the uclass: don't use these in the
110 * driver
111 */
112 void *fb;
113 int fb_size;
Simon Glass73c9c372020-07-02 21:12:20 -0600114 void *copy_fb;
Simon Glass623d28f2016-01-18 19:52:15 -0700115 int line_length;
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100116 u32 colour_fg;
117 u32 colour_bg;
Simon Glass623d28f2016-01-18 19:52:15 -0700118 bool flush_dcache;
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +0100119 u8 fg_col_idx;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000120 u8 bg_col_idx;
Simon Glass623d28f2016-01-18 19:52:15 -0700121};
122
Michal Simek8ae95df2020-12-03 09:30:00 +0100123/**
124 * struct video_ops - structure for keeping video operations
125 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
126 * displays needs synchronization when data in an FB is available.
127 * For these devices implement video_sync hook to call a sync
128 * function. vid is pointer to video device udevice. Function
129 * should return 0 on success video_sync and error code otherwise
130 */
Simon Glass623d28f2016-01-18 19:52:15 -0700131struct video_ops {
Michal Simek8ae95df2020-12-03 09:30:00 +0100132 int (*video_sync)(struct udevice *vid);
Simon Glass623d28f2016-01-18 19:52:15 -0700133};
134
135#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
136
Simon Glass2a006332022-10-06 08:36:03 -0600137/** enum colour_idx - the 16 colors supported by consoles */
138enum colour_idx {
139 VID_BLACK = 0,
140 VID_RED,
141 VID_GREEN,
142 VID_BROWN,
143 VID_BLUE,
144 VID_MAGENTA,
145 VID_CYAN,
146 VID_LIGHT_GRAY,
147 VID_GRAY,
148 VID_LIGHT_RED,
149 VID_LIGHT_GREEN,
150 VID_YELLOW,
151 VID_LIGHT_BLUE,
152 VID_LIGHT_MAGENTA,
153 VID_LIGHT_CYAN,
154 VID_WHITE,
155
156 VID_COLOUR_COUNT
157};
158
159/**
160 * video_index_to_colour() - convert a color code to a pixel's internal
161 * representation
162 *
163 * The caller has to guarantee that the color index is less than
164 * VID_COLOR_COUNT.
165 *
Simon Glasse85e5012023-06-01 10:22:44 -0600166 * @priv private data of the video device (UCLASS_VIDEO)
Simon Glassd17a6242023-06-01 10:22:48 -0600167 * @idx color index (e.g. VID_YELLOW)
Simon Glass2a006332022-10-06 08:36:03 -0600168 * Return: color value
169 */
Simon Glassd17a6242023-06-01 10:22:48 -0600170u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx);
Simon Glass2a006332022-10-06 08:36:03 -0600171
Simon Glass623d28f2016-01-18 19:52:15 -0700172/**
173 * video_reserve() - Reserve frame-buffer memory for video devices
174 *
175 * Note: This function is for internal use.
176 *
Simon Glass71fa5b42020-12-03 16:55:18 -0700177 * This uses the uclass plat's @size and @align members to figure out
Simon Glass623d28f2016-01-18 19:52:15 -0700178 * a size and position for each frame buffer as part of the pre-relocation
179 * process of determining the post-relocation memory layout.
180 *
181 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
182 * is set to the final value.
183 *
184 * @addrp: On entry, the top of available memory. On exit, the new top,
185 * after allocating the required memory.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100186 * Return: 0
Simon Glass623d28f2016-01-18 19:52:15 -0700187 */
188int video_reserve(ulong *addrp);
189
190/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600191 * video_clear() - Clear a device's frame buffer to background colour.
Rob Clark06e7a0d2017-09-13 18:12:21 -0400192 *
193 * @dev: Device to clear
Simon Glass2baa6f82022-10-06 08:36:08 -0600194 * Return: 0 on success
Rob Clark06e7a0d2017-09-13 18:12:21 -0400195 */
Simon Glass55343122018-10-01 12:22:26 -0600196int video_clear(struct udevice *dev);
Rob Clark06e7a0d2017-09-13 18:12:21 -0400197
198/**
Simon Glass2baa6f82022-10-06 08:36:08 -0600199 * video_fill() - Fill a device's frame buffer to a colour.
200 *
201 * @dev: Device to fill
202 * @colour: Colour to use, in the frame buffer's format
203 * Return: 0 on success
204 */
205int video_fill(struct udevice *dev, u32 colour);
206
207/**
Simon Glass062673b2023-06-01 10:22:33 -0600208 * video_fill_part() - Erase a region
209 *
210 * Erase a rectangle of the display within the given bounds.
211 *
212 * @dev: Device to update
213 * @xstart: X start position in pixels from the left
214 * @ystart: Y start position in pixels from the top
215 * @xend: X end position in pixels from the left
216 * @yend: Y end position in pixels from the top
217 * @colour: Value to write
218 * Return: 0 if OK, -ENOSYS if the display depth is not supported
219 */
220int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend,
221 int yend, u32 colour);
222
223/**
Simon Glass623d28f2016-01-18 19:52:15 -0700224 * video_sync() - Sync a device's frame buffer with its hardware
225 *
Michal Simek6bc78092020-12-14 09:14:03 +0100226 * @vid: Device to sync
227 * @force: True to force a sync even if there was one recently (this is
228 * very expensive on sandbox)
229 *
Michal Simek8ae95df2020-12-03 09:30:00 +0100230 * @return: 0 on success, error code otherwise
Michal Simek632e3d42020-12-14 08:47:52 +0100231 *
Simon Glass623d28f2016-01-18 19:52:15 -0700232 * Some frame buffers are cached or have a secondary frame buffer. This
233 * function syncs these up so that the current contents of the U-Boot frame
234 * buffer are displayed to the user.
Simon Glass623d28f2016-01-18 19:52:15 -0700235 */
Michal Simek632e3d42020-12-14 08:47:52 +0100236int video_sync(struct udevice *vid, bool force);
Simon Glass623d28f2016-01-18 19:52:15 -0700237
238/**
239 * video_sync_all() - Sync all devices' frame buffers with there hardware
240 *
241 * This calls video_sync() on all active video devices.
242 */
243void video_sync_all(void);
244
245/**
Simon Glass7e148042022-10-06 08:36:17 -0600246 * video_bmp_get_info() - Get information about a bitmap image
247 *
248 * @bmp_image: Pointer to BMP image to check
249 * @widthp: Returns width in pixels
250 * @heightp: Returns height in pixels
251 * @bpixp: Returns log2 of bits per pixel
252 */
253void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
254 uint *bpixp);
255
256/**
Simon Glass623d28f2016-01-18 19:52:15 -0700257 * video_bmp_display() - Display a BMP file
258 *
259 * @dev: Device to display the bitmap on
260 * @bmp_image: Address of bitmap image to display
261 * @x: X position in pixels from the left
262 * @y: Y position in pixels from the top
263 * @align: true to adjust the coordinates to centre the image. If false
264 * the coordinates are used as is. If true:
265 *
266 * - if a coordinate is 0x7fff then the image will be centred in
267 * that direction
268 * - if a coordinate is -ve then it will be offset to the
269 * left/top of the centre by that many pixels
Simon Glassc80f3fd2023-01-06 08:52:31 -0600270 * - if a coordinate is positive it will be used unchanged.
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100271 * Return: 0 if OK, -ve on error
Simon Glass623d28f2016-01-18 19:52:15 -0700272 */
273int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
274 bool align);
275
276/**
277 * video_get_xsize() - Get the width of the display in pixels
278 *
279 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100280 * Return: device frame buffer width in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700281 */
282int video_get_xsize(struct udevice *dev);
283
284/**
285 * video_get_ysize() - Get the height of the display in pixels
286 *
287 * @dev: Device to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100288 * Return: device frame buffer height in pixels
Simon Glass623d28f2016-01-18 19:52:15 -0700289 */
290int video_get_ysize(struct udevice *dev);
291
Simon Glass64635382016-01-21 19:44:52 -0700292/**
293 * Set whether we need to flush the dcache when changing the image. This
294 * defaults to off.
295 *
296 * @param flush non-zero to flush cache after update, 0 to skip
297 */
298void video_set_flush_dcache(struct udevice *dev, bool flush);
299
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100300/**
301 * Set default colors and attributes
302 *
Simon Glass2b063b82018-11-06 15:21:36 -0700303 * @dev: video device
304 * @invert true to invert colours
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100305 */
Simon Glass2b063b82018-11-06 15:21:36 -0700306void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100307
Simon Glass70459902022-10-06 08:36:18 -0600308/**
309 * video_default_font_height() - Get the default font height
310 *
311 * @dev: video device
312 * Returns: Default font height in pixels, which depends on which console driver
313 * is in use
314 */
315int video_default_font_height(struct udevice *dev);
316
Simon Glass73c9c372020-07-02 21:12:20 -0600317#ifdef CONFIG_VIDEO_COPY
318/**
319 * vidconsole_sync_copy() - Sync back to the copy framebuffer
320 *
321 * This ensures that the copy framebuffer has the same data as the framebuffer
322 * for a particular region. It should be called after the framebuffer is updated
323 *
324 * @from and @to can be in either order. The region between them is synced.
325 *
326 * @dev: Vidconsole device being updated
327 * @from: Start/end address within the framebuffer (->fb)
328 * @to: Other address within the frame buffer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100329 * Return: 0 if OK, -EFAULT if the start address is before the start of the
Simon Glass73c9c372020-07-02 21:12:20 -0600330 * frame buffer start
331 */
332int video_sync_copy(struct udevice *dev, void *from, void *to);
Simon Glass62b535e2021-01-13 20:29:46 -0700333
334/**
335 * video_sync_copy_all() - Sync the entire framebuffer to the copy
336 *
337 * @dev: Vidconsole device being updated
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100338 * Return: 0 (always)
Simon Glass62b535e2021-01-13 20:29:46 -0700339 */
340int video_sync_copy_all(struct udevice *dev);
Simon Glass73c9c372020-07-02 21:12:20 -0600341#else
342static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
343{
344 return 0;
345}
Simon Glass62b535e2021-01-13 20:29:46 -0700346
347static inline int video_sync_copy_all(struct udevice *dev)
348{
349 return 0;
350}
351
Simon Glass73c9c372020-07-02 21:12:20 -0600352#endif
353
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100354/**
355 * video_is_active() - Test if one video device it active
356 *
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100357 * Return: true if at least one video device is active, else false.
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100358 */
359bool video_is_active(void);
360
Simon Glass22477422022-10-06 08:36:09 -0600361/**
362 * video_get_u_boot_logo() - Get a pointer to the U-Boot logo
363 *
364 * Returns: Pointer to logo
365 */
366void *video_get_u_boot_logo(void);
367
Simon Glassde368f82022-10-18 07:41:14 -0600368/*
369 * bmp_display() - Display BMP (bitmap) data located in memory
370 *
371 * @addr: address of the bmp data
372 * @x: Position of bitmap from the left side, in pixels
373 * @y: Position of bitmap from the top, in pixels
374 */
375int bmp_display(ulong addr, int x, int y);
376
Nikhil M Jain737d2ed2023-04-20 17:41:06 +0530377/*
378 * bmp_info() - Show information about bmp file
379 *
380 * @addr: address of bmp file
381 * Returns: 0 if OK, else 1 if bmp image not found
382 */
383int bmp_info(ulong addr);
384
wdenk167c5892001-11-03 22:21:15 +0000385#endif