Spaces:
Runtime error
Runtime error
File size: 70,329 Bytes
5aefcf4 |
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 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 |
Ticket Name: Linux: [EXTERNAL] How to create a custom image file (4CH AVB capture +SVM) on TDA2 EVM Query Text: Tool/software: Linux Hi Prasad, Thanks for your recommendation. (same as the AVB/SVR topic) I confirmed that XDC build AVBTP package successfully. But it still can't print out any debug message from UART, After modified the \vision_sdk\apps\configs\tda2xx_evm_linux_all\cfg.mk, rebuild image (debug mode) again. ## Applies profile to all cores # # Supported profiles: release debug #PROFILE=debug PROFILE ?= release PROFILE_ipu1_0 ?= $(PROFILE) PROFILE_ipu1_1 ?= $(PROFILE) PROFILE_ipu2 ?= debug PROFILE_c66xdsp_1 ?= $(PROFILE) PROFILE_a15_0 ?= $(PROFILE) It could print out some debug message via GT_trace() from UART, but it occurred the exception of “### XDC ASSERT - ERROR CALLBACK START ###” when call bsp_deviceI2CInit() function [found 4 I2C instance : i2c0, i2c1, i2c2, i2c3]. /ti_components/drivers/pdk_01_10_01_06/packages/ti/drv/vps/src/devices/src/bsp_deviceI2c.c Could you help provide suggestion for fix the issue ? Thanks. Ps. BTW, from Log message, it showed error message in debug mode: [ 13.677475] omap_i2c 48070000.i2c: controller timed out [ 15.044513] omap_hwmod: i2c1: _wait_target_disable failed Regards, Sam Hsieh Responses: log_avb_build.txt /home/sam/proj/TI_VISION_SDK_V3_5/ti_components/networking/avbtp_0_10_00_00/../../os_tools/linux/xdctools_3_32_01_22_core/xdc --xdcpath="/home/sam/proj/TI_VISION_SDK_V3_5/ti_components/networking/avbtp_0_10_00_00/../../os_tools/bios_6_46_04_53/packages" --jobs 8 -P packages/ti/avbtp/ making all: Wed Jan 9 13:45:44 CST 2019 ... ======== .interfaces [packages/ti/avbtp/] ======== making package.mak (because of package.bld) ... commonCopts : generating interfaces for package ti.avbtp (because package/package.xdc.inc is older than package.xdc) ... translating AVBTP .interfaces files complete: Wed Jan 9 13:45:46 CST 2019. ======== .libraries [packages/ti/avbtp/] ======== clem3 package/package_ti.avbtp.c ... clem3 avbtp.c ... clem3 avb2nsp.c ... clem3 avbtp_queue.c ... clem3 package/package_ti.avbtp.c ... clem3 avbtp.c ... clem3 avb2nsp.c ... clem3 avbtp_queue.c ... clem3 package/package_ti.avbtp.c ... clem3 avbtp.c ... clem3 avb2nsp.c ... clem3 avbtp_queue.c ... clem3 package/package_ti.avbtp.c ... clem3 avbtp.c ... clem3 avb2nsp.c ... clem3 avbtp_queue.c ... clem4 package/package_ti.avbtp.c ... clem4 avbtp.c ... clem4 avb2nsp.c ... clem4 avbtp_queue.c ... clem4 package/package_ti.avbtp.c ... clem4 avbtp.c ... clem4 avb2nsp.c ... clem4 avbtp_queue.c ... clem4 package/package_ti.avbtp.c ... clem4 avbtp.c ... clem4 avb2nsp.c ... clem4 avbtp_queue.c ... clem4 package/package_ti.avbtp.c ... clem4 avbtp.c ... clem4 avb2nsp.c ... clem4 avbtp_queue.c ... clea8f package/package_ti.avbtp.c ... clea8f avbtp.c ... clea8f avb2nsp.c ... clea8f avbtp_queue.c ... clea8f package/package_ti.avbtp.c ... clea8f avbtp.c ... clea8f avb2nsp.c ... clea8f avbtp_queue.c ... clea8f package/package_ti.avbtp.c ... clea8f avbtp.c ... clea8f avb2nsp.c ... clea8f avbtp_queue.c ... clea8f package/package_ti.avbtp.c ... clea8f avbtp.c ... clea8f avb2nsp.c ... clea8f avbtp_queue.c ... cla15fg package/package_ti.avbtp.c ... cla15fg avbtp.c ... cla15fg avb2nsp.c ... cla15fg avbtp_queue.c ... cla15fg package/package_ti.avbtp.c ... cla15fg avbtp.c ... cla15fg avb2nsp.c ... cla15fg avbtp_queue.c ... cla15fg package/package_ti.avbtp.c ... cla15fg avbtp.c ... cla15fg avb2nsp.c ... cla15fg avbtp_queue.c ... cla15fg package/package_ti.avbtp.c ... cla15fg avbtp.c ... cla15fg avb2nsp.c ... cla15fg avbtp_queue.c ... archiving package/lib/lib/debug/ti.avbtp/package/package_ti.avbtp.oem3 package/lib/lib/debug/ti.avbtp/avbtp.oem3 package/lib/lib/debug/ti.avbtp/avb2nsp.oem3 package/lib/lib/debug/ti.avbtp/avbtp_queue.oem3 into lib/debug/ti.avbtp.aem3 ... archiving package/lib/lib/debug/ti.avbtp_instr/package/package_ti.avbtp.oem3 package/lib/lib/debug/ti.avbtp_instr/avbtp.oem3 package/lib/lib/debug/ti.avbtp_instr/avb2nsp.oem3 package/lib/lib/debug/ti.avbtp_instr/avbtp_queue.oem3 into lib/debug/ti.avbtp_instr.aem3 ... archiving package/lib/lib/release/ti.avbtp/package/package_ti.avbtp.oem3 package/lib/lib/release/ti.avbtp/avbtp.oem3 package/lib/lib/release/ti.avbtp/avb2nsp.oem3 package/lib/lib/release/ti.avbtp/avbtp_queue.oem3 into lib/release/ti.avbtp.aem3 ... archiving package/lib/lib/release/ti.avbtp_instr/package/package_ti.avbtp.oem3 package/lib/lib/release/ti.avbtp_instr/avbtp.oem3 package/lib/lib/release/ti.avbtp_instr/avb2nsp.oem3 package/lib/lib/release/ti.avbtp_instr/avbtp_queue.oem3 into lib/release/ti.avbtp_instr.aem3 ... archiving package/lib/lib/debug/ti.avbtp/package/package_ti.avbtp.oem4 package/lib/lib/debug/ti.avbtp/avbtp.oem4 package/lib/lib/debug/ti.avbtp/avb2nsp.oem4 package/lib/lib/debug/ti.avbtp/avbtp_queue.oem4 into lib/debug/ti.avbtp.aem4 ... archiving package/lib/lib/debug/ti.avbtp_instr/package/package_ti.avbtp.oem4 package/lib/lib/debug/ti.avbtp_instr/avbtp.oem4 package/lib/lib/debug/ti.avbtp_instr/avb2nsp.oem4 package/lib/lib/debug/ti.avbtp_instr/avbtp_queue.oem4 into lib/debug/ti.avbtp_instr.aem4 ... archiving package/lib/lib/release/ti.avbtp/package/package_ti.avbtp.oem4 package/lib/lib/release/ti.avbtp/avbtp.oem4 package/lib/lib/release/ti.avbtp/avb2nsp.oem4 package/lib/lib/release/ti.avbtp/avbtp_queue.oem4 into lib/release/ti.avbtp.aem4 ... archiving package/lib/lib/debug/ti.avbtp/package/package_ti.avbtp.oea8f package/lib/lib/debug/ti.avbtp/avbtp.oea8f package/lib/lib/debug/ti.avbtp/avb2nsp.oea8f package/lib/lib/debug/ti.avbtp/avbtp_queue.oea8f into lib/debug/ti.avbtp.aea8f ... archiving package/lib/lib/debug/ti.avbtp_instr/package/package_ti.avbtp.oea8f package/lib/lib/debug/ti.avbtp_instr/avbtp.oea8f package/lib/lib/debug/ti.avbtp_instr/avb2nsp.oea8f package/lib/lib/debug/ti.avbtp_instr/avbtp_queue.oea8f into lib/debug/ti.avbtp_instr.aea8f ... archiving package/lib/lib/debug/ti.avbtp/package/package_ti.avbtp.oa15fg package/lib/lib/debug/ti.avbtp/avbtp.oa15fg package/lib/lib/debug/ti.avbtp/avb2nsp.oa15fg package/lib/lib/debug/ti.avbtp/avbtp_queue.oa15fg into lib/debug/ti.avbtp.aa15fg ... archiving package/lib/lib/debug/ti.avbtp_instr/package/package_ti.avbtp.oa15fg package/lib/lib/debug/ti.avbtp_instr/avbtp.oa15fg package/lib/lib/debug/ti.avbtp_instr/avb2nsp.oa15fg package/lib/lib/debug/ti.avbtp_instr/avbtp_queue.oa15fg into lib/debug/ti.avbtp_instr.aa15fg ... archiving package/lib/lib/release/ti.avbtp/package/package_ti.avbtp.oa15fg package/lib/lib/release/ti.avbtp/avbtp.oa15fg package/lib/lib/release/ti.avbtp/avb2nsp.oa15fg package/lib/lib/release/ti.avbtp/avbtp_queue.oa15fg into lib/release/ti.avbtp.aa15fg ... archiving package/lib/lib/release/ti.avbtp_instr/package/package_ti.avbtp.oem4 package/lib/lib/release/ti.avbtp_instr/avbtp.oem4 package/lib/lib/release/ti.avbtp_instr/avb2nsp.oem4 package/lib/lib/release/ti.avbtp_instr/avbtp_queue.oem4 into lib/release/ti.avbtp_instr.aem4 ... archiving package/lib/lib/release/ti.avbtp_instr/package/package_ti.avbtp.oa15fg package/lib/lib/release/ti.avbtp_instr/avbtp.oa15fg package/lib/lib/release/ti.avbtp_instr/avb2nsp.oa15fg package/lib/lib/release/ti.avbtp_instr/avbtp_queue.oa15fg into lib/release/ti.avbtp_instr.aa15fg ... archiving package/lib/lib/release/ti.avbtp/package/package_ti.avbtp.oea8f package/lib/lib/release/ti.avbtp/avbtp.oea8f package/lib/lib/release/ti.avbtp/avb2nsp.oea8f package/lib/lib/release/ti.avbtp/avbtp_queue.oea8f into lib/release/ti.avbtp.aea8f ... archiving package/lib/lib/release/ti.avbtp_instr/package/package_ti.avbtp.oea8f package/lib/lib/release/ti.avbtp_instr/avbtp.oea8f package/lib/lib/release/ti.avbtp_instr/avb2nsp.oea8f package/lib/lib/release/ti.avbtp_instr/avbtp_queue.oea8f into lib/release/ti.avbtp_instr.aea8f ... .libraries files complete: Wed Jan 9 13:45:51 CST 2019. ======== .dlls [packages/ti/avbtp/] ======== .dlls files complete: Wed Jan 9 13:45:51 CST 2019. ======== .executables [packages/ti/avbtp/] ======== .executables files complete: Wed Jan 9 13:45:51 CST 2019. ======== all [packages/ti/avbtp/] ======== all files complete. all files complete: Wed Jan 9 13:45:51 CST 2019. log_avb_2019_0109.txt @ U-Boot SPL 2016.05 (Jan 07 2019 - 18:28:06) DRA752-GP ES2.0 no pinctrl for hs200_1_8v no pinctrl for ddr_1_8v *** Warning - MMC init failed, using default environment Trying to boot from MMC1 reading dra7-ipu2-fw.lzop spl_load_file_fat: error reading file dra7-ipu2-fw.lzop, err - -1 spl: error reading image dra7-ipu2-fw.lzop, err - -1 Error loading remotecore IPU2!,Continuing with boot ... reading dra7-dsp1-fw.lzop spl_load_file_fat: error reading file dra7-dsp1-fw.lzop, err - -1 spl: error reading image dra7-dsp1-fw.lzop, err - -1 Error loading remotecore DSP1!,Continuing with boot ... reading dra7-dsp2-fw.lzop spl_load_file_fat: error reading file dra7-dsp2-fw.lzop, err - -1 spl: error reading image dra7-dsp2-fw.lzop, err - -1 Error loading remotecore DSP2!,Continuing with boot ... reading dra7-ipu1-fw.lzop spl_load_file_fat: error reading file dra7-ipu1-fw.lzop, err - -1 spl: error reading image dra7-ipu1-fw.lzop, err - -1 Error loading remotecore IPU1!,Continuing with boot ... *** Warning - MMC init failed, using default environment reading u-boot.img reading u-boot.img reading u-boot.img reading u-boot.img U-Boot 2016.05 (Jan 07 2019 - 18:28:06 +0800) CPU : DRA752-GP ES2.0 Model: TI DRA742 Board: DRA74x EVM REV DRAM: 1.5 GiB MMC: OMAP SD/MMC: 0, OMAP SD/MMC: 1 ** First descriptor is NOT a primary desc on 1:1 ** Warning: fastboot.board_rev: unknown board revision GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645 part_get_info_efi: *** ERROR: Invalid GPT *** GUID Partition Table Header signature is wrong: 0x0 != 0x5452415020494645 part_get_info_efi: *** ERROR: Invalid Backup GPT *** ERROR: cannot find partition: 'userdata' at arch/arm/cpu/armv7/omap-common/utils.c:199/mmc_get_part_size() Warning: fastboot.userdata_size: unable to calc SCSI: SATA link 0 timeout. AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst scanning bus for devices... Found 0 device(s). Net: Warning: ethernet@48484000 using MAC address from ROM eth0: ethernet@48484000 Hit any key to stop autoboot: 0 ## Error: "board_findfdt" not defined switch to partitions #0, OK mmc0 is current device SD/MMC found on device 0 reading boot.scr ** Unable to read file boot.scr ** reading uEnv.txt 173 bytes read in 6 ms (27.3 KiB/s) Loaded env from uEnv.txt Importing environment from mmc0 ... switch to partitions #0, OK mmc0 is current device SD/MMC found on device 0 3560800 bytes read in 338 ms (10 MiB/s) 106933 bytes read in 28 ms (3.6 MiB/s) Booting from mmc0 ... Kernel image @ 0x82000000 [ 0x000000 - 0x365560 ] ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Device Tree to 8ffe2000, end 8ffff1b4 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.4.84-00032-g0f6b93d-dirty (sam@ubuntu-ML-Server) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Mon Jan 7 18:30:07 CST 2019 [ 0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache [ 0.000000] Machine model: TI DRA742 [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000040300000, size 3 MiB [ 0.000000] Reserved memory: initialized node cmem@40300000, compatible id shared-dma-pool [ 0.000000] Reserved memory: regions without no-map are not yet supported [ 0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 80 MiB [ 0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created CMA memory pool at 0x000000009e000000, size 32 MiB [ 0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: regions without no-map are not yet supported [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000a1000000, size 32 MiB [ 0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000a3000000, size 32 MiB [ 0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool [ 0.000000] Reserved memory: regions without no-map are not yet supported [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 32 MiB [ 0.000000] Reserved memory: initialized node cmem@A9000000, compatible id shared-dma-pool [ 0.000000] cma: Reserved 64 MiB at 0x00000000bbc00000 [ 0.000000] Forcing write-allocate cache policy for SMP [ 0.000000] Memory policy: Data cache writealloc [ 0.000000] OMAP4: Map 0x00000000bfd00000 to fe600000 for dram barrier [ 0.000000] DRA752 ES2.0 [ 0.000000] PERCPU: Embedded 11 pages/cpu @ef62a000 s14912 r8192 d21952 u45056 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 251456 [ 0.000000] Kernel command line: console=ttyO0,115200n8 vram=16M root=PARTUUID=9814ac18-02 rw rootwait ip=none mem=1024M cma=64M [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes) [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes) [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes) [ 0.000000] Memory: 353188K/1012736K available (6635K kernel code, 320K rwdata, 2392K rodata, 336K init, 290K bss, 413788K reserved, 245760K cma-reserved, 193536K highmem) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xf0800000 - 0xff800000 ( 240 MB) [ 0.000000] lowmem : 0xc0000000 - 0xf0000000 ( 768 MB) [ 0.000000] pkmap : 0xbfe00000 - 0xc0000000 ( 2 MB) [ 0.000000] modules : 0xbf000000 - 0xbfe00000 ( 14 MB) [ 0.000000] .text : 0xc0008000 - 0xc08d902c (9029 kB) [ 0.000000] .init : 0xc08da000 - 0xc092e000 ( 336 kB) [ 0.000000] .data : 0xc092e000 - 0xc097e120 ( 321 kB) [ 0.000000] .bss : 0xc0980000 - 0xc09c8800 ( 290 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Build-time adjustment of leaf fanout to 32. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div [ 0.000000] OMAP clockevent source: timer1 at 32786 Hz [ 0.000000] Architected cp15 timer(s) running at 6.14MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns [ 0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns [ 0.000015] Switching to timer-based delay loop, resolution 162ns [ 0.000326] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns [ 0.000334] OMAP clocksource: 32k_counter at 32768 Hz [ 0.000773] Console: colour dummy device 80x30 [ 0.000789] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0' [ 0.000795] This ensures that you still see kernel messages. Please [ 0.000800] update your kernel commandline. [ 0.000814] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475) [ 0.000826] pid_max: default: 32768 minimum: 301 [ 0.000923] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.000934] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes) [ 0.001471] Initializing cgroup subsys io [ 0.001489] Initializing cgroup subsys memory [ 0.001513] Initializing cgroup subsys devices [ 0.001525] Initializing cgroup subsys freezer [ 0.001537] Initializing cgroup subsys perf_event [ 0.001548] Initializing cgroup subsys pids [ 0.001575] CPU: Testing write buffer coherency: ok [ 0.001775] /cpus/cpu@0 missing clock-frequency property [ 0.001791] /cpus/cpu@1 missing clock-frequency property [ 0.001801] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000 [ 0.001840] Setting up static identity map for 0x80008380 - 0x800083e0 [ 0.080069] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001 [ 0.080137] Brought up 2 CPUs [ 0.080150] SMP: Total of 2 processors activated (24.59 BogoMIPS). [ 0.080157] CPU: All CPU(s) started in HYP mode. [ 0.080162] CPU: Virtualization extensions available. [ 0.080535] devtmpfs: initialized [ 0.109131] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0 [ 0.110101] omap_hwmod: l3_main_2 using broken dt data from ocp [ 0.313699] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.313722] futex hash table entries: 512 (order: 3, 32768 bytes) [ 0.318923] pinctrl core: initialized pinctrl subsystem [ 0.319795] NET: Registered protocol family 16 [ 0.320769] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.350238] cpuidle: using governor ladder [ 0.380262] cpuidle: using governor menu [ 0.388850] OMAP GPIO hardware version 0.1 [ 0.395316] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 ! [ 0.411837] omap-gpmc 50000000.gpmc: GPMC revision 6.0 [ 0.411851] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000 [ 0.419901] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers. [ 0.419912] hw-breakpoint: maximum watchpoint size is 8 bytes. [ 0.420394] omap4_sram_init:Unable to allocate sram needed to handle errata I688 [ 0.420404] omap4_sram_init:Unable to get sram pool needed to handle errata I688 [ 0.420990] OMAP DMA hardware revision 0.0 [ 0.461662] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported) [ 0.462805] edma 43300000.edma: memcpy is disabled [ 0.467597] edma 43300000.edma: TI EDMA DMA engine driver [ 0.471910] omap-iommu 40d01000.mmu: 40d01000.mmu registered [ 0.472089] omap-iommu 40d02000.mmu: 40d02000.mmu registered [ 0.472254] omap-iommu 58882000.mmu: 58882000.mmu registered [ 0.472411] omap-iommu 55082000.mmu: 55082000.mmu registered [ 0.472700] omap-iommu 41501000.mmu: 41501000.mmu registered [ 0.472886] omap-iommu 41502000.mmu: 41502000.mmu registered [ 0.475898] palmas 0-0058: IRQ missing: skipping irq request [ 0.491348] palmas 0-0058: Muxing GPIO 2e, PWM 0, LED 0 [ 0.563701] pcf857x 0-0020: probed [ 0.564273] pcf857x 0-0021: probed [ 0.564425] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz [ 0.564822] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz [ 0.565019] media: Linux media interface: v0.10 [ 0.565071] Linux video capture interface: v2.00 [ 0.565110] pps_core: LinuxPPS API ver. 1 registered [ 0.565117] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]> [ 0.565143] PTP clock support registered [ 0.565191] EDAC MC: Ver: 3.0.0 [ 0.565947] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400 [ 0.566239] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400 [ 0.566575] Advanced Linux Sound Architecture Driver Initialized. [ 0.567458] clocksource: Switched to clocksource arch_sys_counter [ 0.578140] NET: Registered protocol family 2 [ 0.578630] TCP established hash table entries: 8192 (order: 3, 32768 bytes) [ 0.578693] TCP bind hash table entries: 8192 (order: 4, 65536 bytes) [ 0.578818] TCP: Hash tables configured (established 8192 bind 8192) [ 0.578865] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 0.578896] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 0.579102] NET: Registered protocol family 1 [ 0.579347] RPC: Registered named UNIX socket transport module. [ 0.579356] RPC: Registered udp transport module. [ 0.579362] RPC: Registered tcp transport module. [ 0.579368] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.580386] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available [ 0.590444] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.591106] NFS: Registering the id_resolver key type [ 0.591136] Key type id_resolver registered [ 0.591143] Key type id_legacy registered [ 0.591211] ntfs: driver 2.1.32 [Flags: R/O]. [ 0.592521] bounce: pool size: 64 pages [ 0.592674] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) [ 0.592692] io scheduler noop registered [ 0.592707] io scheduler deadline registered [ 0.592743] io scheduler cfq registered (default) [ 0.597667] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128 [ 0.600832] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges: [ 0.600844] No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff] [ 0.600878] IO 0x20003000..0x20012fff -> 0x00000000 [ 0.600898] MEM 0x20013000..0x2fffffff -> 0x20013000 [ 0.630814] dra7-pcie 51000000.pcie_rc: link is not up [ 0.630982] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00 [ 0.630995] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.631005] pci_bus 0000:00: root bus resource [io 0x0000-0xffff] [ 0.631015] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff] [ 0.631425] PCI: bus0: Fast back to back transfers disabled [ 0.631550] PCI: bus1: Fast back to back transfers enabled [ 0.631633] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff] [ 0.631648] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff] [ 0.631661] pci 0000:00:00.0: PCI bridge to [bus 01] [ 0.631883] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt [ 0.692301] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled [ 0.695691] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250 [ 1.706199] console [ttyS0] enabled [ 1.710601] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250 [ 1.720289] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250 [ 1.730324] [drm] Initialized drm 1.1.0 20060810 [ 1.735832] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013). [ 1.742520] [drm] No driver support for vblank timestamp query. [ 1.748687] [drm] Initialized vdrm 1.0.0 20110917 on minor 0 [ 1.761694] loop: module loaded [ 1.765238] vmemexp device MAJOR num = 245 [ 1.769416] vmemexp class registered [ 1.773133] /dev/vmemexp device registered [ 1.777248] ioctl DBUFIOC_EXPORT_VIRTMEM = -1072899120 [ 1.782973] nand: No NAND device found [ 1.786745] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch [ 1.796582] m25p80 spi32766.0: found w25q256, expected s25fl256s1 [ 1.802743] m25p80 spi32766.0: w25q256 (32768 Kbytes) [ 1.807892] 7 ofpart partitions found on MTD device spi32766.0 [ 1.813749] Creating 7 MTD partitions on "spi32766.0": [ 1.818927] 0x000000000000-0x000000040000 : "QSPI.SPL" [ 1.825039] 0x000000040000-0x000000140000 : "QSPI.u-boot" [ 1.831379] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os" [ 1.838329] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env" [ 1.844992] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1" [ 1.852402] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel" [ 1.858754] 0x0000009e0000-0x000002000000 : "QSPI.file-system" [ 1.866523] libphy: Fixed MDIO Bus: probed [ 1.873264] mousedev: PS/2 mouse device common for all mice [ 1.879519] i2c /dev entries driver [ 1.888287] omap_hsmmc 4809c000.mmc: Got CD GPIO [ 1.893912] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode [ 1.900314] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode [ 1.906849] evm_3v3_sw: supplied by sysen1 [ 1.990255] mmc0: MAN_BKOPS_EN bit is not set [ 2.001546] mmc0: new HS200 MMC card at address 0001 [ 2.006952] mmcblk0: mmc0:0001 R1J55A 7.28 GiB [ 2.011761] mmcblk0boot0: mmc0:0001 R1J55A partition 1 8.00 MiB [ 2.017963] mmcblk0boot1: mmc0:0001 R1J55A partition 2 8.00 MiB [ 2.069328] ledtrig-cpu: registered to indicate activity on CPUs [ 2.078451] aic_dvdd: supplied by evm_3v3_sw [ 2.084365] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0 [ 2.091893] NET: Registered protocol family 10 [ 2.096976] sit: IPv6 over IPv4 tunneling driver [ 2.102222] NET: Registered protocol family 17 [ 2.106893] Key type dns_resolver registered [ 2.111323] omap_voltage_late_init: Voltage driver support not added [ 2.118224] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm [ 2.124434] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm [ 2.131141] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm [ 2.137350] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm [ 2.145605] Power Management for TI OMAP4+ devices. [ 2.150708] Registering SWP/SWPB emulation handler [ 2.156439] dmm 4e000000.dmm: workaround for errata i878 in use [ 2.163703] dmm 4e000000.dmm: initialized all PAT entries [ 2.169820] [drm] Initialized omapdrm 1.0.0 20110917 on minor 1 [ 2.176715] omap_hsmmc 4809c000.mmc: Got CD GPIO [ 2.218776] asoc-simple-card sound0: tlv320aic3x-hifi <-> 48468000.mcasp mapping ok [ 2.238387] input: gpio_keys as /devices/platform/gpio_keys/input/input0 [ 2.247537] hctosys: unable to open rtc device (rtc0) [ 2.260958] evm_1v8: disabling [ 2.264037] aic_dvdd: disabling [ 2.267194] vmmcwl_fixed: disabling [ 2.270885] ldousb: disabling [ 2.274290] ALSA device list: [ 2.277267] #0: DRA7xx-EVM [ 2.280807] Waiting for root device PARTUUID=9814ac18-02... [ 2.396635] mmc2: host does not support reading read-only switch, assuming write-enable [ 2.404737] mmc2: new SDHC card at address e624 [ 2.409630] mmcblk1: mmc2:e624 SU08G 7.40 GiB [ 2.421499] mmcblk1: p1 p2 [ 2.498507] EXT4-fs (mmcblk1p2): couldn't mount as ext3 due to feature incompatibilities [ 2.507227] EXT4-fs (mmcblk1p2): couldn't mount as ext2 due to feature incompatibilities [ 2.805804] EXT4-fs (mmcblk1p2): recovery complete [ 2.812495] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null) [ 2.820662] VFS: Mounted root (ext4 filesystem) on device 179:50. [ 2.828507] devtmpfs: mounted [ 2.831675] Freeing unused kernel memory: 336K [ 2.836137] This architecture does not have kernel memory protection. [ 3.214605] systemd[1]: System time before build time, advancing clock. [ 3.296277] random: systemd: uninitialized urandom read (16 bytes read, 20 bits of entropy available) [ 3.311120] random: systemd: uninitialized urandom read (16 bytes read, 20 bits of entropy available) [ 3.322853] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN) [ 3.341384] systemd[1]: Detected architecture arm. Welcome to Arago 2016.12! [ 3.369165] systemd[1]: Set hostname to <dra7xx-evm>. [ 3.491801] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 21 bits of entropy available) [ 3.502988] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 22 bits of entropy available) [ 3.513245] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 22 bits of entropy available) [ 3.536804] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 22 bits of entropy available) [ 3.550749] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 22 bits of entropy available) [ 3.703157] random: systemd: uninitialized urandom read (16 bytes read, 25 bits of entropy available) [ 3.712649] random: systemd: uninitialized urandom read (16 bytes read, 25 bits of entropy available) [ 3.722495] random: systemd: uninitialized urandom read (16 bytes read, 25 bits of entropy available) [ 4.292072] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start [ 4.299911] systemd[1]: sysinit.target: Found dependency on alignment.service/start [ 4.307650] systemd[1]: sysinit.target: Found dependency on sysinit.target/start [ 4.315084] systemd[1]: sysinit.target: Breaking ordering cycle by deleting job alignment.service/start [ 4.324584] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with sysinit.target/start [ SKIP ] Ordering cycle found, skipping alignment.service [ 4.362650] systemd[1]: Created slice System Slice. [ OK ] Created slice System Slice. [ 4.404671] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 4.457691] systemd[1]: Mounting Temporary Directory... Mounting Temporary Directory... [ 4.479757] systemd[1]: Starting Setup Virtual Console... Starting Setup Virtual Console... [ 4.491685] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 4.518357] systemd[1]: Created slice system-getty.slice. [ OK ] Created slice system-getty.slice. [ 4.547826] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password Requests to Wall Directory Watch. [ 4.617682] systemd[1]: Mounting Debug File System... Mounting Debug File System... [ 4.642384] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 4.667818] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 4.697681] systemd[1]: Reached target Remote File Systems. [ OK ] Reached target Remote File Systems. [ 4.727833] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 4.757915] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ 4.787646] systemd[1]: Reached target Paths. [ OK ] Reached target Paths. [ 4.807634] systemd[1]: Reached target Swap. [ OK ] Reached target Swap. [ 4.857789] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 4.871737] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null) [ 4.890008] systemd[1]: Starting Create list of required static device nodes for the current kernel... Starting Create list of required st... nodes for the current kernel... [ 4.927774] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 4.948310] systemd[1]: Created slice system-serial\x2dgetty.slice. [ OK ] Created slice system-serial\x2dgetty.slice. [ 4.967731] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. [ OK ] Listening on /dev/initctl Compatibility Named Pipe. [ 4.987738] systemd[1]: Listening on Syslog Socket. [ OK ] Listening on Syslog Socket. [ 5.047870] systemd[1]: Starting Journal Service... Starting Journal Service... [ 5.068328] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 5.099746] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 5.127979] systemd[1]: Reached target Slices. [ OK ] Reached target Slices. [ 5.191981] systemd[1]: Mounted Debug File System. [ OK ] Mounted Debug File System. [ 5.217808] systemd[1]: Mounted POSIX Message Queue File System. [ OK ] Mounted POSIX Message Queue File System. [ 5.247705] systemd[1]: Mounted Temporary Directory. [ OK ] Mounted Temporary Directory. [ 5.267870] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ OK ] Started Setup Virtual Console. [FAILED] Failed to start Load Kernel Modules. See 'systemctl status systemd-modules-load.service' for details. [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Started Create list of required sta...ce nodes for the current kernel. Starting Create Static Device Nodes in /dev... Starting udev Coldplug all Devices... Starting Apply Kernel Variables... Starting Flush Journal to Persistent Storage... [ OK ] Started Create Static Device Nodes in /dev. [ OK ] Started Apply Kernel Variables. [ 5.958807] systemd-journald[152]: Received request to flush runtime journal from PID 1 [ OK ] Started Flush Journal to Persistent Storage. [ OK ] Reached target Local File Systems (Pre). Mounting /media/ram... Mounting /var/volatile... Starting udev Kernel Device Manager... [ OK ] Mounted /var/volatile. [ OK ] Mounted /media/ram. [ OK ] Started udev Kernel Device Manager. [ OK ] Started udev Coldplug all Devices. [ OK ] Reached target Local File Systems. Starting Create Volatile Files and Directories... Starting Load/Save Random Seed... [ 6.501028] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000 [ 6.517536] remoteproc0: 55020000.ipu is available [ 6.533034] remoteproc0: Note: remoteproc is still under development and considered experimental. [ 6.558989] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ 6.578527] omap-rproc 40800000.dsp: assigned reserved memorynode dsp1_cma@99000000 [ OK ] Started Create Volatile Files and Directories. [ 6.603653] remoteproc1: 40800000.dsp is available [ 6.624576] remoteproc1: Note: remoteproc is still under development and considered experimental. [ OK ] Started Load/Save Random Seed. [ 6.644808] remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ 6.658460] omap-rproc 41000000.dsp: assigned reserved memory node dsp2_cma@9f000000 [ 6.667191] remoteproc2: 41000000.dsp is available [ 6.673483] remoteproc2: Note: remoteproc is still under development and considered experimental. [ 6.688891] remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ OK ] Found device /dev/ttyS0. [ 6.767909] omap_rng 48090000.rng: OMAP Random Number Generator ver. 20 Starting Network Time Synchronization... Starting Update UTMP about System Boot/Shutdown... [ 8.405728] remoteproc0: registered virtio0 (type 7) [ 8.494017] remoteproc2: registered virtio1 (type 7) [ 8.546829] remoteproc1: registered virtio2 (type 7) [ 8.637612] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3 [ 8.644242] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3 [ 8.672960] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3 [ 8.680001] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2 [ 8.708996] omap_rtc 48838000.rtc: rtc core: registered 48838000.rtc as rtc0 [ OK ] Started Update UTMP about System Boot/Shutdown. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Synchronized. Starting Synchronize System and HW clocks...[ 8.860813] CAN device driver interface [ 9.128758] SCSI subsystem initialized [ OK ] Started Synchronize System and HW clocks. [ OK ] Reached target System Initialization. [ 9.239200] c_can_platform 4ae3c000.can: c_can_platform device registered (regs=fce3c000, irq=354) [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timers. [ OK ] Listening on D-Bus System Message Bus Socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. [ OK ] Started Kernel Logging Service. [ OK ] Started System Logging Service. Starting Save/Restore Sound Card State... Starting Permit User Sessions... [ OK ] Started D-Bus System Message Bus. [ 9.966188] [drm] Initialized pvr 1.14.3699939 20110701 on minor 2 [ 9.973423] ahci 4a140000.sata: SSS flag set, parallel bus scan disabled [ 10.009503] ahci 4a140000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode [ 10.039393] ahci 4a140000.sata: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part ccc apst [ 10.064824] scsi host0: ahci [ 10.072570] ata1: SATA max UDMA/133 mmio [mem 0x4a140000-0x4a1410ff] port 0x100 irq 342 Starting Login Service... Starting rc.pvr.service... Starting Network Service... [ OK ] Started Save/Restore Sound Card State. [ 10.437606] ata1: SATA link down (SStatus 0 SControl 300) [ OK ] Started Permit User Sessions. [ 10.556187] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ] [ OK ] Started Network Service. [ OK ] Started rc.pvr.service. [ 10.703179] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. Starting weston.service... [ OK ] Reached target Sound Card. [ OK ] Reached target Network. Starting Network Name Resolution... [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS0. [ OK ] Started weston.service. [ OK ] Started Login Service. [ 11.075519] remoteproc0: powering up 55020000.ipu [ OK ] Started Network Name Resolution. [ 11.090326] remoteproc0: Booting fw image dra7-ipu2-fw.xem4, size 7316692 [ 11.097870] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1 [ 11.131726] remoteproc0: remote processor 55020000.ipu is now up [ 11.141867] virtio_rpmsg_bus virtio0: rpmsg host is online [ 11.149297] remoteproc2: powering up 41000000.dsp [ 11.165077] remoteproc2: Booting fw image dra7-dsp2-fw.xe66, size 6967486 [ 11.180268] omap_hwmod: mmu0_dsp2: _wait_target_disable failed [ 11.186158] omap-iommu 41501000.mmu: 41501000.mmu: version 3.0 [ 11.192103] omap-iommu 41502000.mmu: 41502000.mmu: version 3.0 [ 11.222520] remoteproc2: remote processor 41000000.dsp is now up [ 11.230289] virtio_rpmsg_bus virtio1: rpmsg host is online [ 11.236600] remoteproc1: powering up 40800000.dsp [ 11.251194] remoteproc1: Booting fw image dra7-dsp1-fw.xe66, size 6967486 [ 11.264698] omap_hwmod: mmu0_dsp1: _wait_target_disable failed [ 11.270584] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0 [ 11.276547] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0 [ 11.305604] remoteproc1: remote processor 40800000.dsp is now up [ 11.314788] virtio_rpmsg_bus virtio1: creating channel rpmsg-proto addr 0x50 [ 11.324151] virtio_rpmsg_bus virtio0: creating channel rpmsg-proto addr 0x50 [ 11.332429] virtio_rpmsg_bus virtio2: rpmsg host is online [ 11.339452] virtio_rpmsg_bus virtio2: creating channel rpmsg-proto addr 0x50 [ 11.382789] NET: Registered protocol family 41 Starting tiipclad-daemon.service... Starting telnetd.service... [ OK ] Started tiipclad-daemon.service. [ OK ] Started telnetd.service. [ 11.714141] ------------[ cut here ]------------ [ 11.718788] WARNING: CPU: 0 PID: 228 at drivers/bus/omap_l3_noc.c:147 l3_interrupt_handler+0x25c/0x368() [ 11.728306] 44000000.ocp:L3 Custom Error: MASTER IPU2 TARGET L4_PER1_P3 (Read): Data Access in User mode during Functional access [ 11.740001] Modules linked in: rpmsg_proto dwc3(+) udc_core virtio_rpmsg_bus bc_example(O) ahci_platform pvrsrvkm(O) libahci_platform libahci extcon_usb_gpio libata c_can_platform scsi_mod c_can dwc3_omap can_dev rtc_omap omap_des omap_sham omap_aes_driver extcon omap_rng rng_core omap_remoteproc remoteproc virtio virtio_ring sch_fq_codel [ 11.770297] CPU: 0 PID: 228 Comm: systemd-udevd Tainted: G O 4.4.84-00032-g0f6b93d-dirty #1 [ 11.779813] Hardware name: Generic DRA74X (Flattened Device Tree) [ 11.785926] Backtrace: [ 11.788392] [<c00131d4>] (dump_backtrace) from [<c00133d0>] (show_stack+0x18/0x1c) [ 11.795990] r7:c02de608 r6:200b0193 r5:00000000 r4:c094d810 [ 11.801701] [<c00133b8>] (show_stack) from [<c02b21a8>] (dump_stack+0x8c/0xa0) [ 11.808952] [<c02b211c>] (dump_stack) from [<c0035340>] (warn_slowpath_common+0x88/0xb8) [ 11.817071] r7:c02de608 r6:00000093 r5:00000009 r4:ed4c1a08 [ 11.822779] [<c00352b8>] (warn_slowpath_common) from [<c00353a8>] (warn_slowpath_fmt+0x38/0x40) [ 11.831508] r8:00000017 r7:c0841e24 r6:00000002 r5:c08419b8 r4:c0841a5c [ 11.838267] [<c0035374>] (warn_slowpath_fmt) from [<c02de608>] (l3_interrupt_handler+0x25c/0x368) [ 11.847171] r3:ef201b00 r2:c0841a5c [ 11.850766] r4:80080003 [ 11.853315] [<c02de3ac>] (l3_interrupt_handler) from [<c0080c28>] (handle_irq_event_percpu+0xb4/0x160) [ 11.862655] r10:c097d38b r9:ef1f1300 r8:00000017 r7:00000000 r6:00000000 r5:ef1f1360 [ 11.870547] r4:ef211000 [ 11.873094] [<c0080b74>] (handle_irq_event_percpu) from [<c0080d14>] (handle_irq_event+0x40/0x64) [ 11.881999] r10:ee7eaf00 r9:c094d7f8 r8:ef008000 r7:00000000 r6:c0935e44 r5:ef1f1360 [ 11.889888] r4:ef1f1300 [ 11.892437] [<c0080cd4>] (handle_irq_event) from [<c0084058>] (handle_fasteoi_irq+0xc0/0x194) [ 11.900993] r7:00000000 r6:c0935e44 r5:ef1f1360 r4:ef1f1300 [ 11.906701] [<c0083f98>] (handle_fasteoi_irq) from [<c0080254>] (generic_handle_irq+0x2c/0x3c) [ 11.915344] r7:00000000 r6:00000000 r5:00000017 r4:c092b424 [ 11.921053] [<c0080228>] (generic_handle_irq) from [<c008052c>] (__handle_domain_irq+0x64/0xbc) [ 11.929787] [<c00804c8>] (__handle_domain_irq) from [<c000948c>] (gic_handle_irq+0x40/0x7c) [ 11.938168] r9:c094d7f8 r8:fa213000 r7:fa212000 r6:ed4c1bc8 r5:fa21200c r4:c09308ec [ 11.945974] [<c000944c>] (gic_handle_irq) from [<c0013ec0>] (__irq_svc+0x40/0x74) [ 11.953485] Exception stack(0xed4c1bc8 to 0xed4c1c10) [ 11.958555] 1bc0: 000011ca 00000000 df54e710 c04f9ebc c09b3428 00001803 [ 11.966764] 1be0: 06a90216 ed454010 00002500 c094d7f8 ee7eaf00 ed4c1c24 ed4c1c28 ed4c1c18 [ 11.974972] 1c00: c0016f30 c04f9ec8 a00b0013 ffffffff [ 11.980039] r9:c094d7f8 r8:00002500 r7:ed4c1bfc r6:ffffffff r5:a00b0013 r4:c04f9ec8 [ 11.987850] [<c04f9ebc>] (arch_counter_get_cntpct) from [<c0016f30>] (arch_timer_read_counter_long+0x1c/0x20) [ 11.997805] [<c0016f14>] (arch_timer_read_counter_long) from [<c02aff78>] (__timer_delay+0x54/0x64) [ 12.006887] [<c02aff24>] (__timer_delay) from [<c02affb0>] (__timer_const_udelay+0x28/0x2c) [ 12.015268] r7:ed454010 r6:066665b0 r5:00000029 r4:ed01d010 [ 12.020988] [<c02aff88>] (__timer_const_udelay) from [<bf274f18>] (dwc3_probe+0xff4/0x1944 [dwc3]) [ 12.029994] [<bf273f24>] (dwc3_probe [dwc3]) from [<c03e8174>] (platform_drv_probe+0x54/0xb8) [ 12.038549] r10:00000000 r9:ed277a08 r8:0000001d r7:fffffdfb r6:bf27fc44 r5:ed454010 [ 12.046439] r4:c09bb7a4 [ 12.048985] [<c03e8120>] (platform_drv_probe) from [<c03e66fc>] (driver_probe_device+0x204/0x2f8) [ 12.057889] r7:bf27fc44 r6:00000000 r5:ed454010 r4:c09bb7a4 [ 12.063593] [<c03e64f8>] (driver_probe_device) from [<c03e6884>] (__driver_attach+0x94/0x98) [ 12.072061] r9:ed277a08 r8:12d8861c r7:00000000 r6:ed454044 r5:bf27fc44 r4:ed454010 [ 12.079868] [<c03e67f0>] (__driver_attach) from [<c03e4984>] (bus_for_each_dev+0x70/0xa4) [ 12.088075] r7:00000000 r6:c03e67f0 r5:bf27fc44 r4:00000000 [ 12.093784] [<c03e4914>] (bus_for_each_dev) from [<c03e5fe8>] (driver_attach+0x24/0x28) [ 12.101815] r6:c095e5b8 r5:ed419e00 r4:bf27fc44 [ 12.106469] [<c03e5fc4>] (driver_attach) from [<c03e5c24>] (bus_add_driver+0x1a8/0x220) [ 12.114505] [<c03e5a7c>] (bus_add_driver) from [<c03e7024>] (driver_register+0x80/0x100) [ 12.122623] r7:ed277b00 r6:c09336f0 r5:bf284000 r4:bf27fc44 [ 12.128330] [<c03e6fa4>] (driver_register) from [<c03e809c>] (__platform_driver_register+0x48/0x50) [ 12.137407] r5:bf284000 r4:c095e5b8 [ 12.141018] [<c03e8054>] (__platform_driver_register) from [<bf28401c>] (dwc3_driver_init+0x1c/0x24 [dwc3]) [ 12.150793] r5:bf284000 r4:c09336f0 [ 12.154401] [<bf284000>] (dwc3_driver_init [dwc3]) from [<c000982c>] (do_one_initcall+0x98/0x1e4) [ 12.163314] [<c0009794>] (do_one_initcall) from [<c00cf0e8>] (do_init_module+0x68/0x378) [ 12.171433] r10:bf27fcc0 r9:ed277a08 r8:12d8861c r7:00000001 r6:ed277ac0 r5:00000001 [ 12.179323] r4:bf27fcc0 [ 12.181871] [<c00cf080>] (do_init_module) from [<c00abc78>] (load_module+0x1df8/0x2068) [ 12.189903] r6:ed277a00 r5:00000001 r4:ed4c1f44 [ 12.194556] [<c00a9e80>] (load_module) from [<c00ac0b8>] (SyS_finit_module+0x88/0x98) [ 12.202414] r10:00000000 r9:ed4c0000 r8:c000fc84 r7:0000017b r6:b6e57d90 r5:00000010 [ 12.210306] r4:00000000 [ 12.212855] [<c00ac030>] (SyS_finit_module) from [<c000fae0>] (ret_fast_syscall+0x0/0x34) [ 12.221060] r6:00000000 r5:004a7928 r4:00000000 [ 12.225710] ---[ end trace 871bc50112867729 ]--- [ 12.675851] usbcore: registered new interface driver usbfs [ 12.682418] usbcore: registered new interface driver hub [ 12.689591] usbcore: registered new device driver usb [ 12.822550] dwc3 48890000.usb: otg: primary host xhci-hcd.0.auto registered [ 12.829593] dwc3 48890000.usb: otg: shared host xhci-hcd.0.auto registered [ 12.836510] dwc3 48890000.usb: otg: can't start till gadget registers [ 12.846303] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 12.852889] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 12.862178] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00210010 [ 12.872003] xhci-hcd xhci-hcd.1.auto: irq 495, io mem 0x488d0000 [ 12.879747] hub 1-0:1.0: USB hub found [ 12.883569] hub 1-0:1.0: 1 port detected [ 12.890204] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 12.895735] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 12.905381] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 12.914942] hub 2-0:1.0: USB hub found [ 12.919882] hub 2-0:1.0: 1 port detected [ 13.677475] omap_i2c 48070000.i2c: controller timed out [ 15.044513] omap_hwmod: i2c1: _wait_target_disable failed _____ _____ _ _ | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_ | | _| .'| . | . | | __| _| . | | | -_| _| _| |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| Arago Project http://arago-project.org dra7xx-evm ttyS0 Arago 2016.12 dra7xx-evm ttyS0 dra7xx-evm login: root [ 65.766876] random: nonblocking pool is initialized root@dra7xx-evm:~# cd /opt/vision_sdk/ root@dra7xx-evm:/opt/vision_sdk# source ./vision_sdk_load.sh [ 88.319646] DMA: Module install successful, device major num = 242 [ 88.326111] DRV: Module install successful [ 88.358429] CMEMK module: reference Linux version 4.4.84 [ 88.364462] cmemk initialized ./disableDssInterruptsOnA15.sh: line 11: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 12: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 13: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 14: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 15: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 16: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 17: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 18: COMMANDS: command not found ./disableDssInterruptsOnA15.sh: line 19: COMMANDS: command not found updated value is COMMANDS ### WARNING ###: use the following [read | write | set bit | clear bit | dump] commands at your own risk! No address check done, may generate: - bus error (invalid or not accessible <physical address>, - platform crash/hang (bad <value>). Read any OMAP memory address (register), given its <physical address> or <name> as listed in TRM. Write <value> at any OMAP memory address (register), given its <physical address> or <name> as listed in TRM. Set bit at <position> into any OMAP memory address (register), given its <physical address> or <name> as listed in TRM. Clear bit at <position> into any OMAP memory address (register), given its <physical address> or <name> as listed in TRM. Dump a range of OMAP memory addresses, from <start address> to <end address>. Note all addresses within given range must be valid and accessible. ### WARNING ###: use the following I2C [read | write] commands at your own risk! No address check done, may generate: - I2C bus error (invalid or not accessible <physical address>, - platform crash/hang (bad <value>). Read I2C register at address <addr> from I2C chip at <chip-addr> on I2C <bus>. Write <value> in I2C register at address <addr> from I2C chip at <chip-addr> on I2C <bus>. root@dra7xx-evm:/opt/vision_sdk# ./apps.out [HOST] OSA: MEM: 0: Mapped 0xa0100000 to 0xb6a11000 of size 0x00100000 [HOST] OSA: MEM: 1: Mapped 0x84203000 to 0xa3e11000 of size 0x12c00000 [HOST] OSA: MEM: 2: Mapped 0xa0200000 to 0xa3d51000 of size 0x00040000 [HOST] OSA: MEM: 3: Mapped 0xa02c0000 to 0xa3d91000 of size 0x00080000 [HOST] OSA: MEM: 4: Mapped 0x00000000 to 0x00000000 of size 0x00000000 [HOST] OSA: HOST Remote Log Shared Memory @ 0xa024f140 [HOST] OSA: DSP1 Remote Log Shared Memory @ 0xa02769e0 [HOST] OSA: DSP2 Remote Log Shared Memory @ 0xa029e280 [HOST] OSA: IPU2 Remote Log Shared Memory @ 0xa0363da0 [HOST] [HOST ] 100.025254 s: SYSTEM: System A15 Init in progress !!! [HOST] [HOST ] 100.025346 s: SYSTEM: IPC: Init in progress !!! [HOST] [HOST ] 100.025346 s: SYSTEM: IPC: Notify init in progress !!! [HOST] [HOST ] 100.026688 s: SYSTEM: IPC: [IPU2] socket bind success !!! (dst vproc = 1, endpt = 81) [HOST] [HOST ] 100.026749 s: SYSTEM: IPC: [IPU2] socket info (family = 41, dst proc id = -1, endpt = 81) !!! [HOST] [HOST ] 100.026779 s: SYSTEM: IPC: [IPU2] socket connect success !!! (dst vproc = 1, endpt = 80) [HOST] [HOST ] 100.026779 s: SYSTEM: IPC: [IPU2] socket info (family = 41, dst proc id = -1, endpt = 1024) !!! [HOST] [HOST ] 100.027969 s: SYSTEM: IPC: [DSP1] socket bind success !!! (dst vproc = 2, endpt = 81) [HOST] [HOST ] 100.027999 s: SYSTEM: IPC: [DSP1] socket info (family = 41, dst proc id = -1, endpt = 81) !!! [HOST] [HOST ] 100.028030 s: SYSTEM: IPC: [DSP1] socket connect success !!! (dst vproc = 2, endpt = 80) [HOST] [HOST ] 100.028030 s: SYSTEM: IPC: [DSP1] socket info (family = 41, dst proc id = -1, endpt = 1024) !!! [HOST] [HOST ] 100.029128 s: SYSTEM: IPC: [DSP2] socket bind success !!! (dst vproc = 3, endpt = 81) [HOST] [HOST ] 100.029128 s: SYSTEM: IPC: [DSP2] socket info (family = 41, dst proc id = -1, endpt = 81) !!! [HOST] [HOST ] 100.029158 s: SYSTEM: IPC: [DSP2] socket connect success !!! (dst vproc = 3, endpt = 80) [HOST] [HOST ] 100.029158 s: SYSTEM: IPC: [DSP2] socket info (family = 41, dst proc id = -1, endpt = 1024) !!! [HOST] [HOST ] 100.029311 s: SYSTEM: IPC: Notify init DONE !!! [HOST] [HOST ] 100.029341 s: SYSTEM: MSGQ: MsgQ init in progress !!! [HOST] [HOST ] 100.029463 s: SYSTEM: MSGQ: MsgQ init DONE !!! [HOST] [HOST ] 100.029463 s: SYSTEM: IPC: Init DONE !!! [HOST] [HOST ] 100.029463 s: SYSTEM: Initializing A15 Links !!! [HOST] [HOST ] 100.029616 s: IPC_OUT_0 : Init done - linkid-0x2000000 [HOST] [HOST ] 100.029738 s: IPC_OUT_1 : Init done - linkid-0x2000001 [HOST] [HOST ] 100.029860 s: IPC_OUT_2 : Init done - linkid-0x2000002 [HOST] [HOST ] 100.029982 s: IPC_OUT_3 : Init done - linkid-0x2000003 [HOST] [HOST ] 100.030073 s: IPC_OUT_4 : Init done - linkid-0x2000004 [HOST] [HOST ] 100.030287 s: IPC_IN_0 : Init done - linkid-0x200000a [HOST] [HOST ] 100.030439 s: IPC_IN_1 : Init done - linkid-0x200000b [HOST] [HOST ] 100.030622 s: IPC_IN_2 : Init done - linkid-0x200000c [HOST] [HOST ] 100.030744 s: IPC_IN_3 : Init done - linkid-0x200000d [HOST] [HOST ] 100.030927 s: IPC_IN_4 : Init done - linkid-0x200000e [HOST] [HOST ] 100.031080 s: IPC_IN_5 : Init done - linkid-0x200000f [HOST] [HOST ] 100.031202 s: IPC_IN_6 : Init done - linkid-0x2000010 [HOST] [HOST ] 100.031324 s: NULL_0 : Init done - linkid-0x2000014 [HOST] [HOST ] 100.031446 s: NULL_1 : Init done - linkid-0x2000015 [HOST] [HOST ] 100.031629 s: NULL_SRC_0 : Init done - linkid-0x2000039 [HOST] [HOST ] 100.031812 s: DISP_DIST_SRC_0 : Init done - linkid-0x200005e [HOST] [HOST ] 100.031934 s: DISP_DIST_SRC_1 : Init done - linkid-0x200005f [HOST] [HOST ] 100.032056 s: DISP_DIST_SRC_2 : Init done - linkid-0x2000060 [HOST] [HOST ] 100.032208 s: DISP_DIST_SRC_3 : Init done - linkid-0x2000061 [HOST] [HOST ] 100.032330 s: DISP_DIST_SRC_4 : Init done - linkid-0x2000062 [HOST] [HOST ] 100.032452 s: DISP_DIST_SRC_5 : Init done - linkid-0x2000063 [HOST] [HOST ] 100.032605 s: DISP_DIST_SRC_6 : Init done - linkid-0x2000064 [HOST] [HOST ] 100.032727 s: DISP_DIST_SRC_7 : Init done - linkid-0x2000065 [HOST] [HOST ] 100.032879 s: SGX3DSRV_0 : Init done - linkid-0x2000047 [HOST] [HOST ] 100.033062 s: ALGORITHM_0 : Init done - linkid-0x2000031 [HOST] [HOST ] 100.033215 s: ALGORITHM_1 : Init done - linkid-0x2000032 [HOST] [HOST ] 100.033337 s: ALGORITHM_2 : Init done - linkid-0x2000033 [HOST] [HOST ] 100.033459 s: ALGORITHM_3 : Init done - linkid-0x2000034 [HOST] [HOST ] 100.033581 s: ALGORITHM_4 : Init done - linkid-0x2000035 [HOST] [HOST ] 100.033703 s: ALGORITHM_5 : Init done - linkid-0x2000036 [HOST] [HOST ] 100.033855 s: ALGORITHM_6 : Init done - linkid-0x2000037 [HOST] [HOST ] 100.033947 s: ALGORITHM_7 : Init done - linkid-0x2000038 [HOST] [HOST ] 100.034130 s: DUP0 : Init done - linkid-0x0 [HOST] [HOST ] 100.034343 s: DUP1 : Init done - linkid-0x0 [HOST] [HOST ] 100.034557 s: DUP2 : Init done - linkid-0x0 [HOST] [HOST ] 100.034740 s: DUP3 : Init done - linkid-0x0 [HOST] [HOST ] 100.034984 s: DUP4 : Init done - linkid-0x0 [HOST] [HOST ] 100.035106 s: SYNC_0 : Init done - linkid-0x0 [HOST] [HOST ] 100.035228 s: SYNC_1 : Init done - linkid-0x0 [HOST] [HOST ] 100.035380 s: SYNC_2 : Init done - linkid-0x0 [HOST] [HOST ] 100.035533 s: SYNC_3 : Init done - linkid-0x0 [HOST] [HOST ] 100.035716 s: MERGE_0 : Init done - linkid-0x0 [HOST] [HOST ] 100.036539 s: MERGE_1 : Init done - linkid-0x0 [HOST] [HOST ] 100.036692 s: MERGE_2 : Init done - linkid-0x0 [HOST] [HOST ] 100.036814 s: MERGE_3 : Init done - linkid-0x0 [HOST] [HOST ] 100.036936 s: MERGE_4 : Init done - linkid-0x0 [HOST] [HOST ] 100.037089 s: SELECT_0 : Init done - linkid-0x0 [HOST] [HOST ] 100.037211 s: SELECT_1 : Init done - linkid-0x0 [HOST] [HOST ] 100.037302 s: GATE_0 : Init done - linkid-0x0 [HOST] [HOST ] 100.037424 s: GATE_1 : Init done - linkid-0x0 [HOST] [HOST ] 100.037546 s: GATE_2 : Init done - linkid-0x0 [HOST] [HOST ] 100.037638 s: GATE_3 : Init done - linkid-0x0 [HOST] [HOST ] 100.037729 s: SGXFRMCPY_0 : Init done - linkid-0x2000046 [HOST] [HOST ] 100.038034 s: SGX3DSFM_0 : Init done - linkid-0x2000048 [HOST] [HOST ] 100.038065 s: SYSTEM: Initializing A15 Links ... DONE !!! [HOST] [DSP1 ] 17.771823 s: ***** DSP1 Firmware build time 10:34:35 Jan 9 2019 [HOST] [DSP1 ] 17.771884 s: *** SYSTEM: CPU Frequency <ORG = 600000000 Hz>, <NEW = 750000000 Hz> [HOST] [DSP1 ] 17.772158 s: SYSTEM: System Common Init in progress !!! [HOST] [DSP1 ] 17.772372 s: UTILS: CIO: Init Done !!! [HOST] [DSP1 ] 17.772402 s: SYSTEM: IPC init in progress !!! [HOST] [DSP1 ] 17.772433 s: SYSTEM: Attaching to [IPU2] ... [HOST] [DSP1 ] 17.774324 s: SYSTEM: Attaching to [IPU2] ... SUCCESS !!! [HOST] [DSP1 ] 17.779265 s: SYSTEM: Attaching to [DSP2] ... SUCCESS !!! [HOST] [DSP1 ] 17.779296 s: SYSTEM: Notify register to [IPU2] line 0, event 15... [HOST] [DSP1 ] 17.779357 s: SYSTEM: Notify register to [DSP2] line 0, event 15... [HOST] [DSP1 ] 17.779387 s: SYSTEM: Notify init done !!! [HOST] [DSP1 ] 17.779570 s: SYSTEM: MsgQ init done !!! [HOST] [DSP1 ] 17.779662 s: RpmsgInit in progress... [HOST] [DSP1 ] 17.779723 s: SYSTEM: IPC init DONE !!! [HOST] [DSP1 ] 17.780363 s: SYSTEM: System Common Init Done !!! [HOST] [DSP1 ] 17.780394 s: SYSTEM: System DSP Init in progress !!! [HOST] [DSP1 ] 17.780638 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1024 [HOST] [DSP1 ] 17.780668 s: SYSTEM: Heap = LOCAL_L2 @ 0x00800000, Total size = 227264 B (221 KB), Free size = 227264 B (221 KB) [HOST] [DSP1 ] 17.780699 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 524288 B (512 KB), Free size = 520944 B (508 KB) [HOST] [DSP1 ] 17.780729 s: SYSTEM: Initializing Links !!! [HOST] [DSP1 ] 17.789727 s: SYSTEM: Initializing Links ... DONE !!! [HOST] [DSP1 ] 17.789757 s: lz4CompDecomp Init [HOST] [DSP1 ] 17.789788 s: SYSTEM: System DSP Init Done !!! [HOST] [DSP1 ] 17.799152 s: Connection established with HLOS, calling rpmsgInit [HOST] [DSP1 ] 18.158146 s: SYSTEM: CACHE: L1P = 32 KB, L1D = 32 KB, L2 = 32 KB ... after boot !!! [HOST] [DSP1 ] 18.158207 s: SYSTEM: CACHE: L1P = 32 KB, L1D = 32 KB, L2 = 32 KB ... after update by APP !!! [HOST] [DSP2 ] 17.688739 s: ***** DSP2 Firmware build time 10:34:34 Jan 9 2019 [HOST] [DSP2 ] 17.688830 s: *** SYSTEM: CPU Frequency <ORG = 600000000 Hz>, <NEW = 750000000 Hz> [HOST] [DSP2 ] 17.689074 s: SYSTEM: System Common Init in progress !!! [HOST] [DSP2 ] 17.689288 s: UTILS: CIO: Init Done !!! [HOST] [DSP2 ] 17.689349 s: SYSTEM: IPC init in progress !!! [HOST] [DSP2 ] 17.689349 s: SYSTEM: Attaching to [IPU2] ... [HOST] [DSP2 ] 17.777343 s: SYSTEM: Attaching to [IPU2] ... SUCCESS !!! [HOST] [DSP2 ] 17.779265 s: SYSTEM: Attaching to [DSP1] ... SUCCESS !!! [HOST] [DSP2 ] 17.779296 s: SYSTEM: Notify register to [IPU2] line 0, event 15... [HOST] [DSP2 ] 17.779357 s: SYSTEM: Notify register to [DSP1] line 0, event 15... [HOST] [DSP2 ] 17.779387 s: SYSTEM: Notify init done !!! [HOST] [DSP2 ] 17.779570 s: SYSTEM: MsgQ init done !!! [HOST] [DSP2 ] 17.779662 s: RpmsgInit in progress... [HOST] [DSP2 ] 17.779692 s: Connection established with HLOS, calling rpmsgInit [HOST] [DSP2 ] 17.779906 s: SYSTEM: IPC init DONE !!! [HOST] [DSP2 ] 17.780577 s: SYSTEM: System Common Init Done !!! [HOST] [DSP2 ] 17.780607 s: SYSTEM: System DSP Init in progress !!! [HOST] [DSP2 ] 17.780851 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1024 [HOST] [DSP2 ] 17.780882 s: SYSTEM: Heap = LOCAL_L2 @ 0x00800000, Total size = 227264 B (221 KB), Free size = 227264 B (221 KB) [HOST] [DSP2 ] 17.780943 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 524288 B (512 KB), Free size = 520664 B (508 KB) [HOST] [DSP2 ] 17.780973 s: SYSTEM: Initializing Links !!! [HOST] [DSP2 ] 17.789940 s: SYSTEM: Initializing Links ... DONE !!! [HOST] [DSP2 ] 17.789971 s: lz4CompDecomp Init [HOST] [DSP2 ] 17.790001 s: SYSTEM: System DSP Init Done !!! [HOST] [DSP2 ] 18.160159 s: SYSTEM: CACHE: L1P = 32 KB, L1D = 32 KB, L2 = 32 KB ... after boot !!! [HOST] [DSP2 ] 18.160190 s: SYSTEM: CACHE: L1P = 32 KB, L1D = 32 KB, L2 = 32 KB ... after update by APP !!! [HOST] [IPU2 ] 17.631519 s: ***** IPU2 Firmware build time 10:35:41 Jan 9 2019 [HOST] [IPU2 ] 17.631763 s: *** SYSTEM: CPU Frequency <ORG = 212800000 Hz>, <NEW = 212800000 Hz> [HOST] [IPU2 ] 17.642469 s: SYSTEM: System Common Init in progress !!! [HOST] [IPU2 ] 17.654181 s: UTILS: CIO: Init Done !!! [HOST] [IPU2 ] 17.654273 s: SYSTEM: IPC init in progress !!! [HOST] [IPU2 ] 17.654364 s: SYSTEM: Attaching to [DSP1] ... [HOST] [IPU2 ] 17.774324 s: SYSTEM: Attaching to [DSP1] ... SUCCESS !!! [HOST] [IPU2 ] 17.777343 s: SYSTEM: Attaching to [DSP2] ... SUCCESS !!! [HOST] [IPU2 ] 17.777435 s: SYSTEM: Notify register to [DSP1] line 0, event 15... [HOST] [IPU2 ] 17.777587 s: SYSTEM: Notify register to [DSP2] line 0, event 15... [HOST] [IPU2 ] 17.777709 s: SYSTEM: Notify init done !!! [HOST] [IPU2 ] 17.779479 s: SYSTEM: MsgQ init done !!! [HOST] [IPU2 ] 17.780455 s: RpmsgInit in progress... [HOST] [IPU2 ] 17.780546 s: Connection established with HLOS, calling rpmsgInit [HOST] [IPU2 ] 17.784481 s: SYSTEM: IPC init DONE !!! [HOST] [IPU2 ] 17.790306 s: SYSTEM: System Common Init Done !!! [HOST] [IPU2 ] 17.790398 s: SYSTEM: System Init in progress !!! [HOST] [IPU2 ] 17.790459 s: SYSTEM: BSP Common Init in progress !!! [HOST] [IPU2 ] 17.790550 s: SYSTEM: BSP Common Init Done !!! [HOST] [IPU2 ] 17.790611 s: SYSTEM: BSP Platform Init in progress !!! [HOST] [IPU2 ] 17.790703 s: SYSTEM: BSP Platform Init Done !!! [HOST] [IPU2 ] 17.790794 s: SYSTEM: FVID2 Init in progress !!! [HOST] [IPU2 ] 17.790947 s: SYSTEM: FVID2 Init Done !!! [HOST] [IPU2 ] 17.791008 s: SYSTEM: VPS Init in progress !!! [HOST] [IPU2 ] 17.791130 s: SYSTEM: VPDMA Descriptor Memory Address translation ENABLED [0x80000000 -> 0x80000000] [HOST] [IPU2 ] 17.794210 s: *** VPDMA Firmware Loading... *** [HOST] [IPU2 ] 17.794332 s: VPDMA Firmware Address = 0xa03dc4c0 [HOST] [IPU2 ] 17.794424 s: VPDMA Load Address = 0x4897d004 [HOST] [IPU2 ] 17.794546 s: VPDMA Firmware Version = 0x4d0001b8 [HOST] [IPU2 ] 17.794637 s: VPDMA List Busy Status = 0x00000000 [HOST] [IPU2 ] 17.794698 s: *** VPDMA Firmware Load Success *** [HOST] [IPU2 ] 17.795064 s: *** VPDMA Firmware Loading... *** [HOST] [IPU2 ] 17.795156 s: VPDMA Firmware Address = 0xa03dc4c0 [HOST] [IPU2 ] 17.795247 s: VPDMA Load Address = 0x4899d004 [HOST] [IPU2 ] 17.795339 s: VPDMA Firmware Version = 0x4d0001b8 [HOST] [IPU2 ] 17.795430 s: VPDMA List Busy Status = 0x00000000 [HOST] [IPU2 ] 17.795522 s: *** VPDMA Firmware Load Success *** [HOST] [IPU2 ] 17.795827 s: *** VPDMA Firmware Loading... *** [HOST] [IPU2 ] 17.795918 s: VPDMA Firmware Address = 0xa03dc4c0 [HOST] [IPU2 ] 17.796010 s: VPDMA Load Address = 0x489bd004 [HOST] [IPU2 ] 17.796132 s: VPDMA Firmware Version = 0x4d0001b8 [HOST] [IPU2 ] 17.796223 s: VPDMA List Busy Status = 0x00000000 [HOST] [IPU2 ] 17.796315 s: *** VPDMA Firmware Load Success *** [HOST] [IPU2 ] 17.796651 s: *** VPDMA Firmware Loading... *** [HOST] [IPU2 ] 17.796742 s: VPDMA Firmware Address = 0xa03dc4c0 [HOST] [IPU2 ] 17.796834 s: VPDMA Load Address = 0x489dd004 [HOST] [IPU2 ] 17.796925 s: VPDMA Firmware Version = 0x4d0001b8 [HOST] [IPU2 ] 17.797047 s: VPDMA List Busy Status = 0x00000000 [HOST] [IPU2 ] 17.797139 s: *** VPDMA Firmware Load Success *** [HOST] [IPU2 ] 17.854602 s: SYSTEM: VPS Init Done !!! [HOST] [IPU2 ] 17.856402 s: UTILS: DMA: HWI Create for INT25 !!! [HOST] [IPU2 ] 17.856676 s: SYSTEM: SW Message Box Msg Pool, Free Msg Count = 1024 [HOST] [IPU2 ] 17.856798 s: SYSTEM: Heap = LOCAL_DDR @ 0x00000000, Total size = 262144 B (256 KB), Free size = 235224 B (229 KB) [HOST] [IPU2 ] 17.856951 s: SYSTEM: Heap = SR_OCMC @ 0x00000000, Total size = 0 B (0 KB), Free size = 0 B (0 KB) [HOST] [IPU2 ] 17.857164 s: SYSTEM: Heap = SR_DDR_CACHED @ 0x84203000, Total size = 314572800 B (300 MB), Free size = 314572800 B (300 MB) [HOST] [IPU2 ] 17.857347 s: SYSTEM: Heap = SR_DDR_NON_CACHED @ 0xa0100000, Total size = 1046912 B (0 MB), Free size = 1019264 B (0 MB) [HOST] [IPU2 ] 17.857530 s: SYSTEM: Initializing Links !!! [HOST] [IPU2 ] 17.935368 s: NSP GMAC: PHY 2 Found on MAC Port 0 [HOST] [IPU2 ] 17.935948 s: NSP GMAC: PHY 3 Found on MAC Port 1 [HOST] [IPU2 ] 18.153419 s: SYSTEM: Initializing Links ... DONE !!! [HOST] [IPU2 ] 18.160159 s: Chains_main: Application Started !!! [HOST] [IPU2 ] 18.174556 s: Board_init: Board Init in progress !!! [HOST] [IPU2 ] 18.175135 s: Board_init: Board Init Done !!! [HOST] [IPU2 ] 18.175257 s: Board_init: Call Bsp_boardGetI2cData!!! [HOST] [IPU2 ] 18.175349 s: Bsp_boardGetI2cData: Enter call :Bsp_boardGetI2cDataTda2xx [HOST] [IPU2 ] 18.175440 s: Bsp_boardGetI2cData: Exit !!! [HOST] [IPU2 ] 18.175532 s: Board_init: Get I2C num=4 instances!!! [HOST] [IPU2 ] 18.176538 s: Board_init: Call I2c_GlobalInit!!! [HOST] [IPU2 ] 18.176721 s: Board_init: Call BspDeviceInitParams_init!!! [HOST] [IPU2 ] 18.176813 s: Bsp_deviceInit: Enter !!! [HOST] [IPU2 ] 18.176904 s: Bsp_boardGetI2cData: Enter call :Bsp_boardGetI2cDataTda2xx [HOST] [IPU2 ] 18.177026 s: Bsp_boardGetI2cData: Exit !!! [HOST] [IPU2 ] 18.177148 s: Bsp_deviceI2cInit: Enter [HOST] [IPU2 ] 18.177240 s: Bsp_deviceI2cInit: Enter dev_name=i2c0 [HOST] [IPU2 ] 18.177362 s: Bsp_deviceI2cInit: Enter sync packet=2 [HOST] [IPU2 ] 18.177606 s: Bsp_deviceI2cInit: Enter I2C Handle[i2c0] [HOST] [IPU2 ] 18.178155 s: Bsp_deviceI2cInit: Enter dev_name=i2c1 [HOST] [IPU2 ] 18.178277 s: Bsp_deviceI2cInit: Enter sync packet=2 [HOST] [IPU2 ] 18.178521 s: Bsp_deviceI2cInit: Enter I2C Handle[i2c1] [HOST] [IPU2 ] 18.178948 s: Bsp_deviceI2cInit: Enter dev_name=i2c2 [HOST] [IPU2 ] 18.179161 s: Bsp_deviceI2cInit: Enter sync packet=2 [HOST] [IPU2 ] 18.179619 s: [HOST] [IPU2 ] 18.179649 s: ### XDC ASSERT - ERROR CALLBACK START ### [HOST] [IPU2 ] 18.179741 s: [HOST] [IPU2 ] 18.179863 s: E_hardFault: FORCED [HOST] [IPU2 ] 18.179924 s: [HOST] [IPU2 ] 18.179954 s: ### XDC ASSERT - ERROR CALLBACK END ### [HOST] [IPU2 ] 18.180015 s: [HOST] [IPU2 ] 18.180686 s: [HOST] [IPU2 ] 18.180717 s: ### XDC ASSERT - ERROR CALLBACK START ### [HOST] [IPU2 ] 18.180808 s: [HOST] [IPU2 ] 18.180930 s: E_busFault: PRECISERR: Immediate Bus Fault, exact addr known, address: 48060010 [HOST] [IPU2 ] 18.181022 s: [HOST] [IPU2 ] 18.181083 s: ### XDC ASSERT - ERROR CALLBACK END ### [HOST] [IPU2 ] 18.181144 s: Hi Sam, Can you make the build profile as debug for all cores and try. Regards, Anuj Hi Anuj, OK, I try to build debug .profile for all cores again. BTW, Rollback the release profile, I observed that it’s very surprising at I2C instance between release and debug profile. *Release profile: Board_init: Get I2C num=1 instances!!! *Debug profile: Board_init: Get I2C num=4 instances!!! BR, Sam Hsieh Hi, Its been long since any update on this thread. I hope the issue is resolved. Regards, Anuj Hi Anuj, Thanks for your support. We could have preview the user-case of 4CH AVB Capture + Decode + SGX MOSAIC + DISPLAY, but the IQ of 3D- SRV is not acceptable after use default LUT. We would like to support the SRV calibration for AVB capture interface. Could you help instruct us how to implement the SRV calibration? Thanks. PS. A15 run Linux, IPU2 run Rtos. regards, Sam . Hi, You have to calibration manually. Please follow below guide vision_sdk\docs\SurroundView\VisionSDK_UserGuide_3D_SurroundView_Manual_CalibTool.pdf vision_sdk\docs\SurroundView\VisionSDK_UserGuide_SurroundView_Calibration_TDA2xx.pdf Regards, Anuj Hi Anuj, Thank you for your instruction. We will try to calibrate manually. BTW, even though copy those LENS.BIN into /mnt folder We had ever met the following problem when executed 3D SRV case. "Reading file [/home/root/.calibtable] ... [HOST] ERROR Could you let us know how to generate the file ".calibtable"? Thanks. Best Regards, Sam. Hi. Please go through the suggested docs. You will get your answers. Regards, Anuj Hi, Its been long since any update on this thread. I hope the thread is resolved. Regards, Anuj Hi Anju, We try to use default LUT first, but can't stop the 3DSRV multiview rotate to save the synthesis output frame then check whether if the image quality is acceptable after stitched frame. Tracing the function of Sgx3DsrvLink_drvDoProcessFrames() [File:vision_sdk/apps/src/hlos/modules/sgx3Dsrv/sgx3DsrvLink_drv.c /Ln: 544] It's a continus while loop. Could you teach us How/(When) could stop the rotate the multiview of Sgx3DsrvLink? Thanks. regards, Sam. Hi Anju, Luke Thanks you for your support. We could have Turn Animation Off for AVB 3DSRV. regards, Sam Hsieh |