This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TDA4VL-Q1: Add mcan in mcu1_0, Mbox timedout in resp

Part Number: TDA4VL-Q1
Other Parts Discussed in Thread: TDA4VL, TDA4VM

hi TI

      I am porting my mcan driver from TDA4VM(J721E 8.02) to TDA4VL(j721e-S2 8.04), when board bootup, ipc maybe is not work well ,the log as fllowing. This mcan driver work well in TDA4VM, but,in TDA4-VL,once in the mcan transfer function

add MCAN_writeMsgRam(mcanModAddr,
MCAN_MEM_TYPE_BUF,
1U,
&txMsg);

the system will bootup unnormal, the following log will be printed
ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)

  Do the two platforms need different settings for mcan? What is the possible cause of this problem?

int32_t App_mcanImplementTransfer(candata_t *cd)
{
uint32_t mcanModAddr;
int32_t testStatus = CSL_PASS;
AppMcan_Instance * inst;
MCAN_ProtocolStatus protStatus;
MCAN_TxBufElement txMsg;

assert(cd);
assert(cd->len<=CANFD_DATA_SIZE);
assert(cd->in<ARY_SIZE(appMcanInsts));
inst = &appMcanInsts[cd->in];
mcanModAddr = inst->mcanModAddr;

/* Initialize message to transmit */
txMsg.id = ((uint32_t)(cd->id) << 18U);
txMsg.rtr = 0U;
txMsg.xtd = 0U;
txMsg.esi = 0U;
if(cd->in == 0)
{
txMsg.fdf = 1;
txMsg.brs = 1; // 1U;
}
else
{
txMsg.fdf = 0; // 1U;
txMsg.brs = 0; // 1U;
}
txMsg.efc = 1U;
txMsg.mm = 0xAAU;
txMsg.dlc = gMcanAppSizeDlc[cd->len];
memcpy(txMsg.data, cd->d, cd->len);


// appLogPrintf("MCAN: transfer in=%d, id=%03x, len=%d!\n", cd->in, cd->id, cd->len);
MutexP_lock(inst->transferMutex, MutexP_WAIT_FOREVER);
/* Write message to Msg RAM */
MCAN_writeMsgRam(mcanModAddr,
MCAN_MEM_TYPE_BUF,
1U,
&txMsg);
/* Add request for transmission */
。。。。。。。。。。
。。。。
}

