Tool/software:
Hi, Prashant:
I just create a new one because the link "">e2e.ti.com/.../am62a7-sbl-boot-from-sd-card-fail" can't be edited any more
Prashant Shivhare in reply to Prashant Shivhare
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.
Tool/software:
Hi, Prashant:
I just create a new one because the link "">e2e.ti.com/.../am62a7-sbl-boot-from-sd-card-fail" can't be edited any more
Prashant Shivhare in reply to Prashant Shivhare
Have you tried the normal A53 U-Boot flow to boot Linux & still see the issue?
This will help confirm if the issue is specifically with the Falcon boot.
[Hawayi]: Yes, detail as below:
cd ${RTOS_MCU_SDK_PATH}/tools/boot/linuxAppimageGen
(1) make -s BOARD=am62ax-sk all FALCON_MODE=1, then boot fail !
(2) make -s BOARD=am62ax-sk all, then boot OK.
Hello,
I would once try the FALCON mode using SBL on TI EVM. If the issue does not reproduce then I would loop in our Linux Kernel expert for further support.
Please allow me a day to test & get back to you.
Thanks,
Prashant
Hello,
I do see the issue on changing the size to 2GB on TI EVM. It looks like the issue is not related to SBL FALCON boot flow but just generic kernel issue.
Looping in our Kernel expert for further support here.
Regards,
Prashant
Hi Hawayi,
Sorry for the delay. I have a work to deliver by end of this week, and don't have much bandwidth to look into this issue. I will get back to you by mid next week.
Hi Hawayi,
Sorry for the delay.
I understand you are seeing Linux boot issue in SBL booting Linux with or without falcon boot, but do you see the same problem in using U-Boot booting Linux instead of SBL?
Hi Hawayi,
Thanks for the clarification.
Just for debugging, can you please try to disable the "&dss" node in kernel devicetree to see if the boot issue still happens? There is an known DSS issue in SDK10,0 which could trigger the rcu preemption stall problem. I am just not sure how this would be related to the 2GB DDR configuration though.
Have you tried it and what is its result?
I only support Linux and am not familiar with SBL. Prashant has been tied up to another work and doesn't have time in the next few days to test this on EVM.
Can you git a patch to disable the "&dss" node? Is correct show below? We have disabled it for a long time.
Hello,
I think I have found the root cause. It is the incorrect TFA reserved memory region in the Kernel DTS.
In the case of the normal U-Boot flow, the A53 U-Boot does some fixups before booting the Linux Kernel which includes reserving correct memory region for the ATF. This gets missed in the Falcon boot flow.
Please apply the following patch to reflect the correct TFA reserved memory region:
diff --git a/arch/arm64/boot/dts/ti/k3-am62a7-sk.dts b/arch/arm64/boot/dts/ti/k3-am62a7-sk.dts index 3047586a6d9d..7398abb14cdf 100644 --- a/arch/arm64/boot/dts/ti/k3-am62a7-sk.dts +++ b/arch/arm64/boot/dts/ti/k3-am62a7-sk.dts @@ -53,8 +53,8 @@ linux,cma { linux,cma-default; }; - secure_tfa_ddr: tfa@9e780000 { - reg = <0x00 0x9e780000 0x00 0x80000>; + secure_tfa_ddr: tfa@80000000 { + reg = <0x00 0x80000000 0x00 0x80000>; alignment = <0x1000>; no-map; };
After this, I do not see the SBL FALCON boot failure with 2GB DDR:
SYSFW Firmware Version 10.0.8--v10.00.08 (Fiery Fox) SYSFW Firmware revision 0xa SYSFW ABI revision 4.0 [BOOTLOADER_PROFILE] Boot Media : FLASH [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz [BOOTLOADER_PROFILE] Boot Image Size : 261 KB [BOOTLOADER_PROFILE] Cores present : mcu-r5f0-0 r5f0-0 [BOOTLOADER PROFILE] System_init : 38157us [BOOTLOADER PROFILE] Board_init : 0us [BOOTLOADER PROFILE] Drivers_open : 238us [BOOTLOADER PROFILE] Board_driversOpen : 29063us [BOOTLOADER PROFILE] Sciclient Get Version : 10399us [BOOTLOADER PROFILE] App_waitForMcuPbist : 4us [BOOTLOADER PROFILE] MCU R5 Image Load : 5003us [BOOTLOADER PROFILE] DM R5 Image Load : 9840us [BOOTLOADER_PROFILE] SBL Total Time Taken : 92708us Image loading done, switching to application ... Starting MCU-r5f and 2nd stage bootloader SYSFW Firmware Version 10.0.8--v10.00.08 (Fiery Fox) SYSFW Firmware revision 0xa SYSFW ABI revision 4.0 [BOOTLOADER_PROFILE] Boot Media : FLASH [BOOTLOADER_PROFILE] Boot Media Clock : 166.667 MHz [BOOTLOADER_PROFILE] Boot Image Size : 21052 KB [BOOTLOADER_PROFILE] Cores present : hsm-m4f0-0 r5f0-0 a530-0 c75ss0 [BOOTLOADER PROFILE] System_init : 1891us [BOOTLOADER PROFILE] Board_init : 1us [BOOTLOADER PROFILE] Drivers_open : 293us [BOOTLOADER PROFILE] Board_driversOpen : 28888us [BOOTLOADER PROFILE] Sciclient Get Version : 10360us [BOOTLOADER PROFILE] HSM Image Load : 2187us [BOOTLOADER PROFILE] DM R5 Image Load : 11545us [BOOTLOADER PROFILE] A53 Image Load : 851174us [BOOTLOADER PROFILE] DSP Image Load : 14489us [BOOTLOADER_PROFILE] SBL Total Time Taken : 920832us Image loading done, switching to application ... Starting linux and RTOS/Baremetal applications NOTICE: BL31: v2.10.0(release):v2.10.0-367-g00f1ec6b87-dirty NOTICE: BL31: Built : 16:09:05, Feb 9 2024 [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.6.32-ti-gdb8871293143-dirty (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.3.0, GNU ld (GNU Binutils) 2.42.0.20240620) #1 SMP PREEMPT Thu Aug 1 19:10:56 U TC 2024 [ 0.000000] KASLR disabled due to lack of seed [ 0.000000] Machine model: Texas Instruments AM62A7 SK [ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '') [ 0.000000] printk: bootconsole [ns16550a0] enabled [ 0.000000] efi: UEFI not found. [ 0.000000] [Firmware Bug]: Kernel image misaligned at boot, please fix your bootloader! [ 0.000000] Reserved memory: created CMA memory pool at 0x00000000c0000000, size 576 MiB [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000c0000000..0x00000000e3ffffff (589824 KiB) map reusable linux,cma [ 0.000000] OF: reserved mem: 0x0000000080000000..0x000000008007ffff (512 KiB) nomap non-reusable tfa@80000000 [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000099800000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node c7x-dma-memory@99800000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x0000000099800000..0x00000000998fffff (1024 KiB) nomap non-reusable c7x-dma-memory@99800000 [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000099900000, size 31 MiB [ 0.000000] OF: reserved mem: initialized node c7x-memory@99900000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x0000000099900000..0x000000009b7fffff (31744 KiB) nomap non-reusable c7x-memory@99900000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009b800000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9b800000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009b800000..0x000000009b8fffff (1024 KiB) nomap non-reusable r5f-dma-memory@9b800000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009b900000, size 15 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9b900000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009b900000..0x000000009c7fffff (15360 KiB) nomap non-reusable r5f-dma-memory@9b900000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 1 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9c800000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009c800000..0x000000009c8fffff (1024 KiB) nomap non-reusable r5f-dma-memory@9c800000 [ 0.000000] Reserved memory: created DMA memory pool at 0x000000009c900000, size 30 MiB [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@9c900000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x000000009c900000..0x000000009e6fffff (30720 KiB) nomap non-reusable r5f-dma-memory@9c900000 [ 0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000 [ 0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a0ffffff (16384 KiB) nomap non-reusable edgeai-rtos-ipc-memory-region [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 32 MiB [ 0.000000] OF: reserved mem: initialized node edgeai-dma-memory@a1000000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a2ffffff (32768 KiB) nomap non-reusable edgeai-dma-memory@a1000000 [ 0.000000] OF: reserved mem: initialized node edgeai_shared-memories, compatible id dma-heap-carveout [ 0.000000] OF: reserved mem: 0x00000000a3000000..0x00000000adffffff (180224 KiB) map non-reusable edgeai_shared-memories [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ae000000, size 288 MiB [ 0.000000] OF: reserved mem: initialized node edgeai-core-heap-memory@ae000000, compatible id shared-dma-pool [ 0.000000] OF: reserved mem: 0x00000000ae000000..0x00000000bfffffff (294912 KiB) nomap non-reusable edgeai-core-heap-memory@ae000000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000080000000-0x000000008007ffff] [ 0.000000] node 0: [mem 0x0000000080080000-0x00000000997fffff] [ 0.000000] node 0: [mem 0x0000000099800000-0x000000009e6fffff] [ 0.000000] node 0: [mem 0x000000009e700000-0x000000009e7fffff] [ 0.000000] node 0: [mem 0x000000009e800000-0x00000000a2ffffff] [ 0.000000] node 0: [mem 0x00000000a3000000-0x00000000adffffff] [ 0.000000] node 0: [mem 0x00000000ae000000-0x00000000bfffffff] [ 0.000000] node 0: [mem 0x00000000c0000000-0x00000000ffffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff] [ 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.4 [ 0.000000] percpu: Embedded 20 pages/cpu s43112 r8192 d30616 u81920 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=/dev/mmcblk1p2 rw rootfstype=ext4 rootwait [ 0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 516096 [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x00000000f9900000-0x00000000fd900000] (64MB) [ 0.000000] Memory: 750404K/2097152K available (12160K kernel code, 1262K rwdata, 4064K rodata, 2432K init, 506K bss, 756924K reserved, 589824K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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=4. [ 0.000000] Trampoline variant of Tasks RCU enabled. [ 0.000000] Tracing 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=4 [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 256 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000 [ 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 @82400000 (flat, esz 8, psz 64K, shr 0) [ 0.000000] ITS: using cache flushing for cmd queue [ 0.000000] GICv3: using LPI property table @0x0000000081840000 [ 0.000000] GIC: using cache flushing for LPI property table [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000081850000 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns [ 0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns [ 0.008497] Console: colour dummy device 80x25 [ 0.013080] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000) [ 0.023760] pid_max: default: 32768 minimum: 301 [ 0.028545] LSM: initializing lsm=capability,integrity [ 0.033885] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.041457] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.050957] RCU Tasks: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.058251] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.066146] rcu: Hierarchical SRCU implementation. [ 0.071048] rcu: Max phase no-delay instances is 1000. [ 0.076608] Platform MSI: msi-controller@1820000 domain created [ 0.082847] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created [ 0.092229] EFI services will not be available. [ 0.097077] smp: Bringing up secondary CPUs ... [ 0.102331] Detected VIPT I-cache on CPU1 [ 0.102397] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000 [ 0.102413] GICv3: CPU1: using allocated LPI pending table @0x0000000081860000 [ 0.102456] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.103117] Detected VIPT I-cache on CPU2 [ 0.103167] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000 [ 0.103179] GICv3: CPU2: using allocated LPI pending table @0x0000000081870000 [ 0.103208] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.103803] Detected VIPT I-cache on CPU3 [ 0.103853] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000 [ 0.103865] GICv3: CPU3: using allocated LPI pending table @0x0000000081880000 [ 0.103893] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.103959] smp: Brought up 1 node, 4 CPUs [ 0.183665] SMP: Total of 4 processors activated. [ 0.188475] CPU features: detected: 32-bit EL0 Support [ 0.193742] CPU features: detected: CRC32 instructions [ 0.199046] CPU: All CPU(s) started at EL2 [ 0.203241] alternatives: applying system-wide alternatives [ 0.210389] devtmpfs: initialized [ 0.221097] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.231101] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.251444] pinctrl core: initialized pinctrl subsystem [ 0.257247] DMI not present or invalid. [ 0.261721] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.268543] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.275866] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.283876] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.292039] audit: initializing netlink subsys (disabled) [ 0.297728] audit: type=2000 audit(0.188:1): state=initialized audit_enabled=0 res=1 [ 0.298105] thermal_sys: Registered thermal governor 'step_wise' [ 0.305662] thermal_sys: Registered thermal governor 'power_allocator' [ 0.311843] cpuidle: using governor menu [ 0.322663] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.329675] ASID allocator initialised with 65536 entries [ 0.345029] platform a40000.pinctrl: Fixed dependency cycle(s) with /bus@f0000/pinctrl@a40000/cpsw-cpts [ 0.357162] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b [ 0.367512] Modules: 27616 pages in range for non-PLT usage [ 0.367517] Modules: 519136 pages in range for PLT usage [ 0.373857] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.386248] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page [ 0.392656] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages [ 0.399594] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page [ 0.406000] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.412938] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page [ 0.419345] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages [ 0.426283] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page [ 0.433895] k3-chipinfo 43000014.chipid: Family:AM62AX rev:SR1.0 JTAGID[0x0bb8d02f] Detected [ 0.443139] iommu: Default domain type: Translated [ 0.448061] iommu: DMA domain TLB invalidation policy: strict mode [ 0.454627] SCSI subsystem initialized [ 0.458718] usbcore: registered new interface driver usbfs [ 0.464355] usbcore: registered new interface driver hub [ 0.469808] usbcore: registered new device driver usb [ 0.475372] pps_core: LinuxPPS API ver. 1 registered [ 0.480448] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.489794] PTP clock support registered [ 0.493935] EDAC MC: Ver: 3.0.0 [ 0.497552] scmi_core: SCMI protocol bus registered [ 0.502786] FPGA manager framework [ 0.506334] Advanced Linux Sound Architecture Driver Initialized. [ 0.513371] vgaarb: loaded [ 0.516441] clocksource: Switched to clocksource arch_sys_counter [ 0.522893] VFS: Disk quotas dquot_6.6.0 [ 0.526940] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.539487] Carveout Heap: Exported 176 MiB at 0x00000000a3000000 [ 0.545824] NET: Registered PF_INET protocol family [ 0.550943] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.559906] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.568691] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.576623] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.584810] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.592679] TCP: Hash tables configured (established 16384 bind 16384) [ 0.599496] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.606407] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.613873] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.620042] RPC: Registered named UNIX socket transport module. [ 0.626115] RPC: Registered udp transport module. [ 0.630923] RPC: Registered tcp transport module. [ 0.635730] RPC: Registered tcp-with-tls transport module. [ 0.641339] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.647928] NET: Registered PF_XDP protocol family [ 0.652841] PCI: CLS 0 bytes, default 64 [ 0.658036] Initialise system trusted keyrings [ 0.662785] workingset: timestamp_bits=46 max_order=19 bucket_order=0 [ 0.669647] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.675843] NFS: Registering the id_resolver key type [ 0.681033] Key type id_resolver registered [ 0.685309] Key type id_legacy registered [ 0.689420] nfs4filelayout_init: NFSv4 File Layout Driver Registering... [ 0.696274] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering... [ 0.732793] Key type asymmetric registered [ 0.736985] Asymmetric key parser 'x509' registered [ 0.742013] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244) [ 0.749694] io scheduler mq-deadline registered [ 0.754332] io scheduler kyber registered [ 0.758454] io scheduler bfq registered [ 0.764934] pinctrl-single 4084000.pinctrl: 34 pins, size 136 [ 0.771376] pinctrl-single f4000.pinctrl: 151 pins, size 604 [ 0.778378] pinctrl-single a40000.pinctrl: 512 pins, size 2048 [ 0.789633] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled [ 0.805218] loop: module loaded [ 0.809306] megasas: 07.725.01.00-rc1 [ 0.816033] tun: Universal TUN/TAP device driver, 1.6 [ 0.822115] VFIO - User Level meta-driver version: 0.3 [ 0.828304] usbcore: registered new interface driver usb-storage [ 0.834926] i2c_dev: i2c /dev entries driver [ 0.840728] sdhci: Secure Digital Host Controller Interface driver [ 0.847060] sdhci: Copyright(c) Pierre Ossman [ 0.851691] sdhci-pltfm: SDHCI platform and OF driver helper [ 0.858106] ledtrig-cpu: registered to indicate activity on CPUs [ 0.864511] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... [ 0.871675] usbcore: registered new interface driver usbhid [ 0.877377] usbhid: USB HID core driver [ 0.881561] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fca100 [ 0.888375] omap-mailbox 29010000.mailbox: omap mailbox rev 0x66fca100 [ 0.895153] omap-mailbox 29020000.mailbox: omap mailbox rev 0x66fca100 [ 0.901878] omap-mailbox 29030000.mailbox: no available mbox devices found [ 0.910049] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available [ 0.918920] optee: probing for conduit method. [ 0.923496] optee: revision 4.2 (12d7c4ee) [ 0.923763] optee: dynamic shared memory is enabled [ 0.933557] random: crng init done [ 0.937128] optee: initialized driver [ 0.942209] Initializing XFRM netlink socket [ 0.946628] NET: Registered PF_PACKET protocol family [ 0.951862] Key type dns_resolver registered [ 0.962886] registered taskstats version 1 [ 0.967227] Loading compiled-in X.509 certificates [ 0.983104] ti-sci 44043000.system-controller: ABI: 4.0 (firmware rev 0x000a '10.0.8--v10.00.08 (Fiery Fox)') [ 1.033454] i2c 0-0048: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/pmic@48/regulators/buck5 [ 1.043242] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz [ 1.050330] pca953x 1-0023: supply vcc not found, using dummy regulator [ 1.057237] pca953x 1-0023: using AI [ 1.086559] platform connector-hdmi: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/bridge-hdmi@3b [ 1.096506] i2c 1-003b: Fixed dependency cycle(s) with /connector-hdmi [ 1.103361] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz [ 1.110126] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz [ 1.116069] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created [ 1.124398] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created [ 1.133636] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created [ 1.142718] ti-sci-inta 4e0a0000.interrupt-controller: Interrupt Aggregator domain 200 created [ 1.152228] ti-udma 485c0100.dma-controller: Number of rings: 82 [ 1.160653] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18) [ 1.171403] ti-udma 485c0000.dma-controller: Number of rings: 150 [ 1.182166] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15) [ 1.191463] ti-udma 4e230000.dma-controller: Number of rings: 6 [ 1.198034] ti-udma 4e230000.dma-controller: Channels: 6 (bchan: 0, tchan: 0, rchan: 6) [ 1.207380] printk: console [ttyS2] disabled [ 1.212050] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 252, base_baud = 3000000) is a 8250 [ 1.220956] printk: console [ttyS2] enabled [ 1.220956] printk: console [ttyS2] enabled [ 1.229431] printk: bootconsole [ns16550a0] disabled [ 1.229431] printk: bootconsole [ns16550a0] disabled [ 1.280450] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000 [ 1.291611] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867 [ 1.299739] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006 [ 1.312709] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5 [ 1.319837] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512 [ 1.326221] pps pps0: new PPS source ptp0 [ 1.330463] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1 [ 1.344777] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19 [ 1.354813] platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/usb-power-controller@3f/connector [ 1.368145] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 1.373682] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 1.381498] xhci-hcd xhci-hcd.0.auto: USB3 root hub has no ports [ 1.387498] xhci-hcd xhci-hcd.0.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000008020000010 [ 1.396924] xhci-hcd xhci-hcd.0.auto: irq 265, io mem 0x31100000 [ 1.403618] hub 1-0:1.0: USB hub found [ 1.407415] hub 1-0:1.0: 1 port detected [ 1.414042] mmc0: CQHCI version 5.10 [ 1.458851] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit [ 1.544357] mmc0: Command Queue Engine enabled [ 1.548833] mmc0: new HS200 MMC card at address 0001 [ 1.554319] mmcblk0: mmc0:0001 G1M15L 29.6 GiB [ 1.560039] mmcblk0: p1 p2 [ 1.563380] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB [ 1.569150] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB [ 1.574782] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0) [ 1.696218] tps6594-rtc tps6594-rtc.5.auto: registered as rtc1 [ 1.702441] pca953x 1-0022: supply vcc not found, using dummy regulator [ 1.709187] pca953x 1-0022: using AI [ 1.718984] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present! [ 1.719985] mmc1: CQHCI version 5.10 [ 1.726342] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present! [ 1.738260] clk: Disabling unused clocks [ 1.748336] ALSA device list: [ 1.751365] No soundcards found. [ 1.769014] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit [ 1.776697] Waiting for root device /dev/mmcblk1p2... [ 1.959740] mmc1: new ultra high speed SDR104 SDHC card at address aaaa [ 1.966971] mmcblk1: mmc1:aaaa SC16G 14.8 GiB [ 1.975963] mmcblk1: p1 p2 [ 2.018824] EXT4-fs (mmcblk1p2): warning: mounting fs with errors, running e2fsck is recommended [ 2.186482] EXT4-fs (mmcblk1p2): recovery complete [ 2.193064] EXT4-fs (mmcblk1p2): mounted filesystem 391702fc-cf91-4f81-afcd-ec5ecaef14e3 r/w with ordered data mode. Quota mode: none. [ 2.205230] VFS: Mounted root (ext4 filesystem) on device 179:98. [ 2.213757] devtmpfs: mounted [ 2.217384] Freeing unused kernel memory: 2432K [ 2.221989] Run /sbin/init as init process [ 2.427972] systemd[1]: System time before build time, advancing clock. [ 2.471759] NET: Registered PF_INET6 protocol family [ 2.477580] Segment Routing with IPv6 [ 2.481288] In-situ OAM (IOAM) with IPv6 [ 2.518827] systemd[1]: systemd 255.4^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO2 -IDN2 -IDN -IPTC +KMOD -LIBCRYPTSETUP +LIBFDISK -PCRE2 -PWQUALITY -P11KIT -QRENCODE -TPM2 -BZIP2 -LZ4 -XZ -ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified) [ 2.550641] systemd[1]: Detected architecture arm64. Welcome to Arago 2023.10! [ 2.576827] systemd[1]: Hostname set to <am62axx-evm>. [ 2.675004] systemd-sysv-generator[110]: SysV service '/etc/init.d/edgeai-launcher.sh' lacks a native systemd unit file. ~ Automatically generating a unit file for compatibility. Please update package to include a native systemd unit file, in order to make it safe, robust and future-proof. ! This compatibility logic is deprecated, expect removal soon. ! [ 2.891712] systemd[1]: /usr/lib/systemd/system/bt-enable.service:9: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and consid er removing the setting altogether. [ 3.002610] systemd[1]: /etc/systemd/system/sync-clocks.service:11: Standard output type syslog is obsolete, automatically updating to journal. Please update your unit file, and conside r removing the setting altogether. [ 3.083279] systemd[1]: Queued start job for default target Graphical Interface. [ 3.117840] systemd[1]: Created slice Slice /system/getty. [ OK ] Created slice Slice /system/getty. [ 3.142769] systemd[1]: Created slice Slice /system/modprobe. [ OK ] Created slice Slice /system/modprobe. [ 3.166631] systemd[1]: Created slice Slice /system/serial-getty. [ OK ] Created slice Slice /system/serial-getty. [ 3.190091] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 3.212883] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ 3.236767] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password Requests to Wall Directory Watch. [ 3.260630] systemd[1]: Expecting device /dev/ttyS2... Expecting device /dev/ttyS2... [ 3.276684] systemd[1]: Reached target Path Units. [ OK ] Reached target Path Units. [ 3.292569] systemd[1]: Reached target Remote File Systems. [ OK ] Reached target Remote File Systems. [ 3.312565] systemd[1]: Reached target Slice Units. [ OK ] Reached target Slice Units. [ 3.328572] systemd[1]: Reached target Swaps. [ OK ] Reached target Swaps. [ 3.380420] systemd[1]: Listening on RPCbind Server Activation Socket. [ OK ] Listening on RPCbind Server Activation Socket. [ 3.404767] systemd[1]: Reached target RPC Port Mapper. [ OK ] Reached target RPC Port Mapper. [ 3.433311] systemd[1]: Listening on Process Core Dump Socket. [ OK ] Listening on Process Core Dump Socket. [ 3.456948] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 3.481597] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 3.505186] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 3.529181] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 3.549337] systemd[1]: Listening on Network Service Netlink Socket. [ OK ] Listening on Network Service Netlink Socket. [ 3.576983] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 3.597101] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 3.617124] systemd[1]: Listening on User Database Manager Socket. [ OK ] Listening on User Database Manager Socket. [ 3.672796] systemd[1]: Mounting Huge Pages File System... Mounting Huge Pages File System... [ 3.692339] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 3.738426] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 3.761038] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing). [ 3.780292] systemd[1]: Mounting Temporary Directory /tmp... Mounting Temporary Directory /tmp... [ 3.831595] systemd[1]: Starting Create List of Static Device Nodes... Starting Create List of Static Device Nodes... [ 3.856913] systemd[1]: Starting Load Kernel Module configfs... Starting Load Kernel Module configfs... [ 3.884810] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 3.908937] systemd[1]: Starting Load Kernel Module fuse... Starting Load Kernel Module fuse... [ 3.940484] systemd[1]: Starting Start psplash boot splash screen... Starting Start psplash boot splash screen.[ 3.948639] fuse: init (API version 7.39) .. [ 3.975790] systemd[1]: Starting RPC Bind... Starting RPC Bind... [ 3.992945] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/). [ 4.012818] systemd[1]: Starting Journal Service... Starting Journal Service... [ 4.036383] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 4.061460] systemd[1]: Starting Generate network units from Kernel command line... Starting Generate network units from Kernel command line... [ 4.084325] cryptodev: loading out-of-tree module taints kernel. [ 4.093253] cryptodev: driver 1.13 loaded. [ 4.108856] systemd-journald[128]: Collecting audit messages is enabled. [ 4.114784] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 4.145258] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 4.171380] systemd[1]: Started RPC Bind. [ OK ] Started RPC Bind. [ 4.187131] systemd[1]: Mounted Huge Pages File System. [ OK ] Mounted Huge Pages File System.[ 4.197756] EXT4-fs (mmcblk1p2): re-mounted 391702fc-cf91-4f81-afcd-ec5ecaef14e3 r/w. Quota mode: none. [ 4.218632] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Kernel Debug File System. [ OK ] Mounted Temporary Directory /tmp. [ OK ] Finished Create List of Static Device Nodes. [ OK ] Finished Load Kernel Module configfs. [ OK ] Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module fuse. [FAILED] Failed to start Start psplash boot splash screen. See 'systemctl status psplash-start.service' for details. [DEPEND] Dependency failed for Start psplas…temd progress communication helper. [ OK ] Finished Load Kernel Modules. [ OK ] Finished Generate network units from Kernel command line. [ OK ] Finished Remount Root and Kernel File Systems. Mounting FUSE Control File System... Mounting Kernel Configuration File System... Starting Flush Journal to Persistent Storage... Starting Apply Kernel Variables... [ 4.620962] systemd-journald[128]: Received client request to flush runtime journal. Starting Create Static Device Nodes in /dev gracefully... [ OK ] Mounted FUSE Control File System. [ OK ] Mounted Kernel Configuration File System. [ OK ] Finished Flush Journal to Persistent Storage. [ OK ] Finished Apply Kernel Variables. [ OK ] Finished Create Static Device Nodes in /dev gracefully. Starting Create Static Device Nodes in /dev... [ OK ] Finished Coldplug All udev Devices. [ OK ] Finished Create Static Device Nodes in /dev. [ OK ] Reached target Preparation for Local File Systems. Mounting /var/volatile... [ 4.882975] audit: type=1334 audit(1709054766.452:2): prog-id=6 op=LOAD [ 4.889679] audit: type=1334 audit(1709054766.460:3): prog-id=7 op=LOAD Starting Rule-based Manager for Device Events and Files... [ OK ] Mounted /var/volatile. Starting Load/Save OS Random Seed... [ OK ] Reached target Local File Systems. Starting Create Volatile Files and Directories... [ OK ] Finished Load/Save OS Random Seed. [ OK ] Finished Create Volatile Files and Directories. [ 5.093831] audit: type=1334 audit(1709054766.664:4): prog-id=8 op=LOAD Starting Network Name Resolution... [ 5.138881] audit: type=1334 audit(1709054766.708:5): prog-id=9 op=LOAD Starting Network Time Synchronization... Starting Record System Boot/Shutdown in UTMP... [ OK ] Started Rule-based Manager for Device Events and Files. [ 5.238910] audit: type=1334 audit(1709054766.808:6): prog-id=10 op=LOAD Starting User Database Manager... [ 5.246447] audit: type=1334 audit(1709054766.808:7): prog-id=11 op=LOAD [ 5.260089] audit: type=1334 audit(1709054766.808:8): prog-id=12 op=LOAD [ OK ] Finished Record System Boot/Shutdown in UTMP. [ OK ] Started User Database Manager. [ OK ] Found device /dev/ttyS2. [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Initialization. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target System Time Set. [ OK ] Started Daily rotation of log files. [ OK ] Reached target Timer Units. [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [ OK ] Listening on D-Bus System Message Bus Socket. Starting Docker Socket for the API... [ OK ] Listening on dropbear.socket. [ OK ] Listening on PC/SC Smart Card Daemon Activation Socket. Starting Weston socket... [ 6.074453] audit: type=1334 audit(1709054767.644:9): prog-id=13 op=LOAD Starting D-Bus System Message Bus... Starting Reboot and dump vmcore via kexec... [ 6.150203] tps6598x 0-003f: Unable to find the interrupt, switching to polling [ OK ] Listening on Docker Socket for the API. [ OK ] Listening on Weston socket. [ OK ] Reached target Socket Units. [ 6.245721] mc: Linux media interface: v0.10 [ OK ] Finished Reboot and dump vmcore via[ 6.275051] videodev: Linux video capture interface: v2.00 kexec. [ 6.285369] k3-dsp-rproc 7e000000.dsp: assigned reserved memory node c7x-dma-memory@99800000 [ 6.296335] k3-dsp-rproc 7e000000.dsp: configured DSP for IPC-only mode [ 6.304994] remoteproc remoteproc0: 7e000000.dsp is available [ 6.313992] remoteproc remoteproc0: attaching to 7e000000.dsp [ 6.316307] platform 79000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1) [ 6.322533] k3-dsp-rproc 7e000000.dsp: DSP initialized in IPC-only mode [ 6.338547] rproc-virtio rproc-virtio.7.auto: assigned reserved memory node c7x-dma-memory@99800000 [ 6.338867] platform 79000000.r5f: configured R5F for IPC-only mode [ 6.348467] virtio_rpmsg_bus virtio0: rpmsg host is online [ 6.356686] platform 79000000.r5f: assigned reserved memory node r5f-dma-memory@9b800000 [ 6.359653] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd [ 6.369062] remoteproc remoteproc1: 79000000.r5f is available [ 6.371856] rproc-virtio rproc-virtio.7.auto: registered virtio0 (type 7) [ 6.371869] remoteproc remoteproc0: remote processor 7e000000.dsp is now attached [ 6.375427] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe [ 6.381464] remoteproc remoteproc1: attaching to 79000000.r5f [ OK ] Created slice Slice /system/systemd-fsck. Expecting device /dev/mmcblk0p1... [ 6.434726] vdec 30210000.video-codec: error -ENXIO: IRQ index 0 not found [ 6.440385] dbus-broker-lau[406]: memfd_create() called without MFD_EXEC or MFD_NOEXEC_SEAL set [ 6.444036] platform 79000000.r5f: R5F core initialized in IPC-only mode [ 6.453204] vdec 30210000.video-codec: failed to get irq resource, falling back to polling [ 6.457198] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node r5f-dma-memory@9b800000 [ 6.458056] virtio_rpmsg_bus virtio1: rpmsg host is online [ 6.465570] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd [ 6.475218] rproc-virtio rproc-virtio.8.auto: registered virtio1 (type 7) [ 6.480477] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe [ 6.492619] remoteproc remoteproc1: remote processor 79000000.r5f is now attached [ OK ] Started D-Bus System Message Bus 6.510179] vdec 30210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE' m. [ 6.525172] vdec 30210000.video-codec: Product Code: 0x521c [ 6.531432] vdec 30210000.video-codec: Firmware Revision: 320127 [ 6.538117] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1) [ 6.550968] platform 78000000.r5f: configured R5F for IPC-only mode [ OK ] Reached target Basic System. [ 6.557629] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9c800000 [ 6.574979] remoteproc remoteproc2: 78000000.r5f is available [ 6.578068] rtc-ti-k3 2b1f0000.rtc: Clock rate 32552 is not 32768! Could misbehave! [ 6.581136] remoteproc remoteproc2: attaching to 78000000.r5f [ 6.600750] platform 78000000.r5f: R5F core initialized in IPC-only mode [ 6.602795] rtc-ti-k3 2b1f0000.rtc: registered as rtc0 [ 6.608974] rproc-virtio rproc-virtio.9.auto: assigned reserved memory node r5f-dma-memory@9c800000 [ 6.609348] e5010 fd20000.jpeg-encoder: Device registered as /dev/video2 [ 6.614939] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:19 UTC (19) [ 6.618292] systemd-journald[128]: Time jumped backwards, rotating. [ 6.630673] virtio_rpmsg_bus virtio2: rpmsg host is online [ 6.631353] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xd [ 6.631487] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xe [ OK ] Started Job spooling tools. [ 6.663490] rproc-virtio rproc-virtio.9.auto: registered virtio2 (type 7) [ 6.675581] sii902x 1-003b: supply iovcc not found, using dummy regulator [ 6.675827] sii902x 1-003b: supply cvcc12 not found, using dummy regulator [ 6.691563] remoteproc remoteproc2: remote processor 78000000.r5f is now attached [ 6.694368] i2c i2c-1: Added multiplexed i2c bus 3 Starting Avahi mDNS/DNS-SD Stack... [ OK ] Started Periodic Command Scheduler. Starting Print notice about GPLv3 packages... Starting IPv6 Packet Filtering Framework... Starting IPv4 Packet Filtering Framework... [ OK ] Started irqbalance daemon. Starting Telephony service... Starting Expand the rootfs partiti…to full size of the boot device.... [ OK ] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf. [ 6.904174] audit: type=1334 audit(19.784:10): prog-id=14 op=LOAD [ 6.914571] audit: type=1334 audit(19.792:11): prog-id=15 op=LOAD Starting User Login Management... [ 6.928572] audit: type=1334 audit(19.792:12): prog-id=16 op=LOAD Starting Telnet Server... [ OK ] Finished IPv6 Packet Filtering Framework. [ OK ] Finished IPv4 Packet Filtering Framework. [ OK ] Found device /dev/mmcblk0p1. [ OK ] Finished Telnet Server. [ OK ] Reached target Preparation for Network. [ OK ] Reached target Hardware activated USB gadget. Starting File System Check on /dev/mmcblk0p1... [ 7.115884] audit: type=1334 audit(19.996:13): prog-id=17 op=LOAD Starting Network Configuration... [ OK ] Started Avahi mDNS/DNS-SD Stack. [ OK ] Started Telephony service. Expecting device /dev/mmcblk1p1... Starting Virtual Console Setup... [ OK ] Finished File System Check on /dev/mmcblk0p1. [ 7.280876] Bluetooth: Core ver 2.22 [ 7.284674] NET: Registered PF_BLUETOOTH protocol family [ 7.290165] Bluetooth: HCI device and connection manager initialized [ 7.296599] Bluetooth: HCI socket layer initialized Mounting /run/media/mmcblk0p1... [ 7.301655] Bluetooth: L2CAP socket layer initialized [ 7.311819] Bluetooth: SCO socket layer initialized [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ OK ] Finished Expand the rootfs partition to full size of the boot device.. [ OK ] Mounted /run/media/mmcblk0p1. [ OK ] Started User Login Management. [ OK ] Found device /dev/mmcblk1p1. [ 7.535942] cfg80211: Loading compiled-in X.509 certificates for regulatory database [ 7.558578] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' Starting File System Check on /dev/mmcblk1p1 7.565126] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600' 0m... Starting Save/Restore Sound Card State... [ OK ] Started Network Configuration. [ OK ] Finished Virtual Console Setup. [ OK ] Reached target Network. Starting Enable and configure wl18xx bluetooth stack... [ 7.725119] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL) [ 7.734983] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode [ OK ] Started Netperf Benchmark Server. Starting Simple Network Management Protocol (SNMP) Daemon.... Starting Permit User Sessions... [ OK ] Finished Save/Restore Sound Card State. [ OK ] Finished Enable and configure wl18xx bluetooth stack. [ OK ] Finished File System Check on /dev/mmcblk1p1. [ OK ] Reached target Sound Card. Mounting /run/media/BOOT-mmcblk1p1... [ OK ] Finished Permit User Sessions. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS2. [ OK ] Reached target Login Prompts. Starting Synchronize System and HW clocks... Starting Weston, a Wayland compositor, as a system service... [ OK ] Finished Synchronize System and HW clocks. [ OK ] Mounted /run/media/BOOT-mmcblk1p1. [ OK ] Created slice User Slice of UID 1000. Starting User Runtime Directory /run/user/1000... [ OK ] Finished User Runtime Directory /run/user/1000. Starting User Manager for UID 1000... [ 8.333406] audit: type=1006 audit(21.216:14): pid=600 uid=0 old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1 [ 8.345456] audit: type=1300 audit(21.216:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffe02f3a78 a2=4 a3=1 items=0 ppid=1 pid=600 auid=1000 uid=0 gid=0 euid=0 suid=0 fsui d=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=1 comm="(systemd)" exe="/usr/lib/systemd/systemd-executor" key=(null) [ 8.371587] audit: type=1327 audit(21.216:14): proctitle="(systemd)" [ OK ] Started Simple Network Management Protocol (SNMP) Daemon.. [ OK ] Started User Manager for UID 1000. [ OK ] Started Session c1 of User weston 9.080583] audit: type=1006 audit(21.960:15): pid=573 uid=0 old-auid=4294967295 auid=1000 tty=tty7 old-ses=4294967295 ses=2 res=1 0m. [ 9.094988] audit: type=1300 audit(21.960:15): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=fffff5489288 a2=4 a3=1 items=0 ppid=1 pid=573 auid=1000 uid=0 gid=0 euid=0 suid=0 fsui d=0 egid=0 sgid=0 fsgid=0 tty=tty7 ses=2 comm="(weston)" exe="/usr/lib/systemd/systemd-executor" key=(null) [FAILED] Failed to start Weston, a Wayland compositor, as a system service. See 'systemctl status weston.service' for details. Starting EdgeAI OOB demos... [ OK ] Started containerd container runtime. [ OK ] Created slice Slice /system/systemd-coredump. [ OK ] Started Process Core Dump (PID 723/UID 0). [ OK ] Started EdgeAI OOB demos. [ 11.077664] kauditd_printk_skb: 8 callbacks suppressed [ 11.077680] audit: type=1701 audit(23.960:23): auid=4294967295 uid=0 gid=0 ses=4294967295 pid=730 comm="edgeai-gui-app" exe="/usr/bin/edgeai-gui-app" sig=6 res=1 [ 11.110000] audit: type=1334 audit(23.992:24): prog-id=21 op=LOAD [ 11.116261] audit: type=1334 audit(24.000:25): prog-id=22 op=LOAD [ 11.122520] audit: type=1334 audit(24.004:26): prog-id=23 op=LOAD [ OK ] Started Process Core Dump (PID 840/UID 0). *************************************************************** *************************************************************** NOTICE: This file system contains the following GPL-3.0 packages: adwaita-icon-theme-symbolic autoconf bash-dev bash bc binutils cifs-utils coreutils-stdbuf coreutils cpio cpp-symlinks cpp dosfstools elfutils findutils g++-symlinks g++ gawk gcc-symlinks gcc gdb gdbserver gettext glmark2 gnu-config grub-common grub-editenv grub-efi gzip hidapi kbd-dev kbd-keymaps-pine less libasm1 libatomic-dev libatomic1 libbfd libdebuginfod1 libdw1 libelf1 libgcc-s-dev libgcc1 libgdbm-compat4 libgdbm-dev libgdbm6 libgettextlib libgettextsrc libgmp10 [ 11.964592] audit: type=1334 audit(24.848:27): prog-id=23 op=UNLOAD libidn2-0 libmpc3 libmpfr6 libopcodes libqt5charts-exam[ 11.971693] audit: type=1334 audit(24.848:28): prog-id=22 op=UNLOAD ples libqt5charts-plugins libqt5charts-qmlplugins libqt5ch[ 11.983464] audit: type=1334 audit(24.848:29): prog-id=21 op=UNLOAD arts5 libqt5serialport-examples libqt5serialport-plugins libqt5serialport-qmlplugins libqt5serialport5 libqt5svg-examples libqt5svg-plugins libqt5svg-qmlplugins libqt5svg5 libqt5virtualkeyboard-plugins libqt5virtualkeyboard-qmlplugins libqt5virtualkeyboard5 libreadline-dev libreadline8 libstdc++-dev libstdc++6 libunistring5 m4 make nettle parted piglit qt3d-plugins qt3d-qmlplugins qt3d qtbase-examples qtbase-plugins qtbase-qmlplugins qtbase qtconnectivity-plugins qtconnectivity-qmlplugins qtconnectivity qtdeclarative-plugins qtdeclarative-qmlplugins qtdeclarative-tools qtdeclarative qtgraphicaleffects-qmlplugins qtlocation-examples qtlocation-plugins qtlocation-qmlplugins qtlocation qtmultimedia-examples qtmultimedia-plugins qtmultimedia-qmlplugins qtmultimedia qtquick3d-plugins qtquick3d-qmlplugins qtquick3d qtquics-qmlplugins.control qtquics2-plugins.control qtquics2-qmlplugins.control qtquics2.control qtscript-examples qtscript-plugins qtscript-qmlplugins qtscript qtwayland-examples qtwayland-plugins qtwayland-qmlplugins qtwayland tar which If you do not wish to distribute GPL-3.0 components please remove the above packages prior to distribution. This can be done using the opkg remove command. i.e.: opkg remove <package> Where <package> is the name printed in the list above NOTE: If the package is a dependency of another package you will be notified of the dependent packages. You should use the --force-removal-of-dependent-packages option to also remove the dependent packages as well *************************************************************** *************************************************************** [ OK ] Finished Print notice about GPLv3 packages. [ OK ] Reached target Multi-User System. [ OK ] Reached target Graphical Interface. Starting Record Runlevel Change in UTMP... [ OK ] Finished Record Runlevel Change in UTMP. [ 12.409598] audit: type=1701 audit(25.292:30): auid=4294967295 uid=0 gid=0 ses=4294967295 pid=1280 comm="kmsprint" exe="/usr/bin/kmsprint" sig=6 res=1 [ 12.435085] audit: type=1334 audit(25.316:31): prog-id=24 op=LOAD [ 12.441265] audit: type=1334 audit(25.324:32): prog-id=25 op=LOAD _____ _____ _ _ | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_ | | _| .'| . | . | | __| _| . | | | -_| _| _| |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| Arago Project am62axx-evm ttyS2 Arago 2023.10 am62axx-evm ttyS2 am62axx-evm login: root terminate called after throwing an instance of 'std::runtime_error' what(): failed to find DRM cards root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# free -h total used free shared buff/cache available Mem: 1.3Gi 207Mi 941Mi 9.4Mi 241Mi 1.1Gi Swap: 0B 0B 0B root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps# root@am62axx-evm:/opt/edgeai-gst-apps#
Regards,
Prashant