blob: bf396d109186c8ca06d07937d5449afff01b4127 [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 Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Simon Glass1acafc72016-01-18 19:52:15 -070011#include <mapmem.h>
12#include <stdio_dev.h>
13#include <video.h>
14#include <video_console.h>
Simon Glass90526e92020-05-10 11:39:56 -060015#include <asm/cache.h>
Simon Glass1acafc72016-01-18 19:52:15 -070016#include <dm/lists.h>
17#include <dm/device-internal.h>
18#include <dm/uclass-internal.h>
19#ifdef CONFIG_SANDBOX
20#include <asm/sdl.h>
21#endif
22
23/*
24 * Theory of operation:
25 *
26 * Before relocation each device is bound. The driver for each device must
27 * set the @align and @size values in struct video_uc_platdata. This
28 * information represents the requires size and alignment of the frame buffer
29 * for the device. The values can be an over-estimate but cannot be too
30 * small. The actual values will be suppled (in the same manner) by the bind()
31 * method after relocation.
32 *
33 * This information is then picked up by video_reserve() which works out how
34 * much memory is needed for all devices. This is allocated between
35 * gd->video_bottom and gd->video_top.
36 *
37 * After relocation the same process occurs. The driver supplies the same
38 * @size and @align information and this time video_post_bind() checks that
39 * the drivers does not overflow the allocated memory.
40 *
41 * The frame buffer address is actually set (to plat->base) in
42 * video_post_probe(). This function also clears the frame buffer and
43 * allocates a suitable text console device. This can then be used to write
44 * text to the video device.
45 */
46DECLARE_GLOBAL_DATA_PTR;
47
Simon Glass68dcdc92016-01-21 19:44:52 -070048void video_set_flush_dcache(struct udevice *dev, bool flush)
49{
50 struct video_priv *priv = dev_get_uclass_priv(dev);
51
52 priv->flush_dcache = flush;
53}
54
Simon Glass1acafc72016-01-18 19:52:15 -070055static ulong alloc_fb(struct udevice *dev, ulong *addrp)
56{
57 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
58 ulong base, align, size;
59
Bin Meng39683982016-10-09 04:14:17 -070060 if (!plat->size)
61 return 0;
62
Simon Glass1acafc72016-01-18 19:52:15 -070063 align = plat->align ? plat->align : 1 << 20;
64 base = *addrp - plat->size;
65 base &= ~(align - 1);
66 plat->base = base;
67 size = *addrp - base;
68 *addrp = base;
69
70 return size;
71}
72
73int video_reserve(ulong *addrp)
74{
75 struct udevice *dev;
76 ulong size;
77
78 gd->video_top = *addrp;
79 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
80 dev;
81 uclass_find_next_device(&dev)) {
82 size = alloc_fb(dev, addrp);
83 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
84 __func__, size, *addrp, dev->name);
85 }
86 gd->video_bottom = *addrp;
87 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
88 gd->video_top);
89
90 return 0;
91}
92
Simon Glassc6ebd012018-10-01 12:22:26 -060093int video_clear(struct udevice *dev)
Simon Glass1acafc72016-01-18 19:52:15 -070094{
95 struct video_priv *priv = dev_get_uclass_priv(dev);
96
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +010097 switch (priv->bpix) {
Simon Glass0c20aaf2019-12-20 18:10:37 -070098 case VIDEO_BPP16:
99 if (IS_ENABLED(CONFIG_VIDEO_BPP16)) {
100 u16 *ppix = priv->fb;
101 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100102
Simon Glass0c20aaf2019-12-20 18:10:37 -0700103 while (ppix < end)
104 *ppix++ = priv->colour_bg;
105 break;
106 }
107 case VIDEO_BPP32:
108 if (IS_ENABLED(CONFIG_VIDEO_BPP32)) {
109 u32 *ppix = priv->fb;
110 u32 *end = priv->fb + priv->fb_size;
Simon Glass1acafc72016-01-18 19:52:15 -0700111
Simon Glass0c20aaf2019-12-20 18:10:37 -0700112 while (ppix < end)
113 *ppix++ = priv->colour_bg;
114 break;
115 }
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100116 default:
Simon Glass1acafc72016-01-18 19:52:15 -0700117 memset(priv->fb, priv->colour_bg, priv->fb_size);
Heinrich Schuchardtd7a75d32018-02-08 21:47:10 +0100118 break;
Simon Glass1acafc72016-01-18 19:52:15 -0700119 }
Simon Glassc6ebd012018-10-01 12:22:26 -0600120
121 return 0;
Simon Glass1acafc72016-01-18 19:52:15 -0700122}
123
Simon Glassb9f210a2018-11-06 15:21:36 -0700124void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100125{
Simon Glassb9f210a2018-11-06 15:21:36 -0700126 struct video_priv *priv = dev_get_uclass_priv(dev);
127 int fore, back;
128
Simon Glass0c20aaf2019-12-20 18:10:37 -0700129 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
130 /* White is used when switching to bold, use light gray here */
131 fore = VID_LIGHT_GRAY;
132 back = VID_BLACK;
133 } else {
134 fore = VID_BLACK;
135 back = VID_WHITE;
136 }
Simon Glassb9f210a2018-11-06 15:21:36 -0700137 if (invert) {
138 int temp;
139
140 temp = fore;
141 fore = back;
142 back = temp;
143 }
144 priv->fg_col_idx = fore;
Andre Przywaraeabb0722019-03-23 01:29:56 +0000145 priv->bg_col_idx = back;
Simon Glassb9f210a2018-11-06 15:21:36 -0700146 priv->colour_fg = vid_console_color(priv, fore);
147 priv->colour_bg = vid_console_color(priv, back);
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100148}
149
Simon Glass1acafc72016-01-18 19:52:15 -0700150/* Flush video activity to the caches */
Simon Glass55d39912018-10-01 11:55:14 -0600151void video_sync(struct udevice *vid, bool force)
Simon Glass1acafc72016-01-18 19:52:15 -0700152{
153 /*
154 * flush_dcache_range() is declared in common.h but it seems that some
155 * architectures do not actually implement it. Is there a way to find
156 * out whether it exists? For now, ARM is safe.
157 */
Trevor Woerner10015022019-05-03 09:41:00 -0400158#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass1acafc72016-01-18 19:52:15 -0700159 struct video_priv *priv = dev_get_uclass_priv(vid);
160
161 if (priv->flush_dcache) {
162 flush_dcache_range((ulong)priv->fb,
Simon Glass79813942016-11-13 14:22:06 -0700163 ALIGN((ulong)priv->fb + priv->fb_size,
164 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass1acafc72016-01-18 19:52:15 -0700165 }
166#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
167 struct video_priv *priv = dev_get_uclass_priv(vid);
168 static ulong last_sync;
169
Simon Glass55d39912018-10-01 11:55:14 -0600170 if (force || get_timer(last_sync) > 10) {
Simon Glass1acafc72016-01-18 19:52:15 -0700171 sandbox_sdl_sync(priv->fb);
172 last_sync = get_timer(0);
173 }
174#endif
175}
176
177void video_sync_all(void)
178{
179 struct udevice *dev;
180
181 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
182 dev;
183 uclass_find_next_device(&dev)) {
184 if (device_active(dev))
Simon Glass55d39912018-10-01 11:55:14 -0600185 video_sync(dev, true);
Simon Glass1acafc72016-01-18 19:52:15 -0700186 }
187}
188
189int video_get_xsize(struct udevice *dev)
190{
191 struct video_priv *priv = dev_get_uclass_priv(dev);
192
193 return priv->xsize;
194}
195
196int video_get_ysize(struct udevice *dev)
197{
198 struct video_priv *priv = dev_get_uclass_priv(dev);
199
200 return priv->ysize;
201}
202
203/* Set up the colour map */
204static int video_pre_probe(struct udevice *dev)
205{
206 struct video_priv *priv = dev_get_uclass_priv(dev);
207
208 priv->cmap = calloc(256, sizeof(ushort));
209 if (!priv->cmap)
210 return -ENOMEM;
211
212 return 0;
213}
214
215static int video_pre_remove(struct udevice *dev)
216{
217 struct video_priv *priv = dev_get_uclass_priv(dev);
218
219 free(priv->cmap);
220
221 return 0;
222}
223
224/* Set up the display ready for use */
225static int video_post_probe(struct udevice *dev)
226{
227 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
228 struct video_priv *priv = dev_get_uclass_priv(dev);
229 char name[30], drv[15], *str;
Simon Glass826f35f2016-01-14 18:10:48 -0700230 const char *drv_name = drv;
Simon Glass1acafc72016-01-18 19:52:15 -0700231 struct udevice *cons;
232 int ret;
233
234 /* Set up the line and display size */
235 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass06696eb2018-11-29 15:08:52 -0700236 if (!priv->line_length)
237 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
238
Simon Glass1acafc72016-01-18 19:52:15 -0700239 priv->fb_size = priv->line_length * priv->ysize;
240
Heinrich Schuchardt5c30fbb2018-02-08 21:47:11 +0100241 /* Set up colors */
Simon Glassb9f210a2018-11-06 15:21:36 -0700242 video_set_default_colors(dev, false);
Rob Clark8ef05352017-08-03 12:47:01 -0400243
244 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
245 video_clear(dev);
Simon Glass1acafc72016-01-18 19:52:15 -0700246
Simon Glass83510762016-01-18 19:52:17 -0700247 /*
Simon Glass826f35f2016-01-14 18:10:48 -0700248 * Create a text console device. For now we always do this, although
Simon Glass83510762016-01-18 19:52:17 -0700249 * it might be useful to support only bitmap drawing on the device
Simon Glass826f35f2016-01-14 18:10:48 -0700250 * for boards that don't need to display text. We create a TrueType
251 * console if enabled, a rotated console if the video driver requests
252 * it, otherwise a normal console.
253 *
254 * The console can be override by setting vidconsole_drv_name before
255 * probing this video driver, or in the probe() method.
256 *
257 * TrueType does not support rotation at present so fall back to the
258 * rotated console in that case.
Simon Glass83510762016-01-18 19:52:17 -0700259 */
Simon Glass826f35f2016-01-14 18:10:48 -0700260 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glassa29b0122016-01-14 18:10:42 -0700261 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
262 strcpy(drv, "vidconsole_tt");
263 } else {
264 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
265 priv->rot);
266 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
267 }
268
Simon Glass83510762016-01-18 19:52:17 -0700269 str = strdup(name);
270 if (!str)
271 return -ENOMEM;
Simon Glass826f35f2016-01-14 18:10:48 -0700272 if (priv->vidconsole_drv_name)
273 drv_name = priv->vidconsole_drv_name;
274 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass83510762016-01-18 19:52:17 -0700275 if (ret) {
276 debug("%s: Cannot bind console driver\n", __func__);
277 return ret;
278 }
Simon Glass826f35f2016-01-14 18:10:48 -0700279
Simon Glass83510762016-01-18 19:52:17 -0700280 ret = device_probe(cons);
281 if (ret) {
282 debug("%s: Cannot probe console driver\n", __func__);
283 return ret;
284 }
285
Simon Glass1acafc72016-01-18 19:52:15 -0700286 return 0;
287};
288
289/* Post-relocation, allocate memory for the frame buffer */
290static int video_post_bind(struct udevice *dev)
291{
292 ulong addr = gd->video_top;
293 ulong size;
294
295 /* Before relocation there is nothing to do here */
Tom Rini75164182018-04-22 09:47:48 -0400296 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass1acafc72016-01-18 19:52:15 -0700297 return 0;
298 size = alloc_fb(dev, &addr);
299 if (addr < gd->video_bottom) {
Patrick Delaunay69989742019-05-21 19:19:12 +0200300 /* Device tree node may need the 'u-boot,dm-pre-reloc' or
301 * 'u-boot,dm-pre-proper' tag
302 */
Simon Glass1acafc72016-01-18 19:52:15 -0700303 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
304 dev->name);
305 return -ENOSPC;
306 }
307 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
308 __func__, size, addr, dev->name);
309 gd->video_bottom = addr;
310
311 return 0;
312}
313
314UCLASS_DRIVER(video) = {
315 .id = UCLASS_VIDEO,
316 .name = "video",
317 .flags = DM_UC_FLAG_SEQ_ALIAS,
318 .post_bind = video_post_bind,
319 .pre_probe = video_pre_probe,
320 .post_probe = video_post_probe,
321 .pre_remove = video_pre_remove,
322 .per_device_auto_alloc_size = sizeof(struct video_priv),
323 .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata),
324};