U-Boot SPL 2021.01 (Feb 25 2023 - 03:30:19 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.4.1--v08.04.01 (Jolly Jellyfi')
SPL initial stack usage: 13472 bytes
Trying to boot from MMC2
Starting ATF on ARM64 core...

NOTICE:  BL31: v2.6(release):v2.7-rc0-dirty
NOTICE:  BL31: Built : 11:58:46, Aug 30 2022
I/TC:
I/TC: OP-TEE version: 3.17.0-125-g15a746d28 (gcc version 9.2.1 20191025 (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10))) #1 Tue Aug 30 11:59:08 UTC 2022 aarch64
I/TC: WARNING: This OP-TEE configuration might be insecure!
I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
I/TC: Primary CPU initializing
I/TC: SYSFW ABI: 3.1 (firmware rev 0x0008 '8.4.1--v08.04.01 (Jolly Jellyfi')
I/TC: HUK Initialized
I/TC: Primary CPU switching to normal world boot

U-Boot SPL 2021.01 (Feb 25 2023 - 10:12:17 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.4.1--v08.04.01 (Jolly Jellyfi')
Trying to boot from MMC2


U-Boot 2021.01 (Feb 25 2023 - 10:12:17 +0000)

SoC:   J721S2 SR1.0 GP
Model: Texas Instruments J721S2 EVM
DRAM:  4 GiB
Flash: 0 Bytes
MMC:   mmc@4f80000: 0, mmc@4fb0000: 1
Loading Environment from MMC... OK
In:    serial@2880000
Out:   serial@2880000
Err:   serial@2880000
am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA02102 cpsw_ver: 0x6BA82102 ale_ver: 0x00293904 Ports:1 mdio_freq:1000000
Net:   eth0: ethernet@46000000port@1
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
Failed to load 'boot.scr'
484 bytes read in 8 ms (58.6 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc1 ...
Running uenvcmd ...
k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
k3_r5f_rproc r5f@41400000: Core 2 is already in use. No rproc commands work
883848 bytes read in 58 ms (14.5 MiB/s)
Load Remote Processor 2 with data@addr=0x82000000 883848 bytes: Success!
301996 bytes read in 28 ms (10.3 MiB/s)
Load Remote Processor 3 with data@addr=0x82000000 301996 bytes: Success!
Failed to load '/lib/firmware/j721s2-main-r5f1_0-fw'
Failed to load '/lib/firmware/j721s2-main-r5f1_1-fw'
14422024 bytes read in 757 ms (18.2 MiB/s)
Load Remote Processor 6 with data@addr=0x82000000 14422024 bytes: Success!
9887672 bytes read in 522 ms (18.1 MiB/s)
Load Remote Processor 7 with data@addr=0x82000000 9887672 bytes: Success!
19343872 bytes read in 1009 ms (18.3 MiB/s)
73094 bytes read in 14 ms (5 MiB/s)
9829 bytes read in 11 ms (872.1 KiB/s)
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Device Tree to 000000008feeb000, end 000000008fffffff ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[    0.000000] Linux version 5.10.120-g95b90aa828 (lifengying@hw226) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT Sat Feb 25 03:28:41 UTC 2023
[    0.000000] Machine model: Texas Instruments J721S2 EVM
[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002880000 (options '')
[    0.000000] printk: bootconsole [ns16550a0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 31 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@a8000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 31 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@a8100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@aa000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 111 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@aa100000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 96 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@b4000000, compatible id shared-dma-pool
[    0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
[    0.000000] Reserved memory: created DMA memory pool at 0x00000000da000000, size 64 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@da000000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 736 MiB
[    0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-hi@880000000, compatible id shared-dma-pool
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000008ffffefff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009e7fffff]
[    0.000000]   node   0: [mem 0x000000009e800000-0x00000000b0ffffff]
[    0.000000]   node   0: [mem 0x00000000b1000000-0x00000000b1ffffff]
[    0.000000]   node   0: [mem 0x00000000b2000000-0x00000000b9ffffff]
[    0.000000]   node   0: [mem 0x00000000ba000000-0x00000000d9ffffff]
[    0.000000]   node   0: [mem 0x00000000da000000-0x00000000ddffffff]
[    0.000000]   node   0: [mem 0x00000000de000000-0x00000000ffffefff]
[    0.000000]   node   0: [mem 0x0000000880000000-0x00000008adffffff]
[    0.000000]   node   0: [mem 0x00000008ae000000-0x00000008ffffefff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000008ffffefff]
[    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
[    0.000000] On node 0, zone Normal: 1 pages in unavailable ranges
[    0.000000] cma: Reserved 512 MiB at 0x00000000dfc00000
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 22 pages/cpu s50008 r8192 d31912 u90112
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: EL2 vector hardening
[    0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.000000] CPU features: detected: Spectre-BHB
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1032190
[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02880000 mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(ospi.rootfs),256k(ospi.phypattern);47034000.hyperbus:512k(hbmc.tiboot3),2m(hbmc.tispl),4m(hbmc.u-boot),256k(hbmc.env),-@8m(hbmc.rootfs) root=PARTUUID=826f3429-02 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x000000009a800000-0x000000009e800000] (64MB)
[    0.000000] Memory: 1728756K/4194296K available (11328K kernel code, 1162K rwdata, 4376K rodata, 1920K init, 455K bss, 1941252K reserved, 524288K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu:     RCU event tracing is enabled.
[    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000]  Trampoline variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 960 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] GICv3: Distributor has no Range Selector support
[    0.000000] GICv3: 16 PPIs implemented
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[    0.000000] ITS [mem 0x01820000-0x0182ffff]
[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @8ae800000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x00000008ae030000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x00000008ae040000
[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[    0.000003] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[    0.010462] Console: colour dummy device 80x25
[    0.016173] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[    0.029514] pid_max: default: 32768 minimum: 301
[    0.035471] LSM: Security Framework initializing
[    0.041421] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.050896] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.061976] rcu: Hierarchical SRCU implementation.
[    0.068301] Platform MSI: msi-controller@1820000 domain created
[    0.076047] PCI/MSI: /bus@100000/interrupt-controller@1800000/msi-controller@1820000 domain created
[    0.087666] EFI services will not be available.
[    0.093594] smp: Bringing up secondary CPUs ...
I/TC: Secondary CPU 1 initializing
I/TC: Secondary CPU 1 switching to normal world boot
[    0.109952] Detected PIPT I-cache on CPU1
[    0.109986] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[    0.110002] GICv3: CPU1: using allocated LPI pending table @0x00000008ae050000
[    0.110048] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[    0.110126] smp: Brought up 1 node, 2 CPUs
[    0.146811] SMP: Total of 2 processors activated.
[    0.152818] CPU features: detected: 32-bit EL0 Support
[    0.159386] CPU features: detected: CRC32 instructions
[    0.177810] CPU: All CPU(s) started at EL2
[    0.183070] alternatives: patching kernel code
[    0.189457] devtmpfs: initialized
[    0.198556] KASLR disabled due to lack of seed
[    0.204377] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.216836] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.232953] pinctrl core: initialized pinctrl subsystem
[    0.240069] DMI not present or invalid.
[    0.245403] NET: Registered protocol family 16
[    0.251945] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations
[    0.261099] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.271176] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.281343] ramoops: using module parameters
[    0.286862] ramoops ramoops: no room for dmesg mem region (0xffffffffffffe000@0xdf000000) in (0x40000@0xdf000000)
[    0.299984] ramoops: probe of ramoops failed with error -12
[    0.307336] thermal_sys: Registered thermal governor 'step_wise'
[    0.307339] thermal_sys: Registered thermal governor 'power_allocator'
[    0.315625] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.332694] ASID allocator initialised with 65536 entries
[    0.340399] printk: console [ramoops-1] enabled
[    0.346194] pstore: Registered ramoops as persistent store backend
[    0.354088] ramoops: using 0x40000@0xdf000000, ecc: 0
[    0.377135] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.385721] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.394282] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.402844] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.412239] cryptd: max_cpu_qlen set to 1000
[    0.419867] k3-chipinfo 43000014.chipid: Family:J721S2 rev:SR1.0 JTAGID[0x0bb7502f] Detected
[    0.431264] vsys_3v3: supplied by evm_12v0
[    0.436761] vsys_5v0: supplied by evm_12v0
[    0.442714] iommu: Default domain type: Translated
[    0.449139] SCSI subsystem initialized
[    0.454117] usbcore: registered new interface driver usbfs
[    0.461160] usbcore: registered new interface driver hub
[    0.467965] usbcore: registered new device driver usb
[    0.474706] mc: Linux media interface: v0.10
[    0.480174] videodev: Linux video capture interface: v2.00
[    0.487215] pps_core: LinuxPPS API ver. 1 registered
[    0.493553] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.505227] PTP clock support registered
[    0.510256] EDAC MC: Ver: 3.0.0
[    0.515031] FPGA manager framework
[    0.519436] Advanced Linux Sound Architecture Driver Initialized.
[    0.527794] clocksource: Switched to clocksource arch_sys_counter
[    0.535732] VFS: Disk quotas dquot_6.6.0
[    0.540783] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.553051] Carveout Heap: Exported 512 MiB at 0x00000000ba000000
[    0.560923] NET: Registered protocol family 2
[    0.566811] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.577603] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear)
[    0.588556] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.598811] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear)
[    0.608461] TCP: Hash tables configured (established 32768 bind 32768)
[    0.616976] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.625601] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    0.634881] NET: Registered protocol family 1
[    0.640826] RPC: Registered named UNIX socket transport module.
[    0.648414] RPC: Registered udp transport module.
[    0.654422] RPC: Registered tcp transport module.
[    0.660429] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.668663] PCI: CLS 0 bytes, default 64
[    0.674196] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 counters available
[    0.687292] Initialise system trusted keyrings
[    0.693103] workingset: timestamp_bits=46 max_order=20 bucket_order=0
[    0.703394] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.711202] NFS: Registering the id_resolver key type
[    0.717742] Key type id_resolver registered
[    0.723084] Key type id_legacy registered
[    0.728241] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.736806] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.746375] 9p: Installing v9fs 9p2000 file system support
[    0.778009] Key type asymmetric registered
[    0.783248] Asymmetric key parser 'x509' registered
[    0.789499] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    0.798952] io scheduler mq-deadline registered
[    0.804735] io scheduler kyber registered
[    0.811520] pinctrl-single 4301c000.pinctrl: 94 pins, size 376
[    0.819170] pinctrl-single 11c000.pinctrl: 72 pins, size 288
[    0.829454] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[    0.837300] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[    0.847360] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[    0.863007] brd: module loaded
[    0.871380] loop: module loaded
[    0.875936] sysfs: cannot create duplicate filename '/devices/platform/dma_buf_phys'
[    0.885860] CPU: 1 PID: 1 Comm: swapper/0 Not tainted 5.10.120-g95b90aa828 #1
[    0.894970] Hardware name: Texas Instruments J721S2 EVM (DT)
[    0.902196] Call trace:
[    0.905325]  dump_backtrace+0x0/0x1a0
[    0.909995]  show_stack+0x18/0x68
[    0.914226]  dump_stack+0xd0/0x12c
[    0.918565]  sysfs_warn_dup+0x60/0x80
[    0.923234]  sysfs_create_dir_ns+0xe0/0xf8
[    0.928464]  kobject_add_internal+0x98/0x288
[    0.933911]  kobject_add+0x94/0x100
[    0.938362]  device_add+0xe0/0x740
[    0.942701]  platform_device_add+0x100/0x238
[    0.948147]  platform_device_register_full+0xcc/0x150
[    0.954598]  dma_buf_phys_init+0x6c/0x9c
[    0.959601]  do_one_initcall+0x54/0x1b8
[    0.964496]  kernel_init_freeable+0x220/0x2a0
[    0.970056]  kernel_init+0x14/0x114
[    0.974503]  ret_from_fork+0x10/0x34
[    0.979080] kobject_add_internal failed for dma_buf_phys with -EEXIST, don't try to register things with the same name in the same directory.
[    0.995690] megasas: 07.714.04.00-rc1
[    1.002693] tun: Universal TUN/TAP device driver, 1.6
[    1.009525] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    1.017555] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    1.025160] sky2: driver version 1.30
[    1.030560] VFIO - User Level meta-driver version: 0.3
[    1.037879] i2c /dev entries driver
[    1.043198] sdhci: Secure Digital Host Controller Interface driver
[    1.051100] sdhci: Copyright(c) Pierre Ossman
[    1.056901] sdhci-pltfm: SDHCI platform and OF driver helper
[    1.064763] ledtrig-cpu: registered to indicate activity on CPUs
[    1.072682] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    1.081136] ashmem: initialized
[    1.086391] optee: probing for conduit method.
[    1.092104] optee: revision 3.17 (15a746d2)
[    1.092232] optee: dynamic shared memory is enabled
E/TC:0 0 std_entry_with_parg:234 Bad arg address 0x8aed40000
[    1.110752] optee: initialized driver
[    1.117016] NET: Registered protocol family 17
[    1.122794] 9pnet: Installing 9P2000 support
[    1.128300] Key type dns_resolver registered
[    1.133887] Loading compiled-in X.509 certificates
[    1.141178] pstore: Invalid compression size for deflate: 0
[    1.152260] k3-ringacc 2b800000.ringacc: Failed to get MSI domain
[    1.160217] k3-ringacc 3c000000.ringacc: Failed to get MSI domain
[    1.170504] ti-sci 44083000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.4.1--v08.04.01 (Jolly Jellyfi')
[    1.208674] omap_i2c 42120000.i2c: bus 0 rev0.12 at 100 kHz
[    1.216367] omap_i2c 40b00000.i2c: bus 1 rev0.12 at 100 kHz
[    1.223977] omap_i2c 40b10000.i2c: bus 2 rev0.12 at 100 kHz
[    1.232026] pca953x 3-0021: supply vcc not found, using dummy regulator
[    1.240551] pca953x 3-0021: using no AI
[    1.268481] pca953x 3-0020: supply vcc not found, using dummy regulator
[    1.277002] pca953x 3-0020: using no AI
[    1.282767] pca953x 3-0022: supply vcc not found, using dummy regulator
[    1.291287] pca953x 3-0022: using AI
[    1.296693] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
[    1.304711] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 125 domain created
[    1.315445] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 148 domain created
[    1.327111] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 227 domain created
[    1.337869] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 265 created
[    1.348614] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    1.358204] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    1.368552] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    1.378900] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    1.389960] j721e-pcie 2910000.pcie: Failed to init phy
[    1.397770] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:272
[    1.410129] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[    1.418581] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[    1.429686] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:259
[    1.442393] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[    1.450846] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[    1.460469] omap8250 40a00000.serial: failed to get alias
[    1.468130] printk: console [ttyS2] disabled
[    1.473629] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 25, base_baud = 3000000) is a 8250
[    1.484562] printk: console [ttyS2] enabled
[    1.484562] printk: console [ttyS2] enabled
[    1.495111] printk: bootconsole [ns16550a0] disabled
[    1.495111] printk: bootconsole [ns16550a0] disabled
[    1.510854] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[    1.555807] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[    1.567285] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[    1.577665] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[    1.595062] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
[    1.707195] mmc0: CQHCI version 5.10
[    1.707551] gpio-mux mux-controller0: 2-way mux-controller registered
[    1.720376] gpio-mux mux-controller1: 2-way mux-controller registered
[    1.733001] vdd_mmc1: supplied by vsys_3v3
[    1.739546] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
[    1.748100] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
[    1.752740] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[    1.756616] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
[    1.774303] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
[    1.782839] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    1.792265] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    1.802433] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    1.812595] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    1.823263] j721e-pcie 2910000.pcie: Failed to init phy
[    1.831094] ti-udma 285c0000.dma-controller: Channels: 26 (tchan: 13, rchan: 13, gp-rflow: 8)
[    1.843654] ti-udma 31150000.dma-controller: Channels: 48 (tchan: 24, rchan: 24, gp-rflow: 16)
[    1.859129] spi-nor spi0.0: s28hs512t (65536 Kbytes)
[    1.865373] 7 cmdlinepart partitions found on MTD device 47040000.spi.0
[    1.873647] Creating 7 MTD partitions on "47040000.spi.0":
[    1.880502] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[    1.888112] 0x000000080000-0x000000280000 : "ospi.tispl"
[    1.895295] 0x000000280000-0x000000680000 : "ospi.u-boot"
[    1.902575] 0x000000680000-0x0000006c0000 : "ospi.env"
[    1.909501] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
[    1.917245] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[    1.924547] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[    1.941149] spi-nor spi1.0: mt25qu512a (65536 Kbytes)
[    1.949414] davinci_mdio 46000f00.mdio: Configuring MDIO in manual mode
[    1.959837] mmc0: Command Queue Engine enabled
[    1.965397] mmc0: new DDR MMC card at address 0001
[    1.971834] mmcblk0: mmc0:0001 S0J56X 14.8 GiB
[    1.977635] mmcblk0boot0: mmc0:0001 S0J56X partition 1 31.5 MiB
[    1.985176] mmcblk0boot1: mmc0:0001 S0J56X partition 2 31.5 MiB
[    1.992705] mmcblk0rpmb: mmc0:0001 S0J56X partition 3 4.00 MiB, chardev (235:0)
[    1.995818] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[    2.013682] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[    2.024102] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[    2.040829] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
[    2.049361] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[    2.058383] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64
[    2.066327] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:0
[    2.079695] mmc1: CQHCI version 5.10
[    2.079881] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    2.093574] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    2.103689] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    2.113790] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    2.124412] j721e-pcie 2910000.pcie: Failed to init phy
[    2.130409] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
[    2.132439] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    2.149712] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    2.159881] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    2.169996] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    2.180602] j721e-pcie 2910000.pcie: Failed to init phy
[    2.188296] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    2.197717] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    2.207831] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    2.217940] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    2.228538] j721e-pcie 2910000.pcie: Failed to init phy
[    2.235851] debugfs: Directory 'pd:276' with parent 'pm_genpd' already present!
[    2.245664] debugfs: Directory 'pd:154' with parent 'pm_genpd' already present!
[    2.256116] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@aa000000
[    2.270340] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
[    2.278701] remoteproc remoteproc0: 64800000.dsp is available
[    2.285936] remoteproc remoteproc0: attaching to 64800000.dsp
[    2.293174] remoteproc remoteproc0: unsupported resource 65538
[    2.300572] k3-dsp-rproc 64800000.dsp: DSP initialized in IPC-only mode
[    2.308835]  remoteproc0#vdev0buffer: assigned reserved memory node vision-apps-c71-dma-memory@aa000000
[    2.320903] virtio_rpmsg_bus virtio0: rpmsg host is online
[    2.327826] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xd
[    2.337766]  remoteproc0#vdev0buffer: registered virtio0 (type 7)
[    2.345562] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    2.354920] remoteproc remoteproc0: remote processor 64800000.dsp is now attached
[    2.354944] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    2.364678] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@a8000000
[    2.374393] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    2.387340] k3-dsp-rproc 65800000.dsp: configured DSP for IPC-only mode
[    2.396517] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    2.404790] remoteproc remoteproc1: 65800000.dsp is available
[    2.422321] remoteproc remoteproc1: attaching to 65800000.dsp
[    2.429576] j721e-pcie 2910000.pcie: Failed to init phy
[    2.429600] remoteproc remoteproc1: unsupported resource 65538
[    2.437160] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    2.443442] k3-dsp-rproc 65800000.dsp: DSP initialized in IPC-only mode
[    2.452786] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    2.461032]  remoteproc1#vdev0buffer: assigned reserved memory node vision-apps-c71_1-dma-memory@a8000000
[    2.471124] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    2.483505] virtio_rpmsg_bus virtio1: rpmsg host is online
[    2.493172] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    2.500027] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
[    2.510389]  remoteproc1#vdev0buffer: registered virtio1 (type 7)
[    2.526723] remoteproc remoteproc1: remote processor 65800000.dsp is now attached
[    2.536082] j721e-pcie 2910000.pcie: Failed to init
                                                       [    4.004198] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xe
