blob: 1b66a8061a7494d6fab17f2009352996afe4fec5 [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
Patrick Delaunay81313352021-04-27 11:02:19 +02006#define LOG_CATEGORY UCLASS_VIDEO
7
Simon Glass623d28f2016-01-18 19:52:15 -07008#include <common.h>
Simon Glass73c9c372020-07-02 21:12:20 -06009#include <console.h>
Simon Glass63334482019-11-14 12:57:39 -070010#include <cpu_func.h>
Simon Glass623d28f2016-01-18 19:52:15 -070011#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070013#include <malloc.h>
Simon Glass623d28f2016-01-18 19:52:15 -070014#include <mapmem.h>
15#include <stdio_dev.h>
16#include <video.h>
17#include <video_console.h>
Simon Glass274e0b02020-05-10 11:39:56 -060018#include <asm/cache.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060019#include <asm/global_data.h>
Simon Glass623d28f2016-01-18 19:52:15 -070020#include <dm/lists.h>
Michal Simek632e3d42020-12-14 08:47:52 +010021#include <dm/device_compat.h>
Simon Glass623d28f2016-01-18 19:52:15 -070022#include <dm/device-internal.h>
23#include <dm/uclass-internal.h>
24#ifdef CONFIG_SANDBOX
25#include <asm/sdl.h>
26#endif
27
28/*
29 * Theory of operation:
30 *
31 * Before relocation each device is bound. The driver for each device must
Simon Glassb75b15b2020-12-03 16:55:23 -070032 * set the @align and @size values in struct video_uc_plat. This
Simon Glass623d28f2016-01-18 19:52:15 -070033 * information represents the requires size and alignment of the frame buffer
34 * for the device. The values can be an over-estimate but cannot be too
35 * small. The actual values will be suppled (in the same manner) by the bind()
Pali Rohárf204fce2022-03-09 20:46:00 +010036 * method after relocation. Additionally driver can allocate frame buffer
37 * itself by setting plat->base.
Simon Glass623d28f2016-01-18 19:52:15 -070038 *
39 * This information is then picked up by video_reserve() which works out how
40 * much memory is needed for all devices. This is allocated between
41 * gd->video_bottom and gd->video_top.
42 *
43 * After relocation the same process occurs. The driver supplies the same
44 * @size and @align information and this time video_post_bind() checks that
45 * the drivers does not overflow the allocated memory.
46 *
47 * The frame buffer address is actually set (to plat->base) in
48 * video_post_probe(). This function also clears the frame buffer and
49 * allocates a suitable text console device. This can then be used to write
50 * text to the video device.
51 */
52DECLARE_GLOBAL_DATA_PTR;
53
Simon Glass951255d2020-07-02 21:12:32 -060054/**
55 * struct video_uc_priv - Information for the video uclass
56 *
57 * @video_ptr: Current allocation position of the video framebuffer pointer.
58 * While binding devices after relocation, this points to the next
59 * available address to use for a device's framebuffer. It starts at
60 * gd->video_top and works downwards, running out of space when it hits
61 * gd->video_bottom.
62 */
63struct video_uc_priv {
64 ulong video_ptr;
65};
66
Simon Glass2a006332022-10-06 08:36:03 -060067/** struct vid_rgb - Describes a video colour */
68struct vid_rgb {
69 u32 r;
70 u32 g;
71 u32 b;
72};
73
Simon Glass64635382016-01-21 19:44:52 -070074void video_set_flush_dcache(struct udevice *dev, bool flush)
75{
76 struct video_priv *priv = dev_get_uclass_priv(dev);
77
78 priv->flush_dcache = flush;
79}
80
Simon Glassdf865d32023-03-10 12:47:17 -080081static ulong alloc_fb_(ulong align, ulong size, ulong *addrp)
82{
83 ulong base;
84
85 align = align ? align : 1 << 20;
86 base = *addrp - size;
87 base &= ~(align - 1);
88 size = *addrp - base;
89 *addrp = base;
90
91 return size;
92}
93
Simon Glass623d28f2016-01-18 19:52:15 -070094static ulong alloc_fb(struct udevice *dev, ulong *addrp)
95{
Simon Glassb75b15b2020-12-03 16:55:23 -070096 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Simon Glassdf865d32023-03-10 12:47:17 -080097 ulong size;
Simon Glass623d28f2016-01-18 19:52:15 -070098
Simon Glassdf865d32023-03-10 12:47:17 -080099 if (!plat->size) {
100 if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_size) {
101 size = alloc_fb_(plat->align, plat->copy_size, addrp);
102 plat->copy_base = *addrp;
103 return size;
104 }
105
Bin Meng755623d2016-10-09 04:14:17 -0700106 return 0;
Simon Glassdf865d32023-03-10 12:47:17 -0800107 }
Bin Meng755623d2016-10-09 04:14:17 -0700108
Pali Rohárf204fce2022-03-09 20:46:00 +0100109 /* Allow drivers to allocate the frame buffer themselves */
110 if (plat->base)
111 return 0;
112
Simon Glassdf865d32023-03-10 12:47:17 -0800113 size = alloc_fb_(plat->align, plat->size, addrp);
114 plat->base = *addrp;
Simon Glass623d28f2016-01-18 19:52:15 -0700115
116 return size;
117}
118
119int video_reserve(ulong *addrp)
120{
121 struct udevice *dev;
122 ulong size;
123
124 gd->video_top = *addrp;
125 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
126 dev;
127 uclass_find_next_device(&dev)) {
128 size = alloc_fb(dev, addrp);
129 debug("%s: Reserving %lx bytes at %lx for video device '%s'\n",
130 __func__, size, *addrp, dev->name);
131 }
Simon Glassc3d2f352020-07-02 21:12:33 -0600132
133 /* Allocate space for PCI video devices in case there were not bound */
134 if (*addrp == gd->video_top)
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530135 *addrp -= CONFIG_VAL(VIDEO_PCI_DEFAULT_FB_SIZE);
Simon Glassc3d2f352020-07-02 21:12:33 -0600136
Simon Glass623d28f2016-01-18 19:52:15 -0700137 gd->video_bottom = *addrp;
Simon Glassb2b29612020-05-10 14:17:01 -0600138 gd->fb_base = *addrp;
Simon Glass623d28f2016-01-18 19:52:15 -0700139 debug("Video frame buffers from %lx to %lx\n", gd->video_bottom,
140 gd->video_top);
141
142 return 0;
143}
144
Simon Glass2baa6f82022-10-06 08:36:08 -0600145int video_fill(struct udevice *dev, u32 colour)
Simon Glass623d28f2016-01-18 19:52:15 -0700146{
147 struct video_priv *priv = dev_get_uclass_priv(dev);
Simon Glassf8ec6212020-07-02 21:12:22 -0600148 int ret;
Simon Glass623d28f2016-01-18 19:52:15 -0700149
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100150 switch (priv->bpix) {
Simon Glass05c17d62019-12-20 18:10:37 -0700151 case VIDEO_BPP16:
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530152 if (CONFIG_IS_ENABLED(VIDEO_BPP16)) {
Simon Glass05c17d62019-12-20 18:10:37 -0700153 u16 *ppix = priv->fb;
154 u16 *end = priv->fb + priv->fb_size;
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100155
Simon Glass05c17d62019-12-20 18:10:37 -0700156 while (ppix < end)
Simon Glass2baa6f82022-10-06 08:36:08 -0600157 *ppix++ = colour;
Simon Glass05c17d62019-12-20 18:10:37 -0700158 break;
159 }
160 case VIDEO_BPP32:
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530161 if (CONFIG_IS_ENABLED(VIDEO_BPP32)) {
Simon Glass05c17d62019-12-20 18:10:37 -0700162 u32 *ppix = priv->fb;
163 u32 *end = priv->fb + priv->fb_size;
Simon Glass623d28f2016-01-18 19:52:15 -0700164
Simon Glass05c17d62019-12-20 18:10:37 -0700165 while (ppix < end)
Simon Glass2baa6f82022-10-06 08:36:08 -0600166 *ppix++ = colour;
Simon Glass05c17d62019-12-20 18:10:37 -0700167 break;
168 }
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100169 default:
Simon Glass2baa6f82022-10-06 08:36:08 -0600170 memset(priv->fb, colour, priv->fb_size);
Heinrich Schuchardt5e4947e2018-02-08 21:47:10 +0100171 break;
Simon Glass623d28f2016-01-18 19:52:15 -0700172 }
Simon Glassf8ec6212020-07-02 21:12:22 -0600173 ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size);
174 if (ret)
175 return ret;
Simon Glass55343122018-10-01 12:22:26 -0600176
Michal Simeka1e136d2020-12-15 15:12:09 +0100177 return video_sync(dev, false);
Simon Glass623d28f2016-01-18 19:52:15 -0700178}
179
Simon Glass2baa6f82022-10-06 08:36:08 -0600180int video_clear(struct udevice *dev)
181{
182 struct video_priv *priv = dev_get_uclass_priv(dev);
183 int ret;
184
185 ret = video_fill(dev, priv->colour_bg);
186 if (ret)
187 return ret;
188
189 return 0;
190}
191
Simon Glass2a006332022-10-06 08:36:03 -0600192static const struct vid_rgb colours[VID_COLOUR_COUNT] = {
193 { 0x00, 0x00, 0x00 }, /* black */
194 { 0xc0, 0x00, 0x00 }, /* red */
195 { 0x00, 0xc0, 0x00 }, /* green */
196 { 0xc0, 0x60, 0x00 }, /* brown */
197 { 0x00, 0x00, 0xc0 }, /* blue */
198 { 0xc0, 0x00, 0xc0 }, /* magenta */
199 { 0x00, 0xc0, 0xc0 }, /* cyan */
200 { 0xc0, 0xc0, 0xc0 }, /* light gray */
201 { 0x80, 0x80, 0x80 }, /* gray */
202 { 0xff, 0x00, 0x00 }, /* bright red */
203 { 0x00, 0xff, 0x00 }, /* bright green */
204 { 0xff, 0xff, 0x00 }, /* yellow */
205 { 0x00, 0x00, 0xff }, /* bright blue */
206 { 0xff, 0x00, 0xff }, /* bright magenta */
207 { 0x00, 0xff, 0xff }, /* bright cyan */
208 { 0xff, 0xff, 0xff }, /* white */
209};
210
211u32 video_index_to_colour(struct video_priv *priv, unsigned int idx)
212{
213 switch (priv->bpix) {
214 case VIDEO_BPP16:
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530215 if (CONFIG_IS_ENABLED(VIDEO_BPP16)) {
Simon Glass2a006332022-10-06 08:36:03 -0600216 return ((colours[idx].r >> 3) << 11) |
217 ((colours[idx].g >> 2) << 5) |
218 ((colours[idx].b >> 3) << 0);
219 }
220 break;
221 case VIDEO_BPP32:
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530222 if (CONFIG_IS_ENABLED(VIDEO_BPP32)) {
Michal Simek985eac82023-05-17 10:42:07 +0200223 switch (priv->format) {
224 case VIDEO_X2R10G10B10:
Simon Glass2a006332022-10-06 08:36:03 -0600225 return (colours[idx].r << 22) |
226 (colours[idx].g << 12) |
227 (colours[idx].b << 2);
Michal Simek985eac82023-05-17 10:42:07 +0200228 case VIDEO_RGBA8888:
229 return (colours[idx].r << 24) |
230 (colours[idx].g << 16) |
231 (colours[idx].b << 8) | 0xff;
232 default:
Simon Glass2a006332022-10-06 08:36:03 -0600233 return (colours[idx].r << 16) |
234 (colours[idx].g << 8) |
235 (colours[idx].b << 0);
Michal Simek985eac82023-05-17 10:42:07 +0200236 }
Simon Glass2a006332022-10-06 08:36:03 -0600237 }
238 break;
239 default:
240 break;
241 }
242
243 /*
244 * For unknown bit arrangements just support
245 * black and white.
246 */
247 if (idx)
248 return 0xffffff; /* white */
249
250 return 0x000000; /* black */
251}
252
Simon Glass2b063b82018-11-06 15:21:36 -0700253void video_set_default_colors(struct udevice *dev, bool invert)
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100254{
Simon Glass2b063b82018-11-06 15:21:36 -0700255 struct video_priv *priv = dev_get_uclass_priv(dev);
256 int fore, back;
257
Simon Glass05c17d62019-12-20 18:10:37 -0700258 if (CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK)) {
259 /* White is used when switching to bold, use light gray here */
260 fore = VID_LIGHT_GRAY;
261 back = VID_BLACK;
262 } else {
263 fore = VID_BLACK;
264 back = VID_WHITE;
265 }
Simon Glass2b063b82018-11-06 15:21:36 -0700266 if (invert) {
267 int temp;
268
269 temp = fore;
270 fore = back;
271 back = temp;
272 }
273 priv->fg_col_idx = fore;
Andre Przywara4ed5bc82019-03-23 01:29:56 +0000274 priv->bg_col_idx = back;
Simon Glass2a006332022-10-06 08:36:03 -0600275 priv->colour_fg = video_index_to_colour(priv, fore);
276 priv->colour_bg = video_index_to_colour(priv, back);
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100277}
278
Simon Glass623d28f2016-01-18 19:52:15 -0700279/* Flush video activity to the caches */
Michal Simek632e3d42020-12-14 08:47:52 +0100280int video_sync(struct udevice *vid, bool force)
Simon Glass623d28f2016-01-18 19:52:15 -0700281{
Michal Simek8ae95df2020-12-03 09:30:00 +0100282 struct video_ops *ops = video_get_ops(vid);
283 int ret;
284
285 if (ops && ops->video_sync) {
286 ret = ops->video_sync(vid);
287 if (ret)
288 return ret;
289 }
290
Simon Glass623d28f2016-01-18 19:52:15 -0700291 /*
292 * flush_dcache_range() is declared in common.h but it seems that some
293 * architectures do not actually implement it. Is there a way to find
294 * out whether it exists? For now, ARM is safe.
295 */
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400296#if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF)
Simon Glass623d28f2016-01-18 19:52:15 -0700297 struct video_priv *priv = dev_get_uclass_priv(vid);
298
299 if (priv->flush_dcache) {
300 flush_dcache_range((ulong)priv->fb,
Simon Glasseebc3fd2016-11-13 14:22:06 -0700301 ALIGN((ulong)priv->fb + priv->fb_size,
302 CONFIG_SYS_CACHELINE_SIZE));
Simon Glass623d28f2016-01-18 19:52:15 -0700303 }
304#elif defined(CONFIG_VIDEO_SANDBOX_SDL)
305 struct video_priv *priv = dev_get_uclass_priv(vid);
306 static ulong last_sync;
307
Simon Glassea113732022-02-28 15:13:48 -0700308 if (force || get_timer(last_sync) > 100) {
Simon Glass623d28f2016-01-18 19:52:15 -0700309 sandbox_sdl_sync(priv->fb);
310 last_sync = get_timer(0);
311 }
312#endif
Michal Simek632e3d42020-12-14 08:47:52 +0100313 return 0;
Simon Glass623d28f2016-01-18 19:52:15 -0700314}
315
316void video_sync_all(void)
317{
318 struct udevice *dev;
Michal Simek632e3d42020-12-14 08:47:52 +0100319 int ret;
Simon Glass623d28f2016-01-18 19:52:15 -0700320
321 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
322 dev;
323 uclass_find_next_device(&dev)) {
Michal Simek632e3d42020-12-14 08:47:52 +0100324 if (device_active(dev)) {
325 ret = video_sync(dev, true);
326 if (ret)
327 dev_dbg(dev, "Video sync failed\n");
328 }
Simon Glass623d28f2016-01-18 19:52:15 -0700329 }
330}
331
Patrick Delaunayefcc84b2021-11-15 16:32:20 +0100332bool video_is_active(void)
333{
334 struct udevice *dev;
335
336 for (uclass_find_first_device(UCLASS_VIDEO, &dev);
337 dev;
338 uclass_find_next_device(&dev)) {
339 if (device_active(dev))
340 return true;
341 }
342
343 return false;
344}
345
Simon Glass623d28f2016-01-18 19:52:15 -0700346int video_get_xsize(struct udevice *dev)
347{
348 struct video_priv *priv = dev_get_uclass_priv(dev);
349
350 return priv->xsize;
351}
352
353int video_get_ysize(struct udevice *dev)
354{
355 struct video_priv *priv = dev_get_uclass_priv(dev);
356
357 return priv->ysize;
358}
359
Simon Glass73c9c372020-07-02 21:12:20 -0600360#ifdef CONFIG_VIDEO_COPY
361int video_sync_copy(struct udevice *dev, void *from, void *to)
362{
363 struct video_priv *priv = dev_get_uclass_priv(dev);
364
365 if (priv->copy_fb) {
366 long offset, size;
367
368 /* Find the offset of the first byte to copy */
369 if ((ulong)to > (ulong)from) {
370 size = to - from;
371 offset = from - priv->fb;
372 } else {
373 size = from - to;
374 offset = to - priv->fb;
375 }
376
377 /*
378 * Allow a bit of leeway for valid requests somewhere near the
379 * frame buffer
380 */
381 if (offset < -priv->fb_size || offset > 2 * priv->fb_size) {
382#ifdef DEBUG
Simon Glass78cdc5d2021-11-19 13:23:51 -0700383 char str[120];
Simon Glass73c9c372020-07-02 21:12:20 -0600384
385 snprintf(str, sizeof(str),
Simon Glass78cdc5d2021-11-19 13:23:51 -0700386 "[** FAULT sync_copy fb=%p, from=%p, to=%p, offset=%lx]",
Simon Glass73c9c372020-07-02 21:12:20 -0600387 priv->fb, from, to, offset);
388 console_puts_select_stderr(true, str);
389#endif
390 return -EFAULT;
391 }
392
393 /*
394 * Silently crop the memcpy. This allows callers to avoid doing
395 * this themselves. It is common for the end pointer to go a
396 * few lines after the end of the frame buffer, since most of
397 * the update algorithms terminate a line after their last write
398 */
399 if (offset + size > priv->fb_size) {
400 size = priv->fb_size - offset;
401 } else if (offset < 0) {
402 size += offset;
403 offset = 0;
404 }
405
406 memcpy(priv->copy_fb + offset, priv->fb + offset, size);
407 }
408
409 return 0;
410}
Simon Glass62b535e2021-01-13 20:29:46 -0700411
412int video_sync_copy_all(struct udevice *dev)
413{
414 struct video_priv *priv = dev_get_uclass_priv(dev);
415
416 video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size);
417
418 return 0;
419}
420
Simon Glass73c9c372020-07-02 21:12:20 -0600421#endif
422
Simon Glass87a3cd72021-11-19 13:24:03 -0700423#define SPLASH_DECL(_name) \
424 extern u8 __splash_ ## _name ## _begin[]; \
425 extern u8 __splash_ ## _name ## _end[]
426
427#define SPLASH_START(_name) __splash_ ## _name ## _begin
428
429SPLASH_DECL(u_boot_logo);
430
Simon Glass22477422022-10-06 08:36:09 -0600431void *video_get_u_boot_logo(void)
432{
433 return SPLASH_START(u_boot_logo);
434}
435
Simon Glass87a3cd72021-11-19 13:24:03 -0700436static int show_splash(struct udevice *dev)
437{
438 u8 *data = SPLASH_START(u_boot_logo);
439 int ret;
440
441 ret = video_bmp_display(dev, map_to_sysmem(data), -4, 4, true);
442
443 return 0;
444}
445
Simon Glass70459902022-10-06 08:36:18 -0600446int video_default_font_height(struct udevice *dev)
447{
448 struct vidconsole_priv *vc_priv = dev_get_uclass_priv(dev);
449
450 if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE))
451 return IF_ENABLED_INT(CONFIG_CONSOLE_TRUETYPE,
452 CONFIG_CONSOLE_TRUETYPE_SIZE);
453
454 return vc_priv->y_charsize;
455}
456
Simon Glass623d28f2016-01-18 19:52:15 -0700457/* Set up the display ready for use */
458static int video_post_probe(struct udevice *dev)
459{
Simon Glassb75b15b2020-12-03 16:55:23 -0700460 struct video_uc_plat *plat = dev_get_uclass_plat(dev);
Simon Glass623d28f2016-01-18 19:52:15 -0700461 struct video_priv *priv = dev_get_uclass_priv(dev);
462 char name[30], drv[15], *str;
Simon Glassb3a72b32016-01-14 18:10:48 -0700463 const char *drv_name = drv;
Simon Glass623d28f2016-01-18 19:52:15 -0700464 struct udevice *cons;
465 int ret;
466
467 /* Set up the line and display size */
468 priv->fb = map_sysmem(plat->base, plat->size);
Simon Glass7d186732018-11-29 15:08:52 -0700469 if (!priv->line_length)
470 priv->line_length = priv->xsize * VNBYTES(priv->bpix);
471
Simon Glass623d28f2016-01-18 19:52:15 -0700472 priv->fb_size = priv->line_length * priv->ysize;
473
Simon Glassb4928e52020-07-02 21:12:21 -0600474 if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base)
475 priv->copy_fb = map_sysmem(plat->copy_base, plat->size);
476
Heinrich Schuchardt290e1d82018-02-08 21:47:11 +0100477 /* Set up colors */
Simon Glass2b063b82018-11-06 15:21:36 -0700478 video_set_default_colors(dev, false);
Rob Clarkf1411882017-08-03 12:47:01 -0400479
480 if (!CONFIG_IS_ENABLED(NO_FB_CLEAR))
481 video_clear(dev);
Simon Glass623d28f2016-01-18 19:52:15 -0700482
Simon Glass84c7fb32016-01-18 19:52:17 -0700483 /*
Simon Glassb3a72b32016-01-14 18:10:48 -0700484 * Create a text console device. For now we always do this, although
Simon Glass84c7fb32016-01-18 19:52:17 -0700485 * it might be useful to support only bitmap drawing on the device
Simon Glassb3a72b32016-01-14 18:10:48 -0700486 * for boards that don't need to display text. We create a TrueType
487 * console if enabled, a rotated console if the video driver requests
488 * it, otherwise a normal console.
489 *
490 * The console can be override by setting vidconsole_drv_name before
491 * probing this video driver, or in the probe() method.
492 *
493 * TrueType does not support rotation at present so fall back to the
494 * rotated console in that case.
Simon Glass84c7fb32016-01-18 19:52:17 -0700495 */
Simon Glassb3a72b32016-01-14 18:10:48 -0700496 if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) {
Simon Glass2ef353e2016-01-14 18:10:42 -0700497 snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name);
498 strcpy(drv, "vidconsole_tt");
499 } else {
500 snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name,
501 priv->rot);
502 snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot);
503 }
504
Simon Glass84c7fb32016-01-18 19:52:17 -0700505 str = strdup(name);
506 if (!str)
507 return -ENOMEM;
Simon Glassb3a72b32016-01-14 18:10:48 -0700508 if (priv->vidconsole_drv_name)
509 drv_name = priv->vidconsole_drv_name;
510 ret = device_bind_driver(dev, drv_name, str, &cons);
Simon Glass84c7fb32016-01-18 19:52:17 -0700511 if (ret) {
512 debug("%s: Cannot bind console driver\n", __func__);
513 return ret;
514 }
Simon Glassb3a72b32016-01-14 18:10:48 -0700515
Simon Glass84c7fb32016-01-18 19:52:17 -0700516 ret = device_probe(cons);
517 if (ret) {
518 debug("%s: Cannot probe console driver\n", __func__);
519 return ret;
520 }
521
Nikhil M Jain9e3301d2023-04-20 17:41:08 +0530522 if (CONFIG_IS_ENABLED(VIDEO_LOGO) &&
523 !CONFIG_IS_ENABLED(SPLASH_SCREEN) && !plat->hide_logo) {
Simon Glass87a3cd72021-11-19 13:24:03 -0700524 ret = show_splash(dev);
525 if (ret) {
526 log_debug("Cannot show splash screen\n");
527 return ret;
528 }
529 }
530
Simon Glass623d28f2016-01-18 19:52:15 -0700531 return 0;
532};
533
534/* Post-relocation, allocate memory for the frame buffer */
535static int video_post_bind(struct udevice *dev)
536{
Simon Glass951255d2020-07-02 21:12:32 -0600537 struct video_uc_priv *uc_priv;
538 ulong addr;
Simon Glass623d28f2016-01-18 19:52:15 -0700539 ulong size;
540
541 /* Before relocation there is nothing to do here */
Tom Rini6985a722018-04-22 09:47:48 -0400542 if (!(gd->flags & GD_FLG_RELOC))
Simon Glass623d28f2016-01-18 19:52:15 -0700543 return 0;
Simon Glass951255d2020-07-02 21:12:32 -0600544
545 /* Set up the video pointer, if this is the first device */
Simon Glass95588622020-12-22 19:30:28 -0700546 uc_priv = uclass_get_priv(dev->uclass);
Simon Glass951255d2020-07-02 21:12:32 -0600547 if (!uc_priv->video_ptr)
548 uc_priv->video_ptr = gd->video_top;
549
550 /* Allocate framebuffer space for this device */
551 addr = uc_priv->video_ptr;
Simon Glass623d28f2016-01-18 19:52:15 -0700552 size = alloc_fb(dev, &addr);
553 if (addr < gd->video_bottom) {
Simon Glassfc1aa352023-02-13 08:56:34 -0700554 /* Device tree node may need the 'bootph-all' or
555 * 'bootph-some-ram' tag
Patrick Delaunayd1937182019-05-21 19:19:12 +0200556 */
Simon Glass623d28f2016-01-18 19:52:15 -0700557 printf("Video device '%s' cannot allocate frame buffer memory -ensure the device is set up before relocation\n",
558 dev->name);
559 return -ENOSPC;
560 }
561 debug("%s: Claiming %lx bytes at %lx for video device '%s'\n",
562 __func__, size, addr, dev->name);
Simon Glass951255d2020-07-02 21:12:32 -0600563 uc_priv->video_ptr = addr;
Simon Glass623d28f2016-01-18 19:52:15 -0700564
565 return 0;
566}
567
568UCLASS_DRIVER(video) = {
569 .id = UCLASS_VIDEO,
570 .name = "video",
571 .flags = DM_UC_FLAG_SEQ_ALIAS,
572 .post_bind = video_post_bind,
Simon Glass623d28f2016-01-18 19:52:15 -0700573 .post_probe = video_post_probe,
Simon Glass8a2b47f2020-12-03 16:55:17 -0700574 .priv_auto = sizeof(struct video_uc_priv),
575 .per_device_auto = sizeof(struct video_priv),
Simon Glassb75b15b2020-12-03 16:55:23 -0700576 .per_device_plat_auto = sizeof(struct video_uc_plat),
Simon Glass623d28f2016-01-18 19:52:15 -0700577};