Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #include <common.h> |
Simon Glass | 9beac5d | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 7 | #include <console.h> |
Simon Glass | 1eb69ae | 2019-11-14 12:57:39 -0700 | [diff] [blame] | 8 | #include <cpu_func.h> |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 9 | #include <dm.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 10 | #include <log.h> |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 11 | #include <malloc.h> |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 12 | #include <mapmem.h> |
| 13 | #include <stdio_dev.h> |
| 14 | #include <video.h> |
| 15 | #include <video_console.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 16 | #include <asm/cache.h> |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 17 | #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 | */ |
| 47 | DECLARE_GLOBAL_DATA_PTR; |
| 48 | |
Simon Glass | 7812bbd | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 49 | /** |
| 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 | */ |
| 58 | struct video_uc_priv { |
| 59 | ulong video_ptr; |
| 60 | }; |
| 61 | |
Simon Glass | 68dcdc9 | 2016-01-21 19:44:52 -0700 | [diff] [blame] | 62 | void 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 Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 69 | static 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 Meng | 3968398 | 2016-10-09 04:14:17 -0700 | [diff] [blame] | 74 | if (!plat->size) |
| 75 | return 0; |
| 76 | |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 77 | 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 | |
| 87 | int 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 Glass | 551ca0e | 2020-07-02 21:12:33 -0600 | [diff] [blame] | 100 | |
| 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 Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 105 | gd->video_bottom = *addrp; |
Simon Glass | aef43ea | 2020-05-10 14:17:01 -0600 | [diff] [blame] | 106 | gd->fb_base = *addrp; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 107 | debug("Video frame buffers from %lx to %lx\n", gd->video_bottom, |
| 108 | gd->video_top); |
| 109 | |
| 110 | return 0; |
| 111 | } |
| 112 | |
Simon Glass | c6ebd01 | 2018-10-01 12:22:26 -0600 | [diff] [blame] | 113 | int video_clear(struct udevice *dev) |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 114 | { |
| 115 | struct video_priv *priv = dev_get_uclass_priv(dev); |
Simon Glass | 138dfea | 2020-07-02 21:12:22 -0600 | [diff] [blame] | 116 | int ret; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 117 | |
Heinrich Schuchardt | d7a75d3 | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 118 | switch (priv->bpix) { |
Simon Glass | 0c20aaf | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 119 | case VIDEO_BPP16: |
| 120 | if (IS_ENABLED(CONFIG_VIDEO_BPP16)) { |
| 121 | u16 *ppix = priv->fb; |
| 122 | u16 *end = priv->fb + priv->fb_size; |
Heinrich Schuchardt | d7a75d3 | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 123 | |
Simon Glass | 0c20aaf | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 124 | 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 Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 132 | |
Simon Glass | 0c20aaf | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 133 | while (ppix < end) |
| 134 | *ppix++ = priv->colour_bg; |
| 135 | break; |
| 136 | } |
Heinrich Schuchardt | d7a75d3 | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 137 | default: |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 138 | memset(priv->fb, priv->colour_bg, priv->fb_size); |
Heinrich Schuchardt | d7a75d3 | 2018-02-08 21:47:10 +0100 | [diff] [blame] | 139 | break; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 140 | } |
Simon Glass | 138dfea | 2020-07-02 21:12:22 -0600 | [diff] [blame] | 141 | ret = video_sync_copy(dev, priv->fb, priv->fb + priv->fb_size); |
| 142 | if (ret) |
| 143 | return ret; |
Simon Glass | c6ebd01 | 2018-10-01 12:22:26 -0600 | [diff] [blame] | 144 | |
| 145 | return 0; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Simon Glass | b9f210a | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 148 | void video_set_default_colors(struct udevice *dev, bool invert) |
Heinrich Schuchardt | 5c30fbb | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 149 | { |
Simon Glass | b9f210a | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 150 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 151 | int fore, back; |
| 152 | |
Simon Glass | 0c20aaf | 2019-12-20 18:10:37 -0700 | [diff] [blame] | 153 | 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 Glass | b9f210a | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 161 | if (invert) { |
| 162 | int temp; |
| 163 | |
| 164 | temp = fore; |
| 165 | fore = back; |
| 166 | back = temp; |
| 167 | } |
| 168 | priv->fg_col_idx = fore; |
Andre Przywara | eabb072 | 2019-03-23 01:29:56 +0000 | [diff] [blame] | 169 | priv->bg_col_idx = back; |
Simon Glass | b9f210a | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 170 | priv->colour_fg = vid_console_color(priv, fore); |
| 171 | priv->colour_bg = vid_console_color(priv, back); |
Heinrich Schuchardt | 5c30fbb | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 172 | } |
| 173 | |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 174 | /* Flush video activity to the caches */ |
Simon Glass | 55d3991 | 2018-10-01 11:55:14 -0600 | [diff] [blame] | 175 | void video_sync(struct udevice *vid, bool force) |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 176 | { |
| 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 Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 182 | #if defined(CONFIG_ARM) && !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 183 | struct video_priv *priv = dev_get_uclass_priv(vid); |
| 184 | |
| 185 | if (priv->flush_dcache) { |
| 186 | flush_dcache_range((ulong)priv->fb, |
Simon Glass | 7981394 | 2016-11-13 14:22:06 -0700 | [diff] [blame] | 187 | ALIGN((ulong)priv->fb + priv->fb_size, |
| 188 | CONFIG_SYS_CACHELINE_SIZE)); |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 189 | } |
| 190 | #elif defined(CONFIG_VIDEO_SANDBOX_SDL) |
| 191 | struct video_priv *priv = dev_get_uclass_priv(vid); |
| 192 | static ulong last_sync; |
| 193 | |
Simon Glass | 55d3991 | 2018-10-01 11:55:14 -0600 | [diff] [blame] | 194 | if (force || get_timer(last_sync) > 10) { |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 195 | sandbox_sdl_sync(priv->fb); |
| 196 | last_sync = get_timer(0); |
| 197 | } |
| 198 | #endif |
| 199 | } |
| 200 | |
| 201 | void 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 Glass | 55d3991 | 2018-10-01 11:55:14 -0600 | [diff] [blame] | 209 | video_sync(dev, true); |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
| 213 | int video_get_xsize(struct udevice *dev) |
| 214 | { |
| 215 | struct video_priv *priv = dev_get_uclass_priv(dev); |
| 216 | |
| 217 | return priv->xsize; |
| 218 | } |
| 219 | |
| 220 | int 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 Glass | 9beac5d | 2020-07-02 21:12:20 -0600 | [diff] [blame] | 227 | #ifdef CONFIG_VIDEO_COPY |
| 228 | int 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 Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 280 | /* Set up the colour map */ |
| 281 | static 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 | |
| 292 | static 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 */ |
| 302 | static 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 Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 307 | const char *drv_name = drv; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 308 | 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 Glass | 06696eb | 2018-11-29 15:08:52 -0700 | [diff] [blame] | 313 | if (!priv->line_length) |
| 314 | priv->line_length = priv->xsize * VNBYTES(priv->bpix); |
| 315 | |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 316 | priv->fb_size = priv->line_length * priv->ysize; |
| 317 | |
Simon Glass | 6efa809 | 2020-07-02 21:12:21 -0600 | [diff] [blame] | 318 | if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base) |
| 319 | priv->copy_fb = map_sysmem(plat->copy_base, plat->size); |
| 320 | |
Heinrich Schuchardt | 5c30fbb | 2018-02-08 21:47:11 +0100 | [diff] [blame] | 321 | /* Set up colors */ |
Simon Glass | b9f210a | 2018-11-06 15:21:36 -0700 | [diff] [blame] | 322 | video_set_default_colors(dev, false); |
Rob Clark | 8ef0535 | 2017-08-03 12:47:01 -0400 | [diff] [blame] | 323 | |
| 324 | if (!CONFIG_IS_ENABLED(NO_FB_CLEAR)) |
| 325 | video_clear(dev); |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 326 | |
Simon Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 327 | /* |
Simon Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 328 | * Create a text console device. For now we always do this, although |
Simon Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 329 | * it might be useful to support only bitmap drawing on the device |
Simon Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 330 | * 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 Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 339 | */ |
Simon Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 340 | if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) { |
Simon Glass | a29b012 | 2016-01-14 18:10:42 -0700 | [diff] [blame] | 341 | 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 Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 349 | str = strdup(name); |
| 350 | if (!str) |
| 351 | return -ENOMEM; |
Simon Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 352 | if (priv->vidconsole_drv_name) |
| 353 | drv_name = priv->vidconsole_drv_name; |
| 354 | ret = device_bind_driver(dev, drv_name, str, &cons); |
Simon Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 355 | if (ret) { |
| 356 | debug("%s: Cannot bind console driver\n", __func__); |
| 357 | return ret; |
| 358 | } |
Simon Glass | 826f35f | 2016-01-14 18:10:48 -0700 | [diff] [blame] | 359 | |
Simon Glass | 8351076 | 2016-01-18 19:52:17 -0700 | [diff] [blame] | 360 | ret = device_probe(cons); |
| 361 | if (ret) { |
| 362 | debug("%s: Cannot probe console driver\n", __func__); |
| 363 | return ret; |
| 364 | } |
| 365 | |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 366 | return 0; |
| 367 | }; |
| 368 | |
| 369 | /* Post-relocation, allocate memory for the frame buffer */ |
| 370 | static int video_post_bind(struct udevice *dev) |
| 371 | { |
Simon Glass | 7812bbd | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 372 | struct video_uc_priv *uc_priv; |
| 373 | ulong addr; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 374 | ulong size; |
| 375 | |
| 376 | /* Before relocation there is nothing to do here */ |
Tom Rini | 7516418 | 2018-04-22 09:47:48 -0400 | [diff] [blame] | 377 | if (!(gd->flags & GD_FLG_RELOC)) |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 378 | return 0; |
Simon Glass | 7812bbd | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 379 | |
| 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 Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 387 | size = alloc_fb(dev, &addr); |
| 388 | if (addr < gd->video_bottom) { |
Patrick Delaunay | 6998974 | 2019-05-21 19:19:12 +0200 | [diff] [blame] | 389 | /* Device tree node may need the 'u-boot,dm-pre-reloc' or |
| 390 | * 'u-boot,dm-pre-proper' tag |
| 391 | */ |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 392 | 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 Glass | 7812bbd | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 398 | uc_priv->video_ptr = addr; |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 399 | |
| 400 | return 0; |
| 401 | } |
| 402 | |
| 403 | UCLASS_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 Glass | 7812bbd | 2020-07-02 21:12:32 -0600 | [diff] [blame] | 411 | .priv_auto_alloc_size = sizeof(struct video_uc_priv), |
Simon Glass | 1acafc7 | 2016-01-18 19:52:15 -0700 | [diff] [blame] | 412 | .per_device_auto_alloc_size = sizeof(struct video_priv), |
| 413 | .per_device_platdata_auto_alloc_size = sizeof(struct video_uc_platdata), |
| 414 | }; |