blob: 4ddd8bc1db8d89fc3f22143e7e3270fb3c8af114 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass623d28f2016-01-18 19:52:15 -07002/*
3 * Copyright (c) 2015 Google, Inc
Simon Glass623d28f2016-01-18 19:52:15 -07004 */
5
6#include <common.h>
Simon Glass73c9c372020-07-02 21:12:20 -06007#include <console.h>
Simon Glass63334482019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass623d28f2016-01-18 19:52:15 -07009#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070011#include <malloc.h>
Simon Glass623d28f2016-01-18 19:52:15 -070012#include <mapmem.h>
13#include <stdio_dev.h>
14#include <video.h>
15#include <video_console.h>
Simon Glass274e0b02020-05-10 11:39:56 -060016#include <asm/cache.h>
Simon Glass623d28f2016-01-18 19:52:15 -070017#include <dm/lists.h>
18#include <dm/device-internal.h>
19#include <dm/uclass-internal.h>
20#ifdef CONFIG_SANDBOX
21#include <asm/sdl.h>
22#endif
23
24/*
25 * Theory of operation:
26 *
27 * Before relocation each device is bound. The driver for each device must
28 * set the @align and @size values in struct video_uc_platdata. This
29 * information represents the requires size and alignment of the frame buffer
30 * for the device. The values can be an over-estimate but cannot be too
31 * small. The actual values will be suppled (in the same manner) by the bind()
32 * method after relocation.
33 *
34 * This information is then picked up by video_reserve() which works out how
35 * much memory is needed for all devices. This is allocated between
36 * gd->video_bottom and gd->video_top.
37 *
38 * After relocation the same process occurs. The driver supplies the same
39 * @size and @align information and this time video_post_bind() checks that
40 * the drivers does not overflow the allocated memory.
41 *
42 * The frame buffer address is actually set (to plat->base) in
43 * video_post_probe(). This function also clears the frame buffer and
44 * allocates a suitable text console device. This can then be used to write
45 * text to the video device.
46 */
47DECLARE_GLOBAL_DATA_PTR;
48
Simon Glass64635382016-01-21 19:44:52 -070049void video_set_flush_dcache(struct udevice *dev, bool flush)
50{
51 struct video_priv *priv = dev_get_uclass_priv(dev);
52
53 priv->flush_dcache = flush;
54}
55
Simon Glass623d28f2016-01-18 19:52:15 -070056static ulong alloc_fb(struct udevice *dev, ulong *addrp)
57{
58 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
59 ulong base, align, size;
60
Bin Meng755623d2016-10-09 04:14:17 -070061 if (!plat->size)
62 return 0;
63
Simon Glass623d28f2016-01-18 19:52:15 -070064 align = plat->align ? plat->align : 1 << 20;
65 base = *addrp - plat->size;
66 base &= ~(align - 1);
67 plat->base = base;
68 size = *addrp - base;
69 *addrp = base;
70
71 return size;
72}
73
74int video_reserve(ulong *addrp)
75{
76 struct udevice *dev;
77 ulong size;
78
79 gd->video_top = *addrp;
80 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
81 dev;
82 uclass_find_next_device(&dev)) {
83 size = alloc_fb(dev, addrp);
84 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
85 __func__, size, *addrp, dev->name);
86 }
87 gd->video_bottom = *addrp;
Simon Glassb2b29612020-05-10 14:17:01 -060088 gd->fb_base = *addrp;
Simon Glass623d28f2016-01-18 19:52:15 -070089 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
90 gd->video_top);
91
92 return 0;
93}
94
Simon Glass55343122018-10-01 12:22:26 -060095int video_clear(struct udevice *dev)
Simon Glass623d28f2016-01-18 19:52:15 -070096{
97 struct video_priv *priv = dev_get_uclass_priv(dev);
Simon Glassf8ec6212020-07-02 21:12:22 -060098 int ret;
Simon Glass623d28f2016-01-18 19:52:15 -070099
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100100 switch (priv->bpix) {
Simon Glass05c17d62019-12-20 18:10:37 -0700101 case VIDEO_BPP16:
102 if (IS_ENABLED(CONFIG_VIDEO_BPP16)) {
103 u16 *ppix = priv->fb;
104 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100105
Simon Glass05c17d62019-12-20 18:10:37 -0700106 while (ppix < end)
107 *ppix++ = priv->colour_bg;
108 break;
109 }
110 case VIDEO_BPP32:
111 if (IS_ENABLED(CONFIG_VIDEO_BPP32)) {
112 u32 *ppix = priv->fb;
113 u32 *end = priv->fb + priv->fb_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700114
Simon Glass05c17d62019-12-20 18:10:37 -0700115 while (ppix < end)
116 *ppix++ = priv->colour_bg;
117 break;
118 }
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100119 default:
Simon Glass623d28f2016-01-18 19:52:15 -0700120 memset(priv->fb, priv->colour_bg, priv->fb_size);
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100121 break;
Simon Glass623d28f2016-01-18 19:52:15 -0700122 }
Simon Glassf8ec6212020-07-02 21:12:22 -0600123 ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size);
124 if (ret)
125 return ret;
Simon Glass55343122018-10-01 12:22:26 -0600126
127 return 0;
Simon Glass623d28f2016-01-18 19:52:15 -0700128}
129
Simon Glass2b063b82018-11-06 15:21:36 -0700130void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100131{
Simon Glass2b063b82018-11-06 15:21:36 -0700132 struct video_priv *priv = dev_get_uclass_priv(dev);
133 int fore, back;
134
Simon Glass05c17d62019-12-20 18:10:37 -0700135 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
136 /* White is used when switching to bold, use light gray here */
137 fore = VID_LIGHT_GRAY;
138 back = VID_BLACK;
139 } else {
140 fore = VID_BLACK;
141 back = VID_WHITE;
142 }
Simon Glass2b063b82018-11-06 15:21:36 -0700143 if (invert) {
144 int temp;
145
146 temp = fore;
147 fore = back;
148 back = temp;
149 }
150 priv->fg_col_idx = fore;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000151 priv->bg_col_idx = back;
Simon Glass2b063b82018-11-06 15:21:36 -0700152 priv->colour_fg = vid_console_color(priv, fore);
153 priv->colour_bg = vid_console_color(priv, back);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100154}
155
Simon Glass623d28f2016-01-18 19:52:15 -0700156/* Flush video activity to the caches */
Simon Glass0806dcc2018-10-01 11:55:14 -0600157void video_sync(struct udevice *vid, bool force)
Simon Glass623d28f2016-01-18 19:52:15 -0700158{
159 /*
160 * flush_dcache_range() is declared in common.h but it seems that some
161 * architectures do not actually implement it. Is there a way to find
162 * out whether it exists? For now, ARM is safe.
163 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400164#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass623d28f2016-01-18 19:52:15 -0700165 struct video_priv *priv = dev_get_uclass_priv(vid);
166
167 if (priv->flush_dcache) {
168 flush_dcache_range((ulong)priv->fb,
Simon Glasseebc3fd2016-11-13 14:22:06 -0700169 ALIGN((ulong)priv->fb + priv->fb_size,
170 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass623d28f2016-01-18 19:52:15 -0700171 }
172#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
173 struct video_priv *priv = dev_get_uclass_priv(vid);
174 static ulong last_sync;
175
Simon Glass0806dcc2018-10-01 11:55:14 -0600176 if (force || get_timer(last_sync) > 10) {
Simon Glass623d28f2016-01-18 19:52:15 -0700177 sandbox_sdl_sync(priv->fb);
178 last_sync = get_timer(0);
179 }
180#endif
181}
182
183void video_sync_all(void)
184{
185 struct udevice *dev;
186
187 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
188 dev;
189 uclass_find_next_device(&dev)) {
190 if (device_active(dev))
Simon Glass0806dcc2018-10-01 11:55:14 -0600191 video_sync(dev, true);
Simon Glass623d28f2016-01-18 19:52:15 -0700192 }
193}
194
195int video_get_xsize(struct udevice *dev)
196{
197 struct video_priv *priv = dev_get_uclass_priv(dev);
198
199 return priv->xsize;
200}
201
202int video_get_ysize(struct udevice *dev)
203{
204 struct video_priv *priv = dev_get_uclass_priv(dev);
205
206 return priv->ysize;
207}
208
Simon Glass73c9c372020-07-02 21:12:20 -0600209#ifdef CONFIG_VIDEO_COPY
210int video_sync_copy(struct udevice *dev, void *from, void *to)
211{
212 struct video_priv *priv = dev_get_uclass_priv(dev);
213
214 if (priv->copy_fb) {
215 long offset, size;
216
217 /* Find the offset of the first byte to copy */
218 if ((ulong)to > (ulong)from) {
219 size = to - from;
220 offset = from - priv->fb;
221 } else {
222 size = from - to;
223 offset = to - priv->fb;
224 }
225
226 /*
227 * Allow a bit of leeway for valid requests somewhere near the
228 * frame buffer
229 */
230 if (offset < -priv->fb_size || offset > 2 * priv->fb_size) {
231#ifdef DEBUG
232 char str[80];
233
234 snprintf(str, sizeof(str),
235 "[sync_copy fb=%p, from=%p, to=%p, offset=%lx]",
236 priv->fb, from, to, offset);
237 console_puts_select_stderr(true, str);
238#endif
239 return -EFAULT;
240 }
241
242 /*
243 * Silently crop the memcpy. This allows callers to avoid doing
244 * this themselves. It is common for the end pointer to go a
245 * few lines after the end of the frame buffer, since most of
246 * the update algorithms terminate a line after their last write
247 */
248 if (offset + size > priv->fb_size) {
249 size = priv->fb_size - offset;
250 } else if (offset < 0) {
251 size += offset;
252 offset = 0;
253 }
254
255 memcpy(priv->copy_fb + offset, priv->fb + offset, size);
256 }
257
258 return 0;
259}
260#endif
261
Simon Glass623d28f2016-01-18 19:52:15 -0700262/* Set up the colour map */
263static int video_pre_probe(struct udevice *dev)
264{
265 struct video_priv *priv = dev_get_uclass_priv(dev);
266
267 priv->cmap = calloc(256, sizeof(ushort));
268 if (!priv->cmap)
269 return -ENOMEM;
270
271 return 0;
272}
273
274static int video_pre_remove(struct udevice *dev)
275{
276 struct video_priv *priv = dev_get_uclass_priv(dev);
277
278 free(priv->cmap);
279
280 return 0;
281}
282
283/* Set up the display ready for use */
284static int video_post_probe(struct udevice *dev)
285{
286 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
287 struct video_priv *priv = dev_get_uclass_priv(dev);
288 char name[30], drv[15], *str;
Simon Glassb3a72b32016-01-14 18:10:48 -0700289 const char *drv_name = drv;
Simon Glass623d28f2016-01-18 19:52:15 -0700290 struct udevice *cons;
291 int ret;
292
293 /* Set up the line and display size */
294 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass7d186732018-11-29 15:08:52 -0700295 if (!priv->line_length)
296 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
297
Simon Glass623d28f2016-01-18 19:52:15 -0700298 priv->fb_size = priv->line_length * priv->ysize;
299
Simon Glassb4928e52020-07-02 21:12:21 -0600300 if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base)
301 priv->copy_fb = map_sysmem(plat->copy_base, plat->size);
302
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100303 /* Set up colors */
Simon Glass2b063b82018-11-06 15:21:36 -0700304 video_set_default_colors(dev, false);
Rob Clarkf1411882017-08-03 12:47:01 -0400305
306 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
307 video_clear(dev);
Simon Glass623d28f2016-01-18 19:52:15 -0700308
Simon Glass84c7fb32016-01-18 19:52:17 -0700309 /*
Simon Glassb3a72b32016-01-14 18:10:48 -0700310 * Create a text console device. For now we always do this, although
Simon Glass84c7fb32016-01-18 19:52:17 -0700311 * it might be useful to support only bitmap drawing on the device
Simon Glassb3a72b32016-01-14 18:10:48 -0700312 * for boards that don't need to display text. We create a TrueType
313 * console if enabled, a rotated console if the video driver requests
314 * it, otherwise a normal console.
315 *
316 * The console can be override by setting vidconsole_drv_name before
317 * probing this video driver, or in the probe() method.
318 *
319 * TrueType does not support rotation at present so fall back to the
320 * rotated console in that case.
Simon Glass84c7fb32016-01-18 19:52:17 -0700321 */
Simon Glassb3a72b32016-01-14 18:10:48 -0700322 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glass2ef353e2016-01-14 18:10:42 -0700323 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
324 strcpy(drv, "vidconsole_tt");
325 } else {
326 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
327 priv->rot);
328 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
329 }
330
Simon Glass84c7fb32016-01-18 19:52:17 -0700331 str = strdup(name);
332 if (!str)
333 return -ENOMEM;
Simon Glassb3a72b32016-01-14 18:10:48 -0700334 if (priv->vidconsole_drv_name)
335 drv_name = priv->vidconsole_drv_name;
336 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass84c7fb32016-01-18 19:52:17 -0700337 if (ret) {
338 debug("%s: Cannot bind console driver\n", __func__);
339 return ret;
340 }
Simon Glassb3a72b32016-01-14 18:10:48 -0700341
Simon Glass84c7fb32016-01-18 19:52:17 -0700342 ret = device_probe(cons);
343 if (ret) {
344 debug("%s: Cannot probe console driver\n", __func__);
345 return ret;
346 }
347
Simon Glass623d28f2016-01-18 19:52:15 -0700348 return 0;
349};
350
351/* Post-relocation, allocate memory for the frame buffer */
352static int video_post_bind(struct udevice *dev)
353{
354 ulong addr = gd->video_top;
355 ulong size;
356
357 /* Before relocation there is nothing to do here */
Tom Rini6985a722018-04-22 09:47:48 -0400358 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass623d28f2016-01-18 19:52:15 -0700359 return 0;
360 size = alloc_fb(dev, &addr);
361 if (addr < gd->video_bottom) {
Patrick Delaunayd1937182019-05-21 19:19:12 +0200362 /* Device tree node may need the 'u-boot,dm-pre-reloc' or
363 * 'u-boot,dm-pre-proper' tag
364 */
Simon Glass623d28f2016-01-18 19:52:15 -0700365 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
366 dev->name);
367 return -ENOSPC;
368 }
369 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
370 __func__, size, addr, dev->name);
371 gd->video_bottom = addr;
372
373 return 0;
374}
375
376UCLASS_DRIVER(video) = {
377 .id = UCLASS_VIDEO,
378 .name = "video",
379 .flags = DM_UC_FLAG_SEQ_ALIAS,
380 .post_bind = video_post_bind,
381 .pre_probe = video_pre_probe,
382 .post_probe = video_post_probe,
383 .pre_remove = video_pre_remove,
384 .per_device_auto_alloc_size = sizeof(struct video_priv),
385 .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata),
386};