[    5.445786] EXT4-fs (mmcblk1p2): recovery complete
[    5.452992] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[    5.463149] VFS: Mounted root (ext4 filesystem) on device 179:98.
[    5.470840] devtmpfs: mounted
[    5.475528] Freeing unused kernel memory: 1920K
[    5.481346] Run /sbin/init as init process
[    5.683049] systemd[1]: System time before build time, advancing clock.
[    5.740700] NET: Registered protocol family 10
[    5.746969] Segment Routing with IPv6
[    5.772043] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
[    5.799247] systemd[1]: Detected architecture arm64.

Welcome to Arago 2021.09!

[    5.839062] systemd[1]: Set hostname to <j7-evm>.
[    5.850673] random: systemd: uninitialized urandom read (16 bytes read)
[    5.858973] systemd[1]: Initializing machine ID from random generator.
[    6.069878] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/a-systemd-roudi.service is not a symlink, ignoring.
[    6.088400] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-alogcat.service is not a symlink, ignoring.
[    6.106550] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-aproperty.service is not a symlink, ignoring.
[    6.124906] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-aservicemanager.service is not a symlink, ignoring.
[    6.143955] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-auto.service is not a symlink, ignoring.
[    6.161762] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-bmculog.service.1 is not a symlink, ignoring.
[    6.180120] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-camera.service is not a symlink, ignoring.
[    6.198151] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-clogd.service is not a symlink, ignoring.
[    6.216073] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-crashlog.service is not a symlink, ignoring.
[    6.234355] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-d-autovideo.service is not a symlink, ignoring.
[    6.252923] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-dtc.service is not a symlink, ignoring.
[    6.270635] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-factory.service is not a symlink, ignoring.
[    6.288770] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-kernellog.service.1 is not a symlink, ignoring.
[    6.307397] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-mount.service is not a symlink, ignoring.
[    6.325366] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-ota.service is not a symlink, ignoring.
[    6.343069] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-radardata.service is not a symlink, ignoring.
[    6.361465] systemd[1]: multi-user.target: Wants dependency dropin /etc/systemd/system/multi-user.target.wants/systemd-systemtime.service is not a symlink, ignoring.
[    6.463298] random: systemd: uninitialized urandom read (16 bytes read)
[    6.471753] systemd[1]: system-getty.slice: unit configures an IP firewall, but the local system does not support BPF/cgroup firewalling.
[    6.487219] systemd[1]: (This warning is only shown for the first unit using IP firewalling.)
[    6.499524] systemd[1]: Created slice system-getty.slice.
[  OK  ] Created slice system-getty.slice.
[    6.523919] random: systemd: uninitialized urandom read (16 bytes read)
[    6.532873] systemd[1]: Created slice system-serial\x2dgetty.slice.
[  OK  ] Created slice system-serial\x2dgetty.slice.
[    6.560415] systemd[1]: Created slice User and Session Slice.
[  OK  ] Created slice User and Session Slice.
[    6.584061] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started Dispatch Password ��ts to Console Directory Watch.
[    6.611980] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[  OK  ] Started Forward Password R��uests to Wall Directory Watch.
[    6.639969] systemd[1]: Reached target Remote File Systems.
[  OK  ] Reached target Remote File Systems.
[    6.663874] systemd[1]: Reached target Swap.
[  OK  ] Reached target Swap.
[    6.680418] systemd[1]: Listening on RPCbind Server Activation Socket.
[  OK  ] Listening on RPCbind Server Activation Socket.
[    6.703909] systemd[1]: Reached target RPC Port Mapper.
[  OK  ] Reached target RPC Port Mapper.
[    6.740243] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
[    6.750779] systemd[1]: Listening on Journal Socket (/dev/log).
[  OK  ] Listening on Journal Socket (/dev/log).
[    6.776232] systemd[1]: Listening on Journal Socket.
[  OK  ] Listening on Journal Socket.
[    6.792190] systemd[1]: Listening on udev Control Socket.
[  OK  ] Listening on udev Control Socket.
[    6.816071] systemd[1]: Listening on udev Kernel Socket.
[  OK  ] Listening on udev Kernel Socket.
[    6.842720] systemd[1]: Mounting Huge Pages File System...
         Mounting Huge Pages File System...
