Part Number: TDA4VH
How to enable falcon boot on J784S4 11.02 Linux SDK ?
Boot Flow:
R5 SPL -> ATF -> OPTEE -> Kernel
Regards
Gokul
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.
Part Number: TDA4VH
How to enable falcon boot on J784S4 11.02 Linux SDK ?
Boot Flow:
R5 SPL -> ATF -> OPTEE -> Kernel
Regards
Gokul
Hi Gokul,
Applying the below patches will enable the above mention boot flow on J784S4 EVM on 11.02 SDK: This supports booting tifalcon.bin and fitImage from SD card.
U-BOOT Patch:
From 9152c4df3eafa4f4b7cb8020f98b629689206254 Mon Sep 17 00:00:00 2001
From: Gokul Praveen <g-praveen@ti.com>
Date: Fri, 13 Mar 2026 13:58:06 +0530
Subject: [PATCH] Enable Falcon Boot Mode.
tifalcon.bin and fitImage is fetched from SD card.
---
Makefile | 2 +-
arch/arm/dts/k3-j784s4-binman.dtsi | 54 ++++++++++++++++++++++
arch/arm/dts/k3-j784s4-evm-u-boot.dtsi | 14 ++++++
arch/arm/mach-k3/include/mach/j784s4_spl.h | 1 +
arch/arm/mach-k3/r5/sysfw-loader.c | 9 +++-
board/ti/j784s4/evm.c | 2 +-
configs/am62x_r5_falcon.config | 38 +++++++++++++++
configs/j784s4_evm_r5_defconfig | 5 ++
8 files changed, 121 insertions(+), 4 deletions(-)
create mode 100644 configs/am62x_r5_falcon.config
diff --git a/Makefile b/Makefile
index 77ae3ced..c585e067 100644
--- a/Makefile
+++ b/Makefile
@@ -2224,7 +2224,7 @@ CLEAN_FILES += include/autoconf.mk* include/bmp_logo.h include/bmp_logo_data.h \
include/config.h include/generated/env.* drivers/video/u_boot_logo.S \
tools/version.h u-boot* MLO* SPL System.map fit-dtb.blob* \
u-boot-ivt.img.log u-boot-dtb.imx.log SPL.log u-boot.imx.log \
- lpc32xx-* bl31.c bl31.elf bl31_*.bin image.map tispl.bin* \
+ lpc32xx-* bl31.c bl31.elf bl31_*.bin image.map tispl.bin* tifalcon.bin* \
idbloader.img flash.bin flash.log defconfig keep-syms-lto.c \
mkimage-out.spl.mkimage mkimage.spl.mkimage imx-boot.map \
itb.fit.fit itb.fit.itb itb.map spl.map mkimage-out.rom.mkimage \
diff --git a/arch/arm/dts/k3-j784s4-binman.dtsi b/arch/arm/dts/k3-j784s4-binman.dtsi
index fe3483bd..aef4c28e 100644
--- a/arch/arm/dts/k3-j784s4-binman.dtsi
+++ b/arch/arm/dts/k3-j784s4-binman.dtsi
@@ -314,6 +314,7 @@
};
};
+
&binman {
u_boot_unsigned: template-15 {
insert-template = <&u_boot_unsigned_template>;
@@ -353,4 +354,57 @@
};
};
};
+
+&binman {
+ ti_falcon: template-16 {
+ insert-template = <&ti_falcon_template>;
+
+ fit {
+ images {
+
+#ifdef CONFIG_K3_HSM_FW
+ hsm {
+ hsm: blob-ext {
+ filename = "ti-hsm/hsm-demo-firmware-j784s4-hs.bin";
+ };
+ };
+
+#endif
+ dm {
+ ti-secure {
+ content = <&dm_falcon>;
+ keyfile = "custMpk.pem";
+ };
+
+ dm_falcon: ti-dm {
+ optional;
+ };
+ };
+ };
+
+ configurations {
+ default = "conf-0";
+
+ conf-0 {
+ description = BOARD_DESCRIPTION;
+ firmware = "atf";
+#ifdef CONFIG_K3_HSM_FW
+ loadables = "hsm", "tee", "dm";
+#else
+ loadables = "tee", "dm";
+#endif
+ };
+ conf-1 {
+ description = "k3-lpm";
+#ifdef CONFIG_K3_HSM_FW
+ loadables = "hsm", "dm";
+#else
+ loadables = "dm";
+#endif
+ };
+ };
+ };
+ };
+};
+
#endif
diff --git a/arch/arm/dts/k3-j784s4-evm-u-boot.dtsi b/arch/arm/dts/k3-j784s4-evm-u-boot.dtsi
index e69b911f..6a102cd7 100644
--- a/arch/arm/dts/k3-j784s4-evm-u-boot.dtsi
+++ b/arch/arm/dts/k3-j784s4-evm-u-boot.dtsi
@@ -87,6 +87,20 @@
u-boot-unsigned {
insert-template = <&u_boot_unsigned>;
};
+
+ tifalcon {
+ insert-template = <&ti_falcon>;
+
+ fit {
+ images {
+ dm {
+ ti-dm {
+ filename = "ti-dm/j784s4/ipc_echo_testb_mcu1_0_release_strip.xer5f";
+ };
+ };
+ };
+ };
+ };
};
#endif
diff --git a/arch/arm/mach-k3/include/mach/j784s4_spl.h b/arch/arm/mach-k3/include/mach/j784s4_spl.h
index 197adadf..3d2e0797 100644
--- a/arch/arm/mach-k3/include/mach/j784s4_spl.h
+++ b/arch/arm/mach-k3/include/mach/j784s4_spl.h
@@ -18,6 +18,7 @@
#define BOOT_DEVICE_I2C 0x06
#define BOOT_DEVICE_UART 0x07
#define BOOT_DEVICE_NOR BOOT_DEVICE_HYPERFLASH
+#define BOOT_DEVICE_NOBOOT 0x0F
/* With BootMode B = 1 */
#define BOOT_DEVICE_MMC2 0x10
diff --git a/arch/arm/mach-k3/r5/sysfw-loader.c b/arch/arm/mach-k3/r5/sysfw-loader.c
index 188731e6..7c007039 100644
--- a/arch/arm/mach-k3/r5/sysfw-loader.c
+++ b/arch/arm/mach-k3/r5/sysfw-loader.c
@@ -88,8 +88,13 @@ static void *sysfw_load_address;
*/
struct legacy_img_hdr *spl_get_load_buffer(ssize_t offset, size_t size)
{
- if (sysfw_loaded)
- return (struct legacy_img_hdr *)(CONFIG_TEXT_BASE + offset);
+ if (sysfw_loaded){
+ if (IS_ENABLED(CONFIG_SPL_OS_BOOT))
+ return (struct legacy_img_hdr *)CONFIG_SYS_LOAD_ADDR;
+ else
+ return (struct legacy_img_hdr *)(CONFIG_TEXT_BASE +
+ offset);
+ }
else if (sysfw_load_address)
return sysfw_load_address;
else
diff --git a/board/ti/j784s4/evm.c b/board/ti/j784s4/evm.c
index 1ef1901c..649ad185 100644
--- a/board/ti/j784s4/evm.c
+++ b/board/ti/j784s4/evm.c
@@ -111,7 +111,7 @@ void spl_perform_fixups(struct spl_image_info *spl_image)
} else {
fixup_memory_node(spl_image);
}
- detect_enable_spinand(spl_image->fdt_addr);
+ //detect_enable_spinand(spl_image->fdt_addr);
}
#endif
diff --git a/configs/am62x_r5_falcon.config b/configs/am62x_r5_falcon.config
new file mode 100644
index 00000000..d31d75ea
--- /dev/null
+++ b/configs/am62x_r5_falcon.config
@@ -0,0 +1,38 @@
+# Enable falcon mode
+CONFIG_SPL_OS_BOOT=y
+
+# We use envs for setting bootargs and optionally for `falcon_(image|args)_file`
+CONFIG_SPL_ENV_SUPPORT=y
+
+# Perform FDT fixups from SPL
+CONFIG_OF_SYSTEM_SETUP=y
+
+# Enabling this causes issues with EMMC FS boot,
+# When enabled the SPL tries to detect FS on boot[01] hw partition which fails
+# since we need the raw tiboot3.bin there for the board to boot instead
+CONFIG_SUPPORT_EMMC_BOOT=n
+
+# Used as the 2MiB aligned load address for kernel
+CONFIG_SYS_LOAD_ADDR=0x82000000
+CONFIG_SPL_PAYLOAD_ARGS_ADDR=0x88000000
+CONFIG_SPL_LOAD_FIT_ADDRESS=0x82000000
+CONFIG_SPL_STACK_R_ADDR=0x88000000
+CONFIG_SPL_STACK_R_MALLOC_SIMPLE_LEN=0x2700000
+
+# We use the rootfs (i.e partition 2) for booting which is ext4 not FAT
+CONFIG_SYS_MMCSD_FS_BOOT_PARTITION=2
+CONFIG_SPL_FS_EXT4=y
+CONFIG_SPL_FS_FAT=n
+
+# Loading tispl_falcon instead of tispl which has fdt and A53 spl saves time
+CONFIG_SPL_FS_LOAD_PAYLOAD_NAME="boot/tifalcon.bin"
+CONFIG_SPL_FS_LOAD_KERNEL_NAME="boot/fitImage"
+
+CONFIG_DMA=y
+
+# During SPI boot, kernel and args are loaded from the eMMC or SD and not SPI,
+# therefore we don't actually make use of these config values.
+CONFIG_SYS_SPI_KERNEL_OFFS=0
+CONFIG_SYS_SPI_ARGS_OFFS=0
+CONFIG_SYS_SPI_ARGS_SIZE=0
+
diff --git a/configs/j784s4_evm_r5_defconfig b/configs/j784s4_evm_r5_defconfig
index 4e1dda06..aec410fd 100644
--- a/configs/j784s4_evm_r5_defconfig
+++ b/configs/j784s4_evm_r5_defconfig
@@ -187,3 +187,8 @@ CONFIG_K3_AVS0=y
CONFIG_DM_REGULATOR=y
CONFIG_SPL_DM_REGULATOR=y
CONFIG_SPL_DM_REGULATOR_TPS6287X=y
+
+#include <configs/am62x_r5_falcon.config>
+
+CONFIG_SPL_FS_LOAD_ARGS_NAME="boot/dtb/ti/k3-j784s4-evm.dtb"
+CONFIG_SPL_FS_LOAD_PAYLOAD_NAME="boot/tifalcon.bin"
\ No newline at end of file
--
2.34.1
ATF Patch:
From aaf3126c24fbb63a796759fcc069f86e53aed92a Mon Sep 17 00:00:00 2001
From: Gokul Praveen <g-praveen@ti.com>
Date: Fri, 13 Mar 2026 14:41:37 +0530
Subject: [PATCH] Change jump offsets for falcon boot mode.
Changes the offsets to kernel image and Kernel dtb address for
falcon mode.
---
plat/ti/k3/platform.mk | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plat/ti/k3/platform.mk b/plat/ti/k3/platform.mk
index 347a08894..a5f45982c 100644
--- a/plat/ti/k3/platform.mk
+++ b/plat/ti/k3/platform.mk
@@ -13,10 +13,10 @@ include ${PLAT_PATH}/board/${TARGET_BOARD}/board.mk
BL32_BASE ?= 0x9e800000
$(eval $(call add_define,BL32_BASE))
-PRELOADED_BL33_BASE ?= 0x80080000
+PRELOADED_BL33_BASE ?= 0x82000000
$(eval $(call add_define,PRELOADED_BL33_BASE))
-K3_HW_CONFIG_BASE ?= 0x82000000
+K3_HW_CONFIG_BASE ?= 0x88000000
$(eval $(call add_define,K3_HW_CONFIG_BASE))
PLAT_INCLUDES += -Iplat/ti/k3/board/${TARGET_BOARD}/include \
--
2.34.1
Once these patches are applied:
make -C $(pwd) CROSS_COMPILE="$CROSS_COMPILE_64" BUILD_BASE=$(pwd)/build clean rm -rf $(pwd)/build make CROSS_COMPILE="$CROSS_COMPILE_64" ARCH=aarch64 PLAT=k3 TARGET_BOARD=j784s4 SPD=opteed K3_USART=0x8 K3_HW_CONFIG_BASE=0x88000000 PRELOADED_BL33_BASE=0x82000000
Output logs:
Normal Boot Flow:
TIme taken : 8.272 sec(Upto Starting Kernel Print...)
OPTIONS: I18n
Port /dev/ttyUSB4, 15:58:00
Press CTRL-A Z for help on special keys
U-Boot SPL 2025.01-00766-g7493977a537f (Dec 03 2025 - 15:20:36 +0000)
[2026-03-10 16:07:05.972] SYSFW ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 16:07:06.132] Initialized 4 DRAM controllers
[2026-03-10 16:07:06.244] SPL initial stack usage: 13584 bytes
[2026-03-10 16:07:06.244] Trying to boot from MMC2
[2026-03-10 16:07:06.340] Skipping authentication on GP device
[2026-03-10 16:07:06.340] Skipping authentication on GP device
[2026-03-10 16:07:06.356] Skipping authentication on GP device
[2026-03-10 16:07:06.356] Skipping authentication on GP device
[2026-03-10 16:07:06.372] Skipping authentication on GP device
[2026-03-10 16:07:06.389] Loading Environment from nowhere... OK
[2026-03-10 16:07:06.405] Starting ATF on ARM64 core...
[2026-03-10 16:07:06.421]
[2026-03-10 16:07:06.421] NOTICE: BL31: v2.13.0(release):v2.13.0-259-ge0c4d3903b-dirty
[2026-03-10 16:07:06.421] NOTICE: BL31: Built : 07:01:36, Jul 1 2025
[2026-03-10 16:07:06.485] I/TC:
[2026-03-10 16:07:06.485] I/TC: OP-TEE version: 4.7.0-47-ga9690ae39-dev (gcc version 13.4.0 (GCC)) #1 Thu Aug 7 15:25:10 UTC 2025 aarch64
[2026-03-10 16:07:06.485] I/TC: WARNING: This OP-TEE configuration might be insecure!
[2026-03-10 16:07:06.501] I/TC: WARNING: Please check https://optee.readthedocs.io/en/latest/architecture/porting_guidelines.html
[2026-03-10 16:07:06.501] I/TC: Primary CPU initializing
[2026-03-10 16:07:06.501] I/TC: GIC redistributor base address not provided
[2026-03-10 16:07:06.516] I/TC: Assuming default GIC group status and modifier
[2026-03-10 16:07:06.517] I/TC: SYSFW ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 16:07:06.517] I/TC: Activated SA2UL device
[2026-03-10 16:07:06.532] I/TC: Fixing SA2UL firewall owner for GP device
[2026-03-10 16:07:06.532] I/TC: Enabled firewalls for SA2UL TRNG device
[2026-03-10 16:07:06.533] I/TC: EIP76D TRNG initialized
[2026-03-10 16:07:06.533] I/TC: SA2UL Drivers initialized
[2026-03-10 16:07:06.549] I/TC: HUK Initialized
[2026-03-10 16:07:06.549] I/TC: Primary CPU switching to normal world boot
[2026-03-10 16:07:06.821]
[2026-03-10 16:07:06.821] U-Boot SPL 2025.01-00766-g7493977a537f (Dec 03 2025 - 15:20:36 +0000)
[2026-03-10 16:07:06.821] SYSFW ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 16:07:06.836] DM ABI: 3.0 (firmware ver 0x000b 'PSDK.11.02.00.07--v11.02.07' patch_ver: 7)
[2026-03-10 16:07:06.884] Trying to boot from MMC2
[2026-03-10 16:07:06.964] Skipping authentication on GP device
[2026-03-10 16:07:06.980] Skipping authentication on GP device
[2026-03-10 16:07:08.596]
[2026-03-10 16:07:08.596]
[2026-03-10 16:07:08.596] U-Boot 2025.01-00766-g7493977a537f (Dec 03 2025 - 15:20:36 +0000)
[2026-03-10 16:07:08.596]
[2026-03-10 16:07:08.596] SoC: J784S4 SR1.0 GP
[2026-03-10 16:07:08.596] Model: Texas Instruments J784S4 EVM
[2026-03-10 16:07:08.597] DRAM: 2 GiB (total 32 GiB)
[2026-03-10 16:07:09.748] Core: 147 devices, 36 uclasses, devicetree: separate
[2026-03-10 16:07:09.748] Flash: 0 Bytes
[2026-03-10 16:07:09.748] MMC: mmc@4f80000: 0, mmc@4fb0000: 1
[2026-03-10 16:07:09.748] Loading Environment from nowhere... OK
[2026-03-10 16:07:09.764] In: serial@2880000
[2026-03-10 16:07:09.764] Out: serial@2880000
[2026-03-10 16:07:09.764] Err: serial@2880000
[2026-03-10 16:07:09.764] Net: am65_cpsw_nuss ethernet@46000000: K3 CPSW: nuss_ver: 0x6BA02102 cpsw_ver: 0x6BA82102 ale_ver: 0x00293904 Ports:1
[2026-03-10 16:07:09.796] eth0: ethernet@46000000port@1am65_cpsw_nuss ethernet@c200000: K3 CPSW: nuss_ver: 0x6BA02102 cpsw_ver: 0x6BA82102 ale_ver: 0x00293904 Ports:1
[2026-03-10 16:07:09.812] mdio_register: non unique device name 'mdio@f00'
[2026-03-10 16:07:09.812] am65_cpsw_nuss_port ethernet@c200000port@1: phy_connect() failed
[2026-03-10 16:07:09.813]
[2026-03-10 16:07:09.828] Hit any key to stop autoboot: 0
[2026-03-10 16:07:12.068] switch to partitions #0, OK
[2026-03-10 16:07:12.068] mmc1 is current device
[2026-03-10 16:07:12.292] SD/MMC found on device 1
[2026-03-10 16:07:12.308] 969 bytes read in 1 ms (946.3 KiB/s)
[2026-03-10 16:07:12.308] Loaded env from uEnv.txt
[2026-03-10 16:07:12.308] Importing environment from mmc1 ...
[2026-03-10 16:07:12.308] Running uenvcmd ...
[2026-03-10 16:07:12.324] gpio: pin gpio@22_17 (gpio 188) value is 1
[2026-03-10 16:07:12.324] gpio: pin gpio@22_16 (gpio 187) value is 0
[2026-03-10 16:07:12.324] k3_r5f_rproc r5f@41000000: Core 1 is already in use. No rproc commands work
[2026-03-10 16:07:12.372] Failed to load '/lib/firmware/j784s4-mcu-r5f0_1-fw'
[2026-03-10 16:07:12.452] 1793608 bytes read in 67 ms (25.5 MiB/s)
[2026-03-10 16:07:12.452] Load Remote Processor 2 with data@addr=0x82000000 1793608 bytes: Success!
[2026-03-10 16:07:12.516] 371924 bytes read in 53 ms (6.7 MiB/s)
[2026-03-10 16:07:12.532] Load Remote Processor 3 with data@addr=0x82000000 371924 bytes: Success!
[2026-03-10 16:07:12.580] 163008 bytes read in 51 ms (3 MiB/s)
[2026-03-10 16:07:12.596] Load Remote Processor 4 with data@addr=0x82000000 163008 bytes: Success!
[2026-03-10 16:07:12.660] 163008 bytes read in 51 ms (3 MiB/s)
[2026-03-10 16:07:12.660] Load Remote Processor 5 with data@addr=0x82000000 163008 bytes: Success!
[2026-03-10 16:07:12.724] 625916 bytes read in 56 ms (10.7 MiB/s)
[2026-03-10 16:07:12.724] Load Remote Processor 6 with data@addr=0x82000000 625916 bytes: Success!
[2026-03-10 16:07:12.788] 163008 bytes read in 52 ms (3 MiB/s)
[2026-03-10 16:07:12.804] Load Remote Processor 7 with data@addr=0x82000000 163008 bytes: Success!
[2026-03-10 16:07:13.012] 14422344 bytes read in 198 ms (69.5 MiB/s)
[2026-03-10 16:07:13.012] Load Remote Processor 8 with data@addr=0x82000000 14422344 bytes: Success!
[2026-03-10 16:07:13.236] 14815616 bytes read in 202 ms (69.9 MiB/s)
[2026-03-10 16:07:13.236] Load Remote Processor 9 with data@addr=0x82000000 14815616 bytes: Success!
[2026-03-10 16:07:13.444] 14352768 bytes read in 198 ms (69.1 MiB/s)
[2026-03-10 16:07:13.460] Load Remote Processor 10 with data@addr=0x82000000 14352768 bytes: Success!
[2026-03-10 16:07:13.668] 14352768 bytes read in 198 ms (69.1 MiB/s)
[2026-03-10 16:07:13.668] Load Remote Processor 11 with data@addr=0x82000000 14352768 bytes: Success!
[2026-03-10 16:07:13.924] 22391296 bytes read in 233 ms (91.6 MiB/s)
[2026-03-10 16:07:13.924] 130752 bytes read in 5 ms (24.9 MiB/s)
[2026-03-10 16:07:13.940] Working FDT set to 88000000
[2026-03-10 16:07:13.940] 2176 bytes read in 5 ms (424.8 KiB/s)
[2026-03-10 16:07:13.972] 14561 bytes read in 4 ms (3.5 MiB/s)
[2026-03-10 16:07:14.132] ## Flattened Device Tree blob at 88000000
[2026-03-10 16:07:14.132] Booting using the fdt blob at 0x88000000
[2026-03-10 16:07:14.132] Working FDT set to 88000000
[2026-03-10 16:07:14.228] Loading Device Tree to 000000008fedd000, end 000000008fffffff ... OK
[2026-03-10 16:07:14.228] Working FDT set to 8fedd000
[2026-03-10 16:07:14.244]
[2026-03-10 16:07:14.244] Starting kernel ...
[2026-03-10 16:07:14.244]
[2026-03-10 16:07:14.292] [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[2026-03-10 16:07:14.292] [ 0.000000] Linux version 6.12.57-ti-g31b07ab8dfbc-dirty (oe-user@oe-host) (aarch64-oe-linux-gcc (GCC) 13.4.0, GNU ld (GNU Binutils) 2.42.0.20240723) #1 SMP PREEMPT Thu Dec 5
[2026-03-10 16:07:14.308] [ 0.000000] KASLR disabled due to lack of seed
[2026-03-10 16:07:14.308] [ 0.000000] Machine model: Texas Instruments J784S4 EVM
[2026-03-10 16:07:14.324] [ 0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002880000 (options '')
[2026-03-10 16:07:14.324] [ 0.000000] printk: legacy bootconsole [ns16550a0] enabled
[2026-03-10 16:07:14.324] [ 0.000000] efi: UEFI not found.
[2026-03-10 16:07:14.500] [ 0.000000] Reserved memory: created CMA memory pool at 0x0000000a80000000, size 1792 MiB
[2026-03-10 16:07:14.500] [ 0.000000] OF: reserved mem: initialized node linux-cma-buffers@a80000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.516] [ 0.000000] OF: reserved mem: 0x0000000a80000000..0x0000000aefffffff (1835008 KiB) map reusable linux-cma-buffers@a80000000
[2026-03-10 16:07:14.532] [ 0.000000] OF: reserved mem: initialized node vision_apps_shared-memories, compatible id dma-heap-carveout
[2026-03-10 16:07:14.532] [ 0.000000] OF: reserved mem: 0x0000000a00000000..0x0000000a3bffffff (983040 KiB) map non-reusable vision_apps_shared-memories
[2026-03-10 16:07:14.548] [ 0.000000] Reserved memory: created DMA memory pool at 0x0000000880000000, size 4096 MiB
[2026-03-10 16:07:14.564] [ 0.000000] OF: reserved mem: initialized node c7x-ddr-heaps-hi@880000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.564] [ 0.000000] OF: reserved mem: 0x0000000880000000..0x000000097fffffff (4194304 KiB) nomap non-reusable c7x-ddr-heaps-hi@880000000
[2026-03-10 16:07:14.580] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000be800000, size 24 MiB
[2026-03-10 16:07:14.580] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-buffers@be800000, compatible id shared-dma-pool
[2026-03-10 16:07:14.596] [ 0.000000] OF: reserved mem: 0x00000000be800000..0x00000000bfffffff (24576 KiB) nomap non-reusable vision-apps-r5f-virtual-eth-buffers@be800000
[2026-03-10 16:07:14.612] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000be000000, size 8 MiB
[2026-03-10 16:07:14.628] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-virtual-eth-queues@be000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.628] [ 0.000000] OF: reserved mem: 0x00000000be000000..0x00000000be7fffff (8192 KiB) nomap non-reusable vision-apps-r5f-virtual-eth-queues@be000000
[2026-03-10 16:07:14.644] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ba000000, size 64 MiB
[2026-03-10 16:07:14.660] [ 0.000000] OF: reserved mem: initialized node vision-apps-core-heap-memory-lo@ba000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.660] [ 0.000000] OF: reserved mem: 0x00000000ba000000..0x00000000bdffffff (65536 KiB) nomap non-reusable vision-apps-core-heap-memory-lo@ba000000
[2026-03-10 16:07:14.676] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b8100000, size 31 MiB
[2026-03-10 16:07:14.692] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_3-memory@b8100000, compatible id shared-dma-pool
[2026-03-10 16:07:14.692] [ 0.000000] OF: reserved mem: 0x00000000b8100000..0x00000000b9ffffff (31744 KiB) nomap non-reusable vision-apps-c71_3-memory@b8100000
[2026-03-10 16:07:14.708] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b8000000, size 1 MiB
[2026-03-10 16:07:14.708] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_3-dma-memory@b8000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.724] [ 0.000000] OF: reserved mem: 0x00000000b8000000..0x00000000b80fffff (1024 KiB) nomap non-reusable vision-apps-c71_3-dma-memory@b8000000
[2026-03-10 16:07:14.740] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b6100000, size 31 MiB
[2026-03-10 16:07:14.740] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_2-memory@b6100000, compatible id shared-dma-pool
[2026-03-10 16:07:14.756] [ 0.000000] OF: reserved mem: 0x00000000b6100000..0x00000000b7ffffff (31744 KiB) nomap non-reusable vision-apps-c71_2-memory@b6100000
[2026-03-10 16:07:14.772] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b6000000, size 1 MiB
[2026-03-10 16:07:14.772] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_2-dma-memory@b6000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.788] [ 0.000000] OF: reserved mem: 0x00000000b6000000..0x00000000b60fffff (1024 KiB) nomap non-reusable vision-apps-c71_2-dma-memory@b6000000
[2026-03-10 16:07:14.804] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b4100000, size 31 MiB
[2026-03-10 16:07:14.804] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_1-memory@b4100000, compatible id shared-dma-pool
[2026-03-10 16:07:14.820] [ 0.000000] OF: reserved mem: 0x00000000b4100000..0x00000000b5ffffff (31744 KiB) nomap non-reusable vision-apps-c71_1-memory@b4100000
[2026-03-10 16:07:14.836] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b4000000, size 1 MiB
[2026-03-10 16:07:14.836] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_1-dma-memory@b4000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.852] [ 0.000000] OF: reserved mem: 0x00000000b4000000..0x00000000b40fffff (1024 KiB) nomap non-reusable vision-apps-c71_1-dma-memory@b4000000
[2026-03-10 16:07:14.868] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2100000, size 31 MiB
[2026-03-10 16:07:14.868] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71_0-memory@b2100000, compatible id shared-dma-pool
[2026-03-10 16:07:14.884] [ 0.000000] OF: reserved mem: 0x00000000b2100000..0x00000000b3ffffff (31744 KiB) nomap non-reusable vision-apps-c71_0-memory@b2100000
[2026-03-10 16:07:14.900] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000b2000000, size 1 MiB
[2026-03-10 16:07:14.900] [ 0.000000] OF: reserved mem: initialized node vision-apps-c71-dma-memory@b2000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.916] [ 0.000000] OF: reserved mem: 0x00000000b2000000..0x00000000b20fffff (1024 KiB) nomap non-reusable vision-apps-c71-dma-memory@b2000000
[2026-03-10 16:07:14.932] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000af000000, size 48 MiB
[2026-03-10 16:07:14.932] [ 0.000000] OF: reserved mem: initialized node vision-apps-dma-memory@af000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.948] [ 0.000000] OF: reserved mem: 0x00000000af000000..0x00000000b1ffffff (49152 KiB) nomap non-reusable vision-apps-dma-memory@af000000
[2026-03-10 16:07:14.948] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ac000000, size 48 MiB
[2026-03-10 16:07:14.964] [ 0.000000] OF: reserved mem: initialized node vision-apps-rtos-ipc-memory-region@ac000000, compatible id shared-dma-pool
[2026-03-10 16:07:14.980] [ 0.000000] OF: reserved mem: 0x00000000ac000000..0x00000000aeffffff (49152 KiB) nomap non-reusable vision-apps-rtos-ipc-memory-region@ac000000
[2026-03-10 16:07:14.980] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
[2026-03-10 16:07:14.996] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a8100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.012] [ 0.000000] OF: reserved mem: 0x00000000a8100000..0x00000000a8ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a8100000
[2026-03-10 16:07:15.012] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[2026-03-10 16:07:15.028] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a8000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.044] [ 0.000000] OF: reserved mem: 0x00000000a8000000..0x00000000a80fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a8000000
[2026-03-10 16:07:15.044] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[2026-03-10 16:07:15.060] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a7100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.060] [ 0.000000] OF: reserved mem: 0x00000000a7100000..0x00000000a7ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a7100000
[2026-03-10 16:07:15.076] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[2026-03-10 16:07:15.092] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a7000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.092] [ 0.000000] OF: reserved mem: 0x00000000a7000000..0x00000000a70fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a7000000
[2026-03-10 16:07:15.108] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[2026-03-10 16:07:15.124] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a6100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.124] [ 0.000000] OF: reserved mem: 0x00000000a6100000..0x00000000a6ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a6100000
[2026-03-10 16:07:15.140] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[2026-03-10 16:07:15.156] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a6000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.156] [ 0.000000] OF: reserved mem: 0x00000000a6000000..0x00000000a60fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a6000000
[2026-03-10 16:07:15.172] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
[2026-03-10 16:07:15.172] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a5100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.188] [ 0.000000] OF: reserved mem: 0x00000000a5100000..0x00000000a5ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a5100000
[2026-03-10 16:07:15.204] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
[2026-03-10 16:07:15.204] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a5000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.220] [ 0.000000] OF: reserved mem: 0x00000000a5000000..0x00000000a50fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a5000000
[2026-03-10 16:07:15.236] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
[2026-03-10 16:07:15.236] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a4100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.252] [ 0.000000] OF: reserved mem: 0x00000000a4100000..0x00000000a4ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a4100000
[2026-03-10 16:07:15.268] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[2026-03-10 16:07:15.268] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a4000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.284] [ 0.000000] OF: reserved mem: 0x00000000a4000000..0x00000000a40fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a4000000
[2026-03-10 16:07:15.300] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 31 MiB
[2026-03-10 16:07:15.300] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a2100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.316] [ 0.000000] OF: reserved mem: 0x00000000a2100000..0x00000000a3ffffff (31744 KiB) nomap non-reusable vision-apps-r5f-memory@a2100000
[2026-03-10 16:07:15.332] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[2026-03-10 16:07:15.332] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a2000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.348] [ 0.000000] OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a2000000
[2026-03-10 16:07:15.348] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[2026-03-10 16:07:15.364] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a1100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.380] [ 0.000000] OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a1100000
[2026-03-10 16:07:15.380] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[2026-03-10 16:07:15.396] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a1000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.412] [ 0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a1000000
[2026-03-10 16:07:15.412] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[2026-03-10 16:07:15.428] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-memory@a0100000, compatible id shared-dma-pool
[2026-03-10 16:07:15.428] [ 0.000000] OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable vision-apps-r5f-memory@a0100000
[2026-03-10 16:07:15.444] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[2026-03-10 16:07:15.460] [ 0.000000] OF: reserved mem: initialized node vision-apps-r5f-dma-memory@a0000000, compatible id shared-dma-pool
[2026-03-10 16:07:15.460] [ 0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable vision-apps-r5f-dma-memory@a0000000
[2026-03-10 16:07:15.476] [ 0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000
[2026-03-10 16:07:15.492] [ 0.000000] Zone ranges:
[2026-03-10 16:07:15.492] [ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[2026-03-10 16:07:15.508] [ 0.000000] DMA32 empty
[2026-03-10 16:07:15.508] [ 0.000000] Normal [mem 0x0000000100000000-0x0000000fffffffff]
[2026-03-10 16:07:15.508] [ 0.000000] Movable zone start for each node
[2026-03-10 16:07:15.508] [ 0.000000] Early memory node ranges
[2026-03-10 16:07:15.524] [ 0.000000] node 0: [mem 0x0000000080000000-0x000000009e7fffff]
[2026-03-10 16:07:15.524] [ 0.000000] node 0: [mem 0x000000009e800000-0x00000000a8ffffff]
[2026-03-10 16:07:15.524] [ 0.000000] node 0: [mem 0x00000000a9000000-0x00000000abffffff]
[2026-03-10 16:07:15.540] [ 0.000000] node 0: [mem 0x00000000ac000000-0x00000000bfffffff]
[2026-03-10 16:07:15.540] [ 0.000000] node 0: [mem 0x00000000c0000000-0x00000000ffffffff]
[2026-03-10 16:07:15.556] [ 0.000000] node 0: [mem 0x0000000880000000-0x000000097fffffff]
[2026-03-10 16:07:15.556] [ 0.000000] node 0: [mem 0x0000000980000000-0x0000000fffffffff]
[2026-03-10 16:07:15.556] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000fffffffff]
[2026-03-10 16:07:15.668] [ 0.000000] psci: probing for conduit method from DT.
[2026-03-10 16:07:15.668] [ 0.000000] psci: PSCIv1.1 detected in firmware.
[2026-03-10 16:07:15.684] [ 0.000000] psci: Using standard PSCI v0.2 function IDs
[2026-03-10 16:07:15.684] [ 0.000000] psci: Trusted OS migration not required
[2026-03-10 16:07:15.684] [ 0.000000] psci: SMC Calling Convention v1.5
[2026-03-10 16:07:15.684] [ 0.000000] percpu: Embedded 22 pages/cpu s51736 r8192 d30184 u90112
[2026-03-10 16:07:15.700] [ 0.000000] Detected PIPT I-cache on CPU0
[2026-03-10 16:07:15.700] [ 0.000000] CPU features: detected: GIC system register CPU interface
[2026-03-10 16:07:15.716] [ 0.000000] CPU features: detected: Spectre-v3a
[2026-03-10 16:07:15.716] [ 0.000000] CPU features: detected: Spectre-BHB
[2026-03-10 16:07:15.716] [ 0.000000] CPU features: detected: ARM erratum 1742098
[2026-03-10 16:07:15.716] [ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[2026-03-10 16:07:15.732] [ 0.000000] alternatives: applying boot alternatives
[2026-03-10 16:07:15.732] [ 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(ospt
[2026-03-10 16:07:15.780] [ 0.000000] Unknown kernel command line parameters "mtdparts=47040000.spi.0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),57088k@8m(o.
[2026-03-10 16:07:15.828] [ 0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[2026-03-10 16:07:15.828] [ 0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[2026-03-10 16:07:15.844] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 8388608
[2026-03-10 16:07:15.844] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[2026-03-10 16:07:15.860] [ 0.000000] software IO TLB: area num 8.
[2026-03-10 16:07:15.876] [ 0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
[2026-03-10 16:07:16.132] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[2026-03-10 16:07:16.132] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[2026-03-10 16:07:16.148] [ 0.000000] rcu: RCU event tracing is enabled.
[2026-03-10 16:07:16.148] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[2026-03-10 16:07:16.164] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[2026-03-10 16:07:16.164] [ 0.000000] Tracing variant of Tasks RCU enabled.
[2026-03-10 16:07:16.164] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[2026-03-10 16:07:16.180] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[2026-03-10 16:07:16.180] [ 0.000000] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[2026-03-10 16:07:16.196] [ 0.000000] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[2026-03-10 16:07:16.196] [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[2026-03-10 16:07:16.212] [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[2026-03-10 16:07:16.212] [ 0.000000] GICv3: 960 SPIs implemented
[2026-03-10 16:07:16.212] [ 0.000000] GICv3: 0 Extended SPIs implemented
[2026-03-10 16:07:16.212] [ 0.000000] Root IRQ handler: gic_handle_irq
[2026-03-10 16:07:16.228] [ 0.000000] GICv3: GICv3 features: 16 PPIs
[2026-03-10 16:07:16.228] [ 0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=1
[2026-03-10 16:07:16.228] [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[2026-03-10 16:07:16.244] [ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[2026-03-10 16:07:16.244] [ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[2026-03-10 16:07:16.244] [ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[2026-03-10 16:07:16.260] [ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @980800000 (flat, esz 8, psz 64K, shr 0)
[2026-03-10 16:07:16.276] [ 0.000000] ITS: using cache flushing for cmd queue
[2026-03-10 16:07:16.276] [ 0.000000] GICv3: using LPI property table @0x0000000980070000
[2026-03-10 16:07:16.276] [ 0.000000] GIC: using cache flushing for LPI property table
[2026-03-10 16:07:16.292] [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000980080000
[2026-03-10 16:07:16.292] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[2026-03-10 16:07:16.308] [ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[2026-03-10 16:07:16.308] [ 0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[2026-03-10 16:07:16.324] [ 0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[2026-03-10 16:07:16.324] [ 0.008553] Console: colour dummy device 80x25
[2026-03-10 16:07:16.340] [ 0.013135] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[2026-03-10 16:07:16.340] [ 0.023809] pid_max: default: 32768 minimum: 301
[2026-03-10 16:07:16.340] [ 0.028569] LSM: initializing lsm=capability,selinux
[2026-03-10 16:07:16.356] [ 0.033685] SELinux: Initializing.
[2026-03-10 16:07:16.356] [ 0.037625] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[2026-03-10 16:07:16.372] [ 0.045426] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[2026-03-10 16:07:16.372] [ 0.055179] rcu: Hierarchical SRCU implementation.
[2026-03-10 16:07:16.372] [ 0.060092] rcu: Max phase no-delay instances is 1000.
[2026-03-10 16:07:16.388] [ 0.065546] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[2026-03-10 16:07:16.388] [ 0.074174] EFI services will not be available.
[2026-03-10 16:07:16.404] [ 0.079042] smp: Bringing up secondary CPUs ...
[2026-03-10 16:07:16.404] I/TC: Secondary CPU 1 initializing
[2026-03-10 16:07:16.404] I/TC: Secondary CPU 1 switching to normal world boot
[2026-03-10 16:07:16.404] I/TC: Secondary CPU 2 initializing
[2026-03-10 16:07:16.420] I/TC: Secondary CPU 2 switching to normal world boot
[2026-03-10 16:07:16.420] I/TC: Secondary CPU 3 initializing
[2026-03-10 16:07:16.420] I/TC: Secondary CPU 3 switching to normal world boot
[2026-03-10 16:07:16.436] I/TC: Secondary CPU 4 initializing
[2026-03-10 16:07:16.436] I/TC: Secondary CPU 4 switching to normal world boot
[2026-03-10 16:07:16.436] I/TC: Secondary CPU 5 initializing
[2026-03-10 16:07:16.436] I/TC: Secondary CPU 5 switching to normal world boot
[2026-03-10 16:07:16.452] I/TC: Secondary CPU 6 initializing
[2026-03-10 16:07:16.452] I/TC: Secondary CPU 6 switching to normal world boot
[2026-03-10 16:07:16.452] I/TC: Secondary CPU 7 initializing
[2026-03-10 16:07:16.452] I/TC: Secondary CPU 7 switching to normal world boot
[2026-03-10 16:07:16.468] [ 0.092159] Detected PIPT I-cache on CPU1
[2026-03-10 16:07:16.468] [ 0.092208] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[2026-03-10 16:07:16.468] [ 0.092223] GICv3: CPU1: using allocated LPI pending table @0x0000000980090000
[2026-03-10 16:07:16.484] [ 0.092257] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[2026-03-10 16:07:16.484] [ 0.100782] Detected PIPT I-cache on CPU2
[2026-03-10 16:07:16.500] [ 0.100812] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
[2026-03-10 16:07:16.500] [ 0.100825] GICv3: CPU2: using allocated LPI pending table @0x00000009800a0000
[2026-03-10 16:07:16.500] [ 0.100850] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
[2026-03-10 16:07:16.516] [ 0.109333] Detected PIPT I-cache on CPU3
[2026-03-10 16:07:16.516] [ 0.109365] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
[2026-03-10 16:07:16.532] [ 0.109377] GICv3: CPU3: using allocated LPI pending table @0x00000009800b0000
[2026-03-10 16:07:16.532] [ 0.109402] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
[2026-03-10 16:07:16.532] [ 0.117935] Detected PIPT I-cache on CPU4
[2026-03-10 16:07:16.548] [ 0.117999] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
[2026-03-10 16:07:16.548] [ 0.118013] GICv3: CPU4: using allocated LPI pending table @0x00000009800c0000
[2026-03-10 16:07:16.564] [ 0.118048] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
[2026-03-10 16:07:16.564] [ 0.126586] Detected PIPT I-cache on CPU5
[2026-03-10 16:07:16.564] [ 0.126625] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
[2026-03-10 16:07:16.580] [ 0.126639] GICv3: CPU5: using allocated LPI pending table @0x00000009800d0000
[2026-03-10 16:07:16.580] [ 0.126664] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
[2026-03-10 16:07:16.596] [ 0.135164] Detected PIPT I-cache on CPU6
[2026-03-10 16:07:16.596] [ 0.135206] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
[2026-03-10 16:07:16.596] [ 0.135219] GICv3: CPU6: using allocated LPI pending table @0x00000009800e0000
[2026-03-10 16:07:16.612] [ 0.135245] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
[2026-03-10 16:07:16.612] [ 0.143758] Detected PIPT I-cache on CPU7
[2026-03-10 16:07:16.612] [ 0.143801] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
[2026-03-10 16:07:16.628] [ 0.143814] GICv3: CPU7: using allocated LPI pending table @0x00000009800f0000
[2026-03-10 16:07:16.628] [ 0.143840] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
[2026-03-10 16:07:16.644] [ 0.143935] smp: Brought up 1 node, 8 CPUs
[2026-03-10 16:07:16.644] [ 0.324941] SMP: Total of 8 processors activated.
[2026-03-10 16:07:16.644] [ 0.329746] CPU: All CPU(s) started at EL2
[2026-03-10 16:07:16.660] [ 0.333936] CPU features: detected: 32-bit EL0 Support
[2026-03-10 16:07:16.660] [ 0.339187] CPU features: detected: CRC32 instructions
[2026-03-10 16:07:16.660] [ 0.344472] alternatives: applying system-wide alternatives
[2026-03-10 16:07:16.676] [ 0.350516] Memory: 25310460K/33554432K available (13056K kernel code, 1258K rwdata, 4676K rodata, 2752K init, 643K bss, 6397412K reserved, 1835008K cma-reserved)
[2026-03-10 16:07:16.692] [ 0.365960] devtmpfs: initialized
[2026-03-10 16:07:16.708] [ 0.381619] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[2026-03-10 16:07:16.708] [ 0.391598] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[2026-03-10 16:07:16.740] [ 0.421995] 27120 pages in range for non-PLT usage
[2026-03-10 16:07:16.740] [ 0.422011] 518640 pages in range for PLT usage
[2026-03-10 16:07:16.756] [ 0.427153] pinctrl core: initialized pinctrl subsystem
[2026-03-10 16:07:16.756] [ 0.437460] DMI not present or invalid.
[2026-03-10 16:07:16.756] [ 0.443004] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[2026-03-10 16:07:16.772] [ 0.450374] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[2026-03-10 16:07:16.772] [ 0.458381] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[2026-03-10 16:07:16.788] [ 0.467085] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[2026-03-10 16:07:16.788] [ 0.475302] audit: initializing netlink subsys (disabled)
[2026-03-10 16:07:16.804] [ 0.480971] audit: type=2000 audit(0.328:1): state=initialized audit_enabled=0 res=1
[2026-03-10 16:07:16.804] [ 0.481205] thermal_sys: Registered thermal governor 'step_wise'
[2026-03-10 16:07:16.820] [ 0.488894] thermal_sys: Registered thermal governor 'power_allocator'
[2026-03-10 16:07:16.820] [ 0.495054] cpuidle: using governor menu
[2026-03-10 16:07:16.820] [ 0.505804] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[2026-03-10 16:07:16.836] [ 0.512851] ASID allocator initialised with 65536 entries
[2026-03-10 16:07:16.836] [ 0.523500] /bus@100000/interrupt-controller@1800000: Fixed dependency cycle(s) with /bus@100000/interrupt-controller@1800000
[2026-03-10 16:07:16.868] [ 0.544342] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[2026-03-10 16:07:16.868] [ 0.551296] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[2026-03-10 16:07:16.884] [ 0.557702] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[2026-03-10 16:07:16.884] [ 0.564639] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[2026-03-10 16:07:16.884] [ 0.571044] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[2026-03-10 16:07:16.900] [ 0.577980] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[2026-03-10 16:07:16.900] [ 0.584384] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[2026-03-10 16:07:16.916] [ 0.591321] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[2026-03-10 16:07:16.916] [ 0.598658] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
[2026-03-10 16:07:16.932] [ 0.607745] iommu: Default domain type: Translated
[2026-03-10 16:07:16.932] [ 0.612649] iommu: DMA domain TLB invalidation policy: strict mode
[2026-03-10 16:07:16.932] [ 0.619444] SCSI subsystem initialized
[2026-03-10 16:07:16.948] [ 0.623476] usbcore: registered new interface driver usbfs
[2026-03-10 16:07:16.948] [ 0.629101] usbcore: registered new interface driver hub
[2026-03-10 16:07:16.948] [ 0.634550] usbcore: registered new device driver usb
[2026-03-10 16:07:16.964] [ 0.640007] pps_core: LinuxPPS API ver. 1 registered
[2026-03-10 16:07:16.964] [ 0.645082] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[2026-03-10 16:07:16.980] [ 0.654423] PTP clock support registered
[2026-03-10 16:07:16.980] [ 0.658449] EDAC MC: Ver: 3.0.0
[2026-03-10 16:07:16.980] [ 0.661805] scmi_core: SCMI protocol bus registered
[2026-03-10 16:07:16.980] [ 0.666939] FPGA manager framework
[2026-03-10 16:07:16.996] [ 0.670448] Advanced Linux Sound Architecture Driver Initialized.
[2026-03-10 16:07:16.996] [ 0.677160] vgaarb: loaded
[2026-03-10 16:07:16.996] [ 0.680106] clocksource: Switched to clocksource arch_sys_counter
[2026-03-10 16:07:17.012] [ 0.686486] VFS: Disk quotas dquot_6.6.0
[2026-03-10 16:07:17.012] [ 0.690509] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[2026-03-10 16:07:17.028] [ 0.701503] Carveout Heap: Exported 960 MiB at 0x0000000a00000000
[2026-03-10 16:07:17.028] [ 0.707797] NET: Registered PF_INET protocol family
[2026-03-10 16:07:17.028] [ 0.713076] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[2026-03-10 16:07:17.044] [ 0.725850] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[2026-03-10 16:07:17.060] [ 0.734888] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[2026-03-10 16:07:17.060] [ 0.742827] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[2026-03-10 16:07:17.076] [ 0.751914] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[2026-03-10 16:07:17.076] [ 0.760370] TCP: Hash tables configured (established 262144 bind 65536)
[2026-03-10 16:07:17.092] [ 0.767249] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[2026-03-10 16:07:17.092] [ 0.774606] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[2026-03-10 16:07:17.108] [ 0.782506] NET: Registered PF_UNIX/PF_LOCAL protocol family
[2026-03-10 16:07:17.108] [ 0.788644] RPC: Registered named UNIX socket transport module.
[2026-03-10 16:07:17.108] [ 0.794707] RPC: Registered udp transport module.
[2026-03-10 16:07:17.124] [ 0.799512] RPC: Registered tcp transport module.
[2026-03-10 16:07:17.124] [ 0.804316] RPC: Registered tcp-with-tls transport module.
[2026-03-10 16:07:17.124] [ 0.809920] RPC: Registered tcp NFSv4.1 backchannel transport module.
[2026-03-10 16:07:17.140] [ 0.816504] NET: Registered PF_XDP protocol family
[2026-03-10 16:07:17.140] [ 0.821411] PCI: CLS 0 bytes, default 64
[2026-03-10 16:07:17.140] [ 0.826435] Initialise system trusted keyrings
[2026-03-10 16:07:17.156] [ 0.831095] workingset: timestamp_bits=46 max_order=23 bucket_order=0
[2026-03-10 16:07:17.156] [ 0.837852] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[2026-03-10 16:07:17.156] [ 0.843962] NFS: Registering the id_resolver key type
[2026-03-10 16:07:17.172] [ 0.849142] Key type id_resolver registered
[2026-03-10 16:07:17.172] [ 0.853416] Key type id_legacy registered
[2026-03-10 16:07:17.172] [ 0.857524] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[2026-03-10 16:07:17.188] [ 0.864374] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[2026-03-10 16:07:17.220] [ 0.893776] Key type asymmetric registered
[2026-03-10 16:07:17.220] [ 0.897963] Asymmetric key parser 'x509' registered
[2026-03-10 16:07:17.220] [ 0.902978] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[2026-03-10 16:07:17.236] [ 0.910633] io scheduler mq-deadline registered
[2026-03-10 16:07:17.236] [ 0.915267] io scheduler kyber registered
[2026-03-10 16:07:17.236] [ 0.919376] io scheduler bfq registered
[2026-03-10 16:07:17.252] [ 0.925833] pinctrl-single 4301c000.pinctrl: 13 pins, size 52
[2026-03-10 16:07:17.252] [ 0.931814] pinctrl-single 4301c038.pinctrl: 11 pins, size 44
[2026-03-10 16:07:17.252] [ 0.937883] pinctrl-single 4301c068.pinctrl: 72 pins, size 288
[2026-03-10 16:07:17.268] [ 0.944149] pinctrl-single 4301c190.pinctrl: 1 pins, size 4
[2026-03-10 16:07:17.268] [ 0.949984] pinctrl-single 11c000.pinctrl: 72 pins, size 288
[2026-03-10 16:07:17.268] [ 0.956070] pinctrl-single 104200.pinctrl: 20 pins, size 80
[2026-03-10 16:07:17.284] [ 0.961849] pinctrl-single 104280.pinctrl: 8 pins, size 32
[2026-03-10 16:07:17.284] [ 0.968157] ledtrig-cpu: registered to indicate activity on CPUs
[2026-03-10 16:07:17.300] [ 0.978022] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
[2026-03-10 16:07:17.316] [ 0.991010] loop: module loaded
[2026-03-10 16:07:17.316] [ 0.994820] megasas: 07.727.03.00-rc1
[2026-03-10 16:07:17.316] [ 1.000767] tun: Universal TUN/TAP device driver, 1.6
[2026-03-10 16:07:17.332] [ 1.006531] VFIO - User Level meta-driver version: 0.3
[2026-03-10 16:07:17.332] [ 1.012543] usbcore: registered new interface driver usb-storage
[2026-03-10 16:07:17.332] [ 1.019072] i2c_dev: i2c /dev entries driver
[2026-03-10 16:07:17.348] [ 1.024164] sdhci: Secure Digital Host Controller Interface driver
[2026-03-10 16:07:17.348] [ 1.030481] sdhci: Copyright(c) Pierre Ossman
[2026-03-10 16:07:17.348] [ 1.035065] sdhci-pltfm: SDHCI platform and OF driver helper
[2026-03-10 16:07:17.364] [ 1.041299] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[2026-03-10 16:07:17.364] [ 1.048391] usbcore: registered new interface driver usbhid
[2026-03-10 16:07:17.380] [ 1.054086] usbhid: USB HID core driver
[2026-03-10 16:07:17.380] [ 1.058853] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 (0,8000003f) counters available
[2026-03-10 16:07:17.380] [ 1.068760] optee: probing for conduit method.
[2026-03-10 16:07:17.396] I/TC: Reserved shared memory is enabled
[2026-03-10 16:07:17.396] I/TC: Dynamic shared memory is enabled
[2026-03-10 16:07:17.396] I/TC: Normal World virtualization support is disabled
[2026-03-10 16:07:17.412] I/TC: Asynchronous notifications are disabled
[2026-03-10 16:07:17.412] [ 1.073331] optee: revision 4.7 (a9690ae39995af36)
[2026-03-10 16:07:17.412] [ 1.089786] optee: dynamic shared memory is enabled
[2026-03-10 16:07:17.412] [ 1.100059] optee: initialized driver
[2026-03-10 16:07:17.428] [ 1.100173] random: crng init done
[2026-03-10 16:07:17.428] [ 1.105286] Initializing XFRM netlink socket
[2026-03-10 16:07:17.428] [ 1.111651] NET: Registered PF_PACKET protocol family
[2026-03-10 16:07:17.444] [ 1.116864] Key type dns_resolver registered
[2026-03-10 16:07:17.444] [ 1.125341] registered taskstats version 1
[2026-03-10 16:07:17.444] [ 1.129681] Loading compiled-in X.509 certificates
[2026-03-10 16:07:17.460] [ 1.142149] ti-sci 44083000.system-controller: ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 16:07:17.556] [ 1.232068] omap_i2c 42120000.i2c: bus 0 rev0.12 at 400 kHz
[2026-03-10 16:07:17.556] [ 1.238464] pca953x 3-0020: supply vcc not found, using dummy regulator
[2026-03-10 16:07:17.572] [ 1.245292] pca953x 3-0020: using no AI
[2026-03-10 16:07:17.588] [ 1.265185] pca953x 3-0022: supply vcc not found, using dummy regulator
[2026-03-10 16:07:17.588] [ 1.272003] pca953x 3-0022: using AI
[2026-03-10 16:07:17.604] [ 1.276903] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
[2026-03-10 16:07:17.604] [ 1.282972] pca953x 4-0020: supply vcc not found, using dummy regulator
[2026-03-10 16:07:17.604] [ 1.289787] pca953x 4-0020: using no AI
[2026-03-10 16:07:17.620] [ 1.308593] omap_i2c 2030000.i2c: bus 4 rev0.12 at 400 kHz
[2026-03-10 16:07:17.636] [ 1.314469] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 177 domain created
[2026-03-10 16:07:17.636] [ 1.323018] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 10 domain created
[2026-03-10 16:07:17.652] [ 1.332288] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 283 domain created
[2026-03-10 16:07:17.668] [ 1.340964] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 321 created
[2026-03-10 16:07:17.668] [ 1.353548] ti-udma 311a0000.dma-controller: Number of rings: 48
[2026-03-10 16:07:17.684] [ 1.361253] ti-udma 311a0000.dma-controller: Channels: 48 (bchan: 0, tchan: 16, rchan: 32)
[2026-03-10 16:07:17.684] [ 1.371218] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:328
[2026-03-10 16:07:17.700] [ 1.381109] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[2026-03-10 16:07:17.700] [ 1.387873] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[2026-03-10 16:07:17.716] [ 1.397445] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:315
[2026-03-10 16:07:17.732] [ 1.407607] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[2026-03-10 16:07:17.732] [ 1.414375] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[2026-03-10 16:07:17.748] [ 1.422534] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 271, base_baud = 6000000) is a 8250
[2026-03-10 16:07:17.748] [ 1.432244] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 272, base_baud = 3000000) is a 8250
[2026-03-10 16:07:17.768] [ 1.441100] printk: legacy console [ttyS2] enabled
[2026-03-10 16:07:17.768] [ 1.441100] printk: legacy console [ttyS2] enabled
[2026-03-10 16:07:17.768] [ 1.450823] printk: legacy bootconsole [ns16550a0] disabled
[2026-03-10 16:07:17.768] [ 1.450823] printk: legacy bootconsole [ns16550a0] disabled
[2026-03-10 16:07:17.784] [ 1.465924] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 16:07:17.832] [ 1.512114] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 16:07:17.848] [ 1.523019] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2026-03-10 16:07:17.848] [ 1.531349] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 16:07:17.864] [ 1.538558] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 16:07:17.864] [ 1.545961] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
[2026-03-10 16:07:17.880] [ 1.555997] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 16:07:17.880] [ 1.568773] am65-cpsw-nuss c200000.ethernet: Use random MAC address
[2026-03-10 16:07:17.928] [ 1.608112] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 16:07:17.944] [ 1.618784] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
[2026-03-10 16:07:17.944] [ 1.626915] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 16:07:17.960] [ 1.634038] am65-cpsw-nuss c200000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 16:07:17.960] [ 1.641253] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:250000000, add_val:3 pps:0
[2026-03-10 16:07:17.976] [ 1.651660] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
[2026-03-10 16:07:17.976] [ 1.660509] mmc0: CQHCI version 5.10
[2026-03-10 16:07:18.024] [ 1.700679] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[2026-03-10 16:07:18.104] [ 1.792164] mmc0: Command Queue Engine enabled
[2026-03-10 16:07:18.120] [ 1.796611] mmc0: new HS400 MMC card at address 0001
[2026-03-10 16:07:18.120] [ 1.801949] mmcblk0: mmc0:0001 G1M15L 29.6 GiB
[2026-03-10 16:07:18.120] [ 1.807403] mmcblk0: p1 p2
[2026-03-10 16:07:18.136] [ 1.810474] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB
[2026-03-10 16:07:18.136] [ 1.816027] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB
[2026-03-10 16:07:18.136] [ 1.821541] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0)
[2026-03-10 16:07:18.248] [ 1.929619] tps6594-rtc tps6594-rtc.4.auto: registered as rtc0
[2026-03-10 16:07:18.264] [ 1.937416] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[2026-03-10 16:07:18.264] [ 1.944922] j721e-pcie 2900000.pcie: IO 0x4000001000..0x4000100fff -> 0x0000001000
[2026-03-10 16:07:18.280] [ 1.953016] j721e-pcie 2900000.pcie: MEM 0x4000101000..0x40ffffffff -> 0x0000101000
[2026-03-10 16:07:18.280] [ 1.961102] j721e-pcie 2900000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2026-03-10 16:07:19.400] [ 3.076728] j721e-pcie 2900000.pcie: PCI host bridge to bus 0000:00
[2026-03-10 16:07:19.400] [ 3.083016] pci_bus 0000:00: root bus resource [bus 00-ff]
[2026-03-10 16:07:19.400] [ 3.088496] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0x1000-0x100fff])
[2026-03-10 16:07:19.416] [ 3.097525] pci_bus 0000:00: root bus resource [mem 0x4000101000-0x40ffffffff] (bus address [0x00101000-0xffffffff])
[2026-03-10 16:07:19.432] [ 3.108054] pci 0000:00:00.0: [104c:b012] type 01 class 0x060400 PCIe Root Port
[2026-03-10 16:07:19.432] [ 3.115350] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[2026-03-10 16:07:19.448] [ 3.125003] pci 0000:00:00.0: PCI bridge to [bus 00]
[2026-03-10 16:07:19.448] [ 3.129961] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
[2026-03-10 16:07:19.448] [ 3.136043] pci 0000:00:00.0: bridge window [mem 0x00000000-0x000fffff]
[2026-03-10 16:07:19.464] [ 3.142833] pci 0000:00:00.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[2026-03-10 16:07:19.464] [ 3.150646] pci 0000:00:00.0: supports D1
[2026-03-10 16:07:19.480] [ 3.154647] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[2026-03-10 16:07:19.480] [ 3.162473] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[2026-03-10 16:07:19.496] [ 3.170585] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[2026-03-10 16:07:19.496] [ 3.177208] pci 0000:00:00.0: PCI bridge to [bus 01]
[2026-03-10 16:07:19.496] [ 3.182173] pci_bus 0000:00: resource 4 [io 0x0000-0xfffff]
[2026-03-10 16:07:19.512] [ 3.187821] pci_bus 0000:00: resource 5 [mem 0x4000101000-0x40ffffffff]
[2026-03-10 16:07:19.512] [ 3.194480] pcieport 0000:00:00.0: of_irq_parse_pci: failed with rc=-22
[2026-03-10 16:07:19.528] [ 3.201301] pcieport 0000:00:00.0: PME: Signaling with IRQ 534
[2026-03-10 16:07:19.528] [ 3.207300] pcieport 0000:00:00.0: AER: enabled with IRQ 534
[2026-03-10 16:07:19.528] [ 3.213227] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[2026-03-10 16:07:19.544] [ 3.220719] j721e-pcie 2910000.pcie: IO 0x4100001000..0x4100100fff -> 0x0000001000
[2026-03-10 16:07:19.544] [ 3.228806] j721e-pcie 2910000.pcie: MEM 0x4100101000..0x41ffffffff -> 0x0000101000
[2026-03-10 16:07:19.560] [ 3.236890] j721e-pcie 2910000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2026-03-10 16:07:20.664] [ 4.348375] j721e-pcie 2910000.pcie: PCI host bridge to bus 0001:00
[2026-03-10 16:07:20.680] [ 4.354638] pci_bus 0001:00: root bus resource [bus 00-ff]
[2026-03-10 16:07:20.680] [ 4.360126] pci_bus 0001:00: root bus resource [io 0x100000-0x1fffff] (bus address [0x1000-0x100fff])
[2026-03-10 16:07:20.696] [ 4.369417] pci_bus 0001:00: root bus resource [mem 0x4100101000-0x41ffffffff] (bus address [0x00101000-0xffffffff])
[2026-03-10 16:07:20.696] [ 4.379941] pci 0001:00:00.0: [104c:b012] type 01 class 0x060400 PCIe Root Port
[2026-03-10 16:07:20.712] [ 4.387237] pci_bus 0001:00: 2-byte config write to 0001:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[2026-03-10 16:07:20.712] [ 4.396889] pci 0001:00:00.0: PCI bridge to [bus 00]
[2026-03-10 16:07:20.728] [ 4.401846] pci 0001:00:00.0: bridge window [io 0x0000-0x0fff]
[2026-03-10 16:07:20.728] [ 4.407929] pci 0001:00:00.0: bridge window [mem 0x00000000-0x000fffff]
[2026-03-10 16:07:20.728] [ 4.414709] pci 0001:00:00.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[2026-03-10 16:07:20.744] [ 4.422520] pci 0001:00:00.0: supports D1
[2026-03-10 16:07:20.744] [ 4.426520] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[2026-03-10 16:07:20.760] [ 4.434319] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[2026-03-10 16:07:20.760] [ 4.442430] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[2026-03-10 16:07:20.776] [ 4.449041] pci 0001:00:00.0: PCI bridge to [bus 01]
[2026-03-10 16:07:20.776] [ 4.454003] pci_bus 0001:00: resource 4 [io 0x100000-0x1fffff]
[2026-03-10 16:07:20.776] [ 4.459910] pci_bus 0001:00: resource 5 [mem 0x4100101000-0x41ffffffff]
[2026-03-10 16:07:20.792] [ 4.466554] pcieport 0001:00:00.0: of_irq_parse_pci: failed with rc=-22
[2026-03-10 16:07:20.792] [ 4.473322] pcieport 0001:00:00.0: PME: Signaling with IRQ 536
[2026-03-10 16:07:20.792] [ 4.479293] pcieport 0001:00:00.0: AER: enabled with IRQ 536
[2026-03-10 16:07:20.808] [ 4.485766] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
[2026-03-10 16:07:20.808] [ 4.496154] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
[2026-03-10 16:07:20.824] [ 4.509162] 7 fixed-partitions partitions found on MTD device 47040000.spi.0
[2026-03-10 16:07:20.840] [ 4.516216] Creating 7 MTD partitions on "47040000.spi.0":
[2026-03-10 16:07:20.840] [ 4.521709] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[2026-03-10 16:07:20.840] [ 4.527949] 0x000000080000-0x000000280000 : "ospi.tispl"
[2026-03-10 16:07:20.856] [ 4.533867] 0x000000280000-0x000000680000 : "ospi.u-boot"
[2026-03-10 16:07:20.856] [ 4.539955] 0x000000680000-0x0000006c0000 : "ospi.env"
[2026-03-10 16:07:20.872] [ 4.545681] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
[2026-03-10 16:07:20.872] [ 4.552006] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[2026-03-10 16:07:20.872] [ 4.557966] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[2026-03-10 16:07:20.904] [ 4.585714] 7 fixed-partitions partitions found on MTD device 47050000.spi.0
[2026-03-10 16:07:20.920] [ 4.592767] Creating 7 MTD partitions on "47050000.spi.0":
[2026-03-10 16:07:20.920] [ 4.598261] 0x000000000000-0x000000080000 : "qspi.tiboot3"
[2026-03-10 16:07:20.920] [ 4.604368] 0x000000080000-0x000000280000 : "qspi.tispl"
[2026-03-10 16:07:20.936] [ 4.610349] 0x000000280000-0x000000680000 : "qspi.u-boot"
[2026-03-10 16:07:20.936] [ 4.616344] 0x000000680000-0x0000006c0000 : "qspi.env"
[2026-03-10 16:07:20.936] [ 4.622069] 0x0000006c0000-0x000000700000 : "qspi.env.backup"
[2026-03-10 16:07:20.952] [ 4.628414] 0x000000800000-0x000003fc0000 : "qspi.rootfs"
[2026-03-10 16:07:20.952] [ 4.634383] 0x000003fc0000-0x000004000000 : "qspi.phypattern"
[2026-03-10 16:07:20.968] [ 4.641067] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 16:07:21.000] [ 4.688111] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 16:07:21.016] [ 4.698928] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2026-03-10 16:07:21.032] [ 4.707246] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 16:07:21.032] [ 4.714456] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 16:07:21.048] [ 4.721832] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
[2026-03-10 16:07:21.064] [ 4.738905] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
[2026-03-10 16:07:21.064] [ 4.748664] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 16:07:21.080] [ 4.761451] am65-cpsw-nuss c200000.ethernet: Use random MAC address
[2026-03-10 16:07:21.112] [ 4.800109] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 16:07:21.128] [ 4.810946] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
[2026-03-10 16:07:21.144] [ 4.819108] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 16:07:21.144] [ 4.826231] am65-cpsw-nuss c200000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 16:07:21.160] [ 4.833491] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:200000000, add_val:4 pps:0
[2026-03-10 16:07:21.176] [ 4.850404] am65-cpsw-nuss c200000.ethernet: set new flow-id-base 82
[2026-03-10 16:07:21.176] [ 4.860974] clk: Disabling unused clocks
[2026-03-10 16:07:21.192] [ 4.861235] mmc1: CQHCI version 5.10
[2026-03-10 16:07:21.192] [ 4.877144] PM: genpd: Disabling unused power domains
[2026-03-10 16:07:21.200] [ 4.882302] ALSA device list:
[2026-03-10 16:07:21.200] [ 4.885339] No soundcards found.
[2026-03-10 16:07:21.232] [ 4.906676] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
[2026-03-10 16:07:21.232] [ 4.914268] Waiting for root device PARTUUID=076c4a2a-02...
[2026-03-10 16:07:21.296] [ 4.977149] mmc1: new ultra high speed SDR104 SDHC card at address aaaa
[2026-03-10 16:07:21.296] [ 4.984175] mmcblk1: mmc1:aaaa SL32G 29.7 GiB
[2026-03-10 16:07:21.312] [ 4.992992] mmcblk1: p1 p2
[2026-03-10 16:07:21.504] [ 5.188445] EXT4-fs (mmcblk1p2): recovery complete
[2026-03-10 16:07:21.520] [ 5.194333] EXT4-fs (mmcblk1p2): mounted filesystem d1eb63e9-b2b2-4688-9715-01bef2133809 r/w with ordered data mode. Quota mode: none.
[2026-03-10 16:07:21.520] [ 5.206470] VFS: Mounted root (ext4 filesystem) on device 179:98.
[2026-03-10 16:07:21.536] [ 5.218351] devtmpfs: mounted
[2026-03-10 16:07:21.536] [ 5.222358] Freeing unused kernel memory: 2752K
[2026-03-10 16:07:21.552] [ 5.226983] Run /sbin/init as init process
[2026-03-10 16:07:21.760] [ 5.432894] systemd[1]: System time before build time, advancing clock.
[2026-03-10 16:07:21.791] [ 5.471953] NET: Registered PF_INET6 protocol family
[2026-03-10 16:07:21.792] [ 5.477593] Segment Routing with IPv6
[2026-03-10 16:07:21.807] [ 5.481276] In-situ OAM (IOAM) with IPv6
[2026-03-10 16:07:21.839] [ 5.516552] systemd[1]: systemd 255.21^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO)
[2026-03-10 16:07:21.872] [ 5.548419] systemd[1]: Detected architecture arm64.
[2026-03-10 16:07:21.872]
[2026-03-10 16:07:21.872] Welcome to Arago 2025.01!
[2026-03-10 16:07:21.887]
[2026-03-10 16:07:21.888] [ 5.566178] systemd[1]: Hostname set to <j784s4-evm>.
[2026-03-10 16:07:22.160] [ 5.845404] systemd[1]: Queued start job for default target Graphical Interface.
[2026-03-10 16:07:22.207] [ 5.891026] systemd[1]: Created slice Slice /system/getty.
[2026-03-10 16:07:22.223] [ OK ] Created slice Slice /system/getty.
[2026-03-10 16:07:22.223] [ 5.909131] systemd[1]: Created slice Slice /system/modprobe.
[2026-03-10 16:07:22.240] [ OK ] Created slice Slice /system/modprobe.
[2026-03-10 16:07:22.255] [ 5.929029] systemd[1]: Created slice Slice /system/serial-getty.
[2026-03-10 16:07:22.256] [ OK ] Created slice Slice /system/serial-getty.
[2026-03-10 16:07:22.271] [ 5.948867] systemd[1]: Created slice User and Session Slice.
[2026-03-10 16:07:22.272] [ OK ] Created slice User and Session Slice.
[2026-03-10 16:07:22.287] [ 5.968270] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[2026-03-10 16:07:22.288] [ OK ] Started Dispatch Password Requests to Console Directory Watch.
[2026-03-10 16:07:22.304] [ 5.988233] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[2026-03-10 16:07:22.319] [ OK ] Started Forward Password Requests to Wall Directory Watch.
[2026-03-10 16:07:22.320] [ 6.008179] systemd[1]: Expecting device /dev/ttyS2...
[2026-03-10 16:07:22.335] Expecting device /dev/ttyS2...
[2026-03-10 16:07:22.336] [ 6.020207] systemd[1]: Reached target Path Units.
[2026-03-10 16:07:22.351] [ OK ] Reached target Path Units.
[2026-03-10 16:07:22.352] [ 6.032162] systemd[1]: Reached target Remote File Systems.
[2026-03-10 16:07:22.352] [ OK ] Reached target Remote File Systems.
[2026-03-10 16:07:22.367] [ 6.048162] systemd[1]: Reached target Slice Units.
[2026-03-10 16:07:22.367] [ OK ] Reached target Slice Units.
[2026-03-10 16:07:22.384] [ 6.060163] systemd[1]: Reached target Swaps.
[2026-03-10 16:07:22.384] [ OK ] Reached target Swaps.
[2026-03-10 16:07:22.432] [ 6.118809] systemd[1]: Listening on RPCbind Server Activation Socket.
[2026-03-10 16:07:22.448] [ OK ] Listening on RPCbind Server Activation Socket.
[2026-03-10 16:07:22.448] [ 6.136253] systemd[1]: Reached target RPC Port Mapper.
[2026-03-10 16:07:22.464] [ OK ] Reached target RPC Port Mapper.
[2026-03-10 16:07:22.480] [ 6.157622] systemd[1]: Listening on Process Core Dump Socket.
[2026-03-10 16:07:22.480] [ OK ] Listening on Process Core Dump Socket.
[2026-03-10 16:07:22.496] [ 6.176304] systemd[1]: Listening on initctl Compatibility Named Pipe.
[2026-03-10 16:07:22.496] [ OK ] Listening on initctl Compatibility Named Pipe.
[2026-03-10 16:07:22.512] [ 6.196651] systemd[1]: Listening on Journal Audit Socket.
[2026-03-10 16:07:22.527] [ OK ] Listening on Journal Audit Socket.
[2026-03-10 16:07:22.528] [ 6.216383] systemd[1]: Listening on Journal Socket (/dev/log).
[2026-03-10 16:07:22.544] [ OK ] Listening on Journal Socket (/dev/log).
[2026-03-10 16:07:22.560] [ 6.236412] systemd[1]: Listening on Journal Socket.
[2026-03-10 16:07:22.560] [ OK ] Listening on Journal Socket.
[2026-03-10 16:07:22.576] [ 6.252427] systemd[1]: Listening on Network Service Netlink Socket.
[2026-03-10 16:07:22.576] [ OK ] Listening on Network Service Netlink Socket.
[2026-03-10 16:07:22.591] [ 6.276385] systemd[1]: Listening on udev Control Socket.
[2026-03-10 16:07:22.607] [ OK ] Listening on udev Control Socket.
[2026-03-10 16:07:22.608] [ 6.292348] systemd[1]: Listening on udev Kernel Socket.
[2026-03-10 16:07:22.624] [ OK ] Listening on udev Kernel Socket.
[2026-03-10 16:07:22.624] [ 6.308367] systemd[1]: Listening on User Database Manager Socket.
[2026-03-10 16:07:22.640] [ OK ] Listening on User Database Manager Socket.
[2026-03-10 16:07:22.688] [ 6.368321] systemd[1]: Mounting Huge Pages File System...
[2026-03-10 16:07:22.688] Mounting Huge Pages File System...
[2026-03-10 16:07:22.704] [ 6.382309] systemd[1]: Mounting POSIX Message Queue File System...
[2026-03-10 16:07:22.704] Mounting POSIX Message Queue File System...
[2026-03-10 16:07:22.720] [ 6.402499] systemd[1]: Mounting Kernel Debug File System...
[2026-03-10 16:07:22.720] Mounting Kernel Debug File System...
[2026-03-10 16:07:22.736] [ 6.416381] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[2026-03-10 16:07:22.751] [ 6.433713] systemd[1]: Mounting Temporary Directory /tmp...
[2026-03-10 16:07:22.751] Mounting Temporary Directory /tmp...
[2026-03-10 16:07:22.767] [ 6.454667] systemd[1]: Starting Create List of Static Device Nodes...
[2026-03-10 16:07:22.783] Starting Create List of Static Device Nodes...
[2026-03-10 16:07:22.799] [ 6.474241] systemd[1]: Starting Load Kernel Module configfs...
[2026-03-10 16:07:22.799] Starting Load Kernel Module configfs...
[2026-03-10 16:07:22.815] [ 6.490624] systemd[1]: Starting Load Kernel Module drm...
[2026-03-10 16:07:22.815] Starting Load Kernel Module drm...
[2026-03-10 16:07:22.831] [ 6.506539] systemd[1]: Starting Load Kernel Module fuse...
[2026-03-10 16:07:22.831] Starting Load Kernel Module fuse...
[2026-03-10 16:07:22.847] [ 6.525294] systemd[1]: Starting Start psplash boot splash screen...
[2026-03-10 16:07:22.847] Starting Start psplash boot splash screen...
[2026-03-10 16:07:22.863] [ 6.541883] fuse: init (API version 7.41)
[2026-03-10 16:07:22.864] [ 6.550253] systemd[1]: Starting RPC Bind...
[2026-03-10 16:07:22.879] Starting RPC Bind...
[2026-03-10 16:07:22.880] [ 6.560345] systemd[1]: File System Check on Root Device was skipped because of an unmet condition check (ConditionPathIsReadWrite=!/).
[2026-03-10 16:07:22.895] [ 6.576568] systemd[1]: Starting Journal Service...
[2026-03-10 16:07:22.896] Starting Journal Service...
[2026-03-10 16:07:22.911] [ 6.595388] systemd[1]: Starting Load Kernel Modules...
[2026-03-10 16:07:22.928] Starting Load Kernel Modules...
[2026-03-10 16:07:22.928] [ 6.614741] systemd[1]: Starting Generate network units from Kernel command line...
[2026-03-10 16:07:22.944] Starting Generate network units from Kernel command line...
[2026-03-10 16:07:22.944] [ 6.629918] cryptodev: loading out-of-tree module taints kernel.
[2026-03-10 16:07:22.960] [ 6.636727] sysctl table check failed: ioctl/(null) procname is null
[2026-03-10 16:07:22.960] [ 6.637267] systemd-journald[173]: Collecting audit messages is enabled.
[2026-03-10 16:07:22.976] [ 6.643081] sysctl table check failed: ioctl/(null) No proc_handler
[2026-03-10 16:07:22.976] [ 6.656032] cryptodev: driver 1.14 loaded.
[2026-03-10 16:07:23.008] [ 6.692563] systemd[1]: Starting Remount Root and Kernel File Systems...
[2026-03-10 16:07:23.024] Starting Remount Root and Kernel File Systems...
[2026-03-10 16:07:23.039] [ 6.718925] systemd[1]: Starting Coldplug All udev Devices...
[2026-03-10 16:07:23.040] Starting Coldplug All udev Devices...
[2026-03-10 16:07:23.056] [ 6.739988] systemd[1]: Started RPC Bind.
[2026-03-10 16:07:23.056] [ 6.740427] EXT4-fs (mmcblk1p2): re-mounted d1eb63e9-b2b2-4688-9715-01bef2133809.
[2026-03-10 16:07:23.072] [ OK ] Started RPC Bind.
[2026-03-10 16:07:23.087] [ 6.765454] systemd[1]: Started Journal Service.
[2026-03-10 16:07:23.087] [ OK ] Started Journal Service.
[2026-03-10 16:07:23.103] [ OK ] Mounted Huge Pages File System.
[2026-03-10 16:07:23.119] [ OK ] Mounted POSIX Message Queue File System.
[2026-03-10 16:07:23.136] [ OK ] Mounted Kernel Debug File System.
[2026-03-10 16:07:23.151] [ OK ] Mounted Temporary Directory /tmp.
[2026-03-10 16:07:23.168] [ OK ] Finished Create List of Static Device Nodes.
[2026-03-10 16:07:23.183] [ OK ] Finished Load Kernel Module configfs.
[2026-03-10 16:07:23.184] [ OK ] Finished Load Kernel Module drm.
[2026-03-10 16:07:23.199] [ OK ] Finished Load Kernel Module fuse.
[2026-03-10 16:07:23.215] [FAILED] Failed to start Start psplash boot splash screen.
[2026-03-10 16:07:23.215] See 'systemctl status psplash-start.service' for details.
[2026-03-10 16:07:23.231] [DEPEND] Dependency failed for Start psplas…temd progress communication helper.
[2026-03-10 16:07:23.247] [ OK ] Finished Load Kernel Modules.
[2026-03-10 16:07:23.263] [ OK ] Finished Generate network units from Kernel command line.
[2026-03-10 16:07:23.279] [ OK ] Finished Remount Root and Kernel File Systems.
[2026-03-10 16:07:23.344] Mounting FUSE Control File System...
[2026-03-10 16:07:23.359] Mounting Kernel Configuration File System...
[2026-03-10 16:07:23.391] Starting Flush Journal to Persistent Storage...
[2026-03-10 16:07:23.407] Starting Apply Kernel Variables...
[2026-03-10 16:07:23.407] Starting Create Static Device Nodes in /dev gr[ 7.095464] systemd-journald[173]: Received client request to flush runtime journal.
[2026-03-10 16:07:23.423] acefully...
[2026-03-10 16:07:23.439] [ OK ] Mounted FUSE Control File System.
[2026-03-10 16:07:23.455] [ OK ] Mounted Kernel Configuration File System.
[2026-03-10 16:07:23.471] [ OK ] Finished Flush Journal to Persistent Storage.
[2026-03-10 16:07:23.487] [ OK ] Finished Apply Kernel Variables.
[2026-03-10 16:07:23.503] [ OK ] Finished Create Static Device Nodes in /dev gracefully.
[2026-03-10 16:07:23.567] Starting Create Static Device Nodes in /dev...
[2026-03-10 16:07:23.584] [ OK ] Finished Create Static Device Nodes in /dev.
[2026-03-10 16:07:23.599] [ OK ] Finished Coldplug All udev Devices.
[2026-03-10 16:07:23.616] [ OK ] Reached target Preparation for Local File Systems.
[2026-03-10 16:07:23.632] Mounting /var/volatile...
[2026-03-10 16:07:23.632] [ 7.317972] audit: type=1334 audit(1748544503.880:2): prog-id=6 op=LOAD
[2026-03-10 16:07:23.648] [ 7.324622] audit: type=1334 audit(1748544503.888:3): prog-id=7 op=LOAD
[2026-03-10 16:07:23.648] Starting Rule-based Manager for Device Events and Files...
[2026-03-10 16:07:23.664] [ OK ] Mounted /var/volatile.
[2026-03-10 16:07:23.680] Starting Load/Save OS Random Seed...
[2026-03-10 16:07:23.695] [ OK ] Reached target Local File Systems.
[2026-03-10 16:07:23.696] Starting Create System Files and Directories...
[2026-03-10 16:07:23.743] [ OK ] Finished Load/Save OS Random Seed.
[2026-03-10 16:07:23.759] [ OK ] Finished Create System Files and Directories.
[2026-03-10 16:07:23.775] [ 7.460323] audit: type=1334 audit(1748544504.024:4): prog-id=8 op=LOAD
[2026-03-10 16:07:23.823] Starting Network Name Resolution...
[2026-03-10 16:07:23.823] [ 7.506175] audit: type=1334 audit(1748544504.068:5): prog-id=9 op=LOAD
[2026-03-10 16:07:23.839] Starting Network Time Synchronization...
[2026-03-10 16:07:23.839] Starting Record System Boot/Shutdown in UTMP...
[2026-03-10 16:07:23.855] [ 7.543786] audit: type=1334 audit(1748544504.104:6): prog-id=10 op=LOAD
[2026-03-10 16:07:23.871] [ 7.550553] audit: type=1334 audit(1748544504.112:7): prog-id=11 op=LOAD
[2026-03-10 16:07:23.871] [ 7.557285] audit: type=1334 audit(1748544504.120:8): prog-id=12 op=LOAD
[2026-03-10 16:07:23.887] Starting User Database Manager...
[2026-03-10 16:07:23.903] [ OK ] Finished Record System Boot/Shutdown in UTMP.
[2026-03-10 16:07:23.951] [ OK ] Started User Database Manager.
[2026-03-10 16:07:23.967] [ OK ] Started Rule-based Manager for Device Events and Files.
[2026-03-10 16:07:24.015] [ OK ] Found device /dev/ttyS2.
[2026-03-10 16:07:24.159] [ OK ] Started Network Time Synchronization.
[2026-03-10 16:07:24.160] [ OK ] Started Network Name Resolution.
[2026-03-10 16:07:24.319] [ OK ] Reached target Host and Network Name Lookups.
[2026-03-10 16:07:24.336] [ OK ] Reached target System Initialization.
[2026-03-10 16:07:24.352] [ OK ] Started Daily Cleanup of Temporary Directories.
[2026-03-10 16:07:24.367] [ OK ] Reached target System Time Set.
[2026-03-10 16:07:24.383] [ 8.070454] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
[2026-03-10 16:07:24.399] [ OK ] Started Daily rotation of log files.
[2026-03-10 16:07:24.415] [ OK ] Reached target Timer Units.
[2026-03-10 16:07:24.415] [ 8.095443] CAN device driver interface
[2026-03-10 16:07:24.415] [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[2026-03-10 16:07:24.431] [ 8.115489] mc: Linux media interface: v0.10
[2026-03-10 16:07:24.431] [ OK ] Listening on D-Bus System Message Bus Socket.
[2026-03-10 16:07:24.463] [ 8.147052] videodev: Linux video capture interface: v2.00
[2026-03-10 16:07:24.480] Starting Docker Socket for the API...
[2026-03-10 16:07:24.480] [ 8.156404] PVR_K: 268: Read BVNC 36.53.104.796 from HW device registers
[2026-03-10 16:07:24.480] [ 8.156425] at24 0-0050: supply vcc not found, using dummy regulator
[2026-03-10 16:07:24.496] [ 8.167545] PVR_K: 268: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
[2026-03-10 16:07:24.511] [ 8.184329] [drm] Initialized pvr 25.2.6850647 for 4e20000000.gpu on minor 0
[2026-03-10 16:07:24.512] [ 8.186986] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[2026-03-10 16:07:24.512] [ 8.197363] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 16:07:24.528] [ 8.213920] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
[ 8.228546] m_can_platform 40528000.can: m_can device registered (irq=657, version=32)
[2026-03-10 16:07:24.559]
[2026-03-10 16:07:24.559] [ 8.233123] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 16:07:24.575] [ OK ] Listening on PC/SC Smart Card Daemon Activation Socket.
[2026-03-10 16:07:24.575] [ 8.264197] audit: type=1334 audit(1748544806.776:9): prog-id=13 op=LOAD
[2026-03-10 16:07:24.591] Starting D-Bus System Message Bus...
[2026-03-10 16:07:24.592] [ 8.271726] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 16:07:24.607] [ 8.272469] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[2026-03-10 16:07:24.607] [ 8.295002] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 16:07:24.623] Starting Reboot and dump vmcore via kexec.[ 8.302104] platform 41000000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:24.639] [ 8.308681] m_can_platform 40568000.can: m_can device registered (irq=665, version=32)
[2026-03-10 16:07:24.640] ..
[2026-03-10 16:07:24.640] [ 8.314281] platform 41000000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[2026-03-10 16:07:24.655] [ 8.322512] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 16:07:24.656] [ 8.338689] remoteproc remoteproc0: 41000000.r5f is available
[2026-03-10 16:07:24.671] [ 8.342245] m_can_platform 26a1000.can: m_can device registered (irq=668, version=32)
[2026-03-10 16:07:24.671] [ 8.345191] remoteproc remoteproc0: attaching to 41000000.r5f
[2026-03-10 16:07:24.672] [ OK ] Listening on Docker Socket for the [ 8.361865] k3-dsp-rproc 64800000.dsp: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[2026-03-10 16:07:24.688] API.
[2026-03-10 16:07:24.688] [ 8.374315] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a0000000
[2026-03-10 16:07:24.703] [ 8.374716] k3-dsp-rproc 64800000.dsp: configured DSP for IPC-only mode
[2026-03-10 16:07:24.704] [ 8.392051] vdec 4210000.video-codec: OPP table not found in device tree
[2026-03-10 16:07:24.719] [ 8.404698] remoteproc remoteproc1: 64800000.dsp is available
[2026-03-10 16:07:24.735] [ 8.409682] virtio_rpmsg_bus virtio0: rpmsg host is online
[2026-03-10 16:07:24.735] [ 8.410527] remoteproc remoteproc1: attaching to 64800000.dsp
[2026-03-10 16:07:24.736] [ 8.417835] rproc-virtio rproc-virtio.8.auto: registered virtio0 (type 7)
[2026-03-10 16:07:24.751] [ 8.422072] remoteproc remoteproc1: unsupported resource 65538
[2026-03-10 16:07:24.751] [ 8.428495] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
[2026-03-10 16:07:24.767] [ 8.428537] remoteproc remoteproc0: remote processor 41000000.r5f is now attached
[2026-03-10 16:07:24.767] [ 8.428743] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[2026-03-10 16:07:24.783] [ 8.434484] rproc-virtio rproc-virtio.9.auto: assigned reserved memory node vision-apps-c71-dma-memory@b2000000
[2026-03-10 16:07:24.783] [ 8.435112] virtio_rpmsg_bus virtio1: rpmsg host is online
[2026-03-10 16:07:24.799] [ 8.442239] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:24.799] [ 8.449526] platform 41400000.r5f: configured R5F for remoteproc mode
[2026-03-10 16:07:24.799] [ 8.468538] vdec 4210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[2026-03-10 16:07:24.815] [ 8.472690] rproc-virtio rproc-virtio.9.auto: registered virtio1 (type 7)
[2026-03-10 16:07:24.815] [ 8.472950] platform 41400000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a1000000
[2026-03-10 16:07:24.831] [ 8.473865] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[2026-03-10 16:07:24.847] [ 8.473881] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
[2026-03-10 16:07:24.847] [ 8.473886] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
[2026-03-10 16:07:24.863] [ 8.473891] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[2026-03-10 16:07:24.864] [ 8.474286] remoteproc remoteproc2: 41400000.r5f is available
[2026-03-10 16:07:24.879] [ 8.474416] remoteproc remoteproc2: Direct firmware load for j784s4-mcu-r5f0_1-fw failed with error -2
[2026-03-10 16:07:24.880] [ 8.474424] remoteproc remoteproc2: powering up 41400000.r5f
[2026-03-10 16:07:24.895] [ 8.474442] remoteproc remoteproc2: Direct firmware load for j784s4-mcu-r5f0_1-fw failed with error -2
[2026-03-10 16:07:24.896] [ 8.474447] remoteproc remoteproc2: request_firmware failed: -2
[2026-03-10 16:07:24.911] [ 8.479353] vdec 4210000.video-codec: Product Code: 0x521c
[2026-03-10 16:07:24.911] [ 8.479358] vdec 4210000.video-codec: Firmware Revision: 363254
[2026-03-10 16:07:24.912] [ 8.599047] remoteproc remoteproc1: remote processor 64800000.dsp is now attached
[2026-03-10 16:07:24.927] [ 8.599104] platform 5c00000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:24.928] [ OK ] Created slice Slice /system/tee-sup[ 8.609297] k3-dsp-rproc 65800000.dsp: assigned reserved memory node vision-apps-c71_1-dma-memory@b4000000
[2026-03-10 16:07:24.944] plicant.
[2026-03-10 16:07:24.944] [ 8.610704] m_can_platform 40568000.can mcu_mcan1: renamed from can1
[2026-03-10 16:07:24.959] [ 8.613048] platform 5c00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[2026-03-10 16:07:24.960] [ 8.616931] vdec 4220000.video-codec: OPP table not found in device tree
[2026-03-10 16:07:24.975] [ 8.622152] vdec 4220000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[2026-03-10 16:07:24.975] [ 8.622165] vdec 4220000.video-codec: Product Code: 0x521c
[2026-03-10 16:07:24.991] [ 8.622169] vdec 4220000.video-codec: Firmware Revision: 363254
[2026-03-10 16:07:24.991] [ 8.628443] scsi host0: ufshcd
[2026-03-10 16:07:24.991] [ 8.630920] k3-dsp-rproc 65800000.dsp: configured DSP for IPC-only mode
[2026-03-10 16:07:25.007] [ 8.648693] remoteproc remoteproc4: 65800000.dsp is available
[2026-03-10 16:07:25.007] [ 8.658875] m_can_platform 26a1000.can main_mcan16: renamed from can2
[2026-03-10 16:07:25.008] [ 8.659262] remoteproc remoteproc4: attaching to 65800000.dsp
[2026-03-10 16:07:25.023] [ 8.681971] remoteproc remoteproc3: 5c00000.r5f is available
[2026-03-10 16:07:25.024] [ 8.686747] remoteproc remoteproc4: unsupported resource 65538
[2026-03-10 16:07:25.024] [ 8.687183] m_can_platform 40528000.can mcu_mcan0: renamed from can0
[2026-03-10 16:07:25.040] [ 8.692985] remoteproc remoteproc3: attaching to 5c00000.r5f
[2026-03-10 16:07:25.040] [ 8.698719] rproc-virtio rproc-virtio.10.auto: assigned reserved memory node vision-apps-c71_1-dma-memory@b4000000
[2026-03-10 16:07:25.055] [ 8.704724] rproc-virtio rproc-virtio.11.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a2000000
[2026-03-10 16:07:25.056] [ 8.710988] virtio_rpmsg_bus virtio2: rpmsg host is online
[2026-03-10 16:07:25.071] [ 8.714949] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.072] [ 8.717660] virtio_rpmsg_bus virtio3: rpmsg host is online
[2026-03-10 16:07:25.087] [ 8.717863] scsi 0:0:0:49488: Well-known LUN TOSHIBA THGAF8G8T23BAILB 0300 PQ: 0 ANSI: 6
[2026-03-10 16:07:25.088] [ 8.718715] scsi 0:0:0:49476: Well-known LUN TOSHIBA THGAF8G8T23BAILB 0300 PQ: 0 ANSI: 6
[2026-03-10 16:07:25.103] [ 8.719664] cdns-ufshcd 4e84000.ufs: ufshcd_scsi_add_wlus: BOOT WLUN not found
[2026-03-10 16:07:25.103] [ 8.722276] rproc-virtio rproc-virtio.10.auto: registered virtio2 (type 7)
[2026-03-10 16:07:25.104] [ 8.725378] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.119] [ 8.732924] rproc-virtio rproc-virtio.11.auto: registered virtio3 (type 7)
[2026-03-10 16:07:25.119] [ 8.742783] remoteproc remoteproc4: remote processor 65800000.dsp is now attached
[2026-03-10 16:07:25.135] [ 8.748268] remoteproc remoteproc3: remote processor 5c00000.r5f is now attached
[2026-03-10 16:07:25.135] [ 8.758396] k3-dsp-rproc 66800000.dsp: assigned reserved memory node vision-apps-c71_2-dma-memory@b6000000
[2026-03-10 16:07:25.151] [ 8.761359] platform 5d00000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:25.151] [ 8.770785] k3-dsp-rproc 66800000.dsp: configured DSP for IPC-only mode
[2026-03-10 16:07:25.167] [ 8.778101] platform 5d00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[2026-03-10 16:07:25.167] [ 8.785644] remoteproc remoteproc5: 66800000.dsp is available
[2026-03-10 16:07:25.184] [ 8.793134] remoteproc remoteproc6: 5d00000.r5f is available
[2026-03-10 16:07:25.184] [ 8.799351] remoteproc remoteproc5: attaching to 66800000.dsp
[2026-03-10 16:07:25.184] [ 8.806159] remoteproc remoteproc6: attaching to 5d00000.r5f
[2026-03-10 16:07:25.199] [ 8.813969] remoteproc remoteproc5: unsupported resource 65538
[2026-03-10 16:07:25.200] [ 8.821353] rproc-virtio rproc-virtio.13.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a4000000
[2026-03-10 16:07:25.215] [ 8.830692] rproc-virtio rproc-virtio.12.auto: assigned reserved memory node vision-apps-c71_2-dma-memory@b6000000
[2026-03-10 16:07:25.216] [ 8.837542] virtio_rpmsg_bus virtio4: rpmsg host is online
[2026-03-10 16:07:25.231] [ 8.844397] virtio_rpmsg_bus virtio5: rpmsg host is online
[2026-03-10 16:07:25.232] [ 8.844417] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.232] [ 8.847645] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.247] [ 8.852568] rproc-virtio rproc-virtio.13.auto: registered virtio4 (type 7)
[2026-03-10 16:07:25.248] [ 8.858314] rproc-virtio rproc-virtio.12.auto: registered virtio5 (type 7)
[2026-03-10 16:07:25.263] [ 8.863945] remoteproc remoteproc6: remote processor 5d00000.r5f is now attached
[2026-03-10 16:07:25.263] [ 8.866134] platform 5e00000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:25.279] [ 8.869729] remoteproc remoteproc5: remote processor 66800000.dsp is now attached
[2026-03-10 16:07:25.279] [ 8.875754] platform 5e00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a5000000
[2026-03-10 16:07:25.295] [ 8.882148] k3-dsp-rproc 67800000.dsp: assigned reserved memory node vision-apps-c71_3-dma-memory@b8000000
[2026-03-10 16:07:25.295] [ 8.891969] remoteproc remoteproc7: 5e00000.r5f is available
[2026-03-10 16:07:25.311] [ 8.902709] k3-dsp-rproc 67800000.dsp: configured DSP for IPC-only mode
[2026-03-10 16:07:25.311] [ 8.907296] remoteproc remoteproc7: attaching to 5e00000.r5f
[2026-03-10 16:07:25.312] [ 8.912998] remoteproc remoteproc8: 67800000.dsp is available
[2026-03-10 16:07:25.327] [ 8.920117] rproc-virtio rproc-virtio.14.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a5000000
[2026-03-10 16:07:25.327] [ 8.926875] remoteproc remoteproc8: attaching to 67800000.dsp
[2026-03-10 16:07:25.343] [ 8.934286] virtio_rpmsg_bus virtio6: rpmsg host is online
[2026-03-10 16:07:25.343] [ 8.940838] remoteproc remoteproc8: unsupported resource 65538
[2026-03-10 16:07:25.343] [ 8.940978] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.359] [ 8.948030] rproc-virtio rproc-virtio.14.auto: registered virtio6 (type 7)
[2026-03-10 16:07:25.359] [ 8.954214] rproc-virtio rproc-virtio.15.auto: assigned reserved memory node vision-apps-c71_3-dma-memory@b8000000
[2026-03-10 16:07:25.375] [ 8.961667] remoteproc remoteproc7: remote processor 5e00000.r5f is now attached
[2026-03-10 16:07:25.375] [ 8.971321] virtio_rpmsg_bus virtio7: rpmsg host is online
[2026-03-10 16:07:25.391] [ 8.974445] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.392] [ 8.980757] platform 5f00000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:25.407] [ 8.986031] rproc-virtio rproc-virtio.15.auto: registered virtio7 (type 7)
[2026-03-10 16:07:25.407] [ 8.992764] platform 5f00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
[2026-03-10 16:07:25.423] [ 8.998262] remoteproc remoteproc8: remote processor 67800000.dsp is now attached
[2026-03-10 16:07:25.423] [ 9.004431] remoteproc remoteproc9: 5f00000.r5f is available
[2026-03-10 16:07:25.423] [ 9.110542] remoteproc remoteproc9: attaching to 5f00000.r5f
[2026-03-10 16:07:25.439] [ OK ] Reached target Socket Units.
[2026-03-10 16:07:25.439] [ 9.116439] rproc-virtio rproc-virtio.16.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a6000000
[2026-03-10 16:07:25.455] [ 9.132625] virtio_rpmsg_bus virtio8: rpmsg host is online
[2026-03-10 16:07:25.455] [ 9.138146] rproc-virtio rproc-virtio.16.auto: registered virtio8 (type 7)
[2026-03-10 16:07:25.471] [ 9.138955] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.471] [ 9.145017] remoteproc remoteproc9: remote processor 5f00000.r5f is now attached
[2026-03-10 16:07:25.471] [ OK ] Started D-Bus System Message Bus 9.161232] platform 5900000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:25.487] m.
[2026-03-10 16:07:25.487] [ 9.171339] platform 5900000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
[2026-03-10 16:07:25.503] [ 9.181067] remoteproc remoteproc10: 5900000.r5f is available
[2026-03-10 16:07:25.503] [ 9.186877] remoteproc remoteproc10: attaching to 5900000.r5f
[2026-03-10 16:07:25.519] [ OK ] Finished Reboot and dump vmcore via[ 9.192887] rproc-virtio rproc-virtio.17.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a7000000
[2026-03-10 16:07:25.535] kexec.
[2026-03-10 16:07:25.535] [ 9.208945] virtio_rpmsg_bus virtio9: rpmsg host is online
[2026-03-10 16:07:25.535] [ 9.215025] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.535] [ 9.215160] rproc-virtio rproc-virtio.17.auto: registered virtio9 (type 7)
[2026-03-10 16:07:25.551] [ 9.229043] remoteproc remoteproc10: remote processor 5900000.r5f is now attached
[2026-03-10 16:07:25.551] [ 9.236927] platform 5a00000.r5f: configured R5F for IPC-only mode
[2026-03-10 16:07:25.567] [ 9.243278] platform 5a00000.r5f: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
[2026-03-10 16:07:25.567] [ 9.252917] remoteproc remoteproc11: 5a00000.r5f is available
[2026-03-10 16:07:25.583] [ 9.258726] remoteproc remoteproc11: attaching to 5a00000.r5f
[2026-03-10 16:07:25.583] [ 9.264740] rproc-virtio rproc-virtio.18.auto: assigned reserved memory node vision-apps-r5f-dma-memory@a8000000
[2026-03-10 16:07:25.599] [ 9.275566] virtio_rpmsg_bus virtio10: rpmsg host is online
[2026-03-10 16:07:25.599] [ 9.281245] rproc-virtio rproc-virtio.18.auto: registered virtio10 (type 7)
[2026-03-10 16:07:25.615] [ 9.281633] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0xd
[2026-03-10 16:07:25.615] [ 9.288245] remoteproc remoteproc11: remote processor 5a00000.r5f is now attached
[2026-03-10 16:07:25.616] [ 9.303016] virtio_rpmsg_bus virtio5: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.631] [ 9.310242] virtio_rpmsg_bus virtio7: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.632] [ 9.317443] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.647] [ 9.324650] virtio_rpmsg_bus virtio2: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.648] [ 9.331864] virtio_rpmsg_bus virtio6: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.663] [ 9.339045] virtio_rpmsg_bus virtio8: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.663] [ 9.346200] virtio_rpmsg_bus virtio3: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.679] [ 9.353378] virtio_rpmsg_bus virtio4: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.679] [ 9.361169] virtio_rpmsg_bus virtio5: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.695] [ 9.368887] virtio_rpmsg_bus virtio7: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.695] [ 9.376486] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.711] [ 9.384177] virtio_rpmsg_bus virtio2: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.711] [ 9.391870] virtio_rpmsg_bus virtio6: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.712] [ 9.399547] virtio_rpmsg_bus virtio8: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.727] [ 9.407918] virtio_rpmsg_bus virtio3: creating channel ti.ethfw.notifyservice addr 0x18
[2026-03-10 16:07:25.728] [ 9.416110] virtio_rpmsg_bus virtio3: creating channel ti.ethfw.ethdevice addr 0x22
[2026-03-10 16:07:25.744] [ 9.423934] virtio_rpmsg_bus virtio3: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.744] [ 9.431621] virtio_rpmsg_bus virtio4: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.775] [ OK ] Created slice Slice /system/systemd[ 9.451459] virtio_rpmsg_bus virtio10: creating channel rpmsg_chrdev addr 0x15
[2026-03-10 16:07:25.776] -fsck.
[2026-03-10 16:07:25.791] Expecting device /dev/mmcblk0p1...
[2026-03-10 16:07:25.791] [ 9.470787] virtio_rpmsg_bus virtio10: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.807] Expecting device /dev/mmcblk0p2...
[2026-03-10 16:07:25.807] [ 9.481911] virtio_rpmsg_bus virtio9: creating channel rpmsg_chrdev addr 0x15
[ 9.494562] virtio_rpmsg_bus virtio9: creating channel ti.ipc4.ping-pong addr 0xe
[2026-03-10 16:07:25.823]
[2026-03-10 16:07:25.839] [ OK ] Reached target Basic System.
[2026-03-10 16:07:25.840] [ 9.520616] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: 1 Virtual Switch Port(s), 1 Virtual MAC Only Port(s)
[2026-03-10 16:07:25.855] [ 9.533008] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: Virt Port: 25, Type: Switch Port, Iface: eth2, Num TX: 2, Num RX: 1, Token: 2500
[2026-03-10 16:07:25.871] [ 9.546210] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: Virt Port: 1, Type: MAC Port, Iface: eth3, Num TX: 1, Num RX: 1, Token: 100
[2026-03-10 16:07:25.919] Starting Save/Restore Sound Card State...
[2026-03-10 16:07:25.935] [ OK ] Started Job spooling tools.
[2026-03-10 16:07:25.951] Starting Avahi mDNS/DNS-SD Stack...
[2026-03-10 16:07:25.983] [ OK ] Started Periodic Command Scheduler.
[2026-03-10 16:07:25.999] Starting Print notice about GPLv3 packages...
[2026-03-10 16:07:26.015] Starting IPv6 Packet Filtering Framework...
[2026-03-10 16:07:26.016] Starting IPv4 Packet Filtering Framework...
[2026-03-10 16:07:26.031] [ OK ] Started irqbalance daemon.
[2026-03-10 16:07:26.032] [ OK ] Started Multiple Spanning Tree Protocol Daemon.
[2026-03-10 16:07:26.032] Starting Telephony service...
[2026-03-10 16:07:26.047] Starting Expand the rootfs part[ 9.723933] audit: type=1334 audit(1748544808.236:10): prog-id=14 op=LOAD
[2026-03-10 16:07:26.048] iti…to full size of the boot device....
[2026-03-10 16:07:26.063] [ OK 9.735657] audit: type=1334 audit(1748544808.248:11): prog-id=15 op=LOAD
[2026-03-10 16:07:26.064] 0m] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
[2026-03-10 16:07:26.079] Starting User Login Management...
[2026-03-10 16:07:26.080] Starting Virtual Console Setup...
[2026-03-10 16:07:26.080] [ OK ] Started TEE Supplicant on teepriv0.
[2026-03-10 16:07:26.095] Starting Telnet Server...
[2026-03-10 16:07:26.095] [ OK ] Finished Save/Restore Sound Card State.
[2026-03-10 16:07:26.096] [ OK ] Finished IPv6 Packet Filtering Framework.
[2026-03-10 16:07:26.111] [ OK ] Finished IPv4 Packet Filtering Framework.
[2026-03-10 16:07:26.111] [ OK ] Found device /dev/mmcblk1p1.
[2026-03-10 16:07:26.127] [ OK ] Finished Telnet Server.
[2026-03-10 16:07:26.127] [ OK ] Found device /dev/mmcblk0p1.
[2026-03-10 16:07:26.143] [ OK ] Found device /dev/mmcblk0p2.
[2026-03-10 16:07:26.143] [ OK ] Reached target Preparation for Network.
[2026-03-10 16:07:26.159] [ OK ] Reached target Sound Card.
[2026-03-10 16:07:26.160] Starting File System Check on /dev/mmcblk0p1...
[2026-03-10 16:07:26.175] Starting File System Check on /dev/mmcblk0p2...
[2026-03-10 16:07:26.175] Starting File System Check on /dev/mmcblk1p1...
[2026-03-10 16:07:26.176] Starting Network Configuration...
[2026-03-10 16:07:26.191] [ OK ] Started Avahi mDNS/DNS-SD Stack.
[2026-03-10 16:07:26.239] [ OK ] Started User Login Management.
[2026-03-10 16:07:26.239] [ OK ] Started Telephony service.
[2026-03-10 16:07:26.303] [ OK ] Finished File System Check on /dev/mmcblk0p1.
[2026-03-10 16:07:26.351] Mounting /run/media/boot-mmcblk0p1...
[2026-03-10 16:07:26.383] [ OK ] Mounted /run/media/boot-mmcblk0p1.
[2026-03-10 16:07:26.463] [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[2026-03-10 16:07:26.479] [ 10.158985] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[2026-03-10 16:07:26.495] [ 10.171318] Bluetooth: Core ver 2.22
[2026-03-10 16:07:26.495] [ 10.175031] NET: Registered PF_BLUETOOTH protocol family
[2026-03-10 16:07:26.495] [ 10.180383] Bluetooth: HCI device and connection manager initialized
[2026-03-10 16:07:26.511] [ 10.186755] Bluetooth: HCI socket layer initialized
[2026-03-10 16:07:26.511] [ 10.191678] Bluetooth: L2CAP socket layer initialized
[2026-03-10 16:07:26.512] [ 10.196792] Bluetooth: SCO socket layer initialized
[2026-03-10 16:07:26.543] [ 10.218895] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[2026-03-10 16:07:26.543] [ 10.224906] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[2026-03-10 16:07:26.559] [ OK ] Finished Expand the rootfs partition to full size of the boot device..
[ OK ] Finished Virtual Console Setup.
[ OK ] Finished File System Check on /dev/mmcblk0p2.
[2026-03-10 16:07:26.623] Mounting /run/media/rootfs-mmcblk0p2...
[2026-03-10 16:07:26.623] [ OK ] Finished File System Check on /dev/mmcblk1p1.
[2026-03-10 16:07:26.639] Mounting /run/media/boot-mmcblk1p1...
[2026-03-10 16:07:26.671] [ OK ] Started Network Configuration.
[2026-03-10 16:07:26.671] [ OK ] Reached target Network.
[2026-03-10 16:07:26.671] Starting containerd container runtime...
[2026-03-10 16:07:26.687] Starting LLDP daemon...
[2026-03-10 16:07:26.687] [ OK ] Started Netperf Benchmark Server 10.367169] am65-cpsw-nuss 46000000.ethernet eth0: PHY [46000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[2026-03-10 16:07:26.703] m.
[2026-03-10 16:07:26.703] [ 10.380565] am65-cpsw-nuss 46000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[2026-03-10 16:07:26.704] Starting Simple Network Management Protocol (SNMP) Daemon....
[2026-03-10 16:07:26.719] Starting Permit User Ses[ 10.396420] EXT4-fs (mmcblk0p2): mounted filesystem ec704a2a-2dbb-4ffd-adfb-f620d177de91 r/w with ordered data mode. Quota mode: none.
[2026-03-10 16:07:26.735] sions...
[2026-03-10 16:07:26.735] [ 10.408504] am65-cpsw-nuss c200000.ethernet eth1: PHY [c200f00.mdio:00] driver [TI DP83867] (irq=POLL)
[2026-03-10 16:07:26.736] [ 10.423149] am65-cpsw-nuss c200000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[2026-03-10 16:07:26.751] [ OK ] Mounted /run/media/rootfs-mmcblk0p2.
[2026-03-10 16:07:26.767] [ 10.444222] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: started port 25 on interface eth2
[2026-03-10 16:07:26.767] [ OK ] Finished Permit User Sessions.
[2026-03-10 16:07:26.783] [ 10.462911] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: started port 1 on interface eth3
[2026-03-10 16:07:26.799] [ 10.480847] ti_cpsw_proxy_client virtio3.ti.ethfw.ethdevice.-1.34: 01:80:c2:00:00:0e is reserved for EthFw
[2026-03-10 16:07:26.815] [ OK ] Started emptty display manager.
[2026-03-10 16:07:26.831] [ OK ] Started Getty on tty1.
[2026-03-10 16:07:26.831] [ OK ] Started Serial Getty on ttyS2.
[2026-03-10 16:07:26.832] [ OK ] Reached target Login Prompts.
[2026-03-10 16:07:26.863] [ OK ] Started LLDP daemon.
[2026-03-10 16:07:26.959] [ OK ] Mounted /run/media/boot-mmcblk1p1.
[2026-03-10 16:07:27.631] [ OK ] Started Simple Network Management Protocol (SNMP) Daemon..
[2026-03-10 16:07:28.367] [ OK ] Started containerd container runtime.
[2026-03-10 16:07:29.391] ***************************************************************
[2026-03-10 16:07:29.407] ***************************************************************
[2026-03-10 16:07:29.407] NOTICE: This file system contains the following GPL-3.0 packages:
[2026-03-10 16:07:29.408] adwaita-icon-theme-symbolic
[2026-03-10 16:07:29.423] autoconf
[2026-03-10 16:07:29.423] bash-dev
[2026-03-10 16:07:29.423] bash
[2026-03-10 16:07:29.423] bc
[2026-03-10 16:07:29.423] binutils
[2026-03-10 16:07:29.423] cifs-utils
[2026-03-10 16:07:29.423] coreutils-stdbuf
[2026-03-10 16:07:29.423] coreutils
[2026-03-10 16:07:29.423] cpio
[2026-03-10 16:07:29.423] cpp-symlinks
[2026-03-10 16:07:29.423] cpp
[2026-03-10 16:07:29.423] dosfstools
[2026-03-10 16:07:29.423] elfutils-dev
[2026-03-10 16:07:29.423] elfutils
[2026-03-10 16:07:29.424] findutils
[2026-03-10 16:07:29.424] g++-symlinks
[2026-03-10 16:07:29.439] g++
[2026-03-10 16:07:29.439] gawk
[2026-03-10 16:07:29.439] gcc-symlinks
[2026-03-10 16:07:29.439] gcc
[2026-03-10 16:07:29.439] gdb
[2026-03-10 16:07:29.439] gdbserver
[2026-03-10 16:07:29.439] gettext
[2026-03-10 16:07:29.439] glmark2
[2026-03-10 16:07:29.439] gnu-config
[2026-03-10 16:07:29.439] grub-common
[2026-03-10 16:07:29.439] grub-editenv
[2026-03-10 16:07:29.439] grub-efi
[2026-03-10 16:07:29.439] gzip
[2026-03-10 16:07:29.439] hidapi
[2026-03-10 16:07:29.439] kbd-dev
[2026-03-10 16:07:29.439] kbd-keymaps-pine
[2026-03-10 16:07:29.440] less
[2026-03-10 16:07:29.440] libasm1
[2026-03-10 16:07:29.455] libatomic-dev
[2026-03-10 16:07:29.455] libatomic1
[2026-03-10 16:07:29.455] libbfd
[2026-03-10 16:07:29.455] libdebuginfod1
[2026-03-10 16:07:29.455] libdw1
[2026-03-10 16:07:29.455] libelf1
[2026-03-10 16:07:29.455] libgcc-s-dev
[2026-03-10 16:07:29.455] libgcc1
[2026-03-10 16:07:29.455] libgdbm-compat4
[2026-03-10 16:07:29.455] libgdbm-dev
[2026-03-10 16:07:29.455] libgdbm6
[2026-03-10 16:07:29.455] libgettextlib
[2026-03-10 16:07:29.455] libgettextsrc
[2026-03-10 16:07:29.455] libgmp-dev
[2026-03-10 16:07:29.471] libgmp10
[2026-03-10 16:07:29.471] libgmpxx4
[2026-03-10 16:07:29.471] libgnutls-dev
[2026-03-10 16:07:29.471] libgnutls-openssl27
[2026-03-10 16:07:29.471] libgomp1
[2026-03-10 16:07:29.471] libidn2-0
[2026-03-10 16:07:29.471] libidn2-dev
[2026-03-10 16:07:29.471] libmpc3
[2026-03-10 16:07:29.471] libmpfr6
[2026-03-10 16:07:29.471] libopcodes
[2026-03-10 16:07:29.471] libqt6shadertools-dev
[2026-03-10 16:07:29.471] libqt6shadertools-plugins
[2026-03-10 16:07:29.487] libqt6shadertools-qmlplugins
[2026-03-10 16:07:29.487] libqt6shadertools6
[2026-03-10 16:07:29.487] libreadline-dev
[2026-03-10 16:07:29.487] libreadline8
[2026-03-10 16:07:29.487] libstdc++-dev
[2026-03-10 16:07:29.487] libstdc++6
[2026-03-10 16:07:29.487] libtasn1-dev
[2026-03-10 16:07:29.487] libunistring-dev
[2026-03-10 16:07:29.487] libunistring5
[2026-03-10 16:07:29.487] m4
[2026-03-10 16:07:29.487] make
[2026-03-10 16:07:29.487] nettle-dev
[2026-03-10 16:07:29.503] nettle
[2026-03-10 16:07:29.503] parted
[2026-03-10 16:07:29.503] piglit
[2026-03-10 16:07:29.503] qtbase-dev
[2026-03-10 16:07:29.503] qtbase-examples
[2026-03-10 16:07:29.503] qtbase-plugins
[2026-03-10 16:07:29.503] qtbase-qmlplugins
[2026-03-10 16:07:29.503] qtbase-staticdev
[2026-03-10 16:07:29.503] qtbase
[2026-03-10 16:07:29.503] qtdeclarative-dev
[2026-03-10 16:07:29.503] qtdeclarative-plugins
[2026-03-10 16:07:29.503] qtdeclarative-qmlplugins
[2026-03-10 16:07:29.519] qtdeclarative-staticdev
[2026-03-10 16:07:29.519] qtdeclarative
[2026-03-10 16:07:29.519] qtlanguageserver-dev
[2026-03-10 16:07:29.519] qtlanguageserver-plugins
[2026-03-10 16:07:29.519] qtlanguageserver-qmlplugins
[2026-03-10 16:07:29.519] qtlanguageserver-staticdev
[2026-03-10 16:07:29.519] qtlanguageserver
[2026-03-10 16:07:29.535] qtsvg-dev
[2026-03-10 16:07:29.535] qtsvg-plugins
[2026-03-10 16:07:29.535] qtsvg-qmlplugins
[2026-03-10 16:07:29.535] qtsvg
[2026-03-10 16:07:29.535] qtwayland-dev
[2026-03-10 16:07:29.535] qtwayland-plugins
[2026-03-10 16:07:29.535] qtwayland-qmlplugins
[2026-03-10 16:07:29.535] qtwayland
[2026-03-10 16:07:29.535] tar
[2026-03-10 16:07:29.535] which
[2026-03-10 16:07:29.535]
[2026-03-10 16:07:29.535] If you do not wish to distribute GPL-3.0 components please remove
[2026-03-10 16:07:29.551] the above packages prior to distribution. This can be done using
[2026-03-10 16:07:29.551] the opkg remove command. i.e.:
[2026-03-10 16:07:29.551] opkg remove <package>
[2026-03-10 16:07:29.551] Where <package> is the name printed in the list above
[2026-03-10 16:07:29.567]
[2026-03-10 16:07:29.567] NOTE: If the package is a dependency of another package you
[2026-03-10 16:07:29.567] will be notified of the dependent packages. You should
[2026-03-10 16:07:29.567] use the --force-removal-of-dependent-packages option to
[2026-03-10 16:07:29.583] also remove the dependent packages as well
[2026-03-10 16:07:29.583] ***************************************************************
[2026-03-10 16:07:29.583] ***************************************************************
[2026-03-10 16:07:29.599] [ OK ] Finished Print notice about GPLv3 packages.
[2026-03-10 16:07:29.615] [ OK ] Reached target Multi-User System.
[2026-03-10 16:07:29.631] [ OK ] Reached target Graphical Interface.
[2026-03-10 16:07:29.695] Starting Record Runlevel Change in UTMP...
[2026-03-10 16:07:29.711] [ OK ] Finished Record Runlevel Change in UTMP.
[2026-03-10 16:07:30.431] [ 14.117111] kauditd_printk_skb: 2 callbacks suppressed
[2026-03-10 16:07:30.447] [ 14.117122] audit: type=1006 audit(1748544812.632:14): pid=1251 uid=0 subj=kernel old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
[2026-03-10 16:07:30.463] [ 14.136034] audit: type=1300 audit(1748544812.632:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffe3006e38 a2=4 a3=1 items=0 ppid=1 pid=1251 auid=1000 uid=0 gid=)
[2026-03-10 16:07:30.479] [ 14.163916] audit: type=1327 audit(1748544812.632:14): proctitle="(systemd)"
[2026-03-10 16:07:30.767]
[2026-03-10 16:07:30.767] _____ _____ _ _
[2026-03-10 16:07:30.767] | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_
[2026-03-10 16:07:30.783] | | _| .'| . | . | | __| _| . | | | -_| _| _|
[2026-03-10 16:07:30.783] |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_|
[2026-03-10 16:07:30.783] |___| |___|
[2026-03-10 16:07:30.799]
[2026-03-10 16:07:30.799] Arago Project j784s4-evm ttyS2
[2026-03-10 16:07:30.799]
[2026-03-10 16:07:30.799] Arago 2025.01 j784s4-evm ttyS2
[2026-03-10 16:07:30.799]
[2026-03-10 16:07:30.799] j784s4-evm login: [ 19.652724] platform connector-dp0: deferred probe pending: platform: supplier regulator-dp0-prw not ready
[2026-03-10 16:07:35.983] [ 19.662377] platform connector-dp1: deferred probe pending: platform: supplier regulator-dp1-prw not ready
CTRL-A Z for help | 115200 8N1 | NOR | Minicom 2.8 | VT102 | Offline | ttyUSB4
Falcon Boot flow:
Time taken : 2.7 sec( Upto Starting Kernel Print...)
U-Boot SPL 2025.01-ti-g38bf52655fb4-dirty (Mar 10 2026 - 15:52:59 +0530)
[2026-03-10 15:58:30.902] SYSFW ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 15:58:31.062] Initialized 4 DRAM controllers
[2026-03-10 15:58:31.174] SPL initial stack usage: 13584 bytes
[2026-03-10 15:58:31.174] Trying to boot from MMC2
[2026-03-10 15:58:31.270] Skipping authentication on GP device
[2026-03-10 15:58:31.270] Skipping authentication on GP device
[2026-03-10 15:58:31.286] Skipping authentication on GP device
[2026-03-10 15:58:31.286] Before spl_board_prepare_for_boot
[2026-03-10 15:58:31.286] Loading falcon payload from MMC2
[2026-03-10 15:58:32.262] Skipping authentication on GP device
[2026-03-10 15:58:32.598] Skipping authentication on GP device
[2026-03-10 15:58:32.646] Set bootargs to: console=ttyS2,115200n8 root=PARTUUID=076c4a2a-02 rootwait
[2026-03-10 15:58:32.678] Loading Environment from nowhere... OK
[2026-03-10 15:58:32.694] Starting ATF on ARM64 core...
[2026-03-10 15:58:32.694]
[2026-03-10 15:58:32.694] NOTICE: BL31: v2.13.0(debug):v2.13.0-259-ge0c4d3903-dirty
[2026-03-10 15:58:32.710] NOTICE: BL31: Built : 05:44:44, Feb 17 2026
[2026-03-10 15:58:32.710] INFO: GICv3 without legacy support detected.
[2026-03-10 15:58:32.710] INFO: ARM GICv3 driver initialized in EL3
[2026-03-10 15:58:32.710] INFO: Maximum SPI INTID supported: 991
[2026-03-10 15:58:32.726] INFO: SYSFW ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 15:58:32.726] INFO: BL31: Initializing runtime services
[2026-03-10 15:58:32.726] INFO: BL31: cortex_a72: CPU workaround for erratum 1319367 was applied
[2026-03-10 15:58:32.742] INFO: BL31: cortex_a72: CPU workaround for CVE 2018_3639 was applied
[2026-03-10 15:58:32.742] INFO: BL31: cortex_a72: CPU workaround for CVE 2022_23960 was applied
[2026-03-10 15:58:32.758] INFO: BL31: Preparing for EL3 exit to normal world
[2026-03-10 15:58:32.758] INFO: Entry point address = 0x82000000
[2026-03-10 15:58:32.758] INFO: SPSR = 0x3c9
[2026-03-10 15:58:33.625] [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x411fd080]
[2026-03-10 15:58:33.625] [ 0.000000] Linux version 6.12.57-ti-g31b07ab8dfbc-dirty (a0507176@a0507176-HP-Z2-Tower-G9-Workstation-Desktop-PC) (aarch64-oe-linux-gcc (GCC) 13.4.0, GNU ld (GNU Binutils) 26
[2026-03-10 15:58:33.641] [ 0.000000] KASLR disabled due to lack of seed
[2026-03-10 15:58:33.657] [ 0.000000] Machine model: Texas Instruments J784S4 EVM
[2026-03-10 15:58:33.657] [ 0.000000] efi: UEFI not found.
[2026-03-10 15:58:33.657] [ 0.000000] Reserved memory: created CMA memory pool at 0x0000000f90000000, size 1792 MiB
[2026-03-10 15:58:33.673] [ 0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[2026-03-10 15:58:33.673] [ 0.000000] OF: reserved mem: 0x0000000f90000000..0x0000000fffffffff (1835008 KiB) map reusable linux,cma
[2026-03-10 15:58:33.689] [ 0.000000] OF: reserved mem: 0x000000009e800000..0x000000009fffffff (24576 KiB) nomap non-reusable optee@9e800000
[2026-03-10 15:58:33.689] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0000000, size 1 MiB
[2026-03-10 15:58:33.705] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a0000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.706] [ 0.000000] OF: reserved mem: 0x00000000a0000000..0x00000000a00fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a0000000
[2026-03-10 15:58:33.721] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a0100000, size 15 MiB
[2026-03-10 15:58:33.737] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a0100000, compatible id shared-dma-pool
[2026-03-10 15:58:33.737] [ 0.000000] OF: reserved mem: 0x00000000a0100000..0x00000000a0ffffff (15360 KiB) nomap non-reusable r5f-memory@a0100000
[2026-03-10 15:58:33.753] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1000000, size 1 MiB
[2026-03-10 15:58:33.753] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a1000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.769] [ 0.000000] OF: reserved mem: 0x00000000a1000000..0x00000000a10fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a1000000
[2026-03-10 15:58:33.785] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a1100000, size 15 MiB
[2026-03-10 15:58:33.785] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a1100000, compatible id shared-dma-pool
[2026-03-10 15:58:33.801] [ 0.000000] OF: reserved mem: 0x00000000a1100000..0x00000000a1ffffff (15360 KiB) nomap non-reusable r5f-memory@a1100000
[2026-03-10 15:58:33.801] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2000000, size 1 MiB
[2026-03-10 15:58:33.817] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a2000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.817] [ 0.000000] OF: reserved mem: 0x00000000a2000000..0x00000000a20fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a2000000
[2026-03-10 15:58:33.833] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a2100000, size 15 MiB
[2026-03-10 15:58:33.833] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a2100000, compatible id shared-dma-pool
[2026-03-10 15:58:33.849] [ 0.000000] OF: reserved mem: 0x00000000a2100000..0x00000000a2ffffff (15360 KiB) nomap non-reusable r5f-memory@a2100000
[2026-03-10 15:58:33.865] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a3000000, size 1 MiB
[2026-03-10 15:58:33.865] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a3000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.881] [ 0.000000] OF: reserved mem: 0x00000000a3000000..0x00000000a30fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a3000000
[2026-03-10 15:58:33.881] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a3100000, size 15 MiB
[2026-03-10 15:58:33.897] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a3100000, compatible id shared-dma-pool
[2026-03-10 15:58:33.913] [ 0.000000] OF: reserved mem: 0x00000000a3100000..0x00000000a3ffffff (15360 KiB) nomap non-reusable r5f-memory@a3100000
[2026-03-10 15:58:33.914] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4000000, size 1 MiB
[2026-03-10 15:58:33.929] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a4000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.929] [ 0.000000] OF: reserved mem: 0x00000000a4000000..0x00000000a40fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a4000000
[2026-03-10 15:58:33.945] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a4100000, size 15 MiB
[2026-03-10 15:58:33.945] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a4100000, compatible id shared-dma-pool
[2026-03-10 15:58:33.961] [ 0.000000] OF: reserved mem: 0x00000000a4100000..0x00000000a4ffffff (15360 KiB) nomap non-reusable r5f-memory@a4100000
[2026-03-10 15:58:33.977] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a5000000, size 1 MiB
[2026-03-10 15:58:33.977] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a5000000, compatible id shared-dma-pool
[2026-03-10 15:58:33.993] [ 0.000000] OF: reserved mem: 0x00000000a5000000..0x00000000a50fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a5000000
[2026-03-10 15:58:33.994] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a5100000, size 15 MiB
[2026-03-10 15:58:34.009] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a5100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.025] [ 0.000000] OF: reserved mem: 0x00000000a5100000..0x00000000a5ffffff (15360 KiB) nomap non-reusable r5f-memory@a5100000
[2026-03-10 15:58:34.025] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6000000, size 1 MiB
[2026-03-10 15:58:34.041] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a6000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.041] [ 0.000000] OF: reserved mem: 0x00000000a6000000..0x00000000a60fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a6000000
[2026-03-10 15:58:34.057] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a6100000, size 15 MiB
[2026-03-10 15:58:34.058] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a6100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.073] [ 0.000000] OF: reserved mem: 0x00000000a6100000..0x00000000a6ffffff (15360 KiB) nomap non-reusable r5f-memory@a6100000
[2026-03-10 15:58:34.089] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7000000, size 1 MiB
[2026-03-10 15:58:34.089] [ 0.000000] OF: reserved mem: initialized node r5f-dma-memory@a7000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.105] [ 0.000000] OF: reserved mem: 0x00000000a7000000..0x00000000a70fffff (1024 KiB) nomap non-reusable r5f-dma-memory@a7000000
[2026-03-10 15:58:34.105] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a7100000, size 15 MiB
[2026-03-10 15:58:34.121] [ 0.000000] OF: reserved mem: initialized node r5f-memory@a7100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.121] [ 0.000000] OF: reserved mem: 0x00000000a7100000..0x00000000a7ffffff (15360 KiB) nomap non-reusable r5f-memory@a7100000
[2026-03-10 15:58:34.137] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8000000, size 1 MiB
[2026-03-10 15:58:34.153] [ 0.000000] OF: reserved mem: initialized node c71-dma-memory@a8000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.153] [ 0.000000] OF: reserved mem: 0x00000000a8000000..0x00000000a80fffff (1024 KiB) nomap non-reusable c71-dma-memory@a8000000
[2026-03-10 15:58:34.169] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a8100000, size 15 MiB
[2026-03-10 15:58:34.169] [ 0.000000] OF: reserved mem: initialized node c71-memory@a8100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.185] [ 0.000000] OF: reserved mem: 0x00000000a8100000..0x00000000a8ffffff (15360 KiB) nomap non-reusable c71-memory@a8100000
[2026-03-10 15:58:34.201] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9000000, size 1 MiB
[2026-03-10 15:58:34.201] [ 0.000000] OF: reserved mem: initialized node c71-dma-memory@a9000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.217] [ 0.000000] OF: reserved mem: 0x00000000a9000000..0x00000000a90fffff (1024 KiB) nomap non-reusable c71-dma-memory@a9000000
[2026-03-10 15:58:34.217] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000a9100000, size 15 MiB
[2026-03-10 15:58:34.233] [ 0.000000] OF: reserved mem: initialized node c71-memory@a9100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.233] [ 0.000000] OF: reserved mem: 0x00000000a9100000..0x00000000a9ffffff (15360 KiB) nomap non-reusable c71-memory@a9100000
[2026-03-10 15:58:34.249] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000aa000000, size 1 MiB
[2026-03-10 15:58:34.265] [ 0.000000] OF: reserved mem: initialized node c71-dma-memory@aa000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.265] [ 0.000000] OF: reserved mem: 0x00000000aa000000..0x00000000aa0fffff (1024 KiB) nomap non-reusable c71-dma-memory@aa000000
[2026-03-10 15:58:34.281] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000aa100000, size 15 MiB
[2026-03-10 15:58:34.281] [ 0.000000] OF: reserved mem: initialized node c71-memory@aa100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.297] [ 0.000000] OF: reserved mem: 0x00000000aa100000..0x00000000aaffffff (15360 KiB) nomap non-reusable c71-memory@aa100000
[2026-03-10 15:58:34.313] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ab000000, size 1 MiB
[2026-03-10 15:58:34.313] [ 0.000000] OF: reserved mem: initialized node c71-dma-memory@ab000000, compatible id shared-dma-pool
[2026-03-10 15:58:34.329] [ 0.000000] OF: reserved mem: 0x00000000ab000000..0x00000000ab0fffff (1024 KiB) nomap non-reusable c71-dma-memory@ab000000
[2026-03-10 15:58:34.329] [ 0.000000] Reserved memory: created DMA memory pool at 0x00000000ab100000, size 15 MiB
[2026-03-10 15:58:34.345] [ 0.000000] OF: reserved mem: initialized node c71-memory@ab100000, compatible id shared-dma-pool
[2026-03-10 15:58:34.345] [ 0.000000] OF: reserved mem: 0x00000000ab100000..0x00000000abffffff (15360 KiB) nomap non-reusable c71-memory@ab100000
[2026-03-10 15:58:34.361] [ 0.000000] Zone ranges:
[2026-03-10 15:58:34.361] [ 0.000000] DMA [mem 0x0000000080000000-0x00000000ffffffff]
[2026-03-10 15:58:34.377] [ 0.000000] DMA32 empty
[2026-03-10 15:58:34.377] [ 0.000000] Normal [mem 0x0000000100000000-0x0000000fffffffff]
[2026-03-10 15:58:34.377] [ 0.000000] Movable zone start for each node
[2026-03-10 15:58:34.377] [ 0.000000] Early memory node ranges
[2026-03-10 15:58:34.393] [ 0.000000] node 0: [mem 0x0000000080000000-0x000000009e7fffff]
[2026-03-10 15:58:34.393] [ 0.000000] node 0: [mem 0x000000009e800000-0x00000000abffffff]
[2026-03-10 15:58:34.393] [ 0.000000] node 0: [mem 0x00000000ac000000-0x00000000ffffffff]
[2026-03-10 15:58:34.409] [ 0.000000] node 0: [mem 0x0000000880000000-0x0000000fffffffff]
[2026-03-10 15:58:34.409] [ 0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x0000000fffffffff]
[2026-03-10 15:58:34.425] [ 0.000000] psci: probing for conduit method from DT.
[2026-03-10 15:58:34.425] [ 0.000000] psci: PSCIv1.1 detected in firmware.
[2026-03-10 15:58:34.425] [ 0.000000] psci: Using standard PSCI v0.2 function IDs
[2026-03-10 15:58:34.441] [ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[2026-03-10 15:58:34.441] [ 0.000000] psci: SMC Calling Convention v1.5
[2026-03-10 15:58:34.441] [ 0.000000] percpu: Embedded 22 pages/cpu s51736 r8192 d30184 u90112
[2026-03-10 15:58:34.457] [ 0.000000] Detected PIPT I-cache on CPU0
[2026-03-10 15:58:34.457] [ 0.000000] CPU features: detected: GIC system register CPU interface
[2026-03-10 15:58:34.457] [ 0.000000] CPU features: detected: Spectre-v3a
[2026-03-10 15:58:34.457] [ 0.000000] CPU features: detected: Spectre-BHB
[2026-03-10 15:58:34.473] [ 0.000000] CPU features: detected: ARM erratum 1742098
[2026-03-10 15:58:34.473] [ 0.000000] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[2026-03-10 15:58:34.489] [ 0.000000] alternatives: applying boot alternatives
[2026-03-10 15:58:34.489] [ 0.000000] Kernel command line: console=ttyS2,115200n8 root=PARTUUID=076c4a2a-02 rootwait
[2026-03-10 15:58:34.489] [ 0.000000] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[2026-03-10 15:58:34.505] [ 0.000000] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[2026-03-10 15:58:34.505] [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 8388608
[2026-03-10 15:58:34.521] [ 0.000000] mem auto-init: stack:all(zero), heap alloc:off, heap free:off
[2026-03-10 15:58:34.521] [ 0.000000] software IO TLB: area num 8.
[2026-03-10 15:58:34.521] [ 0.000000] software IO TLB: mapped [mem 0x00000000fbfff000-0x00000000fffff000] (64MB)
[2026-03-10 15:58:34.537] [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[2026-03-10 15:58:34.537] [ 0.000000] rcu: Preemptible hierarchical RCU implementation.
[2026-03-10 15:58:34.553] [ 0.000000] rcu: RCU event tracing is enabled.
[2026-03-10 15:58:34.553] [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=8.
[2026-03-10 15:58:34.553] [ 0.000000] Trampoline variant of Tasks RCU enabled.
[2026-03-10 15:58:34.569] [ 0.000000] Tracing variant of Tasks RCU enabled.
[2026-03-10 15:58:34.569] [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[2026-03-10 15:58:34.585] [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[2026-03-10 15:58:34.585] [ 0.000000] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[2026-03-10 15:58:34.585] [ 0.000000] RCU Tasks Trace: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
[2026-03-10 15:58:34.601] [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[2026-03-10 15:58:34.601] [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[2026-03-10 15:58:34.617] [ 0.000000] GICv3: 960 SPIs implemented
[2026-03-10 15:58:34.617] [ 0.000000] GICv3: 0 Extended SPIs implemented
[2026-03-10 15:58:34.618] [ 0.000000] Root IRQ handler: gic_handle_irq
[2026-03-10 15:58:34.618] [ 0.000000] GICv3: GICv3 features: 16 PPIs
[2026-03-10 15:58:34.633] [ 0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=0
[2026-03-10 15:58:34.633] [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001900000
[2026-03-10 15:58:34.633] [ 0.000000] ITS [mem 0x01820000-0x0182ffff]
[2026-03-10 15:58:34.649] [ 0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[2026-03-10 15:58:34.649] [ 0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[2026-03-10 15:58:34.665] [ 0.000000] ITS@0x0000000001820000: allocated 524288 Devices @880800000 (flat, esz 8, psz 64K, shr 0)
[2026-03-10 15:58:34.665] [ 0.000000] ITS: using cache flushing for cmd queue
[2026-03-10 15:58:34.665] [ 0.000000] GICv3: using LPI property table @0x0000000880070000
[2026-03-10 15:58:34.681] [ 0.000000] GIC: using cache flushing for LPI property table
[2026-03-10 15:58:34.681] [ 0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000880080000
[2026-03-10 15:58:34.697] [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[2026-03-10 15:58:34.697] [ 0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[2026-03-10 15:58:34.697] [ 0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[2026-03-10 15:58:34.713] [ 0.000000] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[2026-03-10 15:58:34.729] [ 0.000335] Console: colour dummy device 80x25
[2026-03-10 15:58:34.729] [ 0.000382] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[2026-03-10 15:58:34.745] [ 0.000387] pid_max: default: 32768 minimum: 301
[2026-03-10 15:58:34.745] [ 0.000434] LSM: initializing lsm=capability,selinux
[2026-03-10 15:58:34.745] [ 0.000476] SELinux: Initializing.
[2026-03-10 15:58:34.745] [ 0.000855] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[2026-03-10 15:58:34.761] [ 0.000916] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[2026-03-10 15:58:34.761] [ 0.002484] rcu: Hierarchical SRCU implementation.
[2026-03-10 15:58:34.777] [ 0.002489] rcu: Max phase no-delay instances is 1000.
[2026-03-10 15:58:34.777] [ 0.002608] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
[2026-03-10 15:58:34.777] [ 0.002924] EFI services will not be available.
[2026-03-10 15:58:34.793] [ 0.003153] smp: Bringing up secondary CPUs ...
[2026-03-10 15:58:34.793] [ 0.003628] Detected PIPT I-cache on CPU1
[2026-03-10 15:58:34.793] [ 0.003677] GICv3: CPU1: found redistributor 1 region 0:0x0000000001920000
[2026-03-10 15:58:34.809] [ 0.003690] GICv3: CPU1: using allocated LPI pending table @0x0000000880090000
[2026-03-10 15:58:34.809] [ 0.003722] CPU1: Booted secondary processor 0x0000000001 [0x411fd080]
[2026-03-10 15:58:34.825] [ 0.004278] Detected PIPT I-cache on CPU2
[2026-03-10 15:58:34.825] [ 0.004308] GICv3: CPU2: found redistributor 2 region 0:0x0000000001940000
[2026-03-10 15:58:34.826] [ 0.004321] GICv3: CPU2: using allocated LPI pending table @0x00000008800a0000
[2026-03-10 15:58:34.841] [ 0.004345] CPU2: Booted secondary processor 0x0000000002 [0x411fd080]
[2026-03-10 15:58:34.841] [ 0.004817] Detected PIPT I-cache on CPU3
[2026-03-10 15:58:34.841] [ 0.004850] GICv3: CPU3: found redistributor 3 region 0:0x0000000001960000
[2026-03-10 15:58:34.857] [ 0.004862] GICv3: CPU3: using allocated LPI pending table @0x00000008800b0000
[2026-03-10 15:58:34.857] [ 0.004886] CPU3: Booted secondary processor 0x0000000003 [0x411fd080]
[2026-03-10 15:58:34.873] [ 0.005403] Detected PIPT I-cache on CPU4
[2026-03-10 15:58:34.873] [ 0.005465] GICv3: CPU4: found redistributor 100 region 0:0x0000000001980000
[2026-03-10 15:58:34.873] [ 0.005479] GICv3: CPU4: using allocated LPI pending table @0x00000008800c0000
[2026-03-10 15:58:34.889] [ 0.005513] CPU4: Booted secondary processor 0x0000000100 [0x411fd080]
[2026-03-10 15:58:34.889] [ 0.006043] Detected PIPT I-cache on CPU5
[2026-03-10 15:58:34.889] [ 0.006080] GICv3: CPU5: found redistributor 101 region 0:0x00000000019a0000
[2026-03-10 15:58:34.905] [ 0.006093] GICv3: CPU5: using allocated LPI pending table @0x00000008800d0000
[2026-03-10 15:58:34.906] [ 0.006117] CPU5: Booted secondary processor 0x0000000101 [0x411fd080]
[2026-03-10 15:58:34.921] [ 0.006605] Detected PIPT I-cache on CPU6
[2026-03-10 15:58:34.921] [ 0.006645] GICv3: CPU6: found redistributor 102 region 0:0x00000000019c0000
[2026-03-10 15:58:34.922] [ 0.006658] GICv3: CPU6: using allocated LPI pending table @0x00000008800e0000
[2026-03-10 15:58:34.937] [ 0.006683] CPU6: Booted secondary processor 0x0000000102 [0x411fd080]
[2026-03-10 15:58:34.937] [ 0.007181] Detected PIPT I-cache on CPU7
[2026-03-10 15:58:34.953] [ 0.007223] GICv3: CPU7: found redistributor 103 region 0:0x00000000019e0000
[2026-03-10 15:58:34.953] [ 0.007236] GICv3: CPU7: using allocated LPI pending table @0x00000008800f0000
[2026-03-10 15:58:34.953] [ 0.007260] CPU7: Booted secondary processor 0x0000000103 [0x411fd080]
[2026-03-10 15:58:34.969] [ 0.007339] smp: Brought up 1 node, 8 CPUs
[2026-03-10 15:58:34.969] [ 0.007344] SMP: Total of 8 processors activated.
[2026-03-10 15:58:34.969] [ 0.007347] CPU: All CPU(s) started at EL2
[2026-03-10 15:58:34.985] [ 0.007349] CPU features: detected: 32-bit EL0 Support
[2026-03-10 15:58:34.985] [ 0.007352] CPU features: detected: CRC32 instructions
[2026-03-10 15:58:34.985] [ 0.007392] alternatives: applying system-wide alternatives
[2026-03-10 15:58:35.001] [ 0.007751] Memory: 30757596K/33554432K available (13056K kernel code, 1258K rwdata, 4676K rodata, 2752K init, 643K bss, 950276K reserved, 1835008K cma-reserved)
[2026-03-10 15:58:35.017] [ 0.008399] devtmpfs: initialized
[2026-03-10 15:58:35.017] [ 0.020398] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[2026-03-10 15:58:35.018] [ 0.020412] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[2026-03-10 15:58:35.033] [ 0.044364] 27120 pages in range for non-PLT usage
[2026-03-10 15:58:35.033] [ 0.044373] 518640 pages in range for PLT usage
[2026-03-10 15:58:35.033] [ 0.044585] pinctrl core: initialized pinctrl subsystem
[2026-03-10 15:58:35.049] [ 0.044921] DMI not present or invalid.
[2026-03-10 15:58:35.049] [ 0.046578] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[2026-03-10 15:58:35.049] [ 0.047883] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[2026-03-10 15:58:35.065] [ 0.048608] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[2026-03-10 15:58:35.065] [ 0.049304] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[2026-03-10 15:58:35.081] [ 0.049341] audit: initializing netlink subsys (disabled)
[2026-03-10 15:58:35.081] [ 0.049491] audit: type=2000 audit(0.048:1): state=initialized audit_enabled=0 res=1
[2026-03-10 15:58:35.097] [ 0.049719] thermal_sys: Registered thermal governor 'step_wise'
[2026-03-10 15:58:35.097] [ 0.049721] thermal_sys: Registered thermal governor 'power_allocator'
[2026-03-10 15:58:35.098] [ 0.049744] cpuidle: using governor menu
[2026-03-10 15:58:35.113] [ 0.049813] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[2026-03-10 15:58:35.113] [ 0.049925] ASID allocator initialised with 65536 entries
[2026-03-10 15:58:35.114] [ 0.055601] /bus@100000/interrupt-controller@1800000: Fixed dependency cycle(s) with /bus@100000/interrupt-controller@1800000
[2026-03-10 15:58:35.129] [ 0.055711] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.145] [ 0.055933] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.145] [ 0.055940] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/i2c@2040000/dsi-edp-bridge@2c
[2026-03-10 15:58:35.161] [ 0.055963] /bus@100000/bridge@a000000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.161] [ 0.055984] /bus@100000/dss@4a00000: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.177] [ 0.055994] /bus@100000/dss@4a00000: Fixed dependency cycle(s) with /bus@100000/bridge@a000000
[2026-03-10 15:58:35.177] [ 0.060182] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.193] [ 0.063394] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.209] [ 0.063434] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.209] [ 0.063449] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/i2c@2040000/dsi-edp-bridge@2c
[2026-03-10 15:58:35.225] [ 0.063604] /bus@100000/bridge@a000000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.225] [ 0.063836] /bus@100000/bridge@a000000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.241] [ 0.063874] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/dss@4a00000
[2026-03-10 15:58:35.241] [ 0.063912] /bus@100000/dss@4a00000: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.257] [ 0.063946] /bus@100000/dss@4a00000: Fixed dependency cycle(s) with /bus@100000/bridge@a000000
[2026-03-10 15:58:35.257] [ 0.064821] /bus@100000/bridge@a000000: Fixed dependency cycle(s) with /connector-dp0
[2026-03-10 15:58:35.273] [ 0.064875] /connector-dp0: Fixed dependency cycle(s) with /bus@100000/bridge@a000000
[2026-03-10 15:58:35.273] [ 0.065588] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /connector-dp1
[2026-03-10 15:58:35.289] [ 0.065642] /connector-dp1: Fixed dependency cycle(s) with /bus@100000/i2c@2040000/dsi-edp-bridge@2c
[2026-03-10 15:58:35.305] [ 0.066141] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[2026-03-10 15:58:35.305] [ 0.066143] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[2026-03-10 15:58:35.305] [ 0.066146] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[2026-03-10 15:58:35.321] [ 0.066148] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[2026-03-10 15:58:35.321] [ 0.066150] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[2026-03-10 15:58:35.337] [ 0.066152] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[2026-03-10 15:58:35.337] [ 0.066154] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[2026-03-10 15:58:35.337] [ 0.066156] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[2026-03-10 15:58:35.353] [ 0.067110] k3-chipinfo 43000014.chipid: Family:J784S4 rev:SR1.0 JTAGID[0x0bb8002f] Detected
[2026-03-10 15:58:35.353] [ 0.067546] iommu: Default domain type: Translated
[2026-03-10 15:58:35.369] [ 0.067549] iommu: DMA domain TLB invalidation policy: strict mode
[2026-03-10 15:58:35.369] [ 0.068309] SCSI subsystem initialized
[2026-03-10 15:58:35.369] [ 0.068510] usbcore: registered new interface driver usbfs
[2026-03-10 15:58:35.385] [ 0.068527] usbcore: registered new interface driver hub
[2026-03-10 15:58:35.385] [ 0.068545] usbcore: registered new device driver usb
[2026-03-10 15:58:35.385] [ 0.068860] pps_core: LinuxPPS API ver. 1 registered
[2026-03-10 15:58:35.401] [ 0.068862] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[2026-03-10 15:58:35.401] [ 0.068868] PTP clock support registered
[2026-03-10 15:58:35.401] [ 0.068887] EDAC MC: Ver: 3.0.0
[2026-03-10 15:58:35.417] [ 0.069048] scmi_core: SCMI protocol bus registered
[2026-03-10 15:58:35.417] [ 0.069201] FPGA manager framework
[2026-03-10 15:58:35.417] [ 0.069246] Advanced Linux Sound Architecture Driver Initialized.
[2026-03-10 15:58:35.417] [ 0.069726] vgaarb: loaded
[2026-03-10 15:58:35.433] [ 0.069918] clocksource: Switched to clocksource arch_sys_counter
[2026-03-10 15:58:35.433] [ 0.070065] VFS: Disk quotas dquot_6.6.0
[2026-03-10 15:58:35.433] [ 0.070076] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[2026-03-10 15:58:35.449] [ 0.073719] NET: Registered PF_INET protocol family
[2026-03-10 15:58:35.449] [ 0.074032] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[2026-03-10 15:58:35.449] [ 0.079075] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[2026-03-10 15:58:35.465] [ 0.079224] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[2026-03-10 15:58:35.465] [ 0.079242] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[2026-03-10 15:58:35.481] [ 0.080052] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[2026-03-10 15:58:35.481] [ 0.080903] TCP: Hash tables configured (established 262144 bind 65536)
[2026-03-10 15:58:35.497] [ 0.081010] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[2026-03-10 15:58:35.497] [ 0.081322] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[2026-03-10 15:58:35.513] [ 0.081731] NET: Registered PF_UNIX/PF_LOCAL protocol family
[2026-03-10 15:58:35.513] [ 0.082097] RPC: Registered named UNIX socket transport module.
[2026-03-10 15:58:35.513] [ 0.082100] RPC: Registered udp transport module.
[2026-03-10 15:58:35.529] [ 0.082102] RPC: Registered tcp transport module.
[2026-03-10 15:58:35.529] [ 0.082104] RPC: Registered tcp-with-tls transport module.
[2026-03-10 15:58:35.529] [ 0.082105] RPC: Registered tcp NFSv4.1 backchannel transport module.
[2026-03-10 15:58:35.545] [ 0.082111] NET: Registered PF_XDP protocol family
[2026-03-10 15:58:35.545] [ 0.082126] PCI: CLS 0 bytes, default 64
[2026-03-10 15:58:35.545] [ 0.083089] Initialise system trusted keyrings
[2026-03-10 15:58:35.561] [ 0.083191] workingset: timestamp_bits=46 max_order=23 bucket_order=0
[2026-03-10 15:58:35.561] [ 0.083360] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[2026-03-10 15:58:35.561] [ 0.083499] NFS: Registering the id_resolver key type
[2026-03-10 15:58:35.577] [ 0.083514] Key type id_resolver registered
[2026-03-10 15:58:35.577] [ 0.083516] Key type id_legacy registered
[2026-03-10 15:58:35.577] [ 0.083527] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[2026-03-10 15:58:35.593] [ 0.083530] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[2026-03-10 15:58:35.593] [ 0.105386] Key type asymmetric registered
[2026-03-10 15:58:35.593] [ 0.105391] Asymmetric key parser 'x509' registered
[2026-03-10 15:58:35.609] [ 0.105428] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[2026-03-10 15:58:35.609] [ 0.105519] io scheduler mq-deadline registered
[2026-03-10 15:58:35.609] [ 0.105523] io scheduler kyber registered
[2026-03-10 15:58:35.625] [ 0.105538] io scheduler bfq registered
[2026-03-10 15:58:35.625] [ 0.108163] pinctrl-single 4301c000.pinctrl: 13 pins, size 52
[2026-03-10 15:58:35.625] [ 0.108263] pinctrl-single 4301c038.pinctrl: 11 pins, size 44
[2026-03-10 15:58:35.641] [ 0.108446] pinctrl-single 4301c068.pinctrl: 72 pins, size 288
[2026-03-10 15:58:35.641] [ 0.108736] pinctrl-single 4301c190.pinctrl: 1 pins, size 4
[2026-03-10 15:58:35.641] [ 0.108873] pinctrl-single 11c000.pinctrl: 72 pins, size 288
[2026-03-10 15:58:35.657] [ 0.109238] pinctrl-single 104200.pinctrl: 20 pins, size 80
[2026-03-10 15:58:35.657] [ 0.109315] pinctrl-single 104280.pinctrl: 8 pins, size 32
[2026-03-10 15:58:35.657] [ 0.110070] ledtrig-cpu: registered to indicate activity on CPUs
[2026-03-10 15:58:35.673] [ 0.113891] Serial: 8250/16550 driver, 12 ports, IRQ sharing enabled
[2026-03-10 15:58:35.673] [ 0.120465] loop: module loaded
[2026-03-10 15:58:35.673] [ 0.121113] megasas: 07.727.03.00-rc1
[2026-03-10 15:58:35.689] [ 0.123334] tun: Universal TUN/TAP device driver, 1.6
[2026-03-10 15:58:35.689] [ 0.123939] VFIO - User Level meta-driver version: 0.3
[2026-03-10 15:58:35.689] [ 0.124720] usbcore: registered new interface driver usb-storage
[2026-03-10 15:58:35.705] [ 0.125126] i2c_dev: i2c /dev entries driver
[2026-03-10 15:58:35.705] [ 0.125888] sdhci: Secure Digital Host Controller Interface driver
[2026-03-10 15:58:35.705] [ 0.125890] sdhci: Copyright(c) Pierre Ossman
[2026-03-10 15:58:35.705] [ 0.126063] sdhci-pltfm: SDHCI platform and OF driver helper
[2026-03-10 15:58:35.721] [ 0.126507] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[2026-03-10 15:58:35.721] [ 0.127021] usbcore: registered new interface driver usbhid
[2026-03-10 15:58:35.737] [ 0.127023] usbhid: USB HID core driver
[2026-03-10 15:58:35.737] [ 0.127897] hw perfevents: enabled with armv8_cortex_a72 PMU driver, 7 (0,8000003f) counters available
[2026-03-10 15:58:35.737] [ 0.128233] optee: probing for conduit method.
[2026-03-10 15:58:35.753] [ 0.128240] optee: api uid mismatch
[2026-03-10 15:58:35.753] [ 0.128242] optee firmware:optee: probe with driver optee failed with error -22
[2026-03-10 15:58:35.753] [ 0.129624] Initializing XFRM netlink socket
[2026-03-10 15:58:35.769] [ 0.129640] NET: Registered PF_PACKET protocol family
[2026-03-10 15:58:35.769] [ 0.129688] Key type dns_resolver registered
[2026-03-10 15:58:35.769] [ 0.133811] registered taskstats version 1
[2026-03-10 15:58:35.769] [ 0.134108] Loading compiled-in X.509 certificates
[2026-03-10 15:58:35.785] [ 0.141364] ti-sci 44083000.system-controller: ABI: 4.0 (firmware rev 0x000b '11.2.8--v11.02.08 (Fancy Rat)')
[2026-03-10 15:58:35.785] [ 0.224919] omap_i2c 42120000.i2c: bus 0 rev0.12 at 400 kHz
[2026-03-10 15:58:35.801] [ 0.225657] pca953x 3-0020: supply vcc not found, using dummy regulator
[2026-03-10 15:58:35.801] [ 0.225710] pca953x 3-0020: using no AI
[2026-03-10 15:58:35.801] [ 0.238979] pca953x 3-0022: supply vcc not found, using dummy regulator
[2026-03-10 15:58:35.817] [ 0.239030] pca953x 3-0022: using AI
[2026-03-10 15:58:35.817] [ 0.240239] omap_i2c 2000000.i2c: bus 3 rev0.12 at 400 kHz
[2026-03-10 15:58:35.817] [ 0.240717] pca953x 4-0020: supply vcc not found, using dummy regulator
[2026-03-10 15:58:35.833] [ 0.240762] pca953x 4-0020: using no AI
[2026-03-10 15:58:35.833] [ 0.254390] omap_i2c 2030000.i2c: bus 4 rev0.12 at 400 kHz
[2026-03-10 15:58:35.833] [ 0.255015] pca953x 5-0020: supply vcc not found, using dummy regulator
[2026-03-10 15:58:35.849] [ 0.255076] pca953x 5-0020: using no AI
[2026-03-10 15:58:35.849] [ 0.270278] /connector-dp1: Fixed dependency cycle(s) with /bus@100000/i2c@2040000/dsi-edp-bridge@2c
[2026-03-10 15:58:35.865] [ 0.270310] /bus@100000/dsi@4800000: Fixed dependency cycle(s) with /bus@100000/i2c@2040000/dsi-edp-bridge@2c
[2026-03-10 15:58:35.865] [ 0.270343] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /connector-dp1
[2026-03-10 15:58:35.881] [ 0.270375] /bus@100000/i2c@2040000/dsi-edp-bridge@2c: Fixed dependency cycle(s) with /bus@100000/dsi@4800000
[2026-03-10 15:58:35.881] [ 0.270498] omap_i2c 2040000.i2c: bus 5 rev0.12 at 400 kHz
[2026-03-10 15:58:35.897] [ 0.271150] pca953x 6-0020: supply vcc not found, using dummy regulator
[2026-03-10 15:58:35.897] [ 0.271194] pca953x 6-0020: using no AI
[2026-03-10 15:58:35.897] [ 0.286242] omap_i2c 2050000.i2c: bus 6 rev0.12 at 400 kHz
[2026-03-10 15:58:35.913] [ 0.286367] ti-sci-intr 42200000.interrupt-controller: Interrupt Router 177 domain created
[2026-03-10 15:58:35.913] [ 0.286461] ti-sci-intr bus@100000:interrupt-controller@a00000: Interrupt Router 10 domain created
[2026-03-10 15:58:35.929] [ 0.286557] ti-sci-intr 310e0000.interrupt-controller: Interrupt Router 283 domain created
[2026-03-10 15:58:35.929] [ 0.286767] ti-sci-inta 33d00000.msi-controller: Interrupt Aggregator domain 321 created
[2026-03-10 15:58:35.945] [ 0.292795] ti-udma 311a0000.dma-controller: Number of rings: 48
[2026-03-10 15:58:35.945] [ 0.294339] ti-udma 311a0000.dma-controller: Channels: 48 (bchan: 0, tchan: 16, rchan: 32)
[2026-03-10 15:58:35.961] [ 0.295833] k3-ringacc 2b800000.ringacc: Ring Accelerator probed rings:286, gp-rings[96,20] sci-dev-id:328
[2026-03-10 15:58:35.961] [ 0.295838] k3-ringacc 2b800000.ringacc: dma-ring-reset-quirk: disabled
[2026-03-10 15:58:35.977] [ 0.295841] k3-ringacc 2b800000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[2026-03-10 15:58:35.977] [ 0.297897] k3-ringacc 3c000000.ringacc: Ring Accelerator probed rings:1024, gp-rings[878,128] sci-dev-id:315
[2026-03-10 15:58:35.993] [ 0.297902] k3-ringacc 3c000000.ringacc: dma-ring-reset-quirk: disabled
[2026-03-10 15:58:35.993] [ 0.297905] k3-ringacc 3c000000.ringacc: RA Proxy rev. 66349100, num_proxies:64
[2026-03-10 15:58:36.009] [ 0.298586] 40a00000.serial: ttyS1 at MMIO 0x40a00000 (irq = 275, base_baud = 6000000) is a 8250
[2026-03-10 15:58:36.009] [ 0.299224] 2880000.serial: ttyS2 at MMIO 0x2880000 (irq = 276, base_baud = 3000000) is a 8250
[2026-03-10 15:58:36.025] [ 0.299273] printk: legacy console [ttyS2] enabled
[2026-03-10 15:58:36.025] [ 2.708159] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 15:58:36.073] [ 2.753922] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 15:58:36.089] [ 2.764833] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2026-03-10 15:58:36.089] [ 2.773150] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 15:58:36.105] [ 2.780360] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 15:58:36.105] [ 2.787783] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
[2026-03-10 15:58:36.121] [ 2.797840] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 15:58:36.137] [ 2.810610] am65-cpsw-nuss c200000.ethernet: Use random MAC address
[2026-03-10 15:58:36.169] [ 2.849922] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 15:58:36.185] [ 2.860601] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
[2026-03-10 15:58:36.185] [ 2.868734] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 15:58:36.201] [ 2.875863] am65-cpsw-nuss c200000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 15:58:36.201] [ 2.883095] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:250000000, add_val:3 pps:0
[2026-03-10 15:58:36.217] [ 2.893525] am65-cpts 310d0000.cpts: CPTS ver 0x4e8a010c, freq:250000000, add_val:3 pps:0
[2026-03-10 15:58:36.217] [ 2.902552] mmc0: CQHCI version 5.10
[2026-03-10 15:58:36.265] [ 2.947364] mmc0: SDHCI controller on 4f80000.mmc [4f80000.mmc] using ADMA 64-bit
[2026-03-10 15:58:36.361] [ 3.042214] mmc0: Command Queue Engine enabled
[2026-03-10 15:58:36.361] [ 3.046662] mmc0: new HS400 MMC card at address 0001
[2026-03-10 15:58:36.377] [ 3.052062] mmcblk0: mmc0:0001 G1M15L 29.6 GiB
[2026-03-10 15:58:36.377] [ 3.057565] mmcblk0: p1 p2
[2026-03-10 15:58:36.377] [ 3.060685] mmcblk0boot0: mmc0:0001 G1M15L 31.5 MiB
[2026-03-10 15:58:36.377] [ 3.066279] mmcblk0boot1: mmc0:0001 G1M15L 31.5 MiB
[2026-03-10 15:58:36.393] [ 3.071806] mmcblk0rpmb: mmc0:0001 G1M15L 4.00 MiB, chardev (239:0)
[2026-03-10 15:58:36.489] [ 3.170964] tps6594-rtc tps6594-rtc.4.auto: registered as rtc0
[2026-03-10 15:58:36.505] [ 3.179628] j721e-pcie 2900000.pcie: host bridge /bus@100000/pcie@2900000 ranges:
[2026-03-10 15:58:36.505] [ 3.187137] j721e-pcie 2900000.pcie: IO 0x4000001000..0x4000100fff -> 0x0000001000
[2026-03-10 15:58:36.521] [ 3.195227] j721e-pcie 2900000.pcie: MEM 0x4000101000..0x40ffffffff -> 0x0000101000
[2026-03-10 15:58:36.521] [ 3.203315] j721e-pcie 2900000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2026-03-10 15:58:37.641] [ 4.318565] j721e-pcie 2900000.pcie: PCI host bridge to bus 0000:00
[2026-03-10 15:58:37.641] [ 4.324860] pci_bus 0000:00: root bus resource [bus 00-ff]
[2026-03-10 15:58:37.657] [ 4.330353] pci_bus 0000:00: root bus resource [io 0x0000-0xfffff] (bus address [0x1000-0x100fff])
[2026-03-10 15:58:37.657] [ 4.339385] pci_bus 0000:00: root bus resource [mem 0x4000101000-0x40ffffffff] (bus address [0x00101000-0xffffffff])
[2026-03-10 15:58:37.673] [ 4.349920] pci 0000:00:00.0: [104c:b012] type 01 class 0x060400 PCIe Root Port
[2026-03-10 15:58:37.673] [ 4.357217] pci_bus 0000:00: 2-byte config write to 0000:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[2026-03-10 15:58:37.689] [ 4.366869] pci 0000:00:00.0: PCI bridge to [bus 00]
[2026-03-10 15:58:37.689] [ 4.371827] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff]
[2026-03-10 15:58:37.689] [ 4.377912] pci 0000:00:00.0: bridge window [mem 0x00000000-0x000fffff]
[2026-03-10 15:58:37.705] [ 4.384692] pci 0000:00:00.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[2026-03-10 15:58:37.705] [ 4.392503] pci 0000:00:00.0: supports D1
[2026-03-10 15:58:37.721] [ 4.396504] pci 0000:00:00.0: PME# supported from D0 D1 D3hot
[2026-03-10 15:58:37.721] [ 4.404182] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[2026-03-10 15:58:37.737] [ 4.412297] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01
[2026-03-10 15:58:37.737] [ 4.418914] pci 0000:00:00.0: PCI bridge to [bus 01]
[2026-03-10 15:58:37.737] [ 4.423877] pci_bus 0000:00: resource 4 [io 0x0000-0xfffff]
[2026-03-10 15:58:37.753] [ 4.429527] pci_bus 0000:00: resource 5 [mem 0x4000101000-0x40ffffffff]
[2026-03-10 15:58:37.753] [ 4.436187] pcieport 0000:00:00.0: of_irq_parse_pci: failed with rc=-22
[2026-03-10 15:58:37.769] [ 4.443003] pcieport 0000:00:00.0: PME: Signaling with IRQ 538
[2026-03-10 15:58:37.769] [ 4.449017] pcieport 0000:00:00.0: AER: enabled with IRQ 538
[2026-03-10 15:58:37.769] [ 4.454954] j721e-pcie 2910000.pcie: host bridge /bus@100000/pcie@2910000 ranges:
[2026-03-10 15:58:37.785] [ 4.462449] j721e-pcie 2910000.pcie: IO 0x4100001000..0x4100100fff -> 0x0000001000
[2026-03-10 15:58:37.785] [ 4.470541] j721e-pcie 2910000.pcie: MEM 0x4100101000..0x41ffffffff -> 0x0000101000
[2026-03-10 15:58:37.801] [ 4.478628] j721e-pcie 2910000.pcie: IB MEM 0x0000000000..0xffffffffffff -> 0x0000000000
[2026-03-10 15:58:38.905] [ 5.586045] j721e-pcie 2910000.pcie: PCI host bridge to bus 0001:00
[2026-03-10 15:58:38.905] [ 5.592312] pci_bus 0001:00: root bus resource [bus 00-ff]
[2026-03-10 15:58:38.921] [ 5.597789] pci_bus 0001:00: root bus resource [io 0x100000-0x1fffff] (bus address [0x1000-0x100fff])
[2026-03-10 15:58:38.921] [ 5.607079] pci_bus 0001:00: root bus resource [mem 0x4100101000-0x41ffffffff] (bus address [0x00101000-0xffffffff])
[2026-03-10 15:58:38.937] [ 5.617603] pci 0001:00:00.0: [104c:b012] type 01 class 0x060400 PCIe Root Port
[2026-03-10 15:58:38.937] [ 5.624898] pci_bus 0001:00: 2-byte config write to 0001:00:00.0 offset 0x4 may corrupt adjacent RW1C bits
[2026-03-10 15:58:38.953] [ 5.634551] pci 0001:00:00.0: PCI bridge to [bus 00]
[2026-03-10 15:58:38.953] [ 5.639509] pci 0001:00:00.0: bridge window [io 0x0000-0x0fff]
[2026-03-10 15:58:38.969] [ 5.645591] pci 0001:00:00.0: bridge window [mem 0x00000000-0x000fffff]
[2026-03-10 15:58:38.969] [ 5.652371] pci 0001:00:00.0: bridge window [mem 0x00000000-0x000fffff 64bit pref]
[2026-03-10 15:58:38.985] [ 5.660182] pci 0001:00:00.0: supports D1
[2026-03-10 15:58:38.985] [ 5.664182] pci 0001:00:00.0: PME# supported from D0 D1 D3hot
[2026-03-10 15:58:38.985] [ 5.671867] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[2026-03-10 15:58:39.001] [ 5.679977] pci_bus 0001:01: busn_res: [bus 01-ff] end is updated to 01
[2026-03-10 15:58:39.001] [ 5.686589] pci 0001:00:00.0: PCI bridge to [bus 01]
[2026-03-10 15:58:39.017] [ 5.691550] pci_bus 0001:00: resource 4 [io 0x100000-0x1fffff]
[2026-03-10 15:58:39.017] [ 5.697464] pci_bus 0001:00: resource 5 [mem 0x4100101000-0x41ffffffff]
[2026-03-10 15:58:39.017] [ 5.704112] pcieport 0001:00:00.0: of_irq_parse_pci: failed with rc=-22
[2026-03-10 15:58:39.033] [ 5.710895] pcieport 0001:00:00.0: PME: Signaling with IRQ 540
[2026-03-10 15:58:39.033] [ 5.716864] pcieport 0001:00:00.0: AER: enabled with IRQ 540
[2026-03-10 15:58:39.049] [ 5.723320] ti-udma 285c0000.dma-controller: Channels: 22 (tchan: 11, rchan: 11, gp-rflow: 8)
[2026-03-10 15:58:39.049] [ 5.733717] ti-udma 31150000.dma-controller: Channels: 66 (tchan: 33, rchan: 33, gp-rflow: 16)
[2026-03-10 15:58:39.065] [ 5.746667] 7 fixed-partitions partitions found on MTD device 47040000.spi.0
[2026-03-10 15:58:39.065] [ 5.753718] Creating 7 MTD partitions on "47040000.spi.0":
[2026-03-10 15:58:39.081] [ 5.759215] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[2026-03-10 15:58:39.081] [ 5.765515] 0x000000080000-0x000000280000 : "ospi.tispl"
[2026-03-10 15:58:39.097] [ 5.771476] 0x000000280000-0x000000680000 : "ospi.u-boot"
[2026-03-10 15:58:39.097] [ 5.777524] 0x000000680000-0x0000006c0000 : "ospi.env"
[2026-03-10 15:58:39.098] [ 5.783283] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
[2026-03-10 15:58:39.113] [ 5.789681] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[2026-03-10 15:58:39.113] [ 5.795695] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[2026-03-10 15:58:39.145] [ 5.826886] 7 fixed-partitions partitions found on MTD device 47050000.spi.0
[2026-03-10 15:58:39.145] [ 5.833937] Creating 7 MTD partitions on "47050000.spi.0":
[2026-03-10 15:58:39.161] [ 5.839411] 0x000000000000-0x000000080000 : "qspi.tiboot3"
[2026-03-10 15:58:39.161] [ 5.845559] 0x000000080000-0x000000280000 : "qspi.tispl"
[2026-03-10 15:58:39.177] [ 5.851581] 0x000000280000-0x000000680000 : "qspi.u-boot"
[2026-03-10 15:58:39.177] [ 5.857609] 0x000000680000-0x0000006c0000 : "qspi.env"
[2026-03-10 15:58:39.177] [ 5.863374] 0x0000006c0000-0x000000700000 : "qspi.env.backup"
[2026-03-10 15:58:39.193] [ 5.869726] 0x000000800000-0x000003fc0000 : "qspi.rootfs"
[2026-03-10 15:58:39.193] [ 5.875721] 0x000003fc0000-0x000004000000 : "qspi.phypattern"
[2026-03-10 15:58:39.209] [ 5.882438] am65-cpsw-nuss 46000000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 15:58:39.241] [ 5.929921] davinci_mdio 46000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 15:58:39.257] [ 5.940734] davinci_mdio 46000f00.mdio: phy[0]: device 46000f00.mdio:00, driver TI DP83867
[2026-03-10 15:58:39.273] [ 5.949061] am65-cpsw-nuss 46000000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 15:58:39.273] [ 5.956272] am65-cpsw-nuss 46000000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 15:58:39.289] [ 5.963701] am65-cpsw-nuss 46000000.ethernet: CPTS ver 0x4e8a010b, freq:500000000, add_val:1 pps:1
[2026-03-10 15:58:39.305] [ 5.980427] am65-cpsw-nuss 46000000.ethernet: set new flow-id-base 48
[2026-03-10 15:58:39.305] [ 5.990136] am65-cpsw-nuss c200000.ethernet: initializing am65 cpsw nuss version 0x6BA02102, cpsw version 0x6BA82102 Ports: 2 quirks:00000000
[2026-03-10 15:58:39.321] [ 6.002924] am65-cpsw-nuss c200000.ethernet: Use random MAC address
[2026-03-10 15:58:39.353] [ 6.041937] davinci_mdio c200f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[2026-03-10 15:58:39.369] [ 6.052770] davinci_mdio c200f00.mdio: phy[0]: device c200f00.mdio:00, driver TI DP83867
[2026-03-10 15:58:39.385] [ 6.060924] am65-cpsw-nuss c200000.ethernet: initialized cpsw ale version 1.4
[2026-03-10 15:58:39.385] [ 6.068047] am65-cpsw-nuss c200000.ethernet: ALE Table size 64, Policers 8
[2026-03-10 15:58:39.401] [ 6.075337] am65-cpsw-nuss c200000.ethernet: CPTS ver 0x4e8a010b, freq:200000000, add_val:4 pps:0
[2026-03-10 15:58:39.417] [ 6.091951] am65-cpsw-nuss c200000.ethernet: set new flow-id-base 82
[2026-03-10 15:58:39.417] [ 6.102331] clk: Disabling unused clocks
[2026-03-10 15:58:39.433] [ 6.106602] mmc1: CQHCI version 5.10
[2026-03-10 15:58:39.433] [ 6.120019] PM: genpd: Disabling unused power domains
[2026-03-10 15:58:39.443] [ 6.125174] ALSA device list:
[2026-03-10 15:58:39.443] [ 6.128211] No soundcards found.
[2026-03-10 15:58:39.458] [ 6.146457] mmc1: SDHCI controller on 4fb0000.mmc [4fb0000.mmc] using ADMA 64-bit
[2026-03-10 15:58:39.474] [ 6.154042] Waiting for root device PARTUUID=076c4a2a-02...
[2026-03-10 15:58:39.538] [ 6.214947] mmc1: new ultra high speed SDR104 SDHC card at address aaaa
[2026-03-10 15:58:39.538] [ 6.221972] mmcblk1: mmc1:aaaa SL32G 29.7 GiB
[2026-03-10 15:58:39.554] [ 6.230642] mmcblk1: p1 p2
[2026-03-10 15:58:39.554] [ 6.237905] EXT4-fs (mmcblk1p2): INFO: recovery required on readonly filesystem
[2026-03-10 15:58:39.570] [ 6.245219] EXT4-fs (mmcblk1p2): write access will be enabled during recovery
[2026-03-10 15:58:39.938] [ 6.618726] EXT4-fs (mmcblk1p2): orphan cleanup on readonly fs
[2026-03-10 15:58:39.938] [ 6.625653] EXT4-fs (mmcblk1p2): recovery complete
[2026-03-10 15:58:39.954] [ 6.636305] EXT4-fs (mmcblk1p2): mounted filesystem d1eb63e9-b2b2-4688-9715-01bef2133809 ro with ordered data mode. Quota mode: none.
[2026-03-10 15:58:39.970] [ 6.648356] VFS: Mounted root (ext4 filesystem) readonly on device 179:98.
[2026-03-10 15:58:39.986] [ 6.662391] devtmpfs: mounted
[2026-03-10 15:58:39.986] [ 6.666381] Freeing unused kernel memory: 2752K
[2026-03-10 15:58:39.986] [ 6.670986] Run /sbin/init as init process
[2026-03-10 15:58:40.178] [ 6.863334] systemd[1]: System time before build time, advancing clock.
[2026-03-10 15:58:40.226] [ 6.904188] NET: Registered PF_INET6 protocol family
[2026-03-10 15:58:40.226] [ 6.909844] Segment Routing with IPv6
[2026-03-10 15:58:40.226] [ 6.913516] In-situ OAM (IOAM) with IPv6
[2026-03-10 15:58:40.258] [ 6.943331] systemd[1]: systemd 255.21^ running in system mode (+PAM -AUDIT -SELINUX -APPARMOR +IMA -SMACK +SECCOMP -GCRYPT -GNUTLS -OPENSSL +ACL +BLKID -CURL -ELFUTILS -FIDO)
[2026-03-10 15:58:40.290] [ 6.975212] systemd[1]: Detected architecture arm64.
[2026-03-10 15:58:40.306]
[2026-03-10 15:58:40.306] Welcome to Arago 2025.01!
[2026-03-10 15:58:40.306]
[2026-03-10 15:58:40.306] [ 6.991946] systemd[1]: Hostname set to <j784s4-evm>.
[2026-03-10 15:58:40.578] [ 7.251106] systemd[1]: Queued start job for default target Graphical Interface.
[2026-03-10 15:58:40.610] [ 7.288823] systemd[1]: Created slice Slice /system/getty.
[2026-03-10 15:58:40.610] [ OK ] Created slice Slice /system/getty.
[2026-03-10 15:58:40.626] [ 7.306961] systemd[1]: Created slice Slice /system/modprobe.
[2026-03-10 15:58:40.626] [ OK ] Created slice Slice /system/modprobe.
[2026-03-10 15:58:40.642] [ 7.326849] systemd[1]: Created slice Slice /system/serial-getty.
[2026-03-10 15:58:40.658] [ OK ] Created slice Slice /system/serial-getty.
[2026-03-10 15:58:40.658] [ 7.346662] systemd[1]: Created slice User and Session Slice.
[2026-03-10 15:58:40.674] [ OK ] Created slice User and Session Slice.
[2026-03-10 15:58:40.690] [ 7.366071] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[2026-03-10 15:58:40.690] [ OK ] Started Dispatch Password Requests to Console Directory Watch.
[2026-03-10 15:58:40.706] [ 7.386037] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[2026-03-10 15:58:40.706] [ OK ] Started Forward Password Requests to Wall Directory Watch.
[2026-03-10 15:58:40.722] [ 7.405992] systemd[1]: Expecting device /dev/ttyS2...
[2026-03-10 15:58:40.738] Expecting device /dev/ttyS2...
[2026-03-10 15:58:40.738] [ 7.418010] systemd[1]: Reached target Path Units.
[2026-03-10 15:58:40.738] [ OK ] Reached target Path Units.
[2026-03-10 15:58:40.754] [ 7.429974] systemd[1]: Reached target Remote File Systems.
[2026-03-10 15:58:40.754] [ OK ] Reached target Remote File Systems.
[2026-03-10 15:58:40.770] [ 7.445970] systemd[1]: Reached target Slice Units.
[2026-03-10 15:58:40.770] [ OK ] Reached target Slice Units.
[2026-03-10 15:58:40.770] [ 7.457971] systemd[1]: Reached target Swaps.
[2026-03-10 15:58:40.786] [ OK ] Reached target Swaps.
[2026-03-10 15:58:40.818] [ 7.504288] systemd[1]: Listening on RPCbind Server Activation Socket.
[2026-03-10 15:58:40.834] [ OK ] Listening on RPCbind Server Activation Socket.
[2026-03-10 15:58:40.834] [ 7.522061] systemd[1]: Reached target RPC Port Mapper.
[2026-03-10 15:58:40.850] [ OK ] Reached target RPC Port Mapper.
[2026-03-10 15:58:40.866] [ 7.543274] systemd[1]: Listening on Process Core Dump Socket.
[2026-03-10 15:58:40.866] [ OK ] Listening on Process Core Dump Socket.
[2026-03-10 15:58:40.882] [ 7.562120] systemd[1]: Listening on initctl Compatibility Named Pipe.
[2026-03-10 15:58:40.882] [ OK ] Listening on initctl Compatibility Named Pipe.
[2026-03-10 15:58:40.898] [ 7.582477] systemd[1]: Listening on Journal Audit Socket.
[2026-03-10 15:58:40.914] [ OK ] Listening on Journal Audit Socket.
[2026-03-10 15:58:40.914] [ 7.598181] systemd[1]: Listening on Journal Socket (/dev/log).
[2026-03-10 15:58:40.930] [ OK ] Listening on Journal Socket (/dev/log).
[2026-03-10 15:58:40.930] [ 7.614230] systemd[1]: Listening on Journal Socket.
[2026-03-10 15:58:40.946] [ OK ] Listening on Journal Socket.
[2026-03-10 15:58:40.946] [ 7.626240] systemd[1]: Listening on Network Service Netlink Socket.
[2026-03-10 15:58:40.946] [ OK ] Listening on Network Service Netlink Socket.
[2026-03-10 15:58:40.962] [ 7.648924] systemd[1]: Listening on udev Control Socket.
[2026-03-10 15:58:40.978] [ OK ] Listening on udev Control Socket.
[2026-03-10 15:58:40.978] [ 7.666151] systemd[1]: Listening on udev Kernel Socket.
[2026-03-10 15:58:40.994] [ OK ] Listening on udev Kernel Socket.
[2026-03-10 15:58:40.994] [ 7.682175] systemd[1]: Listening on User Database Manager Socket.
[2026-03-10 15:58:41.010] [ OK ] Listening on User Database Manager Socket.
[2026-03-10 15:58:41.042] [ 7.730142] systemd[1]: Mounting Huge Pages File System...
[2026-03-10 15:58:41.058] Mounting Huge Pages File System...
[2026-03-10 15:58:41.058] [ 7.744096] systemd[1]: Mounting POSIX Message Queue File System...
[2026-03-10 15:58:41.074] Mounting POSIX Message Queue File System...
[2026-03-10 15:58:41.090] [ 7.764263] systemd[1]: Mounting Kernel Debug File System...
[2026-03-10 15:58:41.090] Mounting Kernel Debug File System...
[2026-03-10 15:58:41.106] [ 7.782274] systemd[1]: Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[2026-03-10 15:58:41.122] [ 7.799641] systemd[1]: Mounting Temporary Directory /tmp...
[2026-03-10 15:58:41.122] Mounting Temporary Directory /tmp...
[2026-03-10 15:58:41.138] [ 7.820887] systemd[1]: Starting Create List of Static Device Nodes...
[2026-03-10 15:58:41.154] Starting Create List of Static Device Nodes...
[2026-03-10 15:58:41.154] [ 7.840159] systemd[1]: Starting Load Kernel Module configfs...
[2026-03-10 15:58:41.170] Starting Load Kernel Module configfs...
[2026-03-10 15:58:41.170] [ 7.856446] systemd[1]: Starting Load Kernel Module drm...
[2026-03-10 15:58:41.186] Starting Load Kernel Module drm...
[2026-03-10 15:58:41.186] [ 7.872296] systemd[1]: Starting Load Kernel Module fuse...
[2026-03-10 15:58:41.202] Starting Load Kernel Module fuse...
[2026-03-10 15:58:41.218] [ 7.893339] systemd[1]: Starting Start psplash boot splash screen...
[2026-03-10 15:58:41.218] Starting Start psplash boot splash screen...
[2026-03-10 15:58:41.218] [ 7.906387] fuse: init (API version 7.41)
[2026-03-10 15:58:41.234] [ 7.915930] systemd[1]: Starting RPC Bind...
[2026-03-10 15:58:41.234] Starting RPC Bind...
[2026-03-10 15:58:41.250] [ 7.928476] systemd[1]: Starting File System Check on Root Device...
[2026-03-10 15:58:41.250] Starting File System Check on Root Device...
[2026-03-10 15:58:41.266] [ 7.949862] systemd[1]: Starting Journal Service...
[2026-03-10 15:58:41.266] Starting Journal Service...
[2026-03-10 15:58:41.282] [ 7.968638] systemd[1]: Starting Load Kernel Modules...
[2026-03-10 15:58:41.298] Starting Load Kernel Modules...
[2026-03-10 15:58:41.298] [ 7.976894] systemd[1]: Starting Generate network units from Kernel command line...
[2026-03-10 15:58:41.298] Starting Generate network units from Kernel co[ 7.989624] systemd[1]: Starting Coldplug All udev Devices...
[2026-03-10 15:58:41.314] mmand line...
[2026-03-10 15:58:41.314] Starting Coldplug All udev Devices...
[2026-03-10 15:58:41.330] [ 8.003086] systemd[1]: Started RPC Bind.
[2026-03-10 15:58:41.330] [ OK ] Started RPC Bind.
[2026-03-10 15:58:41.330] [ 8.009946] systemd[1]: Mounted Huge Pages File System.
[2026-03-10 15:58:41.346] [ 8.015242] cryptodev: loading out-of-tree module taints kernel.
[2026-03-10 15:58:41.346] [ OK ] Mounted Huge Pages File System.[ 8.025695] systemd[1]: Mounted POSIX Message Queue File System.
[2026-03-10 15:58:41.362]
[2026-03-10 15:58:41.362] [ 8.026070] sysctl table check failed: ioctl/(null) procname is null
[2026-03-10 15:58:41.362] [ 8.043391] sysctl table check failed: ioctl/(null) No proc_handler
[2026-03-10 15:58:41.362] [ 8.043397] cryptodev: driver 1.14 loaded.
[2026-03-10 15:58:41.378] [ 8.047066] systemd-journald[177]: Collecting audit messages is enabled.
[2026-03-10 15:58:41.378] [ OK ] Mounted POSIX Message Queue File Sy[ 8.060999] systemd[1]: Mounted Kernel Debug File System.
[2026-03-10 15:58:41.394] stem.
[2026-03-10 15:58:41.394] [ 8.071827] systemd[1]: Mounted Temporary Directory /tmp.
[2026-03-10 15:58:41.394] [ OK ] Mounted Kernel Debug File System.
[2026-03-10 15:58:41.410] [ OK ] Mounted Temporary Directory /tmp.
[2026-03-10 15:58:41.426] [ 8.106855] systemd[1]: Finished Create List of Static Device Nodes.
[2026-03-10 15:58:41.426] [ OK ] Finished Create List of Static Device Nodes.
[2026-03-10 15:58:41.442] [ 8.130489] systemd[1]: Started Journal Service.
[2026-03-10 15:58:41.458] [ OK ] Started Journal Service.
[2026-03-10 15:58:41.458] [ OK ] Finished Load Kernel Module configfs.
[2026-03-10 15:58:41.474] [ OK ] Finished Load Kernel Module drm.
[2026-03-10 15:58:41.490] [ OK ] Finished Load Kernel Module fuse.
[2026-03-10 15:58:41.506] [FAILED] Failed to start Start psplash boot splash screen.
[2026-03-10 15:58:41.506] See 'systemctl status psplash-start.service' for details.
[2026-03-10 15:58:41.522] [DEPEND] Dependency failed for Start psplas…temd progress communication helper.
[2026-03-10 15:58:41.522] [ OK ] Finished File System Check on Root Device.
[2026-03-10 15:58:41.538] [ OK ] Finished Load Kernel Modules.
[2026-03-10 15:58:41.554] [ OK ] Finished Generate network units from Kernel command line.
[2026-03-10 15:58:41.618] Mounting FUSE Control File System...
[2026-03-10 15:58:41.634] Mounting Kernel Configuration File System...
[2026-03-10 15:58:41.650] Starting Remount Root and Kernel File Systems...
[2026-03-10 15:58:41.666] Starting Apply Kernel Variables...
[2026-03-10 15:58:41.666] Starting Create Static Device Nodes in /dev gracefully...
[2026-03-10 15:58:41.682] [ OK ] Mounted FUSE Control File System.
[2026-03-10 15:58:41.698] [ OK ] Mounted Kernel Configuration File System.
[2026-03-10 15:58:41.714] [ 8.396348] EXT4-fs (mmcblk1p2): re-mounted d1eb63e9-b2b2-4688-9715-01bef2133809 r/w.
[2026-03-10 15:58:41.730] [ OK ] Finished Remount Root and Kernel File Systems.
[2026-03-10 15:58:41.730] [ OK ] Finished Apply Kernel Variables.
[2026-03-10 15:58:41.746] [ OK ] Finished Create Static Device Nodes in /dev gracefully.
[2026-03-10 15:58:41.794] Starting Flush Journal to Persistent Storage...
[2026-03-10 15:58:41.810] [ 8.486950] systemd-journald[177]: Received client request to flush runtime journal.
[2026-03-10 15:58:41.810] Starting Create Static Device Nodes in /dev...
[2026-03-10 15:58:41.826] [ OK ] Finished Flush Journal to Persistent Storage.
[2026-03-10 15:58:41.842] [ OK ] Finished Create Static Device Nodes in /dev.
[2026-03-10 15:58:41.858] [ OK ] Reached target Preparation for Local File Systems.
[2026-03-10 15:58:41.874] Mounting /var/volatile...
[2026-03-10 15:58:41.874] [ 8.559997] audit: type=1334 audit(1748544503.692:2): prog-id=6 op=LOAD
[2026-03-10 15:58:41.890] [ 8.566663] audit: type=1334 audit(1748544503.700:3): prog-id=7 op=LOAD
[2026-03-10 15:58:41.890] Starting Rule-based Manager for Device Events and Files...
[2026-03-10 15:58:41.906] [ OK ] Mounted /var/volatile.
[2026-03-10 15:58:41.922] Starting Load/Save OS Random Seed...
[2026-03-10 15:58:41.922] [ OK ] Reached target Local File Systems.
[2026-03-10 15:58:41.938] Starting Create System Files and Directories...
[2026-03-10 15:58:41.954] [ OK ] Finished Coldplug All udev Devices.
[2026-03-10 15:58:42.002] [ OK ] Finished Create System Files and Directories.
[2026-03-10 15:58:42.018] [ 8.692816] audit: type=1334 audit(1748544503.824:4): prog-id=8 op=LOAD
[2026-03-10 15:58:42.050] Starting Network Name Resolution...
[2026-03-10 15:58:42.066] [ 8.739915] audit: type=1334 audit(1748544503.872:5): prog-id=9 op=LOAD
[2026-03-10 15:58:42.066] Starting Network Time Synchronization...
[2026-03-10 15:58:42.082] Starting Record System Boot/Shutdown in UTMP...
[2026-03-10 15:58:42.098] [ 8.777329] audit: type=1334 audit(1748544503.908:6): prog-id=10 op=LOAD
[2026-03-10 15:58:42.098] [ 8.784125] audit: type=1334 audit(1748544503.916:7): prog-id=11 op=LOAD
[2026-03-10 15:58:42.114] [ 8.790856] audit: type=1334 audit(1748544503.924:8): prog-id=12 op=LOAD
[2026-03-10 15:58:42.114] Starting User Database Manager...
[2026-03-10 15:58:42.130] [ OK ] Finished Record System Boot/Shutdown in UTMP.
[2026-03-10 15:58:42.178] [ OK ] Started User Database Manager.
[2026-03-10 15:58:42.194] [ OK ] Started Rule-based Manager for Device Events and Files.
[2026-03-10 15:58:42.258] [ OK ] Found device /dev/ttyS2.
[2026-03-10 15:58:42.338] [ OK ] Started Network Time Synchronization.
[2026-03-10 15:58:42.338] [ OK ] Started Network Name Resolution.
[2026-03-10 15:58:42.354] [ OK ] Reached target Host and Network Name Lookups.
[2026-03-10 15:58:42.370] [ OK ] Reached target System Initialization.
[2026-03-10 15:58:42.386] [ OK ] Started Daily Cleanup of Temporary Directories.
[2026-03-10 15:58:42.386] [ OK ] Reached target System Time Set.
[2026-03-10 15:58:42.402] [ OK ] Started Daily rotation of log files.
[2026-03-10 15:58:42.418] [ OK ] Reached target Timer Units.
[2026-03-10 15:58:42.434] [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[2026-03-10 15:58:42.450] [ OK ] Listening on D-Bus System Message Bus Socket.
[2026-03-10 15:58:42.466] Starting Docker Socket for the API...
[2026-03-10 15:58:42.466] [ 9.153960] random: crng init done
[2026-03-10 15:58:42.514] [ OK ] Listening on dropbear.socket.
[2026-03-10 15:58:42.530] [ OK ] Listening on PC/SC Smart Card Daemon Activation Socket.
[2026-03-10 15:58:42.546] [ 9.224838] audit: type=1334 audit(1748544686.000:9): prog-id=13 op=LOAD
[2026-03-10 15:58:42.546] Starting D-Bus System Message Bus...
[2026-03-10 15:58:42.578] Starting Reboot and dump vmcore via kexec...
[2026-03-10 15:58:42.593] [ OK ] Finished Load/Save OS Random Seed.
[2026-03-10 15:58:42.609] [ OK ] Listening on Docker Socket for the API.
[2026-03-10 15:58:42.625] [ OK ] Finished Reboot and dump vmcore via kexec.
[2026-03-10 15:58:42.641] [ 9.317105] CAN device driver interface
[2026-03-10 15:58:42.706] [ 9.394689] cdns-mhdp8546 a000000.bridge: error -EINVAL: invalid resource (null)
[2026-03-10 15:58:42.722] [ 9.402211] cdns-mhdp8546 a000000.bridge: Failed to get SAPB memory resource, HDCP not supported
[2026-03-10 15:58:42.738] [ 9.406398] at24 0-0050: supply vcc not found, using dummy regulator
[2026-03-10 15:58:42.738] [ 9.411036] mc: Linux media interface: v0.10
[2026-03-10 15:58:42.753] [ 9.434231] at24 0-0050: 32768 byte 24c256 EEPROM, writable, 1 bytes/write
[2026-03-10 15:58:42.754] [ 9.434812] PVR_K: 266: Read BVNC 36.53.104.796 from HW device registers
[2026-03-10 15:58:42.770] [ OK ] Started D-Bus System Message Bus 9.448137] PVR_K: 266: RGX Device registered BVNC 36.53.104.796 with 1 core in the system
[2026-03-10 15:58:42.786] m.
[2026-03-10 15:58:42.786] [ 9.450163] videodev: Linux video capture interface: v2.00
[2026-03-10 15:58:42.801] [ 9.479628] [drm] Initialized pvr 25.2.6850647 for 4e20000000.gpu on minor 0
[2026-03-10 15:58:42.802] [ 9.482377] k3_r5_rproc bus@100000:bus@28380000:r5fss@41000000: k3_r5_cluster_rproc_init failed, ret = -517
[2026-03-10 15:58:42.817] [ 9.502912] omap_rng 4e10000.rng: Random Number Generator ver. 241b34c
[2026-03-10 15:58:42.849] [ 9.533997] m_can_platform 26a1000.can: m_can device registered (irq=665, version=32)
[2026-03-10 15:58:42.866] [ 9.547016] gpio-mux mux-controller: 2-way mux-controller registered
[2026-03-10 15:58:42.881] [ 9.556015] remoteproc remoteproc0: releasing 41000000.r5f
[2026-03-10 15:58:42.898] [ 9.575844] m_can_platform 40528000.can: m_can device registered (irq=666, version=32)
[2026-03-10 15:58:42.898] [ 9.576884] k3_r5_rproc bus@100000:r5fss@5c00000: k3_r5_cluster_rproc_init failed, ret = -517
[2026-03-10 15:58:42.914] [ 9.594222] omap-mailbox 31f80000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:42.929] [ 9.607696] remoteproc remoteproc0: releasing 5c00000.r5f
[2026-03-10 15:58:42.930] [ 9.614620] m_can_platform 40568000.can: m_can device registered (irq=668, version=32)
[2026-03-10 15:58:42.945] [ 9.619721] omap-mailbox 31f81000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:42.946] [ 9.624595] k3_r5_rproc bus@100000:r5fss@5e00000: k3_r5_cluster_rproc_init failed, ret = -517
[2026-03-10 15:58:42.961] [ 9.630105] omap-mailbox 31f82000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:42.962] [ 9.630543] vdec 4210000.video-codec: OPP table not found in device tree
[2026-03-10 15:58:42.977] [ 9.630592] m_can_platform 2741000.can: m_can device registered (irq=671, version=32)
[2026-03-10 15:58:42.978] [ 9.651803] vdec 4210000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[2026-03-10 15:58:42.978] [ 9.666673] vdec 4210000.video-codec: Product Code: 0x521c
[2026-03-10 15:58:42.994] [ 9.672632] vdec 4210000.video-codec: Firmware Revision: 363254
[2026-03-10 15:58:42.994] [ 9.674199] platform 41000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[2026-03-10 15:58:43.010] [ 9.685441] omap-mailbox 31f83000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:43.010] [ OK ] Reached target Socket Units.
[2026-03-10 15:58:43.026] [ 9.697283] platform 41000000.r5f: configured R5F for IPC-only mode
[2026-03-10 15:58:43.026] [ 9.700740] remoteproc remoteproc0: releasing 5e00000.r5f
[2026-03-10 15:58:43.026] [ 9.703892] vdec 4220000.video-codec: OPP table not found in device tree
[2026-03-10 15:58:43.042] [ 9.706520] vdec 4220000.video-codec: Added wave5 driver with caps: 'ENCODE' 'DECODE'
[2026-03-10 15:58:43.042] [ 9.706530] vdec 4220000.video-codec: Product Code: 0x521c
[2026-03-10 15:58:43.058] [ 9.706534] vdec 4220000.video-codec: Firmware Revision: 363254
[2026-03-10 15:58:43.058] [ 9.709043] omap-mailbox 31f84000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:43.074] [ 9.709103] platform 41000000.r5f: assigned reserved memory node r5f-dma-memory@a0000000
[2026-03-10 15:58:43.074] [ 9.710346] remoteproc remoteproc1: 41000000.r5f is available
[2026-03-10 15:58:43.074] [ 9.710414] remoteproc remoteproc1: attaching to 41000000.r5f
[2026-03-10 15:58:43.090] [ 9.711682] rproc-virtio rproc-virtio.8.auto: assigned reserved memory node r5f-dma-memory@a0000000
[2026-03-10 15:58:43.090] [ 9.714625] virtio_rpmsg_bus virtio0: rpmsg host is online
[2026-03-10 15:58:43.106] [ 9.720297] platform 5900000.r5f: configured R5F for remoteproc mode
[2026-03-10 15:58:43.106] [ 9.720856] platform 5900000.r5f: assigned reserved memory node r5f-dma-memory@a6000000
[2026-03-10 15:58:43.121] [ 9.728685] remoteproc remoteproc0: 5900000.r5f is available
[2026-03-10 15:58:43.121] [ 9.730075] rproc-virtio rproc-virtio.8.auto: registered virtio0 (type 7)
[2026-03-10 15:58:43.122] [ 9.730484] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
[2026-03-10 15:58:43.137] [ 9.733120] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[2026-03-10 15:58:43.138] [ 9.751898] m_can_platform 26a1000.can main_mcan16: renamed from can0
[2026-03-10 15:58:43.154] [ 9.755420] remoteproc remoteproc1: remote processor 41000000.r5f is now attached
[2026-03-10 15:58:43.154] [ 9.755829] platform 5a00000.r5f: configured R5F for remoteproc mode
[2026-03-10 15:58:43.170] [ 9.761264] omap-mailbox 31f85000.mailbox: omap mailbox rev 0x66fca100
[2026-03-10 15:58:43.170] [ 9.767381] platform 41400000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[2026-03-10 15:58:43.185] [ 9.768248] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vdd-hba-supply regulator, assuming enabled
[2026-03-10 15:58:43.186] [ 9.768258] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vcc-supply regulator, assuming enabled
[2026-03-10 15:58:43.201] [ 9.768262] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq-supply regulator, assuming enabled
[2026-03-10 15:58:43.217] [ 9.768266] cdns-ufshcd 4e84000.ufs: ufshcd_populate_vreg: Unable to find vccq2-supply regulator, assuming enabled
[2026-03-10 15:58:43.218] [ 9.770129] platform 5a00000.r5f: assigned reserved memory node r5f-dma-memory@a7000000
[2026-03-10 15:58:43.234] [ 9.770605] remoteproc remoteproc2: 5a00000.r5f is available
[2026-03-10 15:58:43.234] [ 9.777529] remoteproc remoteproc0: powering up 5900000.r5f
[2026-03-10 15:58:43.234] [ 9.781772] platform 41400000.r5f: configured R5F for IPC-only mode
[2026-03-10 15:58:43.250] [ 9.788131] remoteproc remoteproc0: Booting fw image j784s4-main-r5f2_0-fw, size 625916
[2026-03-10 15:58:43.250] [ 9.796559] platform 41400000.r5f: assigned reserved memory node r5f-dma-memory@a1000000
[2026-03-10 15:58:43.266] [ 9.808985] scsi host0: ufshcd
[2026-03-10 15:58:43.266] [ 9.817157] remoteproc remoteproc3: 41400000.r5f is available
[2026-03-10 15:58:43.266] [ 9.823425] remoteproc remoteproc2: powering up 5a00000.r5f
[2026-03-10 15:58:43.282] [ 9.829626] remoteproc remoteproc3: attaching to 41400000.r5f
[2026-03-10 15:58:43.282] [ 9.829639] remoteproc remoteproc3: carveout rsc has non zero reserved bytes
[2026-03-10 15:58:43.298] [ 9.829643] remoteproc remoteproc3: Failed to process resources: -22
[2026-03-10 15:58:43.298] [ 9.830117] remoteproc remoteproc0: bad phdr da 0xa7100000 mem 0x8c
[2026-03-10 15:58:43.298] [ 9.830125] remoteproc remoteproc0: Failed to load program segments: -22
[2026-03-10 15:58:43.314] [ 9.832006] m_can_platform 40568000.can mcu_mcan1: renamed from can2
[2026-03-10 15:58:43.314] [ 9.837151] remoteproc remoteproc2: Booting fw image j784s4-main-r5f2_1-fw, size 163008
[2026-03-10 15:58:43.330] [ 9.843717] k3_r5_rproc bus@100000:bus@28380000:r5fss@41000000: error -EINVAL: rproc_add failed
[2026-03-10 15:58:43.330] [ 9.844146] m_can_platform 40528000.can mcu_mcan0: renamed from can1
[2026-03-10 15:58:43.346] [ 9.863934] scsi 0:0:0:49488: Well-known LUN TOSHIBA THGAF8G8T23BAILB 0300 PQ: 0 ANSI: 6
[2026-03-10 15:58:43.346] [ 9.872677] remoteproc remoteproc1: detached remote processor 41000000.r5f
[2026-03-10 15:58:43.361] [ 9.882999] m_can_platform 2741000.can main_mcan4: renamed from can3
[2026-03-10 15:58:43.362] [ 9.883535] scsi 0:0:0:49476: Well-known LUN TOSHIBA THGAF8G8T23BAILB 0300 PQ: 0 ANSI: 6
[2026-03-10 15:58:43.362] [ 9.884442] cdns-ufshcd 4e84000.ufs: ufshcd_scsi_add_wlus: BOOT WLUN not found
[2026-03-10 15:58:43.378] [ 9.893082] k3_r5_rproc bus@100000:bus@28380000:r5fss@41000000: k3_r5_cluster_rproc_init failed, ret = -22
[2026-03-10 15:58:43.393] [ 10.067452] k3_r5_rproc bus@100000:bus@28380000:r5fss@41000000: probe with driver k3_r5_rproc failed with error -22
[2026-03-10 15:58:43.394] [ OK ] Reached target Basic System.
[2026-03-10 15:58:43.425] [ 10.103576] remoteproc remoteproc3: releasing 41400000.r5f
[2026-03-10 15:58:43.425] [ 10.109264] remoteproc remoteproc1: releasing 41000000.r5f
[2026-03-10 15:58:43.441] [ 10.116449] platform 5c00000.r5f: configured R5F for remoteproc mode
[2026-03-10 15:58:43.441] [ 10.123342] platform 5c00000.r5f: assigned reserved memory node r5f-dma-memory@a2000000
[2026-03-10 15:58:43.457] [ OK ] Started Job spooling tools.
[2026-03-10 15:58:43.458] [ 10.132058] remoteproc remoteproc1: 5c00000.r5f is available
[2026-03-10 15:58:43.458] [ 10.143416] platform 5d00000.r5f: configured R5F for remoteproc mode
[ 10.150841] platform 5d00000.r5f: assigned reserved memory node r5f-dma-memory@a3000000
[2026-03-10 15:58:43.489]
[2026-03-10 15:58:43.489] [ 10.164212] remoteproc remoteproc3: 5d00000.r5f is available
[2026-03-10 15:58:43.489] [ 10.173362] [drm] Initialized tidss 1.0.0 for 4a00000.dss on minor 1
[2026-03-10 15:58:43.505] [ 10.179948] tidss 4a00000.dss: [drm] Cannot find any crtc or sizes
[2026-03-10 15:58:43.505] [ 10.180457] remoteproc remoteproc1: powering up 5c00000.r5f
[2026-03-10 15:58:43.506] [ 10.186469] tidss 4a00000.dss: [drm] Cannot find any crtc or sizes
[2026-03-10 15:58:43.521] [ 10.190886] k3-dsp-rproc 64800000.dsp: assigned reserved memory node c71-dma-memory@a8000000
[2026-03-10 15:58:43.522] [ 10.191256] k3-dsp-rproc 64800000.dsp: configured DSP for remoteproc mode
[2026-03-10 15:58:43.538] [ 10.191388] remoteproc remoteproc4: 64800000.dsp is available
[2026-03-10 15:58:43.538] [ 10.191782] remoteproc remoteproc1: Booting fw image j784s4-main-r5f0_0-fw, size 1793608
[2026-03-10 15:58:43.553] [ 10.192397] k3-dsp-rproc 65800000.dsp: assigned reserved memory node c71-dma-memory@a9000000
[2026-03-10 15:58:43.554] [ 10.193091] k3-dsp-rproc 65800000.dsp: configured DSP for remoteproc mode
[2026-03-10 15:58:43.554] [ 10.193226] remoteproc remoteproc5: 65800000.dsp is available
[2026-03-10 15:58:43.570] [ 10.194069] k3-dsp-rproc 66800000.dsp: assigned reserved memory node c71-dma-memory@aa000000
[2026-03-10 15:58:43.570] [ 10.194692] k3-dsp-rproc 66800000.dsp: configured DSP for remoteproc mode
[2026-03-10 15:58:43.585] [ 10.194832] remoteproc remoteproc6: 66800000.dsp is available
[2026-03-10 15:58:43.586] [ 10.195629] k3-dsp-rproc 67800000.dsp: assigned reserved memory node c71-dma-memory@ab000000
[2026-03-10 15:58:43.601] [ 10.196239] k3-dsp-rproc 67800000.dsp: configured DSP for remoteproc mode
[2026-03-10 15:58:43.601] [ 10.196345] remoteproc remoteproc7: 67800000.dsp is available
[2026-03-10 15:58:43.602] [ 10.197843] platform 5e00000.r5f: configured R5F for remoteproc mode
[2026-03-10 15:58:43.617] [ 10.198204] tidss 4a00000.dss: [drm] Cannot find any crtc or sizes
[2026-03-10 15:58:43.618] [ 10.198256] platform 5e00000.r5f: assigned reserved memory node r5f-dma-memory@a4000000
[2026-03-10 15:58:43.633] [ 10.198728] remoteproc remoteproc8: 5e00000.r5f is available
[2026-03-10 15:58:43.633] [ 10.199224] platform 5f00000.r5f: configured R5F for remoteproc mode
[2026-03-10 15:58:43.634] [ 10.199492] platform 5f00000.r5f: assigned reserved memory node r5f-dma-memory@a5000000
[2026-03-10 15:58:43.649] [ 10.200130] remoteproc remoteproc9: 5f00000.r5f is available
[2026-03-10 15:58:43.650] [ 10.207013] remoteproc remoteproc1: bad phdr da 0xa2104000 mem 0x148fe9d
[2026-03-10 15:58:43.665] [ 10.342609] remoteproc remoteproc1: Failed to load program segments: -22
[2026-03-10 15:58:43.665] [ OK ] Started Periodic Command Scheduler 10.349768] remoteproc remoteproc3: powering up 5d00000.r5f
[2026-03-10 15:58:43.682] [0m.
[2026-03-10 15:58:43.682] [ 10.360615] remoteproc remoteproc3: Booting fw image j784s4-main-r5f0_1-fw, size 371924
[2026-03-10 15:58:43.682] [ 10.361202] remoteproc remoteproc9: powering up 5f00000.r5f
[2026-03-10 15:58:43.697] [ 10.364481] remoteproc remoteproc8: powering up 5e00000.r5f
[2026-03-10 15:58:43.697] [ 10.364496] remoteproc remoteproc8: Booting fw image j784s4-main-r5f1_0-fw, size 163008
[2026-03-10 15:58:43.713] [ 10.365095] remoteproc remoteproc8: bad phdr da 0xa5100000 mem 0x8c
[2026-03-10 15:58:43.713] [ 10.365101] remoteproc remoteproc8: Failed to load program segments: -22
[2026-03-10 15:58:43.714] [ 10.401173] remoteproc remoteproc9: Booting fw image j784s4-main-r5f1_1-fw, size 163008
[2026-03-10 15:58:43.729] Starting Print notice about GPLv3 packages...
[2026-03-10 15:58:43.745] Starting IPv6 Packet Filtering Framework...
[2026-03-10 15:58:43.745] Starting IPv4 Packet Filtering Framework...
[2026-03-10 15:58:43.761] [ OK ] Started irqbalance daemon.
[2026-03-10 15:58:43.777] [ OK ] Started Multiple Spanning Tree Protocol Daemon.
[2026-03-10 15:58:43.778] Starting Telephony service...
[2026-03-10 15:58:43.793] Starting Expand the rootfs partiti…[ 10.469561] audit: type=1334 audit(1748544687.244:10): prog-id=14 op=LOAD
[2026-03-10 15:58:43.794] to full size of the boot device....
[2026-03-10 15:58:43.794] [ OK ] St[ 10.479119] audit: type=1334 audit(1748544687.256:11): prog-id=15 op=LOAD
[2026-03-10 15:58:43.810] arted strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
[2026-03-10 15:58:43.810] Starting User Login Management...
[2026-03-10 15:58:43.826] Starting Telnet Server...
[2026-03-10 15:58:43.842] [ OK ] Finished Telnet Server.
[2026-03-10 15:58:44.386] [ 11.070949] remoteproc remoteproc4: powering up 64800000.dsp
[2026-03-10 15:58:44.402] [ 11.076649] remoteproc remoteproc4: Booting fw image j784s4-c71_0-fw, size 14422344
[2026-03-10 15:58:44.402] [ 11.085506] remoteproc remoteproc4: unsupported resource 65538
[2026-03-10 15:58:44.418] [ 11.091387] remoteproc remoteproc4: bad phdr da 0xb2100000 mem 0x98
[2026-03-10 15:58:44.418] [ 11.098368] remoteproc remoteproc4: Failed to load program segments: -22
[2026-03-10 15:58:44.466] [ 11.147494] remoteproc remoteproc7: powering up 67800000.dsp
[2026-03-10 15:58:44.466] [ 11.153203] remoteproc remoteproc6: powering up 66800000.dsp
[2026-03-10 15:58:44.482] [ 11.158891] remoteproc remoteproc5: powering up 65800000.dsp
[2026-03-10 15:58:44.482] [ 11.164554] remoteproc remoteproc5: Booting fw image j784s4-c71_1-fw, size 14815616
[2026-03-10 15:58:44.497] [ 11.172227] remoteproc remoteproc6: Booting fw image j784s4-c71_2-fw, size 14352768
[2026-03-10 15:58:44.498] [ 11.179892] remoteproc remoteproc7: Booting fw image j784s4-c71_3-fw, size 14352768
[2026-03-10 15:58:44.513] [ 11.187861] remoteproc remoteproc6: unsupported resource 65538
[2026-03-10 15:58:44.514] [ 11.193812] remoteproc remoteproc5: unsupported resource 65538
[2026-03-10 15:58:44.514] [ 11.199775] remoteproc remoteproc7: unsupported resource 65538
[2026-03-10 15:58:44.529] [ 11.205636] remoteproc remoteproc5: bad phdr da 0xb4100000 mem 0x98
[2026-03-10 15:58:44.529] [ 11.211929] remoteproc remoteproc7: bad phdr da 0xb8100000 mem 0x98
[2026-03-10 15:58:44.530] [ 11.218210] remoteproc remoteproc6: bad phdr da 0xb6100000 mem 0x98
[2026-03-10 15:58:44.545] [ 11.224480] remoteproc remoteproc7: Failed to load program segments: -22
[2026-03-10 15:58:44.546] [ 11.231196] remoteproc remoteproc5: Failed to load program segments: -22
[2026-03-10 15:58:44.561] [ 11.237899] remoteproc remoteproc6: Failed to load program segments: -22
[2026-03-10 15:58:44.625] [ OK ] Started User Login Management.
[2026-03-10 15:58:44.641] [ OK ] Finished IPv6 Packet Filtering Framework.
[2026-03-10 15:58:44.642] [ OK ] Finished IPv4 Packet Filtering Framework.
[2026-03-10 15:58:44.769] [ OK ] Finished Expand the rootfs partition to full size of the boot device..
[2026-03-10 15:58:44.785] [ 11.462074] Bluetooth: Core ver 2.22
[2026-03-10 15:58:44.785] [ 11.465728] NET: Registered PF_BLUETOOTH protocol family
[2026-03-10 15:58:44.785] [ 11.471074] Bluetooth: HCI device and connection manager initialized
[ 11.477452] Bluetooth: HCI socket layer initializedervice.
[2026-03-10 15:58:44.802] [ 11.487532] Bluetooth: L2CAP socket layer initialized
[2026-03-10 15:58:44.817]
[2026-03-10 15:58:44.817] [ 11.492595] Bluetooth: SCO socket layer initialized
[2026-03-10 15:58:44.817] [ OK ] Started Avahi mDNS/DNS-SD Stack.
[2026-03-10 15:58:44.818] [ OK ] Created slice Slice /system/systemd-fsck.
[2026-03-10 15:58:44.834] [ OK ] Reached target Preparation for Network.
[2026-03-10 15:58:44.834] [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[2026-03-10 15:58:44.865] Starting Save/Restore Sound Card State...
[2026-03-10 15:58:44.865] Starting File System Check on /dev/mmcblk0p1...
[2026-03-10 15:58:44.866] Starting File System Check on /dev/mmcblk0p2...
[2026-03-10 15:58:44.882] Starting File System Check on /dev/mmcblk1p1...
[2026-03-10 15:58:44.882] Starting Network Configuration...
[2026-03-10 15:58:44.882] Starting Virtual Console Setup...
[2026-03-10 15:58:44.897] [ OK ] Finished Save/Restore Sound Card State.
[2026-03-10 15:58:44.897] [ OK ] Reached target Sound Card.
[2026-03-10 15:58:44.945] [ OK ] Finished File System Check on /dev/mmcblk0p1.
[2026-03-10 15:58:44.977] Mounting /run/media/boot-mmcblk0p1...
[2026-03-10 15:58:44.993] [ OK ] Finished File System Check on /dev/mmcblk1p1.
[2026-03-10 15:58:44.993] Mounting /run/media/boot-mmcblk1p1...
[2026-03-10 15:58:45.009] [ OK ] Mounted /run/media/boot-mmcblk0p1 11.687254] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[2026-03-10 15:58:45.010] 0m.
[2026-03-10 15:58:45.025] [ 11.705391] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[2026-03-10 15:58:45.025] [ 11.711360] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[2026-03-10 15:58:45.089] [ OK ] Finished File System Check on /dev/mmcblk0p2.
[2026-03-10 15:58:45.121] Mounting /run/media/rootfs-mmcblk0p2...
[2026-03-10 15:58:45.137] [ OK ] Started Network Configuration.
[2026-03-10 15:58:45.153] [ OK ] Reached target Network.
[2026-03-10 15:58:45.153] Starting containerd container runtime...
[2026-03-10 15:58:45.154] Starting LLDP daemon...
[2026-03-10 15:58:45.169] [ OK ] Started Netperf Benchmark Server 11.843834] am65-cpsw-nuss 46000000.ethernet eth0: PHY [46000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[2026-03-10 15:58:45.170] m.
[2026-03-10 15:58:45.170] [ 11.858038] am65-cpsw-nuss 46000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[2026-03-10 15:58:45.185] Starting Simple Network Management Protocol (S[ 11.869976] platform 5a00000.r5f: can not power up core1 before core0
[2026-03-10 15:58:45.201] NMP) Daemon....
[2026-03-10 15:58:45.201] [ 11.878953] remoteproc remoteproc2: can't prepare rproc 5a00000.r5f: -1
[2026-03-10 15:58:45.201] Starting Permit User Sessions...
[2026-03-10 15:58:45.217] [ 11.884451] am65-cpsw-nuss c200000.ethernet eth1: PHY [c200f00.mdio:00] driver [TI DP83867] (irq=POLL)
[2026-03-10 15:58:45.217] [ 11.885274] EXT4-fs (mmcblk0p2): mounted filesystem ec704a2a-2dbb-4ffd-adfb-f620d177de91 r/w with ordered data mode. Quota mode: none.
[2026-03-10 15:58:45.233] [ 11.913601] am65-cpsw-nuss c200000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[2026-03-10 15:58:45.234] [ OK ] Finished Virtual Console Setup.
[2026-03-10 15:58:45.250] [ OK ] Mounted /run/media/boot-mmcblk1p1.
[2026-03-10 15:58:45.250] [ OK ] Mounted /run/media/rootfs-mmcblk0p2.
[2026-03-10 15:58:45.266] [ OK ] Finished Permit User Sessions.
[2026-03-10 15:58:45.281] [ OK ] Started emptty display manager.
[2026-03-10 15:58:45.282] [ OK ] Started Getty on tty1.
[2026-03-10 15:58:45.282] [ OK ] Started Serial Getty on ttyS2.
[2026-03-10 15:58:45.297] [ OK ] Reached target Login Prompts.
[2026-03-10 15:58:45.313] [ OK ] Started LLDP daemon.
[2026-03-10 15:58:45.697] [ 12.381944] platform 5d00000.r5f: can not power up core1 before core0
[2026-03-10 15:58:45.713] [ 12.388409] remoteproc remoteproc3: can't prepare rproc 5d00000.r5f: -1
[2026-03-10 15:58:45.729] [ 12.413936] platform 5f00000.r5f: can not power up core1 before core0
[2026-03-10 15:58:45.745] [ 12.420388] remoteproc remoteproc9: can't prepare rproc 5f00000.r5f: -1
[2026-03-10 15:58:45.969] [ OK ] Started Simple Network Management Protocol (SNMP) Daemon..
[2026-03-10 15:58:46.769] [ OK ] Started containerd container runtime.
[2026-03-10 15:58:47.777] ***************************************************************
[2026-03-10 15:58:47.777] ***************************************************************
[2026-03-10 15:58:47.778] NOTICE: This file system contains the following GPL-3.0 packages:
[2026-03-10 15:58:47.793] adwaita-icon-theme-symbolic
[2026-03-10 15:58:47.793] autoconf
[2026-03-10 15:58:47.793] bash-dev
[2026-03-10 15:58:47.793] bash
[2026-03-10 15:58:47.793] bc
[2026-03-10 15:58:47.794] binutils
[2026-03-10 15:58:47.794] cifs-utils
[2026-03-10 15:58:47.794] coreutils-stdbuf
[2026-03-10 15:58:47.794] coreutils
[2026-03-10 15:58:47.794] cpio
[2026-03-10 15:58:47.794] cpp-symlinks
[2026-03-10 15:58:47.794] cpp
[2026-03-10 15:58:47.794] dosfstools
[2026-03-10 15:58:47.809] elfutils-dev
[2026-03-10 15:58:47.809] elfutils
[2026-03-10 15:58:47.809] findutils
[2026-03-10 15:58:47.809] g++-symlinks
[2026-03-10 15:58:47.809] g++
[2026-03-10 15:58:47.809] gawk
[2026-03-10 15:58:47.809] gcc-symlinks
[2026-03-10 15:58:47.809] gcc
[2026-03-10 15:58:47.810] gdb
[2026-03-10 15:58:47.810] gdbserver
[2026-03-10 15:58:47.810] gettext
[2026-03-10 15:58:47.810] glmark2
[2026-03-10 15:58:47.810] gnu-config
[2026-03-10 15:58:47.810] grub-common
[2026-03-10 15:58:47.810] grub-editenv
[2026-03-10 15:58:47.810] grub-efi
[2026-03-10 15:58:47.825] gzip
[2026-03-10 15:58:47.825] hidapi
[2026-03-10 15:58:47.825] kbd-dev
[2026-03-10 15:58:47.825] kbd-keymaps-pine
[2026-03-10 15:58:47.825] less
[2026-03-10 15:58:47.825] libasm1
[2026-03-10 15:58:47.825] libatomic-dev
[2026-03-10 15:58:47.825] libatomic1
[2026-03-10 15:58:47.825] libbfd
[2026-03-10 15:58:47.826] libdebuginfod1
[2026-03-10 15:58:47.826] libdw1
[2026-03-10 15:58:47.826] libelf1
[2026-03-10 15:58:47.826] libgcc-s-dev
[2026-03-10 15:58:47.826] libgcc1
[2026-03-10 15:58:47.826] libgdbm-compat4
[2026-03-10 15:58:47.826] libgdbm-dev
[2026-03-10 15:58:47.841] libgdbm6
[2026-03-10 15:58:47.841] libgettextlib
[2026-03-10 15:58:47.841] libgettextsrc
[2026-03-10 15:58:47.841] libgmp-dev
[2026-03-10 15:58:47.841] libgmp10
[2026-03-10 15:58:47.841] libgmpxx4
[2026-03-10 15:58:47.841] libgnutls-dev
[2026-03-10 15:58:47.841] libgnutls-openssl27
[2026-03-10 15:58:47.842] libgomp1
[2026-03-10 15:58:47.842] libidn2-0
[2026-03-10 15:58:47.842] libidn2-dev
[2026-03-10 15:58:47.842] libmpc3
[2026-03-10 15:58:47.842] libmpfr6
[2026-03-10 15:58:47.857] libopcodes
[2026-03-10 15:58:47.857] libqt6shadertools-dev
[2026-03-10 15:58:47.857] libqt6shadertools-plugins
[2026-03-10 15:58:47.857] libqt6shadertools-qmlplugins
[2026-03-10 15:58:47.857] libqt6shadertools6
[2026-03-10 15:58:47.857] libreadline-dev
[2026-03-10 15:58:47.858] libreadline8
[2026-03-10 15:58:47.858] libstdc++-dev
[2026-03-10 15:58:47.858] libstdc++6
[2026-03-10 15:58:47.858] libtasn1-dev
[2026-03-10 15:58:47.873] libunistring-dev
[2026-03-10 15:58:47.873] libunistring5
[2026-03-10 15:58:47.873] m4
[2026-03-10 15:58:47.873] make
[2026-03-10 15:58:47.873] nettle-dev
[2026-03-10 15:58:47.873] nettle
[2026-03-10 15:58:47.873] parted
[2026-03-10 15:58:47.873] piglit
[2026-03-10 15:58:47.873] qtbase-dev
[2026-03-10 15:58:47.874] qtbase-examples
[2026-03-10 15:58:47.874] qtbase-plugins
[2026-03-10 15:58:47.874] qtbase-qmlplugins
[2026-03-10 15:58:47.874] qtbase-staticdev
[2026-03-10 15:58:47.889] qtbase
[2026-03-10 15:58:47.889] qtdeclarative-dev
[2026-03-10 15:58:47.889] qtdeclarative-plugins
[2026-03-10 15:58:47.889] qtdeclarative-qmlplugins
[2026-03-10 15:58:47.889] qtdeclarative-staticdev
[2026-03-10 15:58:47.889] qtdeclarative
[2026-03-10 15:58:47.889] qtlanguageserver-dev
[2026-03-10 15:58:47.890] qtlanguageserver-plugins
[2026-03-10 15:58:47.890] qtlanguageserver-qmlplugins
[2026-03-10 15:58:47.905] qtlanguageserver-staticdev
[2026-03-10 15:58:47.905] qtlanguageserver
[2026-03-10 15:58:47.905] qtsvg-dev
[2026-03-10 15:58:47.905] qtsvg-plugins
[2026-03-10 15:58:47.905] qtsvg-qmlplugins
[2026-03-10 15:58:47.905] qtsvg
[2026-03-10 15:58:47.905] qtwayland-dev
[2026-03-10 15:58:47.906] qtwayland-plugins
[2026-03-10 15:58:47.906] qtwayland-qmlplugins
[2026-03-10 15:58:47.906] qtwayland
[2026-03-10 15:58:47.921] tar
[2026-03-10 15:58:47.921] which
[2026-03-10 15:58:47.921]
[2026-03-10 15:58:47.921] If you do not wish to distribute GPL-3.0 components please remove
[2026-03-10 15:58:47.921] the above packages prior to distribution. This can be done using
[2026-03-10 15:58:47.922] the opkg remove command. i.e.:
[2026-03-10 15:58:47.937] opkg remove <package>
[2026-03-10 15:58:47.937] Where <package> is the name printed in the list above
[2026-03-10 15:58:47.937]
[2026-03-10 15:58:47.937] NOTE: If the package is a dependency of another package you
[2026-03-10 15:58:47.937] will be notified of the dependent packages. You should
[2026-03-10 15:58:47.953] use the --force-removal-of-dependent-packages option to
[2026-03-10 15:58:47.953] also remove the dependent packages as well
[2026-03-10 15:58:47.953] ***************************************************************
[2026-03-10 15:58:47.969] ***************************************************************
[2026-03-10 15:58:47.969] [ OK ] Finished Print notice about GPLv3 packages.
[2026-03-10 15:58:47.985] [ OK ] Reached target Multi-User System.
[2026-03-10 15:58:48.001] [ OK ] Reached target Graphical Interface.
[2026-03-10 15:58:48.049] Starting Record Runlevel Change in UTMP...
[2026-03-10 15:58:48.081] [ OK ] Finished Record Runlevel Change in UTMP.
[2026-03-10 15:58:48.785] [ 15.470763] kauditd_printk_skb: 2 callbacks suppressed
[2026-03-10 15:58:48.801] [ 15.470773] audit: type=1006 audit(1748544692.248:14): pid=1260 uid=0 subj=kernel old-auid=4294967295 auid=1000 tty=(none) old-ses=4294967295 ses=1 res=1
[2026-03-10 15:58:48.802] [ 15.489679] audit: type=1300 audit(1748544692.248:14): arch=c00000b7 syscall=64 success=yes exit=4 a0=8 a1=ffffcdcded58 a2=4 a3=1 items=0 ppid=1 pid=1260 auid=1000 uid=0 gid=)
[2026-03-10 15:58:48.834] [ 15.517540] audit: type=1327 audit(1748544692.248:14): proctitle="(systemd)"
[2026-03-10 15:58:49.105]
[2026-03-10 15:58:49.105] _____ _____ _ _
[2026-03-10 15:58:49.121] | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_
[2026-03-10 15:58:49.121] | | _| .'| . | . | | __| _| . | | | -_| _| _|
[2026-03-10 15:58:49.122] |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_|
[2026-03-10 15:58:49.137] |___| |___|
[2026-03-10 15:58:49.137]
[2026-03-10 15:58:49.137] Arago Project j784s4-evm ttyS2
[2026-03-10 15:58:49.137]
[2026-03-10 15:58:49.137] Arago 2025.01 j784s4-evm ttyS2
[2026-03-10 15:58:49.138]
[2026-03-10 15:58:49.138] j784s4-evm login: [ 16.866682] PVR_K: 1267: RGX Firmware image 'rgx.fw.36.53.104.796' loaded
[2026-03-10 15:58:50.193] [ 16.880572] PVR_K: 1267: Shader binary image 'rgx.sh.36.53.104.796' loaded
[2026-03-10 15:58:50.209] [ 16.889043] PVR_K: 1267: SLCSize: 262144
CTRL-A Z for help | 115200 8N1 | NOR | Minicom 2.8 | VT102 | Offline | ttyUSB4
Best Regards
Gokul Praveen