]>
Commit | Line | Data |
---|---|---|
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 | #ifdef CONFIG_DM_VIDEO |
17 | ||
18 | #include <stdio_dev.h> | |
19 | ||
20 | struct video_uc_platdata { | |
21 | uint align; | |
22 | uint size; | |
23 | ulong base; | |
24 | }; | |
25 | ||
26 | /* | |
27 | * Bits per pixel selector. Each value n is such that the bits-per-pixel is | |
28 | * 2 ^ n | |
29 | */ | |
30 | enum video_log2_bpp { | |
31 | VIDEO_BPP1 = 0, | |
32 | VIDEO_BPP2, | |
33 | VIDEO_BPP4, | |
34 | VIDEO_BPP8, | |
35 | VIDEO_BPP16, | |
36 | VIDEO_BPP32, | |
37 | }; | |
38 | ||
39 | /* | |
40 | * Convert enum video_log2_bpp to bytes and bits. Note we omit the outer | |
41 | * brackets to allow multiplication by fractional pixels. | |
42 | */ | |
43 | #define VNBYTES(bpix) (1 << (bpix)) / 8 | |
44 | ||
45 | #define VNBITS(bpix) (1 << (bpix)) | |
46 | ||
47 | /** | |
48 | * struct video_priv - Device information used by the video uclass | |
49 | * | |
50 | * @xsize: Number of pixel columns (e.g. 1366) | |
51 | * @ysize: Number of pixels rows (e.g.. 768) | |
52 | * @tor: Display rotation (0=none, 1=90 degrees clockwise, etc.) | |
53 | * @bpix: Encoded bits per pixel | |
54 | * @fb: Frame buffer | |
55 | * @fb_size: Frame buffer size | |
56 | * @line_length: Length of each frame buffer line, in bytes | |
57 | * @colour_fg: Foreground colour (pixel value) | |
58 | * @colour_bg: Background colour (pixel value) | |
59 | * @flush_dcache: true to enable flushing of the data cache after | |
60 | * the LCD is updated | |
61 | * @cmap: Colour map for 8-bit-per-pixel displays | |
62 | */ | |
63 | struct video_priv { | |
64 | /* Things set up by the driver: */ | |
65 | ushort xsize; | |
66 | ushort ysize; | |
67 | ushort rot; | |
68 | enum video_log2_bpp bpix; | |
69 | ||
70 | /* | |
71 | * Things that are private to the uclass: don't use these in the | |
72 | * driver | |
73 | */ | |
74 | void *fb; | |
75 | int fb_size; | |
76 | int line_length; | |
77 | int colour_fg; | |
78 | int colour_bg; | |
79 | bool flush_dcache; | |
80 | ushort *cmap; | |
81 | }; | |
82 | ||
83 | /* Placeholder - there are no video operations at present */ | |
84 | struct video_ops { | |
85 | }; | |
86 | ||
87 | #define video_get_ops(dev) ((struct video_ops *)(dev)->driver->ops) | |
88 | ||
89 | /** | |
90 | * video_reserve() - Reserve frame-buffer memory for video devices | |
91 | * | |
92 | * Note: This function is for internal use. | |
93 | * | |
94 | * This uses the uclass platdata's @size and @align members to figure out | |
95 | * a size and position for each frame buffer as part of the pre-relocation | |
96 | * process of determining the post-relocation memory layout. | |
97 | * | |
98 | * gd->video_top is set to the initial value of *@addrp and gd->video_bottom | |
99 | * is set to the final value. | |
100 | * | |
101 | * @addrp: On entry, the top of available memory. On exit, the new top, | |
102 | * after allocating the required memory. | |
103 | * @return 0 | |
104 | */ | |
105 | int video_reserve(ulong *addrp); | |
106 | ||
107 | /** | |
108 | * video_sync() - Sync a device's frame buffer with its hardware | |
109 | * | |
110 | * Some frame buffers are cached or have a secondary frame buffer. This | |
111 | * function syncs these up so that the current contents of the U-Boot frame | |
112 | * buffer are displayed to the user. | |
113 | * | |
114 | * @dev: Device to sync | |
115 | */ | |
116 | void video_sync(struct udevice *vid); | |
117 | ||
118 | /** | |
119 | * video_sync_all() - Sync all devices' frame buffers with there hardware | |
120 | * | |
121 | * This calls video_sync() on all active video devices. | |
122 | */ | |
123 | void video_sync_all(void); | |
124 | ||
125 | /** | |
126 | * video_bmp_display() - Display a BMP file | |
127 | * | |
128 | * @dev: Device to display the bitmap on | |
129 | * @bmp_image: Address of bitmap image to display | |
130 | * @x: X position in pixels from the left | |
131 | * @y: Y position in pixels from the top | |
132 | * @align: true to adjust the coordinates to centre the image. If false | |
133 | * the coordinates are used as is. If true: | |
134 | * | |
135 | * - if a coordinate is 0x7fff then the image will be centred in | |
136 | * that direction | |
137 | * - if a coordinate is -ve then it will be offset to the | |
138 | * left/top of the centre by that many pixels | |
139 | * - if a coordinate is positive it will be used unchnaged. | |
140 | * @return 0 if OK, -ve on error | |
141 | */ | |
142 | int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y, | |
143 | bool align); | |
144 | ||
145 | /** | |
146 | * video_get_xsize() - Get the width of the display in pixels | |
147 | * | |
148 | * @dev: Device to check | |
149 | * @return device frame buffer width in pixels | |
150 | */ | |
151 | int video_get_xsize(struct udevice *dev); | |
152 | ||
153 | /** | |
154 | * video_get_ysize() - Get the height of the display in pixels | |
155 | * | |
156 | * @dev: Device to check | |
157 | * @return device frame buffer height in pixels | |
158 | */ | |
159 | int video_get_ysize(struct udevice *dev); | |
160 | ||
161 | #endif /* CONFIG_DM_VIDEO */ | |
162 | ||
163 | #ifndef CONFIG_DM_VIDEO | |
164 | ||
167c5898 WD |
165 | /* Video functions */ |
166 | ||
709ea543 SG |
167 | struct stdio_dev; |
168 | ||
169 | int video_init(void *videobase); | |
170 | void video_putc(struct stdio_dev *dev, const char c); | |
171 | void video_puts(struct stdio_dev *dev, const char *s); | |
167c5898 | 172 | |
f674f7cf SR |
173 | /** |
174 | * Display a BMP format bitmap on the screen | |
175 | * | |
176 | * @param bmp_image Address of BMP image | |
177 | * @param x X position to draw image | |
178 | * @param y Y position to draw image | |
179 | */ | |
180 | int video_display_bitmap(ulong bmp_image, int x, int y); | |
181 | ||
182 | /** | |
183 | * Get the width of the screen in pixels | |
184 | * | |
185 | * @return width of screen in pixels | |
186 | */ | |
187 | int video_get_pixel_width(void); | |
188 | ||
189 | /** | |
190 | * Get the height of the screen in pixels | |
191 | * | |
192 | * @return height of screen in pixels | |
193 | */ | |
194 | int video_get_pixel_height(void); | |
195 | ||
196 | /** | |
197 | * Get the number of text lines/rows on the screen | |
198 | * | |
199 | * @return number of rows | |
200 | */ | |
201 | int video_get_screen_rows(void); | |
202 | ||
203 | /** | |
204 | * Get the number of text columns on the screen | |
205 | * | |
206 | * @return number of columns | |
207 | */ | |
208 | int video_get_screen_columns(void); | |
209 | ||
210 | /** | |
211 | * Set the position of the text cursor | |
212 | * | |
213 | * @param col Column to place cursor (0 = left side) | |
214 | * @param row Row to place cursor (0 = top line) | |
215 | */ | |
216 | void video_position_cursor(unsigned col, unsigned row); | |
217 | ||
218 | /* Clear the display */ | |
219 | void video_clear(void); | |
220 | ||
b26354cf HS |
221 | #if defined(CONFIG_FORMIKE) |
222 | int kwh043st20_f01_spi_startup(unsigned int bus, unsigned int cs, | |
223 | unsigned int max_hz, unsigned int spi_mode); | |
224 | #endif | |
fc1a79d9 HS |
225 | #if defined(CONFIG_LG4573) |
226 | int lg4573_spi_startup(unsigned int bus, unsigned int cs, | |
227 | unsigned int max_hz, unsigned int spi_mode); | |
228 | #endif | |
1acafc73 SG |
229 | |
230 | #endif /* CONFIG_DM_VIDEO */ | |
231 | ||
167c5898 | 232 | #endif |