Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 | // SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2015 Google, Inc */ #define LOG_CATEGORY UCLASS_VIDEO #include <bloblist.h> #include <console.h> #include <cpu_func.h> #include <cyclic.h> #include <dm.h> #include <log.h> #include <malloc.h> #include <mapmem.h> #include <spl.h> #include <stdio_dev.h> #include <video.h> #include <video_console.h> #include <asm/cache.h> #include <asm/global_data.h> #include <dm/lists.h> #include <dm/device_compat.h> #include <dm/device-internal.h> #include <dm/uclass-internal.h> #ifdef CONFIG_SANDBOX #include <asm/sdl.h> #endif #include "vidconsole_internal.h" /* * Theory of operation: * * Before relocation each device is bound. The driver for each device must * set the @align and @size values in struct video_uc_plat. This * information represents the requires size and alignment of the frame buffer * for the device. The values can be an over-estimate but cannot be too * small. The actual values will be suppled (in the same manner) by the bind() * method after relocation. Additionally driver can allocate frame buffer * itself by setting plat->base. * * This information is then picked up by video_reserve() which works out how * much memory is needed for all devices. This is allocated between * gd->video_bottom and gd->video_top. * * After relocation the same process occurs. The driver supplies the same * @size and @align information and this time video_post_bind() checks that * the drivers does not overflow the allocated memory. * * The driver's probe() function is called, which should set up the hardware * and fill in any required fields in struct video_uc_plat and * struct video_priv. * * After the driver's probe() completes, video_post_probe() is called. This * converts the framebuffer addresses (plat->base and plat->copy_base) to * pointers (priv->fb and priv->copy_fb), clears the frame buffer, and * allocates a suitable text-console device. The console can then be used to * write text to the video device. * * Copy framebuffer (CONFIG_VIDEO_COPY): * * To avoid flicker, some drivers need to draw to an off-screen buffer and * then copy to the visible framebuffer. Drivers can enable this in two ways: * * 1) If the framebuffer is in fixed memory (common on x86 hardware), in * bind() leave plat->size as 0 but set up plat->copy_size. This will allocate a * copy buffer. The driver must then set copy_base to the fixed-memory address * and base to the allocated copy_base. See for example vesa_setup_video_priv(). * * 2) Otherwise, since plat->size to the required value. The off-screen * framebuffer will be allocated. The driver must then set up copy_base in the * probe() method. * * In both cases, U-Boot draws to priv->fb and video_sync() copies the * damaged regions from priv->fb to priv->copy_fb to make them visible. */ DECLARE_GLOBAL_DATA_PTR; struct cyclic_info; /** * struct video_uc_priv - Information for the video uclass * * @video_ptr: Current allocation position of the video framebuffer pointer. * While binding devices after relocation, this points to the next * available address to use for a device's framebuffer. It starts at * gd->video_top and works downwards, running out of space when it hits * gd->video_bottom. * @cyc_active: true if cyclic video sync is currently registered * @manual_sync: true if manual-sync mode is active (caller controls video sync) * @cyc: handle for cyclic-execution function, or NULL if none */ struct video_uc_priv { ulong video_ptr; bool cyc_active; bool manual_sync; struct cyclic_info cyc; }; /** struct vid_rgb - Describes a video colour */ struct vid_rgb { u32 r; u32 g; u32 b; }; void video_set_flush_dcache(struct udevice *dev, bool flush) { struct video_priv *priv = dev_get_uclass_priv(dev); priv->flush_dcache = flush; } static ulong alloc_fb_(ulong align, ulong size, ulong *addrp) { ulong base; align = align ? align : 1 << 20; base = *addrp - size; base &= ~(align - 1); size = *addrp - base; *addrp = base; return size; } static ulong alloc_fb(struct udevice *dev, ulong *addrp) { struct video_uc_plat *plat = dev_get_uclass_plat(dev); ulong size; if (!plat->size) { if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_size) { size = alloc_fb_(plat->align, plat->copy_size, addrp); plat->copy_base = *addrp; return size; } return 0; } /* Allow drivers to allocate the frame buffer themselves */ if (plat->base) return 0; size = alloc_fb_(plat->align, plat->size, addrp); plat->base = *addrp; return size; } int video_reserve(ulong *addrp) { struct udevice *dev; struct uclass *uc; ulong size; if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && xpl_phase() == PHASE_BOARD_F) return 0; gd->video_top = *addrp; uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) { size = alloc_fb(dev, addrp); debug("%s: Reserving %lx bytes at %lx for video device '%s'\n", __func__, size, *addrp, dev->name); } /* Allocate space for PCI video devices in case there were not bound */ if (*addrp == gd->video_top) *addrp -= CONFIG_VAL(VIDEO_PCI_DEFAULT_FB_SIZE); gd->video_bottom = *addrp; debug("Video frame buffers from %lx to %lx\n", gd->video_bottom, gd->video_top); return 0; } ulong video_get_fb(void) { struct udevice *dev; uclass_find_first_device(UCLASS_VIDEO, &dev); if (dev) { const struct video_uc_plat *uc_plat = dev_get_uclass_plat(dev); return uc_plat->base; } return 0; } int video_fill_part(struct udevice *dev, int xstart, int ystart, int xend, int yend, u32 colour) { struct video_priv *priv = dev_get_uclass_priv(dev); void *start, *line; int pixels = xend - xstart; int row, i; start = priv->fb + ystart * priv->line_length; start += xstart * VNBYTES(priv->bpix); line = start; for (row = ystart; row < yend; row++) { switch (priv->bpix) { case VIDEO_BPP8: { u8 *dst = line; if (IS_ENABLED(CONFIG_VIDEO_BPP8)) { for (i = 0; i < pixels; i++) *dst++ = colour; } break; } case VIDEO_BPP16: { u16 *dst = line; if (IS_ENABLED(CONFIG_VIDEO_BPP16)) { for (i = 0; i < pixels; i++) *dst++ = colour; } break; } case VIDEO_BPP32: { u32 *dst = line; if (IS_ENABLED(CONFIG_VIDEO_BPP32)) { for (i = 0; i < pixels; i++) *dst++ = colour; } break; } default: return -ENOSYS; } line += priv->line_length; } video_damage(dev, xstart, ystart, xend - xstart, yend - ystart); return 0; } int video_draw_box(struct udevice *dev, int x0, int y0, int x1, int y1, int width, u32 colour, bool fill) { struct video_priv *priv = dev_get_uclass_priv(dev); int pbytes = VNBYTES(priv->bpix); void *start, *line; int pixels = x1 - x0; int row; start = priv->fb + y0 * priv->line_length; start += x0 * pbytes; line = start; for (row = y0; row < y1; row++) { void *ptr = line; int i; if (fill) { /* fill the entire row */ for (i = 0; i < pixels; i++) fill_pixel_and_goto_next(&ptr, colour, pbytes, pbytes); } else { /* draw outline only */ for (i = 0; i < width; i++) fill_pixel_and_goto_next(&ptr, colour, pbytes, pbytes); if (row < y0 + width || row >= y1 - width) { for (i = 0; i < pixels - width * 2; i++) fill_pixel_and_goto_next(&ptr, colour, pbytes, pbytes); } else { ptr += (pixels - width * 2) * pbytes; } for (i = 0; i < width; i++) fill_pixel_and_goto_next(&ptr, colour, pbytes, pbytes); } line += priv->line_length; } video_damage(dev, x0, y0, x1 - x0, y1 - y0); return 0; } int video_reserve_from_bloblist(struct video_handoff *ho) { if (!ho->fb || ho->size == 0) return -ENOENT; gd->video_bottom = ho->fb; gd->video_top = ho->fb + ho->size; debug("%s: Reserving %lx bytes at %08x as per bloblist received\n", __func__, (unsigned long)ho->size, (u32)ho->fb); return 0; } int video_fill(struct udevice *dev, u32 colour) { struct video_priv *priv = dev_get_uclass_priv(dev); switch (priv->bpix) { case VIDEO_BPP16: if (CONFIG_IS_ENABLED(VIDEO_BPP16)) { u16 *ppix = priv->fb; u16 *end = priv->fb + priv->fb_size; while (ppix < end) *ppix++ = colour; break; } fallthrough; case VIDEO_BPP32: if (CONFIG_IS_ENABLED(VIDEO_BPP32)) { u32 *ppix = priv->fb; u32 *end = priv->fb + priv->fb_size; while (ppix < end) *ppix++ = colour; break; } fallthrough; default: memset(priv->fb, colour, priv->fb_size); break; } video_damage(dev, 0, 0, priv->xsize, priv->ysize); return video_sync(dev, false); } int video_clear(struct udevice *dev) { struct video_priv *priv = dev_get_uclass_priv(dev); int ret; ret = video_fill(dev, priv->colour_bg); if (ret) return ret; return 0; } static const struct vid_rgb colours[VID_COLOUR_COUNT] = { { 0x00, 0x00, 0x00 }, /* black */ { 0xc0, 0x00, 0x00 }, /* red */ { 0x00, 0xc0, 0x00 }, /* green */ { 0xc0, 0x60, 0x00 }, /* brown */ { 0x00, 0x00, 0xc0 }, /* blue */ { 0xc0, 0x00, 0xc0 }, /* magenta */ { 0x00, 0xc0, 0xc0 }, /* cyan */ { 0xc0, 0xc0, 0xc0 }, /* light gray */ { 0x80, 0x80, 0x80 }, /* gray */ { 0xff, 0x00, 0x00 }, /* bright red */ { 0x00, 0xff, 0x00 }, /* bright green */ { 0xff, 0xff, 0x00 }, /* yellow */ { 0x00, 0x00, 0xff }, /* bright blue */ { 0xff, 0x00, 0xff }, /* bright magenta */ { 0x00, 0xff, 0xff }, /* bright cyan */ { 0xff, 0xff, 0xff }, /* white */ /* an extra one for menus */ { 0x40, 0x40, 0x40 }, /* dark gray */ }; u32 video_index_to_colour(struct video_priv *priv, enum colour_idx idx) { switch (priv->bpix) { case VIDEO_BPP16: if (CONFIG_IS_ENABLED(VIDEO_BPP16)) { return ((colours[idx].r >> 3) << 11) | ((colours[idx].g >> 2) << 5) | ((colours[idx].b >> 3) << 0); } break; case VIDEO_BPP32: if (CONFIG_IS_ENABLED(VIDEO_BPP32)) { switch (priv->format) { case VIDEO_X2R10G10B10: return (colours[idx].r << 22) | (colours[idx].g << 12) | (colours[idx].b << 2); case VIDEO_RGBA8888: return (colours[idx].r << 24) | (colours[idx].g << 16) | (colours[idx].b << 8) | 0xff; default: return (colours[idx].r << 16) | (colours[idx].g << 8) | (colours[idx].b << 0); } } break; default: break; } /* * For unknown bit arrangements just support * black and white. */ if (idx) return 0xffffff; /* white */ return 0x000000; /* black */ } void video_set_default_colors(struct udevice *dev, bool invert) { struct video_priv *priv = dev_get_uclass_priv(dev); int fore, back; if (priv->white_on_black) { /* White is used when switching to bold, use light gray here */ fore = VID_LIGHT_GRAY; back = VID_BLACK; } else { fore = VID_BLACK; back = VID_WHITE; } if (invert) { int temp; temp = fore; fore = back; back = temp; } priv->fg_col_idx = fore; priv->bg_col_idx = back; priv->colour_fg = video_index_to_colour(priv, fore); priv->colour_bg = video_index_to_colour(priv, back); } /* Notify about changes in the frame buffer */ #ifdef CONFIG_VIDEO_DAMAGE void video_damage(struct udevice *vid, int x, int y, int width, int height) { struct video_priv *priv = dev_get_uclass_priv(vid); struct vid_bbox *damage = &priv->damage; int xend = x + width; int yend = y + height; if (x > priv->xsize) return; if (y > priv->ysize) return; if (xend > priv->xsize) xend = priv->xsize; if (yend > priv->ysize) yend = priv->ysize; /* Span a rectangle across all old and new damage */ damage->x0 = min(x, damage->x0); damage->y0 = min(y, damage->y0); damage->x1 = max(xend, damage->x1); damage->y1 = max(yend, damage->y1); } #endif static void video_flush_dcache(struct udevice *vid, bool use_copy) { struct video_priv *priv = dev_get_uclass_priv(vid); ulong fb = use_copy ? (ulong)priv->copy_fb : (ulong)priv->fb; uint cacheline_size = 32; #ifdef CONFIG_SYS_CACHELINE_SIZE cacheline_size = CONFIG_SYS_CACHELINE_SIZE; #endif if (CONFIG_IS_ENABLED(SYS_DCACHE_OFF)) return; if (!priv->flush_dcache) return; if (!IS_ENABLED(CONFIG_VIDEO_DAMAGE)) { flush_dcache_range(fb, ALIGN(fb + priv->fb_size, cacheline_size)); return; } if (priv->damage.x1 && priv->damage.y1) { int lstart = priv->damage.x0 * VNBYTES(priv->bpix); int lend = priv->damage.x1 * VNBYTES(priv->bpix); int y; for (y = priv->damage.y0; y < priv->damage.y1; y++) { ulong start = fb + (y * priv->line_length) + lstart; ulong end = start + lend - lstart; start = ALIGN_DOWN(start, cacheline_size); end = ALIGN(end, cacheline_size); flush_dcache_range(start, end); } } } static void video_flush_copy(struct udevice *vid) { struct video_priv *priv = dev_get_uclass_priv(vid); struct vid_bbox *damage = &priv->damage; if (!priv->copy_fb) return; if (!damage->x1 || !damage->y1) return; int lstart = damage->x0 * VNBYTES(priv->bpix); int llen = damage->x1 * VNBYTES(priv->bpix) - lstart; /* Copy entire region at once if full lines are damaged */ if (!lstart && llen == priv->line_length) { ulong offset = damage->y0 * priv->line_length; ulong len = (damage->y1 - damage->y0) * priv->line_length; memcpy(priv->copy_fb + offset, priv->fb + offset, len); } else { int y; for (y = damage->y0; y < damage->y1; y++) { ulong offset = y * priv->line_length + lstart; memcpy(priv->copy_fb + offset, priv->fb + offset, llen); } } } int video_manual_sync(struct udevice *vid, uint flags) { struct video_priv *priv = dev_get_uclass_priv(vid); struct video_ops *ops = video_get_ops(vid); int ret; if (IS_ENABLED(CONFIG_VIDEO_COPY) && (flags & VIDSYNC_COPY)) video_flush_copy(vid); if (ops && ops->sync) { ret = ops->sync(vid, flags); if (ret) return ret; } if (!(flags & VIDSYNC_FLUSH)) return 0; video_flush_dcache(vid, false); if (IS_ENABLED(CONFIG_VIDEO_DAMAGE)) { struct vid_bbox *damage = &priv->damage; damage->x0 = priv->xsize; damage->y0 = priv->ysize; damage->x1 = 0; damage->y1 = 0; } return 0; } /* Flush video activity to the caches */ int video_sync(struct udevice *vid, bool force) { struct video_priv *priv = dev_get_uclass_priv(vid); struct video_uc_priv *uc_priv = uclass_get_priv(vid->uclass); uint flags = 0; int ret; /* Skip sync if manual-sync mode is active */ if (uc_priv->manual_sync) return 0; if (force) flags |= VIDSYNC_FORCE; /* Check if sync should do full flush */ if (!CONFIG_IS_ENABLED(CYCLIC) || force || get_timer(priv->last_sync) >= CONFIG_VIDEO_SYNC_MS) flags |= VIDSYNC_FLUSH; if (IS_ENABLED(CONFIG_VIDEO_COPY)) flags |= VIDSYNC_COPY; ret = video_manual_sync(vid, flags); if (ret) return ret; priv->last_sync = get_timer(0); return 0; } void video_sync_all(void) { struct udevice *dev; struct uclass *uc; int ret; uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) { if (device_active(dev)) { ret = video_sync(dev, true); if (ret) dev_dbg(dev, "Video sync failed\n"); } } } bool video_is_active(void) { struct udevice *dev; struct uclass *uc; /* Assume video to be active if SPL passed video hand-off to U-boot */ if (IS_ENABLED(CONFIG_SPL_VIDEO_HANDOFF) && xpl_phase() > PHASE_SPL) return true; uclass_id_foreach_dev(UCLASS_VIDEO, dev, uc) { if (device_active(dev)) return true; } return false; } int video_get_xsize(struct udevice *dev) { struct video_priv *priv = dev_get_uclass_priv(dev); return priv->xsize; } int video_get_ysize(struct udevice *dev) { struct video_priv *priv = dev_get_uclass_priv(dev); return priv->ysize; } void *video_get_u_boot_logo(int *sizep) { void *ptr; int size; ptr = video_image_get(u_boot, &size); if (sizep) *sizep = size; return ptr; } static int show_splash(struct udevice *dev) { u8 *data; int ret; data = video_image_getptr(u_boot); ret = video_bmp_display(dev, map_to_sysmem(data), -4, 4, true); unmap_sysmem(data); return 0; } int video_default_font_height(struct udevice *dev) { struct vidconsole_ctx *ctx = vidconsole_ctx(dev); if (IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) return IF_ENABLED_INT(CONFIG_CONSOLE_TRUETYPE, CONFIG_CONSOLE_TRUETYPE_SIZE); return ctx->y_charsize; } static void video_idle(struct cyclic_info *cyc) { struct video_uc_priv *uc_priv; struct uclass *uc; /* * Use uclass_find() rather than uclass_get() since the latter may * create a new uclass if the test framework has reinitialised driver * model while this cyclic function is still registered. */ uc = uclass_find(UCLASS_VIDEO); if (!uc) return; uc_priv = uclass_get_priv(uc); /* Skip sync if manual-sync mode is active */ if (uc_priv->manual_sync) return; if (CONFIG_IS_ENABLED(CURSOR)) { struct udevice *cons; /* Handle cursor display for each video console */ uc = uclass_find(UCLASS_VIDEO_CONSOLE); if (uc) { list_for_each_entry(cons, &uc->dev_head, uclass_node) { if (device_active(cons)) { vidconsole_idle(cons); video_sync(cons->parent, true); } } } } else { video_sync_all(); } } void video_set_white_on_black(struct udevice *dev, bool white_on_black) { struct video_priv *priv = dev_get_uclass_priv(dev); if (priv->white_on_black != white_on_black) { priv->white_on_black = white_on_black; video_set_default_colors(dev, false); video_clear(dev); } } /* Set up the display ready for use */ static int video_post_probe(struct udevice *dev) { struct video_uc_plat *plat = dev_get_uclass_plat(dev); struct video_uc_priv *uc_priv = uclass_get_priv(dev->uclass); struct video_priv *priv = dev_get_uclass_priv(dev); char name[30], drv[15], *str; const char *drv_name = drv; struct udevice *cons; int ret; /* Set up the line and display size */ priv->fb = map_sysmem(plat->base, plat->size); if (!priv->line_length) priv->line_length = priv->xsize * VNBYTES(priv->bpix); priv->fb_size = priv->line_length * priv->ysize; /* * Set up video handoff fields for passing video blob to next stage * NOTE: * This assumes that reserved video memory only uses a single framebuffer */ if (xpl_phase() == PHASE_SPL && CONFIG_IS_ENABLED(BLOBLIST)) { struct video_handoff *ho; ho = bloblist_add(BLOBLISTT_U_BOOT_VIDEO, sizeof(*ho), 0); if (!ho) return log_msg_ret("blf", -ENOENT); ho->fb = gd->video_bottom; /* Fill aligned size here as calculated in video_reserve() */ ho->size = gd->video_top - gd->video_bottom; ho->xsize = priv->xsize; ho->ysize = priv->ysize; ho->line_length = priv->line_length; ho->bpix = priv->bpix; ho->format = priv->format; } if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base) priv->copy_fb = map_sysmem(plat->copy_base, plat->size); priv->white_on_black = CONFIG_IS_ENABLED(SYS_WHITE_ON_BLACK); /* Set up colors */ video_set_default_colors(dev, false); if (!CONFIG_IS_ENABLED(NO_FB_CLEAR)) video_clear(dev); /* * Create a text console device. For now we always do this, although * it might be useful to support only bitmap drawing on the device * for boards that don't need to display text. We create a TrueType * console if enabled, a rotated console if the video driver requests * it, otherwise a normal console. * * The console can be override by setting vidconsole_drv_name before * probing this video driver, or in the probe() method. * * TrueType does not support rotation at present so fall back to the * rotated console in that case. */ if (!priv->rot && IS_ENABLED(CONFIG_CONSOLE_TRUETYPE)) { snprintf(name, sizeof(name), "%s.vidconsole_tt", dev->name); strcpy(drv, "vidconsole_tt"); } else { snprintf(name, sizeof(name), "%s.vidconsole%d", dev->name, priv->rot); snprintf(drv, sizeof(drv), "vidconsole%d", priv->rot); } str = strdup(name); if (!str) return -ENOMEM; if (priv->vidconsole_drv_name) drv_name = priv->vidconsole_drv_name; ret = device_bind_driver(dev, drv_name, str, &cons); if (ret) { debug("%s: Cannot bind console driver\n", __func__); free(str); return ret; } device_set_name_alloced(cons); ret = device_probe(cons); if (ret) { debug("%s: Cannot probe console driver\n", __func__); return ret; } if (CONFIG_IS_ENABLED(VIDEO_LOGO) && !CONFIG_IS_ENABLED(SPLASH_SCREEN) && !plat->hide_logo) { ret = show_splash(dev); if (ret) { log_debug("Cannot show splash screen\n"); return ret; } } /* register cyclic as soon as the first video device is probed */ if (CONFIG_IS_ENABLED(CYCLIC) && (gd->flags && GD_FLG_RELOC) && !uc_priv->cyc_active) { uint ms = CONFIG_IF_ENABLED_INT(CYCLIC, VIDEO_SYNC_CYCLIC_MS); cyclic_register(&uc_priv->cyc, video_idle, ms * 1000, "video_init"); uc_priv->cyc_active = true; } return 0; }; /* Post-relocation, allocate memory for the frame buffer */ static int video_post_bind(struct udevice *dev) { struct video_uc_priv *uc_priv; ulong addr; ulong size; /* Before relocation there is nothing to do here */ if (!(gd->flags & GD_FLG_RELOC)) return 0; /* Set up the video pointer, if this is the first device */ uc_priv = uclass_get_priv(dev->uclass); if (!uc_priv->video_ptr) uc_priv->video_ptr = gd->video_top; /* Allocate framebuffer space for this device */ addr = uc_priv->video_ptr; size = alloc_fb(dev, &addr); if (addr < gd->video_bottom) { /* * Device tree node may need the 'bootph-all' or * 'bootph-some-ram' tag */ printf("Video device '%s' cannot allocate frame buffer memory " "- ensure the device is set up before relocation\n", dev->name); return -ENOSPC; } debug("%s: Claiming %lx bytes at %lx for video device '%s'\n", __func__, size, addr, dev->name); uc_priv->video_ptr = addr; return 0; } __maybe_unused static int video_destroy(struct uclass *uc) { struct video_uc_priv *uc_priv = uclass_get_priv(uc); if (uc_priv->cyc_active) { cyclic_unregister(&uc_priv->cyc); uc_priv->cyc_active = false; } return 0; } __maybe_unused static int video_pre_remove(struct udevice *dev) { struct video_uc_priv *uc_priv = uclass_get_priv(dev->uclass); /* * Unregister the cyclic before removing the last video device. This * ensures the cyclic won't run after driver model is reinitialised * by the test framework. */ if (uc_priv->cyc_active && uclass_id_count(UCLASS_VIDEO) == 1) { cyclic_unregister(&uc_priv->cyc); uc_priv->cyc_active = false; } return 0; } void video_set_manual_sync(bool enable) { struct video_uc_priv *uc_priv; struct uclass *uc; int ret; ret = uclass_get(UCLASS_VIDEO, &uc); if (ret) return; uc_priv = uclass_get_priv(uc); uc_priv->manual_sync = enable; } UCLASS_DRIVER(video) = { .id = UCLASS_VIDEO, .name = "video", .flags = DM_UC_FLAG_SEQ_ALIAS, .post_bind = video_post_bind, .post_probe = video_post_probe, .priv_auto = sizeof(struct video_uc_priv), .per_device_auto = sizeof(struct video_priv), .per_device_plat_auto = sizeof(struct video_uc_plat), CONFIG_IS_ENABLED(CYCLIC, (.pre_remove = video_pre_remove, )) CONFIG_IS_ENABLED(CYCLIC, (.destroy = video_destroy, )) }; |