blob: 1f2874554a309645d3e9d7d631219aae70cda0ed [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 Glass63334482019-11-14 12:57:39 -07007#include <cpu_func.h>
Simon Glass623d28f2016-01-18 19:52:15 -07008#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070010#include <malloc.h>
Simon Glass623d28f2016-01-18 19:52:15 -070011#include <mapmem.h>
12#include <stdio_dev.h>
13#include <video.h>
14#include <video_console.h>
Simon Glass274e0b02020-05-10 11:39:56 -060015#include <asm/cache.h>
Simon Glass623d28f2016-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 Glass64635382016-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 Glass623d28f2016-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 Meng755623d2016-10-09 04:14:17 -070060 if (!plat->size)
61 return 0;
62
Simon Glass623d28f2016-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;
Simon Glassb2b29612020-05-10 14:17:01 -060087 gd->fb_base = *addrp;
Simon Glass623d28f2016-01-18 19:52:15 -070088 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
89 gd->video_top);
90
91 return 0;
92}
93
Simon Glass55343122018-10-01 12:22:26 -060094int video_clear(struct udevice *dev)
Simon Glass623d28f2016-01-18 19:52:15 -070095{
96 struct video_priv *priv = dev_get_uclass_priv(dev);
97
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +010098 switch (priv->bpix) {
Simon Glass05c17d62019-12-20 18:10:37 -070099 case VIDEO_BPP16:
100 if (IS_ENABLED(CONFIG_VIDEO_BPP16)) {
101 u16 *ppix = priv->fb;
102 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100103
Simon Glass05c17d62019-12-20 18:10:37 -0700104 while (ppix < end)
105 *ppix++ = priv->colour_bg;
106 break;
107 }
108 case VIDEO_BPP32:
109 if (IS_ENABLED(CONFIG_VIDEO_BPP32)) {
110 u32 *ppix = priv->fb;
111 u32 *end = priv->fb + priv->fb_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700112
Simon Glass05c17d62019-12-20 18:10:37 -0700113 while (ppix < end)
114 *ppix++ = priv->colour_bg;
115 break;
116 }
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100117 default:
Simon Glass623d28f2016-01-18 19:52:15 -0700118 memset(priv->fb, priv->colour_bg, priv->fb_size);
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100119 break;
Simon Glass623d28f2016-01-18 19:52:15 -0700120 }
Simon Glass55343122018-10-01 12:22:26 -0600121
122 return 0;
Simon Glass623d28f2016-01-18 19:52:15 -0700123}
124
Simon Glass2b063b82018-11-06 15:21:36 -0700125void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100126{
Simon Glass2b063b82018-11-06 15:21:36 -0700127 struct video_priv *priv = dev_get_uclass_priv(dev);
128 int fore, back;
129
Simon Glass05c17d62019-12-20 18:10:37 -0700130 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
131 /* White is used when switching to bold, use light gray here */
132 fore = VID_LIGHT_GRAY;
133 back = VID_BLACK;
134 } else {
135 fore = VID_BLACK;
136 back = VID_WHITE;
137 }
Simon Glass2b063b82018-11-06 15:21:36 -0700138 if (invert) {
139 int temp;
140
141 temp = fore;
142 fore = back;
143 back = temp;
144 }
145 priv->fg_col_idx = fore;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000146 priv->bg_col_idx = back;
Simon Glass2b063b82018-11-06 15:21:36 -0700147 priv->colour_fg = vid_console_color(priv, fore);
148 priv->colour_bg = vid_console_color(priv, back);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100149}
150
Simon Glass623d28f2016-01-18 19:52:15 -0700151/* Flush video activity to the caches */
Simon Glass0806dcc2018-10-01 11:55:14 -0600152void video_sync(struct udevice *vid, bool force)
Simon Glass623d28f2016-01-18 19:52:15 -0700153{
154 /*
155 * flush_dcache_range() is declared in common.h but it seems that some
156 * architectures do not actually implement it. Is there a way to find
157 * out whether it exists? For now, ARM is safe.
158 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400159#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass623d28f2016-01-18 19:52:15 -0700160 struct video_priv *priv = dev_get_uclass_priv(vid);
161
162 if (priv->flush_dcache) {
163 flush_dcache_range((ulong)priv->fb,
Simon Glasseebc3fd2016-11-13 14:22:06 -0700164 ALIGN((ulong)priv->fb + priv->fb_size,
165 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass623d28f2016-01-18 19:52:15 -0700166 }
167#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
168 struct video_priv *priv = dev_get_uclass_priv(vid);
169 static ulong last_sync;
170
Simon Glass0806dcc2018-10-01 11:55:14 -0600171 if (force || get_timer(last_sync) > 10) {
Simon Glass623d28f2016-01-18 19:52:15 -0700172 sandbox_sdl_sync(priv->fb);
173 last_sync = get_timer(0);
174 }
175#endif
176}
177
178void video_sync_all(void)
179{
180 struct udevice *dev;
181
182 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
183 dev;
184 uclass_find_next_device(&dev)) {
185 if (device_active(dev))
Simon Glass0806dcc2018-10-01 11:55:14 -0600186 video_sync(dev, true);
Simon Glass623d28f2016-01-18 19:52:15 -0700187 }
188}
189
190int video_get_xsize(struct udevice *dev)
191{
192 struct video_priv *priv = dev_get_uclass_priv(dev);
193
194 return priv->xsize;
195}
196
197int video_get_ysize(struct udevice *dev)
198{
199 struct video_priv *priv = dev_get_uclass_priv(dev);
200
201 return priv->ysize;
202}
203
204/* Set up the colour map */
205static int video_pre_probe(struct udevice *dev)
206{
207 struct video_priv *priv = dev_get_uclass_priv(dev);
208
209 priv->cmap = calloc(256, sizeof(ushort));
210 if (!priv->cmap)
211 return -ENOMEM;
212
213 return 0;
214}
215
216static int video_pre_remove(struct udevice *dev)
217{
218 struct video_priv *priv = dev_get_uclass_priv(dev);
219
220 free(priv->cmap);
221
222 return 0;
223}
224
225/* Set up the display ready for use */
226static int video_post_probe(struct udevice *dev)
227{
228 struct video_uc_platdata *plat = dev_get_uclass_platdata(dev);
229 struct video_priv *priv = dev_get_uclass_priv(dev);
230 char name[30], drv[15], *str;
Simon Glassb3a72b32016-01-14 18:10:48 -0700231 const char *drv_name = drv;
Simon Glass623d28f2016-01-18 19:52:15 -0700232 struct udevice *cons;
233 int ret;
234
235 /* Set up the line and display size */
236 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass7d186732018-11-29 15:08:52 -0700237 if (!priv->line_length)
238 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
239
Simon Glass623d28f2016-01-18 19:52:15 -0700240 priv->fb_size = priv->line_length * priv->ysize;
241
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100242 /* Set up colors */
Simon Glass2b063b82018-11-06 15:21:36 -0700243 video_set_default_colors(dev, false);
Rob Clarkf1411882017-08-03 12:47:01 -0400244
245 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
246 video_clear(dev);
Simon Glass623d28f2016-01-18 19:52:15 -0700247
Simon Glass84c7fb32016-01-18 19:52:17 -0700248 /*
Simon Glassb3a72b32016-01-14 18:10:48 -0700249 * Create a text console device. For now we always do this, although
Simon Glass84c7fb32016-01-18 19:52:17 -0700250 * it might be useful to support only bitmap drawing on the device
Simon Glassb3a72b32016-01-14 18:10:48 -0700251 * for boards that don't need to display text. We create a TrueType
252 * console if enabled, a rotated console if the video driver requests
253 * it, otherwise a normal console.
254 *
255 * The console can be override by setting vidconsole_drv_name before
256 * probing this video driver, or in the probe() method.
257 *
258 * TrueType does not support rotation at present so fall back to the
259 * rotated console in that case.
Simon Glass84c7fb32016-01-18 19:52:17 -0700260 */
Simon Glassb3a72b32016-01-14 18:10:48 -0700261 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glass2ef353e2016-01-14 18:10:42 -0700262 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
263 strcpy(drv, "vidconsole_tt");
264 } else {
265 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
266 priv->rot);
267 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
268 }
269
Simon Glass84c7fb32016-01-18 19:52:17 -0700270 str = strdup(name);
271 if (!str)
272 return -ENOMEM;
Simon Glassb3a72b32016-01-14 18:10:48 -0700273 if (priv->vidconsole_drv_name)
274 drv_name = priv->vidconsole_drv_name;
275 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass84c7fb32016-01-18 19:52:17 -0700276 if (ret) {
277 debug("%s: Cannot bind console driver\n", __func__);
278 return ret;
279 }
Simon Glassb3a72b32016-01-14 18:10:48 -0700280
Simon Glass84c7fb32016-01-18 19:52:17 -0700281 ret = device_probe(cons);
282 if (ret) {
283 debug("%s: Cannot probe console driver\n", __func__);
284 return ret;
285 }
286
Simon Glass623d28f2016-01-18 19:52:15 -0700287 return 0;
288};
289
290/* Post-relocation, allocate memory for the frame buffer */
291static int video_post_bind(struct udevice *dev)
292{
293 ulong addr = gd->video_top;
294 ulong size;
295
296 /* Before relocation there is nothing to do here */
Tom Rini6985a722018-04-22 09:47:48 -0400297 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass623d28f2016-01-18 19:52:15 -0700298 return 0;
299 size = alloc_fb(dev, &addr);
300 if (addr < gd->video_bottom) {
Patrick Delaunayd1937182019-05-21 19:19:12 +0200301 /* Device tree node may need the 'u-boot,dm-pre-reloc' or
302 * 'u-boot,dm-pre-proper' tag
303 */
Simon Glass623d28f2016-01-18 19:52:15 -0700304 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
305 dev->name);
306 return -ENOSPC;
307 }
308 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
309 __func__, size, addr, dev->name);
310 gd->video_bottom = addr;
311
312 return 0;
313}
314
315UCLASS_DRIVER(video) = {
316 .id = UCLASS_VIDEO,
317 .name = "video",
318 .flags = DM_UC_FLAG_SEQ_ALIAS,
319 .post_bind = video_post_bind,
320 .pre_probe = video_pre_probe,
321 .post_probe = video_post_probe,
322 .pre_remove = video_pre_remove,
323 .per_device_auto_alloc_size = sizeof(struct video_priv),
324 .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata),
325};