blob: 3d658e61d7c6ccba03164ca239b6962a85478fb2 [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 Glass1eb69ae2019-11-14 12:57:39 -07007#include <cpu_func.h>
Simon Glass1acafc72016-01-18 19:52:15 -07008#include <dm.h>
Simon Glass336d4612020-02-03 07:36:16 -07009#include <malloc.h>
Simon Glass1acafc72016-01-18 19:52:15 -070010#include <mapmem.h>
11#include <stdio_dev.h>
12#include <video.h>
13#include <video_console.h>
14#include <dm/lists.h>
15#include <dm/device-internal.h>
16#include <dm/uclass-internal.h>
17#ifdef CONFIG_SANDBOX
18#include <asm/sdl.h>
19#endif
20
21/*
22 * Theory of operation:
23 *
24 * Before relocation each device is bound. The driver for each device must
25 * set the @align and @size values in struct video_uc_platdata. This
26 * information represents the requires size and alignment of the frame buffer
27 * for the device. The values can be an over-estimate but cannot be too
28 * small. The actual values will be suppled (in the same manner) by the bind()
29 * method after relocation.
30 *
31 * This information is then picked up by video_reserve() which works out how
32 * much memory is needed for all devices. This is allocated between
33 * gd->video_bottom and gd->video_top.
34 *
35 * After relocation the same process occurs. The driver supplies the same
36 * @size and @align information and this time video_post_bind() checks that
37 * the drivers does not overflow the allocated memory.
38 *
39 * The frame buffer address is actually set (to plat->base) in
40 * video_post_probe(). This function also clears the frame buffer and
41 * allocates a suitable text console device. This can then be used to write
42 * text to the video device.
43 */
44DECLARE_GLOBAL_DATA_PTR;
45
Simon Glass68dcdc92016-01-21 19:44:52 -070046void video_set_flush_dcache(struct udevice *dev, bool flush)
47{
48 struct video_priv *priv = dev_get_uclass_priv(dev);
49
50 priv->flush_dcache = flush;
51}
52
Simon Glass1acafc72016-01-18 19:52:15 -070053static ulong alloc_fb(struct udevice *dev, ulong *addrp)
54{
55 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
56 ulong base, align, size;
57
Bin Meng39683982016-10-09 04:14:17 -070058 if (!plat->size)
59 return 0;
60
Simon Glass1acafc72016-01-18 19:52:15 -070061 align = plat->align ? plat->align : 1 << 20;
62 base = *addrp - plat->size;
63 base &= ~(align - 1);
64 plat->base = base;
65 size = *addrp - base;
66 *addrp = base;
67
68 return size;
69}
70
71int video_reserve(ulong *addrp)
72{
73 struct udevice *dev;
74 ulong size;
75
76 gd->video_top = *addrp;
77 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
78 dev;
79 uclass_find_next_device(&dev)) {
80 size = alloc_fb(dev, addrp);
81 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
82 __func__, size, *addrp, dev->name);
83 }
84 gd->video_bottom = *addrp;
85 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
86 gd->video_top);
87
88 return 0;
89}
90
Simon Glassc6ebd012018-10-01 12:22:26 -060091int video_clear(struct udevice *dev)
Simon Glass1acafc72016-01-18 19:52:15 -070092{
93 struct video_priv *priv = dev_get_uclass_priv(dev);
94
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +010095 switch (priv->bpix) {
Simon Glass0c20aaf2019-12-20 18:10:37 -070096 case VIDEO_BPP16:
97 if (IS_ENABLED(CONFIG_VIDEO_BPP16)) {
98 u16 *ppix = priv->fb;
99 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100100
Simon Glass0c20aaf2019-12-20 18:10:37 -0700101 while (ppix < end)
102 *ppix++ = priv->colour_bg;
103 break;
104 }
105 case VIDEO_BPP32:
106 if (IS_ENABLED(CONFIG_VIDEO_BPP32)) {
107 u32 *ppix = priv->fb;
108 u32 *end = priv->fb + priv->fb_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700109
Simon Glass0c20aaf2019-12-20 18:10:37 -0700110 while (ppix < end)
111 *ppix++ = priv->colour_bg;
112 break;
113 }
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100114 default:
Simon Glass1acafc72016-01-18 19:52:15 -0700115 memset(priv->fb, priv->colour_bg, priv->fb_size);
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100116 break;
Simon Glass1acafc72016-01-18 19:52:15 -0700117 }
Simon Glassc6ebd012018-10-01 12:22:26 -0600118
119 return 0;
Simon Glass1acafc72016-01-18 19:52:15 -0700120}
121
Simon Glassb9f210a2018-11-06 15:21:36 -0700122void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100123{
Simon Glassb9f210a2018-11-06 15:21:36 -0700124 struct video_priv *priv = dev_get_uclass_priv(dev);
125 int fore, back;
126
Simon Glass0c20aaf2019-12-20 18:10:37 -0700127 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
128 /* White is used when switching to bold, use light gray here */
129 fore = VID_LIGHT_GRAY;
130 back = VID_BLACK;
131 } else {
132 fore = VID_BLACK;
133 back = VID_WHITE;
134 }
Simon Glassb9f210a2018-11-06 15:21:36 -0700135 if (invert) {
136 int temp;
137
138 temp = fore;
139 fore = back;
140 back = temp;
141 }
142 priv->fg_col_idx = fore;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000143 priv->bg_col_idx = back;
Simon Glassb9f210a2018-11-06 15:21:36 -0700144 priv->colour_fg = vid_console_color(priv, fore);
145 priv->colour_bg = vid_console_color(priv, back);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100146}
147
Simon Glass1acafc72016-01-18 19:52:15 -0700148/* Flush video activity to the caches */
Simon Glass55d39912018-10-01 11:55:14 -0600149void video_sync(struct udevice *vid, bool force)
Simon Glass1acafc72016-01-18 19:52:15 -0700150{
151 /*
152 * flush_dcache_range() is declared in common.h but it seems that some
153 * architectures do not actually implement it. Is there a way to find
154 * out whether it exists? For now, ARM is safe.
155 */
Trevor Woerner10015022019-05-03 09:41:00 -0400156#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass1acafc72016-01-18 19:52:15 -0700157 struct video_priv *priv = dev_get_uclass_priv(vid);
158
159 if (priv->flush_dcache) {
160 flush_dcache_range((ulong)priv->fb,
Simon Glass79813942016-11-13 14:22:06 -0700161 ALIGN((ulong)priv->fb + priv->fb_size,
162 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass1acafc72016-01-18 19:52:15 -0700163 }
164#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
165 struct video_priv *priv = dev_get_uclass_priv(vid);
166 static ulong last_sync;
167
Simon Glass55d39912018-10-01 11:55:14 -0600168 if (force || get_timer(last_sync) > 10) {
Simon Glass1acafc72016-01-18 19:52:15 -0700169 sandbox_sdl_sync(priv->fb);
170 last_sync = get_timer(0);
171 }
172#endif
173}
174
175void video_sync_all(void)
176{
177 struct udevice *dev;
178
179 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
180 dev;
181 uclass_find_next_device(&dev)) {
182 if (device_active(dev))
Simon Glass55d39912018-10-01 11:55:14 -0600183 video_sync(dev, true);
Simon Glass1acafc72016-01-18 19:52:15 -0700184 }
185}
186
187int video_get_xsize(struct udevice *dev)
188{
189 struct video_priv *priv = dev_get_uclass_priv(dev);
190
191 return priv->xsize;
192}
193
194int video_get_ysize(struct udevice *dev)
195{
196 struct video_priv *priv = dev_get_uclass_priv(dev);
197
198 return priv->ysize;
199}
200
201/* Set up the colour map */
202static int video_pre_probe(struct udevice *dev)
203{
204 struct video_priv *priv = dev_get_uclass_priv(dev);
205
206 priv->cmap = calloc(256, sizeof(ushort));
207 if (!priv->cmap)
208 return -ENOMEM;
209
210 return 0;
211}
212
213static int video_pre_remove(struct udevice *dev)
214{
215 struct video_priv *priv = dev_get_uclass_priv(dev);
216
217 free(priv->cmap);
218
219 return 0;
220}
221
222/* Set up the display ready for use */
223static int video_post_probe(struct udevice *dev)
224{
225 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
226 struct video_priv *priv = dev_get_uclass_priv(dev);
227 char name[30], drv[15], *str;
Simon Glass826f35f2016-01-14 18:10:48 -0700228 const char *drv_name = drv;
Simon Glass1acafc72016-01-18 19:52:15 -0700229 struct udevice *cons;
230 int ret;
231
232 /* Set up the line and display size */
233 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass06696eb2018-11-29 15:08:52 -0700234 if (!priv->line_length)
235 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
236
Simon Glass1acafc72016-01-18 19:52:15 -0700237 priv->fb_size = priv->line_length * priv->ysize;
238
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100239 /* Set up colors */
Simon Glassb9f210a2018-11-06 15:21:36 -0700240 video_set_default_colors(dev, false);
Rob Clark8ef05352017-08-03 12:47:01 -0400241
242 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
243 video_clear(dev);
Simon Glass1acafc72016-01-18 19:52:15 -0700244
Simon Glass83510762016-01-18 19:52:17 -0700245 /*
Simon Glass826f35f2016-01-14 18:10:48 -0700246 * Create a text console device. For now we always do this, although
Simon Glass83510762016-01-18 19:52:17 -0700247 * it might be useful to support only bitmap drawing on the device
Simon Glass826f35f2016-01-14 18:10:48 -0700248 * for boards that don't need to display text. We create a TrueType
249 * console if enabled, a rotated console if the video driver requests
250 * it, otherwise a normal console.
251 *
252 * The console can be override by setting vidconsole_drv_name before
253 * probing this video driver, or in the probe() method.
254 *
255 * TrueType does not support rotation at present so fall back to the
256 * rotated console in that case.
Simon Glass83510762016-01-18 19:52:17 -0700257 */
Simon Glass826f35f2016-01-14 18:10:48 -0700258 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glassa29b0122016-01-14 18:10:42 -0700259 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
260 strcpy(drv, "vidconsole_tt");
261 } else {
262 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
263 priv->rot);
264 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
265 }
266
Simon Glass83510762016-01-18 19:52:17 -0700267 str = strdup(name);
268 if (!str)
269 return -ENOMEM;
Simon Glass826f35f2016-01-14 18:10:48 -0700270 if (priv->vidconsole_drv_name)
271 drv_name = priv->vidconsole_drv_name;
272 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass83510762016-01-18 19:52:17 -0700273 if (ret) {
274 debug("%s: Cannot bind console driver\n", __func__);
275 return ret;
276 }
Simon Glass826f35f2016-01-14 18:10:48 -0700277
Simon Glass83510762016-01-18 19:52:17 -0700278 ret = device_probe(cons);
279 if (ret) {
280 debug("%s: Cannot probe console driver\n", __func__);
281 return ret;
282 }
283
Simon Glass1acafc72016-01-18 19:52:15 -0700284 return 0;
285};
286
287/* Post-relocation, allocate memory for the frame buffer */
288static int video_post_bind(struct udevice *dev)
289{
290 ulong addr = gd->video_top;
291 ulong size;
292
293 /* Before relocation there is nothing to do here */
Tom Rini75164182018-04-22 09:47:48 -0400294 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass1acafc72016-01-18 19:52:15 -0700295 return 0;
296 size = alloc_fb(dev, &addr);
297 if (addr < gd->video_bottom) {
Patrick Delaunay69989742019-05-21 19:19:12 +0200298 /* Device tree node may need the 'u-boot,dm-pre-reloc' or
299 * 'u-boot,dm-pre-proper' tag
300 */
Simon Glass1acafc72016-01-18 19:52:15 -0700301 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
302 dev->name);
303 return -ENOSPC;
304 }
305 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
306 __func__, size, addr, dev->name);
307 gd->video_bottom = addr;
308
309 return 0;
310}
311
312UCLASS_DRIVER(video) = {
313 .id = UCLASS_VIDEO,
314 .name = "video",
315 .flags = DM_UC_FLAG_SEQ_ALIAS,
316 .post_bind = video_post_bind,
317 .pre_probe = video_pre_probe,
318 .post_probe = video_post_probe,
319 .pre_remove = video_pre_remove,
320 .per_device_auto_alloc_size = sizeof(struct video_priv),
321 .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata),
322};