[    6.860275] urandom_read_iter: 12 callbacks suppressed
[    6.860279] random: systemd: uninitialized urandom read (16 bytes read)
[    6.877567] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    6.908191] random: systemd: uninitialized urandom read (16 bytes read)
[    6.919014] systemd[1]: Mounting Kernel Debug File System...
         Mounting Kernel Debug File System...
[    6.935986] random: systemd: uninitialized urandom read (16 bytes read)
[    6.950086] systemd[1]: Mounting Temporary Directory (/tmp)...
         Mounting Temporary Directory (/tmp)...
[    6.974881] systemd[1]: Starting Create list of static device nodes for the current kernel...
         Starting Create list of st��odes for the current kernel...
[    7.010793] systemd[1]: Starting RPC Bind...
         Starting RPC Bind...
[    7.028073] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[    7.043402] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    7.063376] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    7.086735] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems cryptodev: loading out-of-tree module taints kernel.
[0m...
[    7.120539] systemd[1]: Starting udev Coldplug all Devices...
[    7.129588] cryptodev: driver 1.10 loaded.
         Starting udev Coldplug all Devices...[    7.136683] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)

[    7.163644] systemd[1]: Started RPC Bind.
[  OK  ] Started RPC Bind.[    7.175304] hwid cdev major = 511, minor = 0

