blob: 43e2c8997783f1c95979762b7df43d49c2c48db3 [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
24 * @base: Base address of frame buffer, 0 if not yet known
Simon Glass9beac5d2020-07-02 21:12:20 -060025 * @copy_base: Base address of a hardware copy of the frame buffer. See
26 * CONFIG_VIDEO_COPY.
Simon Glass84e63ab2021-11-19 13:24:03 -070027 * @hide_logo: Hide the logo (used for testing)
Simon Glass5a6cea32020-07-02 21:12:19 -060028 */
Simon Glass8a8d24b2020-12-03 16:55:23 -070029struct video_uc_plat {
Simon Glass1acafc72016-01-18 19:52:15 -070030 uint align;
31 uint size;
32 ulong base;
Simon Glass9beac5d2020-07-02 21:12:20 -060033 ulong copy_base;
Simon Glass84e63ab2021-11-19 13:24:03 -070034 bool hide_logo;
Simon Glass1acafc72016-01-18 19:52:15 -070035};
36
Simon Glass21c561b2016-02-21 21:08:50 -070037enum video_polarity {
38 VIDEO_ACTIVE_HIGH, /* Pins are active high */
39 VIDEO_ACTIVE_LOW, /* Pins are active low */
40};
41
Simon Glass1acafc72016-01-18 19:52:15 -070042/*
43 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
44 * 2 ^ n
45 */
46enum video_log2_bpp {
47 VIDEO_BPP1 = 0,
48 VIDEO_BPP2,
49 VIDEO_BPP4,
50 VIDEO_BPP8,
51 VIDEO_BPP16,
52 VIDEO_BPP32,
53};
54
55/*
56 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
57 * brackets to allow multiplication by fractional pixels.
58 */
59#define VNBYTES(bpix) (1 << (bpix)) / 8
60
61#define VNBITS(bpix) (1 << (bpix))
62
Mark Kettenis0efe41c2021-09-25 22:47:36 +020063enum video_format {
64 VIDEO_UNKNOWN,
65 VIDEO_X8B8G8R8,
66 VIDEO_X8R8G8B8,
67 VIDEO_X2R10G10B10,
68};
69
Simon Glass1acafc72016-01-18 19:52:15 -070070/**
71 * struct video_priv - Device information used by the video uclass
72 *
73 * @xsize: Number of pixel columns (e.g. 1366)
74 * @ysize: Number of pixels rows (e.g.. 768)
Simon Glass8cdae1d2016-01-14 18:10:52 -070075 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
Simon Glass8c466ed2018-10-01 12:22:48 -060076 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
Mark Kettenis0efe41c2021-09-25 22:47:36 +020077 * @format: Pixel format (enum video_format)
Simon Glass826f35f2016-01-14 18:10:48 -070078 * @vidconsole_drv_name: Driver to use for the text console, NULL to
79 * select automatically
80 * @font_size: Font size in pixels (0 to use a default value)
Simon Glass1acafc72016-01-18 19:52:15 -070081 * @fb: Frame buffer
82 * @fb_size: Frame buffer size
Simon Glass9beac5d2020-07-02 21:12:20 -060083 * @copy_fb: Copy of the frame buffer to keep up to date; see struct
Simon Glass8a8d24b2020-12-03 16:55:23 -070084 * video_uc_plat
Simon Glass06696eb2018-11-29 15:08:52 -070085 * @line_length: Length of each frame buffer line, in bytes. This can be
86 * set by the driver, but if not, the uclass will set it after
87 * probing
Simon Glass1acafc72016-01-18 19:52:15 -070088 * @colour_fg: Foreground colour (pixel value)
89 * @colour_bg: Background colour (pixel value)
90 * @flush_dcache: true to enable flushing of the data cache after
91 * the LCD is updated
Heinrich Schuchardt9ffa4d12018-02-08 21:47:12 +010092 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Andre Przywaraeabb0722019-03-23 01:29:56 +000093 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
Simon Glass1acafc72016-01-18 19:52:15 -070094 */
95struct video_priv {
96 /* Things set up by the driver: */
97 ushort xsize;
98 ushort ysize;
99 ushort rot;
100 enum video_log2_bpp bpix;
Mark Kettenis0efe41c2021-09-25 22:47:36 +0200101 enum video_format format;
Simon Glass826f35f2016-01-14 18:10:48 -0700102 const char *vidconsole_drv_name;
103 int font_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700104
105 /*
106 * Things that are private to the uclass: don't use these in the
107 * driver
108 */
109 void *fb;
110 int fb_size;
Simon Glass9beac5d2020-07-02 21:12:20 -0600111 void *copy_fb;
Simon Glass1acafc72016-01-18 19:52:15 -0700112 int line_length;
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100113 u32 colour_fg;
114 u32 colour_bg;
Simon Glass1acafc72016-01-18 19:52:15 -0700115 bool flush_dcache;
Heinrich Schuchardt9ffa4d12018-02-08 21:47:12 +0100116 u8 fg_col_idx;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000117 u8 bg_col_idx;
Simon Glass1acafc72016-01-18 19:52:15 -0700118};
119
Michal Simek9d69c2d2020-12-03 09:30:00 +0100120/**
121 * struct video_ops - structure for keeping video operations
122 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
123 * displays needs synchronization when data in an FB is available.
124 * For these devices implement video_sync hook to call a sync
125 * function. vid is pointer to video device udevice. Function
126 * should return 0 on success video_sync and error code otherwise
127 */
Simon Glass1acafc72016-01-18 19:52:15 -0700128struct video_ops {
Michal Simek9d69c2d2020-12-03 09:30:00 +0100129 int (*video_sync)(struct udevice *vid);
Simon Glass1acafc72016-01-18 19:52:15 -0700130};
131
132#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
133
134/**
135 * video_reserve() - Reserve frame-buffer memory for video devices
136 *
137 * Note: This function is for internal use.
138 *
Simon Glasscaa4daa2020-12-03 16:55:18 -0700139 * This uses the uclass plat's @size and @align members to figure out
Simon Glass1acafc72016-01-18 19:52:15 -0700140 * a size and position for each frame buffer as part of the pre-relocation
141 * process of determining the post-relocation memory layout.
142 *
143 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
144 * is set to the final value.
145 *
146 * @addrp: On entry, the top of available memory. On exit, the new top,
147 * after allocating the required memory.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100148 * Return: 0
Simon Glass1acafc72016-01-18 19:52:15 -0700149 */
150int video_reserve(ulong *addrp);
151
152/**
Rob Clarka085aa12017-09-13 18:12:21 -0400153 * video_clear() - Clear a device's frame buffer to background color.
154 *
155 * @dev: Device to clear
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100156 * Return: 0
Rob Clarka085aa12017-09-13 18:12:21 -0400157 */
Simon Glassc6ebd012018-10-01 12:22:26 -0600158int video_clear(struct udevice *dev);
Rob Clarka085aa12017-09-13 18:12:21 -0400159
160/**
Simon Glass1acafc72016-01-18 19:52:15 -0700161 * video_sync() - Sync a device's frame buffer with its hardware
162 *
Michal Simek17da3102020-12-14 09:14:03 +0100163 * @vid: Device to sync
164 * @force: True to force a sync even if there was one recently (this is
165 * very expensive on sandbox)
166 *
Michal Simek9d69c2d2020-12-03 09:30:00 +0100167 * @return: 0 on success, error code otherwise
Michal Simek9de731f2020-12-14 08:47:52 +0100168 *
Simon Glass1acafc72016-01-18 19:52:15 -0700169 * Some frame buffers are cached or have a secondary frame buffer. This
170 * function syncs these up so that the current contents of the U-Boot frame
171 * buffer are displayed to the user.
Simon Glass1acafc72016-01-18 19:52:15 -0700172 */
Michal Simek9de731f2020-12-14 08:47:52 +0100173int video_sync(struct udevice *vid, bool force);
Simon Glass1acafc72016-01-18 19:52:15 -0700174
175/**
176 * video_sync_all() - Sync all devices' frame buffers with there hardware
177 *
178 * This calls video_sync() on all active video devices.
179 */
180void video_sync_all(void);
181
182/**
183 * video_bmp_display() - Display a BMP file
184 *
185 * @dev: Device to display the bitmap on
186 * @bmp_image: Address of bitmap image to display
187 * @x: X position in pixels from the left
188 * @y: Y position in pixels from the top
189 * @align: true to adjust the coordinates to centre the image. If false
190 * the coordinates are used as is. If true:
191 *
192 * - if a coordinate is 0x7fff then the image will be centred in
193 * that direction
194 * - if a coordinate is -ve then it will be offset to the
195 * left/top of the centre by that many pixels
196 * - if a coordinate is positive it will be used unchnaged.
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100197 * Return: 0 if OK, -ve on error
Simon Glass1acafc72016-01-18 19:52:15 -0700198 */
199int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
200 bool align);
201
202/**
203 * video_get_xsize() - Get the width of the display in pixels
204 *
205 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100206 * Return: device frame buffer width in pixels
Simon Glass1acafc72016-01-18 19:52:15 -0700207 */
208int video_get_xsize(struct udevice *dev);
209
210/**
211 * video_get_ysize() - Get the height of the display in pixels
212 *
213 * @dev: Device to check
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100214 * Return: device frame buffer height in pixels
Simon Glass1acafc72016-01-18 19:52:15 -0700215 */
216int video_get_ysize(struct udevice *dev);
217
Simon Glass68dcdc92016-01-21 19:44:52 -0700218/**
219 * Set whether we need to flush the dcache when changing the image. This
220 * defaults to off.
221 *
222 * @param flush non-zero to flush cache after update, 0 to skip
223 */
224void video_set_flush_dcache(struct udevice *dev, bool flush);
225
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100226/**
227 * Set default colors and attributes
228 *
Simon Glassb9f210a2018-11-06 15:21:36 -0700229 * @dev: video device
230 * @invert true to invert colours
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100231 */
Simon Glassb9f210a2018-11-06 15:21:36 -0700232void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100233
Simon Glass9beac5d2020-07-02 21:12:20 -0600234#ifdef CONFIG_VIDEO_COPY
235/**
236 * vidconsole_sync_copy() - Sync back to the copy framebuffer
237 *
238 * This ensures that the copy framebuffer has the same data as the framebuffer
239 * for a particular region. It should be called after the framebuffer is updated
240 *
241 * @from and @to can be in either order. The region between them is synced.
242 *
243 * @dev: Vidconsole device being updated
244 * @from: Start/end address within the framebuffer (->fb)
245 * @to: Other address within the frame buffer
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100246 * Return: 0 if OK, -EFAULT if the start address is before the start of the
Simon Glass9beac5d2020-07-02 21:12:20 -0600247 * frame buffer start
248 */
249int video_sync_copy(struct udevice *dev, void *from, void *to);
Simon Glass7d701162021-01-13 20:29:46 -0700250
251/**
252 * video_sync_copy_all() - Sync the entire framebuffer to the copy
253 *
254 * @dev: Vidconsole device being updated
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100255 * Return: 0 (always)
Simon Glass7d701162021-01-13 20:29:46 -0700256 */
257int video_sync_copy_all(struct udevice *dev);
Simon Glass9beac5d2020-07-02 21:12:20 -0600258#else
259static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
260{
261 return 0;
262}
Simon Glass7d701162021-01-13 20:29:46 -0700263
264static inline int video_sync_copy_all(struct udevice *dev)
265{
266 return 0;
267}
268
Simon Glass9beac5d2020-07-02 21:12:20 -0600269#endif
270
Patrick Delaunay2e2e6d82021-11-15 16:32:20 +0100271/**
272 * video_is_active() - Test if one video device it active
273 *
Heinrich Schuchardt185f8122022-01-19 18:05:50 +0100274 * Return: true if at least one video device is active, else false.
Patrick Delaunay2e2e6d82021-11-15 16:32:20 +0100275 */
276bool video_is_active(void);
277
wdenk167c5892001-11-03 22:21:15 +0000278#endif