blob: 813b5653b0354bd42c2513df7d17019b548c1f15 [file] [log] [blame]
wdenk167c5892001-11-03 22:21:15 +00001/*
Simon Glass623d28f2016-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 Glass623d28f2016-01-18 19:52:15 -070016#ifdef CONFIG_DM_VIDEO
17
18#include <stdio_dev.h>
19
Simon Glassf74c7bd2019-10-27 09:54:03 -060020struct udevice;
21
Simon Glassfc6b7842020-07-02 21:12:19 -060022/**
23 * struct video_uc_platdata - uclass platform data for a video device
24 *
25 * This holds information that the uclass needs to know about each device. It
26 * is accessed using dev_get_uclass_platdata(dev). See 'Theory of operation' at
27 * the top of video-uclass.c for details on how this information is set.
28 *
29 * @align: Frame-buffer alignment, indicating the memory boundary the frame
30 * buffer should start on. If 0, 1MB is assumed
31 * @size: Frame-buffer size, in bytes
32 * @base: Base address of frame buffer, 0 if not yet known
33 */
Simon Glass623d28f2016-01-18 19:52:15 -070034struct video_uc_platdata {
35 uint align;
36 uint size;
37 ulong base;
38};
39
Simon Glass4947abc2016-02-21 21:08:50 -070040enum video_polarity {
41 VIDEO_ACTIVE_HIGH, /* Pins are active high */
42 VIDEO_ACTIVE_LOW, /* Pins are active low */
43};
44
Simon Glass623d28f2016-01-18 19:52:15 -070045/*
46 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
47 * 2 ^ n
48 */
49enum video_log2_bpp {
50 VIDEO_BPP1 = 0,
51 VIDEO_BPP2,
52 VIDEO_BPP4,
53 VIDEO_BPP8,
54 VIDEO_BPP16,
55 VIDEO_BPP32,
56};
57
58/*
59 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
60 * brackets to allow multiplication by fractional pixels.
61 */
62#define VNBYTES(bpix) (1 << (bpix)) / 8
63
64#define VNBITS(bpix) (1 << (bpix))
65
66/**
67 * struct video_priv - Device information used by the video uclass
68 *
69 * @xsize: Number of pixel columns (e.g. 1366)
70 * @ysize: Number of pixels rows (e.g.. 768)
Simon Glasscd01ef82016-01-14 18:10:52 -070071 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
Simon Glass66414372018-10-01 12:22:48 -060072 * @bpix: Encoded bits per pixel (enum video_log2_bpp)
Simon Glassb3a72b32016-01-14 18:10:48 -070073 * @vidconsole_drv_name: Driver to use for the text console, NULL to
74 * select automatically
75 * @font_size: Font size in pixels (0 to use a default value)
Simon Glass623d28f2016-01-18 19:52:15 -070076 * @fb: Frame buffer
77 * @fb_size: Frame buffer size
Simon Glass7d186732018-11-29 15:08:52 -070078 * @line_length: Length of each frame buffer line, in bytes. This can be
79 * set by the driver, but if not, the uclass will set it after
80 * probing
Simon Glass623d28f2016-01-18 19:52:15 -070081 * @colour_fg: Foreground colour (pixel value)
82 * @colour_bg: Background colour (pixel value)
83 * @flush_dcache: true to enable flushing of the data cache after
84 * the LCD is updated
85 * @cmap: Colour map for 8-bit-per-pixel displays
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +010086 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Andre Przywara4ed5bc82019-03-23 01:29:56 +000087 * @bg_col_idx: Background color code (bit 3 = bold, bit 0-2 = color)
Simon Glass623d28f2016-01-18 19:52:15 -070088 */
89struct video_priv {
90 /* Things set up by the driver: */
91 ushort xsize;
92 ushort ysize;
93 ushort rot;
94 enum video_log2_bpp bpix;
Simon Glassb3a72b32016-01-14 18:10:48 -070095 const char *vidconsole_drv_name;
96 int font_size;
Simon Glass623d28f2016-01-18 19:52:15 -070097
98 /*
99 * Things that are private to the uclass: don't use these in the
100 * driver
101 */
102 void *fb;
103 int fb_size;
104 int line_length;
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100105 u32 colour_fg;
106 u32 colour_bg;
Simon Glass623d28f2016-01-18 19:52:15 -0700107 bool flush_dcache;
108 ushort *cmap;
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +0100109 u8 fg_col_idx;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000110 u8 bg_col_idx;
Simon Glass623d28f2016-01-18 19:52:15 -0700111};
112
113/* Placeholder - there are no video operations at present */
114struct video_ops {
115};
116
117#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
118
119/**
120 * video_reserve() - Reserve frame-buffer memory for video devices
121 *
122 * Note: This function is for internal use.
123 *
124 * This uses the uclass platdata's @size and @align members to figure out
125 * a size and position for each frame buffer as part of the pre-relocation
126 * process of determining the post-relocation memory layout.
127 *
128 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
129 * is set to the final value.
130 *
131 * @addrp: On entry, the top of available memory. On exit, the new top,
132 * after allocating the required memory.
133 * @return 0
134 */
135int video_reserve(ulong *addrp);
136
137/**
Rob Clark06e7a0d2017-09-13 18:12:21 -0400138 * video_clear() - Clear a device's frame buffer to background color.
139 *
140 * @dev: Device to clear
Simon Glass55343122018-10-01 12:22:26 -0600141 * @return 0
Rob Clark06e7a0d2017-09-13 18:12:21 -0400142 */
Simon Glass55343122018-10-01 12:22:26 -0600143int video_clear(struct udevice *dev);
Rob Clark06e7a0d2017-09-13 18:12:21 -0400144
145/**
Simon Glass623d28f2016-01-18 19:52:15 -0700146 * video_sync() - Sync a device's frame buffer with its hardware
147 *
148 * Some frame buffers are cached or have a secondary frame buffer. This
149 * function syncs these up so that the current contents of the U-Boot frame
150 * buffer are displayed to the user.
151 *
152 * @dev: Device to sync
Simon Glass0806dcc2018-10-01 11:55:14 -0600153 * @force: True to force a sync even if there was one recently (this is
154 * very expensive on sandbox)
Simon Glass623d28f2016-01-18 19:52:15 -0700155 */
Simon Glass0806dcc2018-10-01 11:55:14 -0600156void video_sync(struct udevice *vid, bool force);
Simon Glass623d28f2016-01-18 19:52:15 -0700157
158/**
159 * video_sync_all() - Sync all devices' frame buffers with there hardware
160 *
161 * This calls video_sync() on all active video devices.
162 */
163void video_sync_all(void);
164
165/**
166 * video_bmp_display() - Display a BMP file
167 *
168 * @dev: Device to display the bitmap on
169 * @bmp_image: Address of bitmap image to display
170 * @x: X position in pixels from the left
171 * @y: Y position in pixels from the top
172 * @align: true to adjust the coordinates to centre the image. If false
173 * the coordinates are used as is. If true:
174 *
175 * - if a coordinate is 0x7fff then the image will be centred in
176 * that direction
177 * - if a coordinate is -ve then it will be offset to the
178 * left/top of the centre by that many pixels
179 * - if a coordinate is positive it will be used unchnaged.
180 * @return 0 if OK, -ve on error
181 */
182int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
183 bool align);
184
185/**
186 * video_get_xsize() - Get the width of the display in pixels
187 *
188 * @dev: Device to check
189 * @return device frame buffer width in pixels
190 */
191int video_get_xsize(struct udevice *dev);
192
193/**
194 * video_get_ysize() - Get the height of the display in pixels
195 *
196 * @dev: Device to check
197 * @return device frame buffer height in pixels
198 */
199int video_get_ysize(struct udevice *dev);
200
Simon Glass64635382016-01-21 19:44:52 -0700201/**
202 * Set whether we need to flush the dcache when changing the image. This
203 * defaults to off.
204 *
205 * @param flush non-zero to flush cache after update, 0 to skip
206 */
207void video_set_flush_dcache(struct udevice *dev, bool flush);
208
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100209/**
210 * Set default colors and attributes
211 *
Simon Glass2b063b82018-11-06 15:21:36 -0700212 * @dev: video device
213 * @invert true to invert colours
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100214 */
Simon Glass2b063b82018-11-06 15:21:36 -0700215void video_set_default_colors(struct udevice *dev, bool invert);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100216
Simon Glass623d28f2016-01-18 19:52:15 -0700217#endif /* CONFIG_DM_VIDEO */
218
219#ifndef CONFIG_DM_VIDEO
220
wdenk167c5892001-11-03 22:21:15 +0000221/* Video functions */
222
Stefan Reinauer987d1d82012-09-28 15:11:11 +0000223/**
224 * Display a BMP format bitmap on the screen
225 *
226 * @param bmp_image Address of BMP image
227 * @param x X position to draw image
228 * @param y Y position to draw image
229 */
230int video_display_bitmap(ulong bmp_image, int x, int y);
231
232/**
233 * Get the width of the screen in pixels
234 *
235 * @return width of screen in pixels
236 */
237int video_get_pixel_width(void);
238
239/**
240 * Get the height of the screen in pixels
241 *
242 * @return height of screen in pixels
243 */
244int video_get_pixel_height(void);
245
246/**
247 * Get the number of text lines/rows on the screen
248 *
249 * @return number of rows
250 */
251int video_get_screen_rows(void);
252
253/**
254 * Get the number of text columns on the screen
255 *
256 * @return number of columns
257 */
258int video_get_screen_columns(void);
259
260/**
261 * Set the position of the text cursor
262 *
263 * @param col Column to place cursor (0 = left side)
264 * @param row Row to place cursor (0 = top line)
265 */
266void video_position_cursor(unsigned col, unsigned row);
267
268/* Clear the display */
269void video_clear(void);
270
Heiko Schocherd7d112d2013-08-19 16:39:00 +0200271#if defined(CONFIG_FORMIKE)
272int kwh043st20_f01_spi_startup(unsigned int bus, unsigned int cs,
273 unsigned int max_hz, unsigned int spi_mode);
274#endif
Heiko Schocher337fb3d2015-04-12 10:20:19 +0200275#if defined(CONFIG_LG4573)
276int lg4573_spi_startup(unsigned int bus, unsigned int cs,
277 unsigned int max_hz, unsigned int spi_mode);
278#endif
Simon Glass623d28f2016-01-18 19:52:15 -0700279
Simon Glass88ecb9b2016-10-17 20:12:54 -0600280/*
281 * video_get_info_str() - obtain a board string: type, speed, etc.
282 *
283 * This is called if CONFIG_CONSOLE_EXTRA_INFO is enabled.
284 *
285 * line_number: location to place info string beside logo
286 * info: buffer for info string (empty if nothing to display on this
287 * line)
288 */
289void video_get_info_str(int line_number, char *info);
290
Simon Glass66414372018-10-01 12:22:48 -0600291#endif /* !CONFIG_DM_VIDEO */
Simon Glass623d28f2016-01-18 19:52:15 -0700292
wdenk167c5892001-11-03 22:21:15 +0000293#endif