[    7.181779] vid cdev major = 510, minor = 0
[    7.192482] systemd[1]: Started Journal Service.
[  OK  ] Started Journal Service.
[  OK  ] Mounted Huge Pages File System.
[  OK  ] Mounted POSIX Message Queue File System.
[  OK  ] Mounted Kernel Debug File System.
[  OK  ] Mounted Temporary Directory (/tmp).
[  OK  ] Started Create list of sta�� nodes for the current kernel.
[  OK  ] Started Load Kernel Modules.
[  OK  ] Started Remount Root and Kernel File Systems.
[  OK  ] Reached target Local File Systems (Pre).
         Mounting /media/ram...
         Mounting Kernel Configuration File System...
         Mounting /var/volatile...
         Starting Flush Journal to Persistent Storage...
[    7.434782] systemd-journald[152]: Received client request to flush runtime journal.
         Starting Apply Kernel Variables...
         Starting udev Kernel Device Manager...
[  OK  ] Mounted /media/ram.
[  OK  ] Mounted Kernel Configuration File System.
[  OK  ] Mounted /var/volatile.
[  OK  ] Started Flush Journal to Persistent Storage.
[  OK  ] Started udev Coldplug all Devices.
[  OK  ] Started udev Kernel Device Manager.
[  OK  ] Started Apply Kernel Variables.
         Starting Network Service...
         Starting udev Wait for Complete Device Initialization...
         Starting Load/Save Random Seed...
