blob: 650891e49dd0a0b334f3a5aac72b9a63ae4a5d87 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass1acafc72016-01-18 19:52:15 -07002/*
3 * Copyright (c) 2015 Google, Inc
Simon Glass1acafc72016-01-18 19:52:15 -07004 */
5
6#include <common.h>
Simon Glass9beac5d2020-07-02 21:12:20 -06007#include <console.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Simon Glass1acafc72016-01-18 19:52:15 -07009#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070011#include <malloc.h>
Simon Glass1acafc72016-01-18 19:52:15 -070012#include <mapmem.h>
13#include <stdio_dev.h>
14#include <video.h>
15#include <video_console.h>
Simon Glass90526e92020-05-10 11:39:56 -060016#include <asm/cache.h>
Simon Glass1acafc72016-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 Glass7812bbd2020-07-02 21:12:32 -060049/**
50 * struct video_uc_priv - Information for the video uclass
51 *
52 * @video_ptr: Current allocation position of the video framebuffer pointer.
53 * While binding devices after relocation, this points to the next
54 * available address to use for a device's framebuffer. It starts at
55 * gd->video_top and works downwards, running out of space when it hits
56 * gd->video_bottom.
57 */
58struct video_uc_priv {
59 ulong video_ptr;
60};
61
Simon Glass68dcdc92016-01-21 19:44:52 -070062void video_set_flush_dcache(struct udevice *dev, bool flush)
63{
64 struct video_priv *priv = dev_get_uclass_priv(dev);
65
66 priv->flush_dcache = flush;
67}
68
Simon Glass1acafc72016-01-18 19:52:15 -070069static ulong alloc_fb(struct udevice *dev, ulong *addrp)
70{
71 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
72 ulong base, align, size;
73
Bin Meng39683982016-10-09 04:14:17 -070074 if (!plat->size)
75 return 0;
76
Simon Glass1acafc72016-01-18 19:52:15 -070077 align = plat->align ? plat->align : 1 << 20;
78 base = *addrp - plat->size;
79 base &= ~(align - 1);
80 plat->base = base;
81 size = *addrp - base;
82 *addrp = base;
83
84 return size;
85}
86
87int video_reserve(ulong *addrp)
88{
89 struct udevice *dev;
90 ulong size;
91
92 gd->video_top = *addrp;
93 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
94 dev;
95 uclass_find_next_device(&dev)) {
96 size = alloc_fb(dev, addrp);
97 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
98 __func__, size, *addrp, dev->name);
99 }
Simon Glass551ca0e2020-07-02 21:12:33 -0600100
101 /* Allocate space for PCI video devices in case there were not bound */
102 if (*addrp == gd->video_top)
103 *addrp -= CONFIG_VIDEO_PCI_DEFAULT_FB_SIZE;
104
Simon Glass1acafc72016-01-18 19:52:15 -0700105 gd->video_bottom = *addrp;
Simon Glassaef43ea2020-05-10 14:17:01 -0600106 gd->fb_base = *addrp;
Simon Glass1acafc72016-01-18 19:52:15 -0700107 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
108 gd->video_top);
109
110 return 0;
111}
112
Simon Glassc6ebd012018-10-01 12:22:26 -0600113int video_clear(struct udevice *dev)
Simon Glass1acafc72016-01-18 19:52:15 -0700114{
115 struct video_priv *priv = dev_get_uclass_priv(dev);
Simon Glass138dfea2020-07-02 21:12:22 -0600116 int ret;
Simon Glass1acafc72016-01-18 19:52:15 -0700117
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100118 switch (priv->bpix) {
Simon Glass0c20aaf2019-12-20 18:10:37 -0700119 case VIDEO_BPP16:
120 if (IS_ENABLED(CONFIG_VIDEO_BPP16)) {
121 u16 *ppix = priv->fb;
122 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100123
Simon Glass0c20aaf2019-12-20 18:10:37 -0700124 while (ppix < end)
125 *ppix++ = priv->colour_bg;
126 break;
127 }
128 case VIDEO_BPP32:
129 if (IS_ENABLED(CONFIG_VIDEO_BPP32)) {
130 u32 *ppix = priv->fb;
131 u32 *end = priv->fb + priv->fb_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700132
Simon Glass0c20aaf2019-12-20 18:10:37 -0700133 while (ppix < end)
134 *ppix++ = priv->colour_bg;
135 break;
136 }
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100137 default:
Simon Glass1acafc72016-01-18 19:52:15 -0700138 memset(priv->fb, priv->colour_bg, priv->fb_size);
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100139 break;
Simon Glass1acafc72016-01-18 19:52:15 -0700140 }
Simon Glass138dfea2020-07-02 21:12:22 -0600141 ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size);
142 if (ret)
143 return ret;
Simon Glassc6ebd012018-10-01 12:22:26 -0600144
145 return 0;
Simon Glass1acafc72016-01-18 19:52:15 -0700146}
147
Simon Glassb9f210a2018-11-06 15:21:36 -0700148void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100149{
Simon Glassb9f210a2018-11-06 15:21:36 -0700150 struct video_priv *priv = dev_get_uclass_priv(dev);
151 int fore, back;
152
Simon Glass0c20aaf2019-12-20 18:10:37 -0700153 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
154 /* White is used when switching to bold, use light gray here */
155 fore = VID_LIGHT_GRAY;
156 back = VID_BLACK;
157 } else {
158 fore = VID_BLACK;
159 back = VID_WHITE;
160 }
Simon Glassb9f210a2018-11-06 15:21:36 -0700161 if (invert) {
162 int temp;
163
164 temp = fore;
165 fore = back;
166 back = temp;
167 }
168 priv->fg_col_idx = fore;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000169 priv->bg_col_idx = back;
Simon Glassb9f210a2018-11-06 15:21:36 -0700170 priv->colour_fg = vid_console_color(priv, fore);
171 priv->colour_bg = vid_console_color(priv, back);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100172}
173
Simon Glass1acafc72016-01-18 19:52:15 -0700174/* Flush video activity to the caches */
Simon Glass55d39912018-10-01 11:55:14 -0600175void video_sync(struct udevice *vid, bool force)
Simon Glass1acafc72016-01-18 19:52:15 -0700176{
177 /*
178 * flush_dcache_range() is declared in common.h but it seems that some
179 * architectures do not actually implement it. Is there a way to find
180 * out whether it exists? For now, ARM is safe.
181 */
Trevor Woerner10015022019-05-03 09:41:00 -0400182#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass1acafc72016-01-18 19:52:15 -0700183 struct video_priv *priv = dev_get_uclass_priv(vid);
184
185 if (priv->flush_dcache) {
186 flush_dcache_range((ulong)priv->fb,
Simon Glass79813942016-11-13 14:22:06 -0700187 ALIGN((ulong)priv->fb + priv->fb_size,
188 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass1acafc72016-01-18 19:52:15 -0700189 }
190#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
191 struct video_priv *priv = dev_get_uclass_priv(vid);
192 static ulong last_sync;
193
Simon Glass55d39912018-10-01 11:55:14 -0600194 if (force || get_timer(last_sync) > 10) {
Simon Glass1acafc72016-01-18 19:52:15 -0700195 sandbox_sdl_sync(priv->fb);
196 last_sync = get_timer(0);
197 }
198#endif
199}
200
201void video_sync_all(void)
202{
203 struct udevice *dev;
204
205 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
206 dev;
207 uclass_find_next_device(&dev)) {
208 if (device_active(dev))
Simon Glass55d39912018-10-01 11:55:14 -0600209 video_sync(dev, true);
Simon Glass1acafc72016-01-18 19:52:15 -0700210 }
211}
212
213int video_get_xsize(struct udevice *dev)
214{
215 struct video_priv *priv = dev_get_uclass_priv(dev);
216
217 return priv->xsize;
218}
219
220int video_get_ysize(struct udevice *dev)
221{
222 struct video_priv *priv = dev_get_uclass_priv(dev);
223
224 return priv->ysize;
225}
226
Simon Glass9beac5d2020-07-02 21:12:20 -0600227#ifdef CONFIG_VIDEO_COPY
228int video_sync_copy(struct udevice *dev, void *from, void *to)
229{
230 struct video_priv *priv = dev_get_uclass_priv(dev);
231
232 if (priv->copy_fb) {
233 long offset, size;
234
235 /* Find the offset of the first byte to copy */
236 if ((ulong)to > (ulong)from) {
237 size = to - from;
238 offset = from - priv->fb;
239 } else {
240 size = from - to;
241 offset = to - priv->fb;
242 }
243
244 /*
245 * Allow a bit of leeway for valid requests somewhere near the
246 * frame buffer
247 */
248 if (offset < -priv->fb_size || offset > 2 * priv->fb_size) {
249#ifdef DEBUG
250 char str[80];
251
252 snprintf(str, sizeof(str),
253 "[sync_copy fb=%p, from=%p, to=%p, offset=%lx]",
254 priv->fb, from, to, offset);
255 console_puts_select_stderr(true, str);
256#endif
257 return -EFAULT;
258 }
259
260 /*
261 * Silently crop the memcpy. This allows callers to avoid doing
262 * this themselves. It is common for the end pointer to go a
263 * few lines after the end of the frame buffer, since most of
264 * the update algorithms terminate a line after their last write
265 */
266 if (offset + size > priv->fb_size) {
267 size = priv->fb_size - offset;
268 } else if (offset < 0) {
269 size += offset;
270 offset = 0;
271 }
272
273 memcpy(priv->copy_fb + offset, priv->fb + offset, size);
274 }
275
276 return 0;
277}
278#endif
279
Simon Glass1acafc72016-01-18 19:52:15 -0700280/* Set up the colour map */
281static int video_pre_probe(struct udevice *dev)
282{
283 struct video_priv *priv = dev_get_uclass_priv(dev);
284
285 priv->cmap = calloc(256, sizeof(ushort));
286 if (!priv->cmap)
287 return -ENOMEM;
288
289 return 0;
290}
291
292static int video_pre_remove(struct udevice *dev)
293{
294 struct video_priv *priv = dev_get_uclass_priv(dev);
295
296 free(priv->cmap);
297
298 return 0;
299}
300
301/* Set up the display ready for use */
302static int video_post_probe(struct udevice *dev)
303{
304 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
305 struct video_priv *priv = dev_get_uclass_priv(dev);
306 char name[30], drv[15], *str;
Simon Glass826f35f2016-01-14 18:10:48 -0700307 const char *drv_name = drv;
Simon Glass1acafc72016-01-18 19:52:15 -0700308 struct udevice *cons;
309 int ret;
310
311 /* Set up the line and display size */
312 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass06696eb2018-11-29 15:08:52 -0700313 if (!priv->line_length)
314 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
315
Simon Glass1acafc72016-01-18 19:52:15 -0700316 priv->fb_size = priv->line_length * priv->ysize;
317
Simon Glass6efa8092020-07-02 21:12:21 -0600318 if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base)
319 priv->copy_fb = map_sysmem(plat->copy_base, plat->size);
320
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100321 /* Set up colors */
Simon Glassb9f210a2018-11-06 15:21:36 -0700322 video_set_default_colors(dev, false);
Rob Clark8ef05352017-08-03 12:47:01 -0400323
324 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
325 video_clear(dev);
Simon Glass1acafc72016-01-18 19:52:15 -0700326
Simon Glass83510762016-01-18 19:52:17 -0700327 /*
Simon Glass826f35f2016-01-14 18:10:48 -0700328 * Create a text console device. For now we always do this, although
Simon Glass83510762016-01-18 19:52:17 -0700329 * it might be useful to support only bitmap drawing on the device
Simon Glass826f35f2016-01-14 18:10:48 -0700330 * for boards that don't need to display text. We create a TrueType
331 * console if enabled, a rotated console if the video driver requests
332 * it, otherwise a normal console.
333 *
334 * The console can be override by setting vidconsole_drv_name before
335 * probing this video driver, or in the probe() method.
336 *
337 * TrueType does not support rotation at present so fall back to the
338 * rotated console in that case.
Simon Glass83510762016-01-18 19:52:17 -0700339 */
Simon Glass826f35f2016-01-14 18:10:48 -0700340 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glassa29b0122016-01-14 18:10:42 -0700341 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
342 strcpy(drv, "vidconsole_tt");
343 } else {
344 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
345 priv->rot);
346 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
347 }
348
Simon Glass83510762016-01-18 19:52:17 -0700349 str = strdup(name);
350 if (!str)
351 return -ENOMEM;
Simon Glass826f35f2016-01-14 18:10:48 -0700352 if (priv->vidconsole_drv_name)
353 drv_name = priv->vidconsole_drv_name;
354 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass83510762016-01-18 19:52:17 -0700355 if (ret) {
356 debug("%s: Cannot bind console driver\n", __func__);
357 return ret;
358 }
Simon Glass826f35f2016-01-14 18:10:48 -0700359
Simon Glass83510762016-01-18 19:52:17 -0700360 ret = device_probe(cons);
361 if (ret) {
362 debug("%s: Cannot probe console driver\n", __func__);
363 return ret;
364 }
365
Simon Glass1acafc72016-01-18 19:52:15 -0700366 return 0;
367};
368
369/* Post-relocation, allocate memory for the frame buffer */
370static int video_post_bind(struct udevice *dev)
371{
Simon Glass7812bbd2020-07-02 21:12:32 -0600372 struct video_uc_priv *uc_priv;
373 ulong addr;
Simon Glass1acafc72016-01-18 19:52:15 -0700374 ulong size;
375
376 /* Before relocation there is nothing to do here */
Tom Rini75164182018-04-22 09:47:48 -0400377 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass1acafc72016-01-18 19:52:15 -0700378 return 0;
Simon Glass7812bbd2020-07-02 21:12:32 -0600379
380 /* Set up the video pointer, if this is the first device */
381 uc_priv = dev->uclass->priv;
382 if (!uc_priv->video_ptr)
383 uc_priv->video_ptr = gd->video_top;
384
385 /* Allocate framebuffer space for this device */
386 addr = uc_priv->video_ptr;
Simon Glass1acafc72016-01-18 19:52:15 -0700387 size = alloc_fb(dev, &addr);
388 if (addr < gd->video_bottom) {
Patrick Delaunay69989742019-05-21 19:19:12 +0200389 /* Device tree node may need the 'u-boot,dm-pre-reloc' or
390 * 'u-boot,dm-pre-proper' tag
391 */
Simon Glass1acafc72016-01-18 19:52:15 -0700392 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
393 dev->name);
394 return -ENOSPC;
395 }
396 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
397 __func__, size, addr, dev->name);
Simon Glass7812bbd2020-07-02 21:12:32 -0600398 uc_priv->video_ptr = addr;
Simon Glass1acafc72016-01-18 19:52:15 -0700399
400 return 0;
401}
402
403UCLASS_DRIVER(video) = {
404 .id = UCLASS_VIDEO,
405 .name = "video",
406 .flags = DM_UC_FLAG_SEQ_ALIAS,
407 .post_bind = video_post_bind,
408 .pre_probe = video_pre_probe,
409 .post_probe = video_post_probe,
410 .pre_remove = video_pre_remove,
Simon Glass7812bbd2020-07-02 21:12:32 -0600411 .priv_auto_alloc_size = sizeof(struct video_uc_priv),
Simon Glass1acafc72016-01-18 19:52:15 -0700412 .per_device_auto_alloc_size = sizeof(struct video_priv),
413 .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata),
414};