blob: cd5558f86eb4da266cb9adff98508b9988c94209 [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
20struct video_uc_platdata {
21 uint align;
22 uint size;
23 ulong base;
24};
25
Simon Glass4947abc2016-02-21 21:08:50 -070026enum video_polarity {
27 VIDEO_ACTIVE_HIGH, /* Pins are active high */
28 VIDEO_ACTIVE_LOW, /* Pins are active low */
29};
30
Simon Glass623d28f2016-01-18 19:52:15 -070031/*
32 * Bits per pixel selector. Each value n is such that the bits-per-pixel is
33 * 2 ^ n
34 */
35enum video_log2_bpp {
36 VIDEO_BPP1 = 0,
37 VIDEO_BPP2,
38 VIDEO_BPP4,
39 VIDEO_BPP8,
40 VIDEO_BPP16,
41 VIDEO_BPP32,
42};
43
44/*
45 * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer
46 * brackets to allow multiplication by fractional pixels.
47 */
48#define VNBYTES(bpix) (1 << (bpix)) / 8
49
50#define VNBITS(bpix) (1 << (bpix))
51
52/**
53 * struct video_priv - Device information used by the video uclass
54 *
55 * @xsize: Number of pixel columns (e.g. 1366)
56 * @ysize: Number of pixels rows (e.g.. 768)
Simon Glasscd01ef82016-01-14 18:10:52 -070057 * @rot: Display rotation (0=none, 1=90 degrees clockwise, etc.)
Simon Glass623d28f2016-01-18 19:52:15 -070058 * @bpix: Encoded bits per pixel
Simon Glassb3a72b32016-01-14 18:10:48 -070059 * @vidconsole_drv_name: Driver to use for the text console, NULL to
60 * select automatically
61 * @font_size: Font size in pixels (0 to use a default value)
Simon Glass623d28f2016-01-18 19:52:15 -070062 * @fb: Frame buffer
63 * @fb_size: Frame buffer size
64 * @line_length: Length of each frame buffer line, in bytes
65 * @colour_fg: Foreground colour (pixel value)
66 * @colour_bg: Background colour (pixel value)
67 * @flush_dcache: true to enable flushing of the data cache after
68 * the LCD is updated
69 * @cmap: Colour map for 8-bit-per-pixel displays
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +010070 * @fg_col_idx: Foreground color code (bit 3 = bold, bit 0-2 = color)
Simon Glass623d28f2016-01-18 19:52:15 -070071 */
72struct video_priv {
73 /* Things set up by the driver: */
74 ushort xsize;
75 ushort ysize;
76 ushort rot;
77 enum video_log2_bpp bpix;
Simon Glassb3a72b32016-01-14 18:10:48 -070078 const char *vidconsole_drv_name;
79 int font_size;
Simon Glass623d28f2016-01-18 19:52:15 -070080
81 /*
82 * Things that are private to the uclass: don't use these in the
83 * driver
84 */
85 void *fb;
86 int fb_size;
87 int line_length;
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +010088 u32 colour_fg;
89 u32 colour_bg;
Simon Glass623d28f2016-01-18 19:52:15 -070090 bool flush_dcache;
91 ushort *cmap;
Heinrich Schuchardt2a436db2018-02-08 21:47:12 +010092 u8 fg_col_idx;
Simon Glass623d28f2016-01-18 19:52:15 -070093};
94
95/* Placeholder - there are no video operations at present */
96struct video_ops {
97};
98
99#define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops)
100
101/**
102 * video_reserve() - Reserve frame-buffer memory for video devices
103 *
104 * Note: This function is for internal use.
105 *
106 * This uses the uclass platdata's @size and @align members to figure out
107 * a size and position for each frame buffer as part of the pre-relocation
108 * process of determining the post-relocation memory layout.
109 *
110 * gd->video_top is set to the initial value of *@addrp and gd->video_bottom
111 * is set to the final value.
112 *
113 * @addrp: On entry, the top of available memory. On exit, the new top,
114 * after allocating the required memory.
115 * @return 0
116 */
117int video_reserve(ulong *addrp);
118
119/**
Rob Clark06e7a0d2017-09-13 18:12:21 -0400120 * video_clear() - Clear a device's frame buffer to background color.
121 *
122 * @dev: Device to clear
123 */
124void video_clear(struct udevice *dev);
125
126/**
Simon Glass623d28f2016-01-18 19:52:15 -0700127 * video_sync() - Sync a device's frame buffer with its hardware
128 *
129 * Some frame buffers are cached or have a secondary frame buffer. This
130 * function syncs these up so that the current contents of the U-Boot frame
131 * buffer are displayed to the user.
132 *
133 * @dev: Device to sync
Simon Glass0806dcc2018-10-01 11:55:14 -0600134 * @force: True to force a sync even if there was one recently (this is
135 * very expensive on sandbox)
Simon Glass623d28f2016-01-18 19:52:15 -0700136 */
Simon Glass0806dcc2018-10-01 11:55:14 -0600137void video_sync(struct udevice *vid, bool force);
Simon Glass623d28f2016-01-18 19:52:15 -0700138
139/**
140 * video_sync_all() - Sync all devices' frame buffers with there hardware
141 *
142 * This calls video_sync() on all active video devices.
143 */
144void video_sync_all(void);
145
146/**
147 * video_bmp_display() - Display a BMP file
148 *
149 * @dev: Device to display the bitmap on
150 * @bmp_image: Address of bitmap image to display
151 * @x: X position in pixels from the left
152 * @y: Y position in pixels from the top
153 * @align: true to adjust the coordinates to centre the image. If false
154 * the coordinates are used as is. If true:
155 *
156 * - if a coordinate is 0x7fff then the image will be centred in
157 * that direction
158 * - if a coordinate is -ve then it will be offset to the
159 * left/top of the centre by that many pixels
160 * - if a coordinate is positive it will be used unchnaged.
161 * @return 0 if OK, -ve on error
162 */
163int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
164 bool align);
165
166/**
167 * video_get_xsize() - Get the width of the display in pixels
168 *
169 * @dev: Device to check
170 * @return device frame buffer width in pixels
171 */
172int video_get_xsize(struct udevice *dev);
173
174/**
175 * video_get_ysize() - Get the height of the display in pixels
176 *
177 * @dev: Device to check
178 * @return device frame buffer height in pixels
179 */
180int video_get_ysize(struct udevice *dev);
181
Simon Glass64635382016-01-21 19:44:52 -0700182/**
183 * Set whether we need to flush the dcache when changing the image. This
184 * defaults to off.
185 *
186 * @param flush non-zero to flush cache after update, 0 to skip
187 */
188void video_set_flush_dcache(struct udevice *dev, bool flush);
189
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100190/**
191 * Set default colors and attributes
192 *
193 * @priv device information
194 */
195void video_set_default_colors(struct video_priv *priv);
196
Simon Glass623d28f2016-01-18 19:52:15 -0700197#endif /* CONFIG_DM_VIDEO */
198
199#ifndef CONFIG_DM_VIDEO
200
wdenk167c5892001-11-03 22:21:15 +0000201/* Video functions */
202
Stefan Reinauer987d1d82012-09-28 15:11:11 +0000203/**
204 * Display a BMP format bitmap on the screen
205 *
206 * @param bmp_image Address of BMP image
207 * @param x X position to draw image
208 * @param y Y position to draw image
209 */
210int video_display_bitmap(ulong bmp_image, int x, int y);
211
212/**
213 * Get the width of the screen in pixels
214 *
215 * @return width of screen in pixels
216 */
217int video_get_pixel_width(void);
218
219/**
220 * Get the height of the screen in pixels
221 *
222 * @return height of screen in pixels
223 */
224int video_get_pixel_height(void);
225
226/**
227 * Get the number of text lines/rows on the screen
228 *
229 * @return number of rows
230 */
231int video_get_screen_rows(void);
232
233/**
234 * Get the number of text columns on the screen
235 *
236 * @return number of columns
237 */
238int video_get_screen_columns(void);
239
240/**
241 * Set the position of the text cursor
242 *
243 * @param col Column to place cursor (0 = left side)
244 * @param row Row to place cursor (0 = top line)
245 */
246void video_position_cursor(unsigned col, unsigned row);
247
248/* Clear the display */
249void video_clear(void);
250
Heiko Schocherd7d112d2013-08-19 16:39:00 +0200251#if defined(CONFIG_FORMIKE)
252int kwh043st20_f01_spi_startup(unsigned int bus, unsigned int cs,
253 unsigned int max_hz, unsigned int spi_mode);
254#endif
Heiko Schocher337fb3d2015-04-12 10:20:19 +0200255#if defined(CONFIG_LG4573)
256int lg4573_spi_startup(unsigned int bus, unsigned int cs,
257 unsigned int max_hz, unsigned int spi_mode);
258#endif
Simon Glass623d28f2016-01-18 19:52:15 -0700259
Simon Glass88ecb9b2016-10-17 20:12:54 -0600260/*
261 * video_get_info_str() - obtain a board string: type, speed, etc.
262 *
263 * This is called if CONFIG_CONSOLE_EXTRA_INFO is enabled.
264 *
265 * line_number: location to place info string beside logo
266 * info: buffer for info string (empty if nothing to display on this
267 * line)
268 */
269void video_get_info_str(int line_number, char *info);
270
Simon Glass623d28f2016-01-18 19:52:15 -0700271#endif /* CONFIG_DM_VIDEO */
272
wdenk167c5892001-11-03 22:21:15 +0000273#endif