[  OK  ] Reached target Local File Systems.
         Starting Create Volatile Files and Directories...
[  OK  ] Started Network Service.
[  OK  ] Started Create Volatile Files and Directories.
         Starting Run pending postinsts...
[FAILED] Failed to start Network Name Resolution.
See 'systemctl status systemd-resolved.service' for details.
[  OK  ] Reached target Network.
[    7.876039] urandom_read_iter: 44 callbacks suppressed
[    7.876045] random: systemd: uninitialized urandom read (16 bytes read)
[  OK  ] Reached target Host and Network Name Lookups.
[    7.912278] random: systemd: uninitialized urandom read (16 bytes read)
[FAILED] Failed to start Network Time Synchronization.
See 'systemctl status systemd-timesyncd.service' for details.
[    7.960224] random: systemd: uninitialized urandom read (16 bytes read)
[  OK  ] Reached target System Time Set.
[  OK  ] Reached target System Time Synchronized.
         Starting Update UTMP about System Boot/Shutdown...
[  OK  ] Stopped Network Name Resolution.
[FAILED] Failed to start Network Name Resolution.
[    8.078952] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
See 'systemctl status systemd-resolved.service' for details.[    8.093758] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000

[  OK  ] Stopped Network Time Synchronization.
[    8.115889] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[FAILED] Failed to start Network Time Sync[    8.137839] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
hronization.
[    8.156511] CAN device driver interface
See 'systemctl status systemd-timesyncd.service' for details.[    8.162237] j721e-pcie 2910000.pcie: Failed to init phy

