]> Git Repo - J-u-boot.git/blame - include/video.h
Merge tag 'xilinx-for-v2023.10-rc1' of https://source.denx.de/u-boot/custodians/u...
[J-u-boot.git] / include / video.h
CommitLineData
167c5898 1/*
50800147 2 * Video uclass to support displays (see also vidconsole for text)
1acafc73
SG
3 *
4 * Copyright (c) 2015 Google, Inc
1acafc73 5 */
167c5898
WD
6
7#ifndef _VIDEO_H_
8#define _VIDEO_H_
9
1acafc73
SG
10#include <stdio_dev.h>
11
b9dea62b
SG
12struct udevice;
13
5a6cea37 14/**
8a8d24bd 15 * struct video_uc_plat - uclass platform data for a video device
5a6cea37
SG
16 *
17 * This holds information that the uclass needs to know about each device. It
caa4daa2 18 * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at
5a6cea37
SG
19 * 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
9beac5da
SG
25 * @copy_base: Base address of a hardware copy of the frame buffer. See
26 * CONFIG_VIDEO_COPY.
315e3679 27 * @copy_size: Size of copy framebuffer, used if @size is 0
84e63abf 28 * @hide_logo: Hide the logo (used for testing)
5a6cea37 29 */
8a8d24bd 30struct video_uc_plat {
1acafc73
SG
31 uint align;
32 uint size;
33 ulong base;
9beac5da 34 ulong copy_base;
315e3679 35 ulong copy_size;
84e63abf 36 bool hide_logo;
1acafc73
SG
37};
38
21c561b7
SG
39enum video_polarity {
40 VIDEO_ACTIVE_HIGH, /* Pins are active high */
41 VIDEO_ACTIVE_LOW, /* Pins are active low */
42};
43
1acafc73
SG
44/*
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
0efe41ca
MK
65enum video_format {
66 VIDEO_UNKNOWN,
e9500ba9 67 VIDEO_RGBA8888,
0efe41ca
MK
68 VIDEO_X8B8G8R8,
69 VIDEO_X8R8G8B8,
70 VIDEO_X2R10G10B10,
71};
72
1acafc73
SG
73/**
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)
8cdae1da 78 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
8c466ed3 79 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
0efe41ca 80 * @format: Pixel format (enum video_format)
826f35f9
SG
81 * @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)
1acafc73
SG
84 * @fb: Frame buffer
85 * @fb_size: Frame buffer size
9beac5da 86 * @copy_fb: Copy of the frame buffer to keep up to date; see struct
8a8d24bd 87 * video_uc_plat
06696ebe
SG
88 * @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
1acafc73
SG
91 * @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
9ffa4d12 95 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
eabb0725 96 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
1acafc73
SG
97 */
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;
0efe41ca 104 enum video_format format;
826f35f9
SG
105 const char *vidconsole_drv_name;
106 int font_size;
1acafc73
SG
107
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;
9beac5da 114 void *copy_fb;
1acafc73 115 int line_length;
5c30fbb8
HS
116 u32 colour_fg;
117 u32 colour_bg;
1acafc73 118 bool flush_dcache;
9ffa4d12 119 u8 fg_col_idx;
eabb0725 120 u8 bg_col_idx;
1acafc73
SG
121};
122
9d69c2d9
MS
123/**
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 */
1acafc73 131struct video_ops {
9d69c2d9 132 int (*video_sync)(struct udevice *vid);
1acafc73
SG
133};
134
135#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
136
a032e4b5
SG
137/** 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 *
166 * @priv private data of the console device
167 * @idx color index
168 * Return: color value
169 */
170u32 video_index_to_colour(struct video_priv *priv, unsigned int idx);
171
1acafc73
SG
172/**
173 * video_reserve() - Reserve frame-buffer memory for video devices
174 *
175 * Note: This function is for internal use.
176 *
caa4daa2 177 * This uses the uclass plat's @size and @align members to figure out
1acafc73
SG
178 * 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.
185f812c 186 * Return: 0
1acafc73
SG
187 */
188int video_reserve(ulong *addrp);
189
a085aa1f 190/**
50d562c0 191 * video_clear() - Clear a device's frame buffer to background colour.
a085aa1f
RC
192 *
193 * @dev: Device to clear
50d562c0 194 * Return: 0 on success
a085aa1f 195 */
c6ebd011 196int video_clear(struct udevice *dev);
a085aa1f 197
50d562c0
SG
198/**
199 * 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
1acafc73
SG
207/**
208 * video_sync() - Sync a device's frame buffer with its hardware
209 *
17da310a
MS
210 * @vid: Device to sync
211 * @force: True to force a sync even if there was one recently (this is
212 * very expensive on sandbox)
213 *
9d69c2d9 214 * @return: 0 on success, error code otherwise
9de731f2 215 *
1acafc73
SG
216 * Some frame buffers are cached or have a secondary frame buffer. This
217 * function syncs these up so that the current contents of the U-Boot frame
218 * buffer are displayed to the user.
1acafc73 219 */
9de731f2 220int video_sync(struct udevice *vid, bool force);
1acafc73
SG
221
222/**
223 * video_sync_all() - Sync all devices' frame buffers with there hardware
224 *
225 * This calls video_sync() on all active video devices.
226 */
227void video_sync_all(void);
228
e90322f8
SG
229/**
230 * video_bmp_get_info() - Get information about a bitmap image
231 *
232 * @bmp_image: Pointer to BMP image to check
233 * @widthp: Returns width in pixels
234 * @heightp: Returns height in pixels
235 * @bpixp: Returns log2 of bits per pixel
236 */
237void video_bmp_get_info(void *bmp_image, ulong *widthp, ulong *heightp,
238 uint *bpixp);
239
1acafc73
SG
240/**
241 * video_bmp_display() - Display a BMP file
242 *
243 * @dev: Device to display the bitmap on
244 * @bmp_image: Address of bitmap image to display
245 * @x: X position in pixels from the left
246 * @y: Y position in pixels from the top
247 * @align: true to adjust the coordinates to centre the image. If false
248 * the coordinates are used as is. If true:
249 *
250 * - if a coordinate is 0x7fff then the image will be centred in
251 * that direction
252 * - if a coordinate is -ve then it will be offset to the
253 * left/top of the centre by that many pixels
5abd8bb0 254 * - if a coordinate is positive it will be used unchanged.
185f812c 255 * Return: 0 if OK, -ve on error
1acafc73
SG
256 */
257int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
258 bool align);
259
260/**
261 * video_get_xsize() - Get the width of the display in pixels
262 *
263 * @dev: Device to check
185f812c 264 * Return: device frame buffer width in pixels
1acafc73
SG
265 */
266int video_get_xsize(struct udevice *dev);
267
268/**
269 * video_get_ysize() - Get the height of the display in pixels
270 *
271 * @dev: Device to check
185f812c 272 * Return: device frame buffer height in pixels
1acafc73
SG
273 */
274int video_get_ysize(struct udevice *dev);
275
68dcdc99
SG
276/**
277 * Set whether we need to flush the dcache when changing the image. This
278 * defaults to off.
279 *
280 * @param flush non-zero to flush cache after update, 0 to skip
281 */
282void video_set_flush_dcache(struct udevice *dev, bool flush);
283
5c30fbb8
HS
284/**
285 * Set default colors and attributes
286 *
b9f210a3
SG
287 * @dev: video device
288 * @invert true to invert colours
5c30fbb8 289 */
b9f210a3 290void video_set_default_colors(struct udevice *dev, bool invert);
5c30fbb8 291
c830e285
SG
292/**
293 * video_default_font_height() - Get the default font height
294 *
295 * @dev: video device
296 * Returns: Default font height in pixels, which depends on which console driver
297 * is in use
298 */
299int video_default_font_height(struct udevice *dev);
300
9beac5da
SG
301#ifdef CONFIG_VIDEO_COPY
302/**
303 * vidconsole_sync_copy() - Sync back to the copy framebuffer
304 *
305 * This ensures that the copy framebuffer has the same data as the framebuffer
306 * for a particular region. It should be called after the framebuffer is updated
307 *
308 * @from and @to can be in either order. The region between them is synced.
309 *
310 * @dev: Vidconsole device being updated
311 * @from: Start/end address within the framebuffer (->fb)
312 * @to: Other address within the frame buffer
185f812c 313 * Return: 0 if OK, -EFAULT if the start address is before the start of the
9beac5da
SG
314 * frame buffer start
315 */
316int video_sync_copy(struct udevice *dev, void *from, void *to);
7d70116f
SG
317
318/**
319 * video_sync_copy_all() - Sync the entire framebuffer to the copy
320 *
321 * @dev: Vidconsole device being updated
185f812c 322 * Return: 0 (always)
7d70116f
SG
323 */
324int video_sync_copy_all(struct udevice *dev);
9beac5da
SG
325#else
326static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
327{
328 return 0;
329}
7d70116f
SG
330
331static inline int video_sync_copy_all(struct udevice *dev)
332{
333 return 0;
334}
335
9beac5da
SG
336#endif
337
2e2e6d8c
PD
338/**
339 * video_is_active() - Test if one video device it active
340 *
185f812c 341 * Return: true if at least one video device is active, else false.
2e2e6d8c
PD
342 */
343bool video_is_active(void);
344
0d389018
SG
345/**
346 * video_get_u_boot_logo() - Get a pointer to the U-Boot logo
347 *
348 * Returns: Pointer to logo
349 */
350void *video_get_u_boot_logo(void);
351
f24404d8
SG
352/*
353 * bmp_display() - Display BMP (bitmap) data located in memory
354 *
355 * @addr: address of the bmp data
356 * @x: Position of bitmap from the left side, in pixels
357 * @y: Position of bitmap from the top, in pixels
358 */
359int bmp_display(ulong addr, int x, int y);
360
58182b2d
NJ
361/*
362 * bmp_info() - Show information about bmp file
363 *
364 * @addr: address of bmp file
365 * Returns: 0 if OK, else 1 if bmp image not found
366 */
367int bmp_info(ulong addr);
368
167c5898 369#endif
This page took 1.011512 seconds and 4 git commands to generate.