]> Git Repo - J-u-boot.git/blame - include/video.h
Merge branch '2021-10-19-assorted-changes'
[J-u-boot.git] / include / video.h
CommitLineData
167c5898 1/*
1acafc73
SG
2 * Video uclass and legacy implementation
3 *
4 * Copyright (c) 2015 Google, Inc
5 *
6 * MPC823 Video Controller
7 * =======================
8 * (C) 2000 by Paolo Scaffardi ([email protected])
9 * AIRVENT SAM s.p.a - RIMINI(ITALY)
10 *
11 */
167c5898
WD
12
13#ifndef _VIDEO_H_
14#define _VIDEO_H_
15
1acafc73
SG
16#include <stdio_dev.h>
17
b9dea62b
SG
18struct udevice;
19
5a6cea37 20/**
8a8d24bd 21 * struct video_uc_plat - uclass platform data for a video device
5a6cea37
SG
22 *
23 * This holds information that the uclass needs to know about each device. It
caa4daa2 24 * is accessed using dev_get_uclass_plat(dev). See 'Theory of operation' at
5a6cea37
SG
25 * 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
9beac5da
SG
31 * @copy_base: Base address of a hardware copy of the frame buffer. See
32 * CONFIG_VIDEO_COPY.
5a6cea37 33 */
8a8d24bd 34struct video_uc_plat {
1acafc73
SG
35 uint align;
36 uint size;
37 ulong base;
9beac5da 38 ulong copy_base;
1acafc73
SG
39};
40
21c561b7
SG
41enum video_polarity {
42 VIDEO_ACTIVE_HIGH, /* Pins are active high */
43 VIDEO_ACTIVE_LOW, /* Pins are active low */
44};
45
1acafc73
SG
46/*
47 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
48 * 2 ^ n
49 */
50enum video_log2_bpp {
51 VIDEO_BPP1 = 0,
52 VIDEO_BPP2,
53 VIDEO_BPP4,
54 VIDEO_BPP8,
55 VIDEO_BPP16,
56 VIDEO_BPP32,
57};
58
59/*
60 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
61 * brackets to allow multiplication by fractional pixels.
62 */
63#define VNBYTES(bpix) (1 << (bpix)) / 8
64
65#define VNBITS(bpix) (1 << (bpix))
66
0efe41ca
MK
67enum video_format {
68 VIDEO_UNKNOWN,
69 VIDEO_X8B8G8R8,
70 VIDEO_X8R8G8B8,
71 VIDEO_X2R10G10B10,
72};
73
1acafc73
SG
74/**
75 * struct video_priv - Device information used by the video uclass
76 *
77 * @xsize: Number of pixel columns (e.g. 1366)
78 * @ysize: Number of pixels rows (e.g.. 768)
8cdae1da 79 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
8c466ed3 80 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
0efe41ca 81 * @format: Pixel format (enum video_format)
826f35f9
SG
82 * @vidconsole_drv_name: Driver to use for the text console, NULL to
83 * select automatically
84 * @font_size: Font size in pixels (0 to use a default value)
1acafc73
SG
85 * @fb: Frame buffer
86 * @fb_size: Frame buffer size
9beac5da 87 * @copy_fb: Copy of the frame buffer to keep up to date; see struct
8a8d24bd 88 * video_uc_plat
06696ebe
SG
89 * @line_length: Length of each frame buffer line, in bytes. This can be
90 * set by the driver, but if not, the uclass will set it after
91 * probing
1acafc73
SG
92 * @colour_fg: Foreground colour (pixel value)
93 * @colour_bg: Background colour (pixel value)
94 * @flush_dcache: true to enable flushing of the data cache after
95 * the LCD is updated
96 * @cmap: Colour map for 8-bit-per-pixel displays
9ffa4d12 97 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
eabb0725 98 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
1acafc73
SG
99 */
100struct video_priv {
101 /* Things set up by the driver: */
102 ushort xsize;
103 ushort ysize;
104 ushort rot;
105 enum video_log2_bpp bpix;
0efe41ca 106 enum video_format format;
826f35f9
SG
107 const char *vidconsole_drv_name;
108 int font_size;
1acafc73
SG
109
110 /*
111 * Things that are private to the uclass: don't use these in the
112 * driver
113 */
114 void *fb;
115 int fb_size;
9beac5da 116 void *copy_fb;
1acafc73 117 int line_length;
5c30fbb8
HS
118 u32 colour_fg;
119 u32 colour_bg;
1acafc73
SG
120 bool flush_dcache;
121 ushort *cmap;
9ffa4d12 122 u8 fg_col_idx;
eabb0725 123 u8 bg_col_idx;
1acafc73
SG
124};
125
9d69c2d9
MS
126/**
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 */
1acafc73 134struct video_ops {
9d69c2d9 135 int (*video_sync)(struct udevice *vid);
1acafc73
SG
136};
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 *
caa4daa2 145 * This uses the uclass plat's @size and @align members to figure out
1acafc73
SG
146 * 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
308b1a96 158#ifdef CONFIG_DM_VIDEO
a085aa1f
RC
159/**
160 * video_clear() - Clear a device's frame buffer to background color.
161 *
162 * @dev: Device to clear
c6ebd011 163 * @return 0
a085aa1f 164 */
c6ebd011 165int video_clear(struct udevice *dev);
308b1a96 166#endif /* CONFIG_DM_VIDEO */
a085aa1f 167
1acafc73
SG
168/**
169 * video_sync() - Sync a device's frame buffer with its hardware
170 *
17da310a
MS
171 * @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 *
9d69c2d9 175 * @return: 0 on success, error code otherwise
9de731f2 176 *
1acafc73
SG
177 * 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.
1acafc73 180 */
9de731f2 181int video_sync(struct udevice *vid, bool force);
1acafc73
SG
182
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
68dcdc99
SG
226/**
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
5c30fbb8
HS
234/**
235 * Set default colors and attributes
236 *
b9f210a3
SG
237 * @dev: video device
238 * @invert true to invert colours
5c30fbb8 239 */
b9f210a3 240void video_set_default_colors(struct udevice *dev, bool invert);
5c30fbb8 241
9beac5da
SG
242#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);
7d70116f
SG
258
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);
9beac5da
SG
266#else
267static inline int video_sync_copy(struct udevice *dev, void *from, void *to)
268{
269 return 0;
270}
7d70116f
SG
271
272static inline int video_sync_copy_all(struct udevice *dev)
273{
274 return 0;
275}
276
9beac5da
SG
277#endif
278
1acafc73
SG
279#ifndef CONFIG_DM_VIDEO
280
167c5898
WD
281/* Video functions */
282
f674f7cf
SR
283/**
284 * Display a BMP format bitmap on the screen
285 *
286 * @param bmp_image Address of BMP image
287 * @param x X position to draw image
288 * @param y Y position to draw image
289 */
290int video_display_bitmap(ulong bmp_image, int x, int y);
291
292/**
293 * Get the width of the screen in pixels
294 *
295 * @return width of screen in pixels
296 */
297int video_get_pixel_width(void);
298
299/**
300 * Get the height of the screen in pixels
301 *
302 * @return height of screen in pixels
303 */
304int video_get_pixel_height(void);
305
306/**
307 * Get the number of text lines/rows on the screen
308 *
309 * @return number of rows
310 */
311int video_get_screen_rows(void);
312
313/**
314 * Get the number of text columns on the screen
315 *
316 * @return number of columns
317 */
318int video_get_screen_columns(void);
319
320/**
321 * Set the position of the text cursor
322 *
323 * @param col Column to place cursor (0 = left side)
324 * @param row Row to place cursor (0 = top line)
325 */
326void video_position_cursor(unsigned col, unsigned row);
327
328/* Clear the display */
329void video_clear(void);
330
b26354cf
HS
331#if defined(CONFIG_FORMIKE)
332int kwh043st20_f01_spi_startup(unsigned int bus, unsigned int cs,
333 unsigned int max_hz, unsigned int spi_mode);
334#endif
fc1a79d9
HS
335#if defined(CONFIG_LG4573)
336int lg4573_spi_startup(unsigned int bus, unsigned int cs,
337 unsigned int max_hz, unsigned int spi_mode);
338#endif
1acafc73 339
0a6eac84
SG
340/*
341 * video_get_info_str() - obtain a board string: type, speed, etc.
342 *
343 * This is called if CONFIG_CONSOLE_EXTRA_INFO is enabled.
344 *
345 * line_number: location to place info string beside logo
346 * info: buffer for info string (empty if nothing to display on this
347 * line)
348 */
349void video_get_info_str(int line_number, char *info);
350
8c466ed3 351#endif /* !CONFIG_DM_VIDEO */
1acafc73 352
167c5898 353#endif
This page took 0.923512 seconds and 4 git commands to generate.