[  OK  ] Started Update UTMP about System Bo[    8.183113] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
ot/Shutdown.
[    8.198958] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[  OK  ] Stopped Network Name Resolution[    8.216263] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
.
[FAILED] Failed to start Network Name Reso[    8.243983] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
lution.
[    8.258597] j721e-pcie 2910000.pcie: Failed to init phy
[    8.267862] m_can_platform 40528000.can: m_can device registered (irq=19, version=32)
[    8.268810] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
See 'systemctl status systemd-resolved.service' for details.[    8.287251] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000

[    8.303841] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    8.314153] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    8.324882] j721e-pcie 2910000.pcie: Failed to init phy
[  OK  ] Stopped Network Time Synchronizatio[    8.335713] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
n.
[    8.350120] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    8.362074] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[FAILED] Failed to start Network Time Sync[    8.374453] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
hronization.
[    8.392706] j721e-pcie 2910000.pcie: Failed to init phy
See 'systemctl status systemd-timesyncd.service' for details.
[    8.400828] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    8.420631] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    8.430893] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    8.441172] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    8.452429] j721e-pcie 2910000.pcie: Failed to init phy
[  OK  ] Started Run pending postinsts.
[    8.493371] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[  OK  ] Stopped Network Name Resolution[    8.507892] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
.
[FAILED] Failed to start Network Name Reso[    8.531748] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
lution.
See 'systemctl status systemd-resolved.service' for details.
[    8.552829] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[    8.569237] m_can_platform 40568000.can: m_can device registered (irq=21, version=32)
[  OK  ] Stopped Network Time Synchronizatio[    8.582945] j721e-pcie 2910000.pcie: Failed to init phy
n.
[FAILED] Failed to start Network Time Sync[    8.615474] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
hronization.
[    8.635296] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
See 'systemctl status systemd-timesyncd.service' for details.
[    8.658763] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[    8.662208] wave5: module is from the staging directory, the quality is unknown, you have been warned.
[  OK  ] Stopped Network Name Resolution[    8.683148] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
.
[FAILED] Failed to start Network Name Resolution.
[    8.720489] j721e-pcie 2910000.pcie: Failed to init phy
See 'systemctl status systemd-resolved.service' for details.
[  OK  ] Stopped Network Time Synchronization.
[FAILED] Failed to start Network Time Sync[    8.769430] cdns-mhdp8546 a000000.dp-bridge: no PHY configured
hronization.
[    8.785499] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
See 'systemctl status systemd-timesyncd.service' for details.[    8.800872] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000

[  OK  ] Stopped Network Name Resolution.
[    8.820954] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[FAILED] Failed to start Network Name Resolution.
[    8.842849] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
See 'systemctl status systemd-resolved.service' for details.[    8.859893] j721e-pcie 2910000.pcie: Failed to init phy

[  OK  ] Stopped Network Time Synchronization.
[FAILED] Failed to start Network Time Synchronization.
See 'systemctl status systemd-timesyncd.service' for details.
[    9.335835] random: crng init done
[    9.340109] random: 17 urandom warning(s) missed due to ratelimiting
[  OK  ] Started Load/Save Random Seed.
[    9.812545] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[    9.871322] ti-sci 44083000.system-controller: Mbox send fail -110
[    9.875876] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[    9.880781] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[    9.891484] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[    9.911527] ti-sci 44083000.system-controller: Mbox send fail -110
[    9.917322] ti-sci 44083000.system-controller: Mbox send fail -110
[    9.939271] cdns-mhdp8546 a000000.dp-bridge: no PHY configured
[    9.950432] ti-sci 44083000.system-controller: Mbox send fail -110
[    9.952241] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[    9.976227] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[    9.990632] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[   10.004506] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[   10.019367] j721e-pcie 2910000.pcie: Failed to init phy
[   10.611879] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: xudma_navss_psil_pair+0x2c/0x38)
[   10.639876] ti-sci 44083000.system-controller: RM_PSIL:Mbox send fail -110
[   10.653411] am65-cpsw-nuss 46000000.ethernet: PSI-L request err -110
[  OK  ] Created slice system-systemd\x2dfsck.slice.
[   10.964518] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   11.027870] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   11.049818] ti-sci 44083000.system-controller: Mbox send fail -110
[   11.059858] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   11.071882] ti-sci 44083000.system-controller: Mbox send fail -110
[   11.072316] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   11.094658] ti-sci 44083000.system-controller: Mbox send fail -110
[   11.102456] ti-sci 44083000.system-controller: Mbox send fail -110
[   11.110862] cdns-mhdp8546 a000000.dp-bridge: no PHY configured
[  OK  ] Found device /dev/mmcblk1p1.
         Starting File System Check on /dev/mmcblk1p1...
