blob: 1d75a90510c66aae6f742321d6850bd258edf303 [file] [log] [blame]
wdenk167c5892001-11-03 22:21:15 +00001/*
Simon Glass1acafc72016-01-18 19:52:15 -07002 * Video uclass and legacy implementation
3 *
4 * Copyright (c) 2015 Google, Inc
5 *
6 * MPC823 Video Controller
7 * =======================
8 * (C) 2000 by Paolo Scaffardi (arsenio@tin.it)
9 * AIRVENT SAM s.p.a - RIMINI(ITALY)
10 *
11 */
wdenk167c5892001-11-03 22:21:15 +000012
13#ifndef _VIDEO_H_
14#define _VIDEO_H_
15
Simon Glass1acafc72016-01-18 19:52:15 -070016#include <stdio_dev.h>
17
Simon Glassb9dea622019-10-27 09:54:03 -060018struct udevice;
19
Simon Glass5a6cea32020-07-02 21:12:19 -060020/**
Simon Glass8a8d24b2020-12-03 16:55:23 -070021 * struct video_uc_plat - uclass platform data for a video device
Simon Glass5a6cea32020-07-02 21:12:19 -060022 *
23 * This holds information that the uclass needs to know about each device. It
Simon Glasscaa4daa2020-12-03 16:55:18 -070024 * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at
Simon Glass5a6cea32020-07-02 21:12:19 -060025 * the top of video-uclass.c for details on how this information is set.
26 *
27 * @align: Frame-buffer alignment, indicating the memory boundary the frame
28 * buffer should start on. If 0, 1MB is assumed
29 * @size: Frame-buffer size, in bytes
30 * @base: Base address of frame buffer, 0 if not yet known
Simon Glass9beac5d2020-07-02 21:12:20 -060031 * @copy_base: Base address of a hardware copy of the frame buffer. See
32 * CONFIG_VIDEO_COPY.
Simon Glass84e63ab2021-11-19 13:24:03 -070033 * @hide_logo: Hide the logo (used for testing)
Simon Glass5a6cea32020-07-02 21:12:19 -060034 */
Simon Glass8a8d24b2020-12-03 16:55:23 -070035struct video_uc_plat {
Simon Glass1acafc72016-01-18 19:52:15 -070036 uint align;
37 uint size;
38 ulong base;
Simon Glass9beac5d2020-07-02 21:12:20 -060039 ulong copy_base;
Simon Glass84e63ab2021-11-19 13:24:03 -070040 bool hide_logo;
Simon Glass1acafc72016-01-18 19:52:15 -070041};
42
Simon Glass21c561b2016-02-21 21:08:50 -070043enum video_polarity {
44 VIDEO_ACTIVE_HIGH, /* Pins are active high */
45 VIDEO_ACTIVE_LOW, /* Pins are active low */
46};
47
Simon Glass1acafc72016-01-18 19:52:15 -070048/*
49 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
50 * 2 ^ n
51 */
52enum video_log2_bpp {
53 VIDEO_BPP1 = 0,
54 VIDEO_BPP2,
55 VIDEO_BPP4,
56 VIDEO_BPP8,
57 VIDEO_BPP16,
58 VIDEO_BPP32,
59};
60
61/*
62 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
63 * brackets to allow multiplication by fractional pixels.
64 */
65#define VNBYTES(bpix) (1 << (bpix)) / 8
66
67#define VNBITS(bpix) (1 << (bpix))
68
Mark Kettenis0efe41c2021-09-25 22:47:36 +020069enum video_format {
70 VIDEO_UNKNOWN,
71 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 Glass1acafc72016-01-18 19:52:15 -0700100 */
101struct video_priv {
102 /* Things set up by the driver: */
103 ushort xsize;
104 ushort ysize;
105 ushort rot;
106 enum video_log2_bpp bpix;
Mark Kettenis0efe41c2021-09-25 22:47:36 +0200107 enum video_format format;
Simon Glass826f35f2016-01-14 18:10:48 -0700108 const char *vidconsole_drv_name;
109 int font_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700110
111 /*
112 * Things that are private to the uclass: don't use these in the
113 * driver
114 */
115 void *fb;
116 int fb_size;
Simon Glass9beac5d2020-07-02 21:12:20 -0600117 void *copy_fb;
Simon Glass1acafc72016-01-18 19:52:15 -0700118 int line_length;
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100119 u32 colour_fg;
120 u32 colour_bg;
Simon Glass1acafc72016-01-18 19:52:15 -0700121 bool flush_dcache;
Heinrich Schuchardt9ffa4d12018-02-08 21:47:12 +0100122 u8 fg_col_idx;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000123 u8 bg_col_idx;
Simon Glass1acafc72016-01-18 19:52:15 -0700124};
125
Michal Simek9d69c2d2020-12-03 09:30:00 +0100126/**
127 * struct video_ops - structure for keeping video operations
128 * @video_sync: Synchronize FB with device. Some device like SPI based LCD
129 * displays needs synchronization when data in an FB is available.
130 * For these devices implement video_sync hook to call a sync
131 * function. vid is pointer to video device udevice. Function
132 * should return 0 on success video_sync and error code otherwise
133 */
Simon Glass1acafc72016-01-18 19:52:15 -0700134struct video_ops {
Michal Simek9d69c2d2020-12-03 09:30:00 +0100135 int (*video_sync)(struct udevice *vid);
Simon Glass1acafc72016-01-18 19:52:15 -0700136};
137
138#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
139
140/**
141 * video_reserve() - Reserve frame-buffer memory for video devices
142 *
143 * Note: This function is for internal use.
144 *
Simon Glasscaa4daa2020-12-03 16:55:18 -0700145 * This uses the uclass plat's @size and @align members to figure out
Simon Glass1acafc72016-01-18 19:52:15 -0700146 * a size and position for each frame buffer as part of the pre-relocation
147 * process of determining the post-relocation memory layout.
148 *
149 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
150 * is set to the final value.
151 *
152 * @addrp: On entry, the top of available memory. On exit, the new top,
153 * after allocating the required memory.
154 * @return 0
155 */
156int video_reserve(ulong *addrp);
157
Simon Glass308b1a92020-09-22 21:16:40 -0600158#ifdef CONFIG_DM_VIDEO
Simon Glass1acafc72016-01-18 19:52:15 -0700159/**
Rob Clarka085aa12017-09-13 18:12:21 -0400160 * video_clear() - Clear a device's frame buffer to background color.
161 *
162 * @dev: Device to clear
Simon Glassc6ebd012018-10-01 12:22:26 -0600163 * @return 0
Rob Clarka085aa12017-09-13 18:12:21 -0400164 */
Simon Glassc6ebd012018-10-01 12:22:26 -0600165int video_clear(struct udevice *dev);
Simon Glass308b1a92020-09-22 21:16:40 -0600166#endif /* CONFIG_DM_VIDEO */
Rob Clarka085aa12017-09-13 18:12:21 -0400167
168/**
Simon Glass1acafc72016-01-18 19:52:15 -0700169 * video_sync() - Sync a device's frame buffer with its hardware
170 *
Michal Simek17da3102020-12-14 09:14:03 +0100171 * @vid: Device to sync
172 * @force: True to force a sync even if there was one recently (this is
173 * very expensive on sandbox)
174 *
Michal Simek9d69c2d2020-12-03 09:30:00 +0100175 * @return: 0 on success, error code otherwise
Michal Simek9de731f2020-12-14 08:47:52 +0100176 *
Simon Glass1acafc72016-01-18 19:52:15 -0700177 * Some frame buffers are cached or have a secondary frame buffer. This
178 * function syncs these up so that the current contents of the U-Boot frame
179 * buffer are displayed to the user.
Simon Glass1acafc72016-01-18 19:52:15 -0700180 */
Michal Simek9de731f2020-12-14 08:47:52 +0100181int video_sync(struct udevice *vid, bool force);
Simon Glass1acafc72016-01-18 19:52:15 -0700182
183/**
184 * video_sync_all() - Sync all devices' frame buffers with there hardware
185 *
186 * This calls video_sync() on all active video devices.
187 */
188void video_sync_all(void);
189
190/**
191 * video_bmp_display() - Display a BMP file
192 *
193 * @dev: Device to display the bitmap on
194 * @bmp_image: Address of bitmap image to display
195 * @x: X position in pixels from the left
196 * @y: Y position in pixels from the top
197 * @align: true to adjust the coordinates to centre the image. If false
198 * the coordinates are used as is. If true:
199 *
200 * - if a coordinate is 0x7fff then the image will be centred in
201 * that direction
202 * - if a coordinate is -ve then it will be offset to the
203 * left/top of the centre by that many pixels
204 * - if a coordinate is positive it will be used unchnaged.
205 * @return 0 if OK, -ve on error
206 */
207int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
208 bool align);
209
210/**
211 * video_get_xsize() - Get the width of the display in pixels
212 *
213 * @dev: Device to check
214 * @return device frame buffer width in pixels
215 */
216int video_get_xsize(struct udevice *dev);
217
218/**
219 * video_get_ysize() - Get the height of the display in pixels
220 *
221 * @dev: Device to check
222 * @return device frame buffer height in pixels
223 */
224int video_get_ysize(struct udevice *dev);
225
Simon Glass68dcdc92016-01-21 19:44:52 -0700226/**
227 * Set whether we need to flush the dcache when changing the image. This
228 * defaults to off.
229 *
230 * @param flush non-zero to flush cache after update, 0 to skip
231 */
232void video_set_flush_dcache(struct udevice *dev, bool flush);
233
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100234/**
235 * Set default colors and attributes
236 *
Simon Glassb9f210a2018-11-06 15:21:36 -0700237 * @dev: video device
238 * @invert true to invert colours
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100239 */
Simon Glassb9f210a2018-11-06 15:21:36 -0700240void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100241
Simon Glass9beac5d2020-07-02 21:12:20 -0600242#ifdef CONFIG_VIDEO_COPY
243/**
244 * vidconsole_sync_copy() - Sync back to the copy framebuffer
245 *
246 * This ensures that the copy framebuffer has the same data as the framebuffer
247 * for a particular region. It should be called after the framebuffer is updated
248 *
249 * @from and @to can be in either order. The region between them is synced.
250 *
251 * @dev: Vidconsole device being updated
252 * @from: Start/end address within the framebuffer (->fb)
253 * @to: Other address within the frame buffer
254 * @return 0 if OK, -EFAULT if the start address is before the start of the
255 * frame buffer start
256 */
257int video_sync_copy(struct udevice *dev, void *from, void *to);
Simon Glass7d701162021-01-13 20:29:46 -0700258
259/**
260 * video_sync_copy_all() - Sync the entire framebuffer to the copy
261 *
262 * @dev: Vidconsole device being updated
263 * @return 0 (always)
264 */
265int video_sync_copy_all(struct udevice *dev);
Simon Glass9beac5d2020-07-02 21:12:20 -0600266#else
267static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
268{
269 return 0;
270}
Simon Glass7d701162021-01-13 20:29:46 -0700271
272static inline int video_sync_copy_all(struct udevice *dev)
273{
274 return 0;
275}
276
Simon Glass9beac5d2020-07-02 21:12:20 -0600277#endif
278
Patrick Delaunay2e2e6d82021-11-15 16:32:20 +0100279/**
280 * video_is_active() - Test if one video device it active
281 *
282 * @return true if at least one video device is active, else false.
283 */
284bool video_is_active(void);
285
Simon Glass1acafc72016-01-18 19:52:15 -0700286#ifndef CONFIG_DM_VIDEO
287
wdenk167c5892001-11-03 22:21:15 +0000288/* Video functions */
289
Stefan Reinauerf674f7c2012-09-28 15:11:11 +0000290/**
291 * Display a BMP format bitmap on the screen
292 *
293 * @param bmp_image Address of BMP image
294 * @param x X position to draw image
295 * @param y Y position to draw image
296 */
297int video_display_bitmap(ulong bmp_image, int x, int y);
298
299/**
300 * Get the width of the screen in pixels
301 *
302 * @return width of screen in pixels
303 */
304int video_get_pixel_width(void);
305
306/**
307 * Get the height of the screen in pixels
308 *
309 * @return height of screen in pixels
310 */
311int video_get_pixel_height(void);
312
313/**
314 * Get the number of text lines/rows on the screen
315 *
316 * @return number of rows
317 */
318int video_get_screen_rows(void);
319
320/**
321 * Get the number of text columns on the screen
322 *
323 * @return number of columns
324 */
325int video_get_screen_columns(void);
326
327/**
328 * Set the position of the text cursor
329 *
330 * @param col Column to place cursor (0 = left side)
331 * @param row Row to place cursor (0 = top line)
332 */
333void video_position_cursor(unsigned col, unsigned row);
334
335/* Clear the display */
336void video_clear(void);
337
Heiko Schocherb26354c2013-08-19 16:39:00 +0200338#if defined(CONFIG_FORMIKE)
339int kwh043st20_f01_spi_startup(unsigned int bus, unsigned int cs,
340 unsigned int max_hz, unsigned int spi_mode);
341#endif
Heiko Schocherfc1a79d2015-04-12 10:20:19 +0200342#if defined(CONFIG_LG4573)
343int lg4573_spi_startup(unsigned int bus, unsigned int cs,
344 unsigned int max_hz, unsigned int spi_mode);
345#endif
Simon Glass1acafc72016-01-18 19:52:15 -0700346
Simon Glass0a6eac82016-10-17 20:12:54 -0600347/*
348 * video_get_info_str() - obtain a board string: type, speed, etc.
349 *
350 * This is called if CONFIG_CONSOLE_EXTRA_INFO is enabled.
351 *
352 * line_number: location to place info string beside logo
353 * info: buffer for info string (empty if nothing to display on this
354 * line)
355 */
356void video_get_info_str(int line_number, char *info);
357
Simon Glass8c466ed2018-10-01 12:22:48 -0600358#endif /* !CONFIG_DM_VIDEO */
Simon Glass1acafc72016-01-18 19:52:15 -0700359
wdenk167c5892001-11-03 22:21:15 +0000360#endif