[  OK  ] Started File System Check on /dev/mmcblk1p1.
         Mounting /run/media/mmcblk1p1...
[   11.267176] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[  OK  ] Mounted /run/media/mmcblk1p1.
[   11.667833] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: xudma_navss_psil_pair+0x2c/0x38)
[   11.680238] ti-sci 44083000.system-controller: RM_PSIL:Mbox send fail -110
[   11.688833] am65-cpsw-nuss 46000000.ethernet: PSI-L request err -110
[   12.147836] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   12.160236] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   12.160255] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   12.173702] ti-sci 44083000.system-controller: Mbox send fail -110
[   12.187154] ti-sci 44083000.system-controller: Mbox send fail -110
[   12.196886] ti-sci 44083000.system-controller: Mbox send fail -110
[   12.215120] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[   12.225434] j721e-pcie 2910000.pcie:       IO 0x0018001000..0x0018010fff -> 0x0018001000
[   12.236305] j721e-pcie 2910000.pcie:      MEM 0x0018011000..0x001fffffff -> 0x0018011000
[   12.246883] j721e-pcie 2910000.pcie:   IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[   12.275840] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   12.291864] ti-sci 44083000.system-controller: Mbox send fail -110
[   12.300031] j721e-pcie 2910000.pcie: Failed to init phy
[  OK  ] Started udev Wait for Complete Device Initialization.
[  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
[  OK  ] Reached target System Initialization.
[  OK  ] Reached target Basic System.
[  OK  ] Listening on D-Bus System Message Bus Socket.
[  OK  ] Started D-Bus System Message Bus.
         Starting rc.pvr.service...
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
         Starting Create Static Device Nodes in /dev...
         Starting Permit User Sessions...
[  OK  ] Started Create Static Device Nodes in /dev.
[  OK  ] Started Permit User Sessions.
[  OK  ] Started Getty on tty1.
[  OK  ] Started Serial Getty on ttyS2.
[  OK  ] Started Serial Getty on ttyS3.
[  OK  ] Reached target Login Prompts.
         Starting Synchronize System and HW clocks...
[  OK  ] Stopped Login Service.
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
[FAILED] Failed to start Synchronize System and HW clocks.
See 'systemctl status sync-clocks.service' for details.
[  OK  ] Stopped Login Service.
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
[  OK  ] Started rc.pvr.service.
         Starting sshd.service...
[  OK  ] Stopped Login Service.
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
[  OK  ] Stopped Login Service.
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
[  OK  ] Stopped Login Service.
[FAILED] Failed to start Login Service.
See 'systemctl status systemd-logind.service' for details.
[   13.331832] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   13.344224] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   13.357683] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   13.375794] ti-sci 44083000.system-controller: Mbox send fail -110
[   13.385215] ti-sci 44083000.system-controller: Mbox send fail -110
[   13.391826] ti-sci 44083000.system-controller: Mbox send fail -110
[   13.400371] cdns-mhdp8546 a000000.dp-bridge: no PHY configured
[  OK  ] Started sshd.service.
         Starting SYSV: BydProcessManager service script...
[FAILED] Failed to start SYSV: BydProcessManager service script.
See 'systemctl status BydProcessManager.service' for details.
         Starting otg_upgrade.service...
[  OK  ] Started otg_upgrade.service.
         Starting adbd.service...
[   14.419823] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   14.419831] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   14.419845] ti-sci 44083000.system-controller: Mbox send fail -110
[   14.432223] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   14.432232] ti-sci 44083000.system-controller: Mbox send fail -110
[   14.479815] ti-sci 44083000.system-controller: Mbox send fail -110
[   14.579811] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_put_device+0x18/0x28)
[   14.599791] ti-sci 44083000.system-controller: Mbox send fail -110
[   15.507823] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   15.527790] ti-sci 44083000.system-controller: Mbox send fail -110
[   15.654156] file system registered
[   16.563820] ti-sci 44083000.system-controller: Mbox timedout in resp(caller: ti_sci_cmd_get_device_exclusive+0x18/0x28)
[   16.583790] ti-sci 44083000.system-controller: Mbox send fail -110
[   16.722180] read descriptors
[   16.726888] read strings

 _____                    _____           _         _
|  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
|     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
|__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
              |___|                    |___|

Arago Project j7-evm ttyS2

Arago 2021.09 j7-evm ttyS2

j7-evm login:
j7-evm login:
j7-evm login: