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.

AM625: How do I boot up am6232a?

Part Number: AM625

CPU: AM6232A TCGHAALW

Installer: ti-processor-sdk-linux-am62xx-evm-09.00.00.03-Linux-x86-Install.bin — 6664936 K

SD card image: tisdk-debian-bookworm-am62xx-evm.wic.xz — 1955030 K

I have tried the following patch, but after booting up, the debug port does not display any messages.

board-support\ti-linux-kernel\arch\arm64\boot\k3-am625-sk.dts

/ {
+	cpus {
+		cpu-map {
+			cluster0 {
+				/delete-node/ core2;
+				/delete-node/ core3;
+			};
+		};
+	
+		/delete-node/ cpu@2;
+		/delete-node/ cpu@3;
+	};

-	vmain_pd: regulator-0 {
-		/* TPS65988 PD CONTROLLER OUTPUT */
-		compatible = "regulator-fixed";
-		regulator-name = "vmain_pd";
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		regulator-always-on;
-		regulator-boot-on;
-	};
-
-	vcc_5v0: regulator-1 {
-		/* Output of LM34936 */
-		compatible = "regulator-fixed";
-		regulator-name = "vcc_5v0";
-		regulator-min-microvolt = <5000000>;
-		regulator-max-microvolt = <5000000>;
-		vin-supply = <&vmain_pd>;
-		regulator-always-on;
-		regulator-boot-on;
-	};
-
-	vcc_3v3_sys: regulator-2 {
-		/* output of LM61460-Q1 */
-		compatible = "regulator-fixed";
-		regulator-name = "vcc_3v3_sys";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-		vin-supply = <&vmain_pd>;
-		regulator-always-on;
-		regulator-boot-on;
-	};
-
-	vdd_mmc1: regulator-3 {
-		/* TPS22918DBVR */
-		compatible = "regulator-fixed";
-		regulator-name = "vdd_mmc1";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-		regulator-boot-on;
-		enable-active-high;
-		vin-supply = <&vcc_3v3_sys>;
-		gpio = <&exp1 3 GPIO_ACTIVE_HIGH>;
-	};
-
-	vdd_sd_dv: regulator-4 {
-		/* Output of TLV71033 */
-		compatible = "regulator-gpio";
-		regulator-name = "tlv71033";
-		pinctrl-names = "default";
-		pinctrl-0 = <&vdd_sd_dv_pins_default>;
-		regulator-min-microvolt = <1800000>;
-		regulator-max-microvolt = <3300000>;
-		regulator-boot-on;
-		vin-supply = <&vcc_5v0>;
-		gpios = <&main_gpio0 31 GPIO_ACTIVE_HIGH>;
-		states = <1800000 0x0>,
-			 <3300000 0x1>;
-	};
-
-	vcc_1v8: regulator-5 {
-		/* output of TPS6282518DMQ */
-		compatible = "regulator-fixed";
-		regulator-name = "vcc_1v8";
-		regulator-min-microvolt = <1800000>;
-		regulator-max-microvolt = <1800000>;
-		vin-supply = <&vcc_3v3_sys>;
-		regulator-always-on;
-		regulator-boot-on;
-	};
-
-	wlan_lten: regulator-6 {
-		compatible = "regulator-fixed";
-		regulator-name = "wlan_lten";
-		regulator-min-microvolt = <3300000>;
-		regulator-max-microvolt = <3300000>;
-		vin-supply = <&vcc_3v3_sys>;
-		regulator-always-on;
-		gpios = <&exp1 11 GPIO_ACTIVE_LOW>;
-	};
-
-	wlan_en: regulator-7 {
-		compatible = "regulator-fixed";
-		regulator-name = "wlan_en";
-		regulator-min-microvolt = <1800000>;
-		regulator-max-microvolt = <1800000>;
-		vin-supply = <&wlan_lten>;
-		enable-active-high;
-		gpios = <&main_gpio0 71 GPIO_ACTIVE_HIGH>;
-		pinctrl-names = "default";
-		pinctrl-0 = <&wlan_en_pins_default>;
-	};
};

&main_pmx0 {

-	vdd_sd_dv_pins_default: vdd-sd-dv-pins-default {
-		pinctrl-single,pins = <
-			AM62X_IOPAD(0x07c, PIN_OUTPUT, 7) /* (P25) GPMC0_CLK.GPIO0_31 */
-		>;
-	};
	
-	wlan_en_pins_default: wlan-en-pins-default {
-		pinctrl-single,pins = <
-				AM62X_IOPAD(0x124, PIN_OUTPUT, 7) /* (A23) MMC2_SDCD.GPIO0_71 */
-		>;
-	};

-	main_mmc2_pins_default: main-mmc2-pins-default {
-		pinctrl-single,pins = <
-			AM62X_IOPAD(0x120, PIN_INPUT, 0) /* (C24) MMC2_CMD */
-			AM62X_IOPAD(0x118, PIN_INPUT, 0) /* (D25) MMC2_CLK */
-			AM62X_IOPAD(0x114, PIN_INPUT, 0) /* (B24) MMC2_DAT0 */
-			AM62X_IOPAD(0x110, PIN_INPUT, 0) /* (C25) MMC2_DAT1 */
-			AM62X_IOPAD(0x10c, PIN_INPUT, 0) /* (E23) MMC2_DAT2 */
-			AM62X_IOPAD(0x108, PIN_INPUT, 0) /* (D24) MMC2_DAT3 */
-			AM62X_IOPAD(0x11c, PIN_INPUT, 0) /* (#N/A) MMC2_CLKB */
-		>;
-	};

-	main_wlirq_pins_default: main-wlirq-pins-default {
-		pinctrl-single,pins = <
-			AM62X_IOPAD(0x128, PIN_INPUT, 7) /* (B23) MMC2_SDWP.GPIO0_72 */
-		>;
-	};
};

-&sdhci1 {
-	vmmc-supply = <&vdd_mmc1>;
-	vqmmc-supply = <&vdd_sd_dv>;
-};


-&sdhci2 {
-	status = "okay";
-	vmmc-supply = <&wlan_en>;
-	pinctrl-names = "default";
-	pinctrl-0 = <&main_mmc2_pins_default>;
-	bus-width = <4>;
-	non-removable;
-	ti,fails-without-test-cd;
-	cap-power-off-card;
-	keep-power-in-suspend;
-	ti,driver-strength-ohm = <50>;
-	assigned-clocks = <&k3_clks 157 158>;
-	assigned-clock-parents = <&k3_clks 157 160>;
-
-	#address-cells = <1>;
-	#size-cells = <0>;
-	wlcore: wlcore@2 {
-		compatible = "ti,wl1837";
-		reg = <2>;
-		pinctrl-names = "default";
-		pinctrl-0 = <&main_wlirq_pins_default>;
-		interrupt-parent = <&main_gpio0>;
-		interrupts = <72 IRQ_TYPE_EDGE_RISING>;
-	};
-};

-&tlv320aic3106 {
-	DVDD-supply = <&vcc_1v8>;
-};

+&wkup_rti0 {
+	states = "disabled";
+};

+&mcu_rti0 {
+	states = "disabled";
+};

+&main_rti0 {
+	states = "disabled";
+};

+&main_rti1 {
+	states = "disabled";
+};

+&main_rti2 {
+	states = "disabled";
+};

+&main_rti3 {
+	states = "disabled";
+};

+&main_rti15 {
+	states = "disabled";
+};

+&gpu {
+	status = "disabled";
+};

board-support\ti-linux-kernel\arch\arm64\boot\k3-am62x-sk-common.dtsi

/ {
	chosen {
-		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";
+		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 maxcpus=2";
	};
};

&main_i2c1 {
	tlv320aic3106: audio-codec@1b {
		#sound-dai-cells = <0>;
		compatible = "ti,tlv320aic3106";
		reg = <0x1b>;
		ai3x-micbias-vg = <1>;	/* 2.0V */

		/* Regulators */
-		AVDD-supply = <&vcc_3v3_sys>;
-		IOVDD-supply = <&vcc_3v3_sys>;
-		DRVDD-supply = <&vcc_3v3_sys>;
	};
};

board-support\ti-u-boot\arch\arm\dts\k3-am625-sk.dts

/ {
	chosen {
-		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000";
+		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 maxcpus=2";
	};
	
+	cpus {
+		cpu-map {
+			cluster0 {
+				/delete-node/ core2;
+				/delete-node/ core3;
+			};
+		};
	
+		/delete-node/ cpu@2;
+		/delete-node/ cpu@3;
+	};
};

run on AM62x_SKEVM_PROC114E3

U-Boot SPL 2023.04 (Mar 20 2024 - 20:22:41 +0800)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
SPL initial stack usage: 13376 bytes
Trying to boot from MMC2
Starting ATF on ARM64 core...

NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
NOTICE:  BL31: Built : 00:42:57, Jan 13 2023

U-Boot SPL 2023.04 (Mar 20 2024 - 20:22:49 +0800)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
SPL initial stack usage: 1856 bytes
Error (-2): cannot determine file size
Trying to boot from MMC2


U-Boot 2023.04 (Mar 20 2024 - 20:22:49 +0800)

SoC:   AM62X SR1.0 GP
Model: Texas Instruments AM625 SK
EEPROM not available at 80, trying to read at 81
Board: AM62-SKEVM rev E3
DRAM:  2 GiB
Core:  71 devices, 31 uclasses, devicetree: separate
MMC:   mmc@fa10000: 0, mmc@fa00000: 1
Loading Environment from nowhere... OK
In:    serial
Out:   serial
Err:   serial
Net:   eth0: ethernet@8000000port@1
Hit any key to stop autoboot:  2  1  0 
switch to partitions #0, OK
mmc1 is current device
SD/MMC found on device 1
Failed to load 'boot.scr'
Failed to load 'uEnv.txt'
## Error: "main_cpsw0_qsgmii_phyinit" not defined
20593152 bytes read in 231 ms (85 MiB/s)
53900 bytes read in 17 ms (3 MiB/s)
Working FDT set to 88000000
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
Working FDT set to 88000000
ERROR: reserving fdt memory region failed (addr=ff700000 size=8ca000 flags=4)
   Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK
Working FDT set to 8feef000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.1.33 (root@andrew-GENE-CML5) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024
[    0.000000] Machine model: Texas Instruments AM625 SK
[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[    0.000000] printk: bootconsole [ns16550a0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
[    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
[    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
[    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
[    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
[    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ff6fffff]
[    0.000000]   node   0: [mem 0x00000000ff700000-0x00000000fffc9fff]
[    0.000000]   node   0: [mem 0x00000000fffca000-0x00000000ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=65450c88-02 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1838268K/2097152K available (12480K kernel code, 1294K rwdata, 4040K rodata, 2176K init, 498K bss, 127812K reserved, 131072K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: RCU event tracing is enabled.
[    0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000] Trampoline variant of Tasks RCU enabled.
[    0.000000] Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 256 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
[    0.000000] ITS [mem 0x01820000-0x0182ffff]
[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x0000000080030000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[    0.008536] Console: colour dummy device 80x25
[    0.013129] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[    0.023811] pid_max: default: 32768 minimum: 301
[    0.028585] LSM: Security Framework initializing
[    0.033441] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.041025] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.050795] cblist_init_generic: Setting adjustable number of callback queues.
[    0.058253] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.064554] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.070954] rcu: Hierarchical SRCU implementation.
[    0.075861] rcu: Max phase no-delay instances is 1000.
[    0.081473] Platform MSI: msi-controller@1820000 domain created
[    0.087795] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
[    0.097590] EFI services will not be available.
[    0.102446] smp: Bringing up secondary CPUs ...
[    0.107744] Detected VIPT I-cache on CPU1
[    0.107862] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
[    0.107882] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
[    0.107939] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.108056] smp: Brought up 1 node, 2 CPUs
[    0.137451] SMP: Total of 2 processors activated.
[    0.142264] CPU features: detected: 32-bit EL0 Support
[    0.147536] CPU features: detected: CRC32 instructions
[    0.152852] CPU: All CPU(s) started at EL2
[    0.157038] alternatives: applying system-wide alternatives
[    0.164582] devtmpfs: initialized
[    0.175597] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.185616] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.197048] pinctrl core: initialized pinctrl subsystem
[    0.203065] DMI not present or invalid.
[    0.207673] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.214911] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.222304] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.230377] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.238561] audit: initializing netlink subsys (disabled)
[    0.244355] audit: type=2000 audit(0.152:1): state=initialized audit_enabled=0 res=1
[    0.244885] thermal_sys: Registered thermal governor 'step_wise'
[    0.252298] thermal_sys: Registered thermal governor 'power_allocator'
[    0.258636] cpuidle: using governor menu
[    0.269524] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.276526] ASID allocator initialised with 65536 entries
[    0.292278] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
[    0.303531] platform connector: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
[    0.312959] KASLR disabled due to lack of seed
[    0.324660] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.331633] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.338045] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.344984] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.351391] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.358329] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.364736] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.371674] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.379903] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
[    0.388996] iommu: Default domain type: Translated 
[    0.393994] iommu: DMA domain TLB invalidation policy: strict mode 
[    0.400681] SCSI subsystem initialized
[    0.404916] usbcore: registered new interface driver usbfs
[    0.410564] usbcore: registered new interface driver hub
[    0.416016] usbcore: registered new device driver usb
[    0.421667] pps_core: LinuxPPS API ver. 1 registered
[    0.426747] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.436104] PTP clock support registered
[    0.440227] EDAC MC: Ver: 3.0.0
[    0.444368] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
[    0.451529] FPGA manager framework
[    0.455109] Advanced Linux Sound Architecture Driver Initialized.
[    0.462335] clocksource: Switched to clocksource arch_sys_counter
[    0.468829] VFS: Disk quotas dquot_6.6.0
[    0.472884] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.485872] NET: Registered PF_INET protocol family
[    0.491174] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.500431] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.509240] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.517179] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.525389] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.533383] TCP: Hash tables configured (established 16384 bind 16384)
[    0.540295] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.547219] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.554740] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.561071] RPC: Registered named UNIX socket transport module.
[    0.567167] RPC: Registered udp transport module.
[    0.571977] RPC: Registered tcp transport module.
[    0.576786] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.583397] NET: Registered PF_XDP protocol family
[    0.588311] PCI: CLS 0 bytes, default 64
[    0.593142] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[    0.603125] Initialise system trusted keyrings
[    0.607971] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.620423] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.627182] NFS: Registering the id_resolver key type
[    0.632413] Key type id_resolver registered
[    0.636691] Key type id_legacy registered
[    0.640858] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.647714] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.655496] 9p: Installing v9fs 9p2000 file system support
[    0.697025] Key type asymmetric registered
[    0.701218] Asymmetric key parser 'x509' registered
[    0.706256] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.714008] io scheduler mq-deadline registered
[    0.718649] io scheduler kyber registered
[    0.725744] pinctrl-single 4084000.pinctrl: 34 pins, size 136
[    0.732362] pinctrl-single f4000.pinctrl: 171 pins, size 684
[    0.739211] pinctrl-single a40000.pinctrl: 512 pins, size 2048
[    0.752555] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.766600] loop: module loaded
[    0.771049] megasas: 07.719.03.00-rc1
[    0.778794] tun: Universal TUN/TAP device driver, 1.6
[    0.784663] thunder_xcv, ver 1.0
[    0.788016] thunder_bgx, ver 1.0
[    0.791350] nicpf, ver 1.0
[    0.794485] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.801874] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.807372] hclge is initializing
[    0.810784] e1000: Intel(R) PRO/1000 Network Driver
[    0.815770] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.821676] e1000e: Intel(R) PRO/1000 Network Driver
[    0.826752] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.832837] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.838358] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.844086] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.850507] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.856695] sky2: driver version 1.30
[    0.861107] VFIO - User Level meta-driver version: 0.3
[    0.867123] usbcore: registered new interface driver usb-storage
[    0.874032] i2c_dev: i2c /dev entries driver
[    0.880461] sdhci: Secure Digital Host Controller Interface driver
[    0.886832] sdhci: Copyright(c) Pierre Ossman
[    0.891707] Synopsys Designware Multimedia Card Interface Driver
[    0.898236] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.904941] ledtrig-cpu: registered to indicate activity on CPUs
[    0.911273] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    0.918211] usbcore: registered new interface driver usbhid
[    0.923915] usbhid: USB HID core driver
[    0.929088] optee: probing for conduit method.
[    0.933691] optee: revision 3.20 (8e74d476)
[    0.934034] optee: dynamic shared memory is enabled
[    0.943582] optee: initialized driver
[    0.949124] Initializing XFRM netlink socket
[    0.953555] NET: Registered PF_PACKET protocol family
[    0.958866] 9pnet: Installing 9P2000 support
[    0.963301] Key type dns_resolver registered
[    0.968112] registered taskstats version 1
[    0.972341] Loading compiled-in X.509 certificates
[    0.985934] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
[    1.046318] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
[    1.053711] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
[    1.060637] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
[    1.066630] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
[    1.074985] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
[    1.084234] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
[    1.094164] ti-udma 485c0100.dma-controller: Number of rings: 82
[    1.102408] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
[    1.113480] ti-udma 485c0000.dma-controller: Number of rings: 150
[    1.123550] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
[    1.133754] printk: console [ttyS2] disabled
[    1.138217] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250
[    1.147117] printk: console [ttyS2] enabled
[    1.147117] printk: console [ttyS2] enabled
[    1.155575] printk: bootconsole [ns16550a0] disabled
[    1.155575] printk: bootconsole [ns16550a0] disabled
[    1.168647] spi-nor spi0.0: s28hs512t (65536 Kbytes)
[    1.173764] 7 fixed-partitions partitions found on MTD device fc40000.spi.0
[    1.180732] Creating 7 MTD partitions on "fc40000.spi.0":
[    1.186125] 0x000000000000-0x000000080000 : "ospi.tiboot3"
[    1.192825] 0x000000080000-0x000000280000 : "ospi.tispl"
[    1.199216] 0x000000280000-0x000000680000 : "ospi.u-boot"
[    1.205622] 0x000000680000-0x0000006c0000 : "ospi.env"
[    1.211747] 0x0000006c0000-0x000000700000 : "ospi.env.backup"
[    1.218519] 0x000000800000-0x000003fc0000 : "ospi.rootfs"
[    1.224993] 0x000003fc0000-0x000004000000 : "ospi.phypattern"
[    1.233233] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
[    1.278362] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[    1.288111] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
[    1.296221] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
[    1.304343] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
[    1.317200] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
[    1.324328] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
[    1.330850] pps pps0: new PPS source ptp0
[    1.335176] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
[    1.345539] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
[    1.356876] mmc0: CQHCI version 5.10
[    1.357620] mmc1: CQHCI version 5.10
[    1.370057] pca953x 1-0022: supply vcc not found, using dummy regulator
[    1.376861] pca953x 1-0022: using AI
[    1.405265] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
[    1.405317] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
[    1.414635] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
[    1.441185] ALSA device list:
[    1.444195]   No soundcards found.
[    1.448274] Waiting for root device PARTUUID=65450c88-02...
[    1.482717] mmc1: new ultra high speed SDR104 SDHC card at address 59b4
[    1.490364] mmcblk1: mmc1:59b4 SMTC  29.1 GiB 
[    1.497155]  mmcblk1: p1 p2
[    1.511612] mmc0: Command Queue Engine enabled
[    1.516136] mmc0: new HS200 MMC card at address 0001
[    1.522181] mmcblk0: mmc0:0001 S0J56X 14.8 GiB 
[    1.528838]  mmcblk0: p1 p2 p3
[    1.532890] mmcblk0boot0: mmc0:0001 S0J56X 31.5 MiB 
[    1.539116] mmcblk0boot1: mmc0:0001 S0J56X 31.5 MiB 
[    1.545115] mmcblk0rpmb: mmc0:0001 S0J56X 4.00 MiB, chardev (240:0)
[    1.600153] EXT4-fs (mmcblk1p2): recovery complete
[    1.606189] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
[    1.614902] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    1.622860] devtmpfs: mounted
[    1.627266] Freeing unused kernel memory: 2176K
[    1.631891] Run /sbin/init as init process
[    1.892664] systemd[1]: System time before build time, advancing clock.
[    1.951479] NET: Registered PF_INET6 protocol family
[    1.958508] Segment Routing with IPv6
[    1.962229] In-situ OAM (IOAM) with IPv6
[    2.020623] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    2.053547] systemd[1]: Detected architecture arm64.

Welcome to Debian GNU/Linux 12 (bookworm)!


[    2.076635] systemd[1]: Hostname set to <am62xx-evm>.
[    2.690241] systemd[1]: Queued start job for default target graphical.target.
[    2.722858] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  OK  ] Created slice system-getty.slice - Slice /system/getty.

[    2.748404] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  OK  ] Created slice system-modprlice - Slice /system/modprobe.

[    2.776448] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[  OK  ] Created slice system-seria - Slice /system/serial-getty.

[    2.804025] systemd[1]: Created slice user.slice - User and Session Slice.
[  OK  ] Created slice user.slice - User and Session Slice.

[    2.827137] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started systemd-ask-passwoquests to Console Directory Watch.

[    2.855021] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  OK  ] Started systemd-ask-passwo Requests to Wall Directory Watch.

[    2.882823] systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
[    2.902348] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
         Expecting device dev-ttyS2.device - /dev/ttyS2...

[    2.926620] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  OK  ] Reached target cryptsetup.get - Local Encrypted Volumes.

[    2.950794] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  OK  ] Reached target integrityseLocal Integrity Protected Volumes.

[    2.974752] systemd[1]: Reached target paths.target - Path Units.
[  OK  ] Reached target paths.target - Path Units.

[    2.998865] systemd[1]: Reached target remote-cryptsetup.target - Remote Encrypted Volumes.
[  OK  ] Reached target remote-crypet - Remote Encrypted Volumes.

[    3.022797] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[  OK  ] Reached target remote-fs.target - Remote File Systems.

[    3.046721] systemd[1]: Reached target remote-veritysetup.target - Remote Verity Protected Volumes.
[  OK  ] Reached target remote-veri- Remote Verity Protected Volumes.

[    3.070984] systemd[1]: Reached target slices.target - Slice Units.
[  OK  ] Reached target slices.target - Slice Units.

[    3.094802] systemd[1]: Reached target swap.target - Swaps.
[  OK  ] Reached target swap.target - Swaps.

[    3.115239] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  OK  ] Reached target veritysetup - Local Verity Protected Volumes.

[    3.140087] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  OK  ] Listening on systemd-initc initctl Compatibility Named Pipe.

[    3.169913] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  OK  ] Listening on systemd-journsocket - Journal Audit Socket.

[    3.196565] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  OK  ] Listening on systemd-journt - Journal Socket (/dev/log).

[    3.225763] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  OK  ] Listening on systemd-journald.socket - Journal Socket.

[    3.252681] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[  OK  ] Listening on systemd-netwo - Network Service Netlink Socket.

[    3.281731] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  OK  ] Listening on systemd-udevd.socket - udev Control Socket.

[    3.308267] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Listening on systemd-udevdl.socket - udev Kernel Socket.

[    3.354855] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
         Mounting dev-hugepages.mount - Huge Pages File System...

[    3.394019] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
         Mounting dev-mqueue.mountPOSIX Message Queue File System...

[    3.423355] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
         Mounting sys-kernel-debug. - Kernel Debug File System...

[    3.457015] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    3.499387] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
         Starting kmod-static-nodesate List of Static Device Nodes...

[    3.535175] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
         Starting modprobe@configfsm - Load Kernel Module configfs...

[    3.569844] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
         Starting modprobe@dm_mod.s[0m - Load Kernel Module dm_mod...

[    3.593130] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    3.623239] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
         Starting modprobe@drm.service - Load Kernel Module drm...

[    3.659091] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
         Starting modprobe@efi_psto- Load Kernel Module efi_pstore...

[    3.711162] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
         Starting modprobe@fuse.sere - Load Kernel Module fuse...

[    3.739840] fuse: init (API version 7.37)
[    3.763228] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
         Starting modprobe@loop.sere - Load Kernel Module loop...

[    3.793760] systemd[1]: Starting nftables.service - nftables...
         Starting nftables.service - nftables...

[    3.836466] systemd[1]: Starting systemd-journald.service - Journal Service...
         Starting systemd-journald.service - Journal Service...

[    3.883486] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
         Starting systemd-modules-lrvice - Load Kernel Modules...

[    3.916104] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
         Starting systemd-network-g units from Kernel command line...

[    3.967420] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
         Starting systemd-remount-fnt Root and Kernel File Systems...

[    4.021901] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
         Starting systemd-udev-trig[0m - Coldplug All udev Devices...

[    4.055404] systemd[1]: Started systemd-journald.service - Journal Service.
[  OK  ] Started systemd-journald.service - Journal Service.

[  OK  ] Mounted dev-hugepages.mount - Huge Pages File System.

[  OK  ] Mounted dev-mqueue.mount- POSIX Message Queue File System.

[  OK  ] Mounted sys-kernel-debug.mnt - Kernel Debug File System.

[  OK  ] Finished kmod-static-nodesreate List of Static Device Nodes.

[  OK  ] Finished modprobe@configfs[0m - Load Kernel Module configfs.

[  OK  ] Finished modprobe@dm_mod.se - Load Kernel Module dm_mod.

[  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.

[  OK  ] Finished modprobe@efi_pstom - Load Kernel Module efi_pstore.

[  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.

[  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.

[FAILED] Failed to start nftables.service - nftables.

See 'systemctl status nftables.service' for details.

[  OK  ] Finished systemd-modules-lservice - Load Kernel Modules.

[  OK  ] Finished systemd-network-grk units from Kernel command line.

[  OK  ] Finished systemd-remount-fount Root and Kernel File Systems.

[  OK  ] Reached target network-preget - Preparation for Network.

         Mounting sys-fs-fuse-conne - FUSE Control File System...

         Mounting sys-kernel-configernel Configuration File System...

         Starting systemd-journal-fh Journal to Persistent Storage...

[    4.493387] systemd-journald[154]: Received client request to flush runtime journal.
         Starting systemd-random-seice - Load/Sa[    4.508063] systemd-journald[154]: File /var/log/journal/a2d74207dadc41868525313647207531/system.journal corrupted or uncleanly shut down, renaming and replacing.
ve Random Seed...

         Starting systemd-sysctl.sece - Apply Kernel Variables...

         Starting systemd-sysusers.rvice - Create System Users...

[  OK  ] Finished systemd-udev-trige - Coldplug All udev Devices.

[  OK  ] Mounted sys-fs-fuse-connecnt - FUSE Control File System.

[  OK  ] Mounted sys-kernel-config. Kernel Configuration File System.

[  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.

         Starting ifupdown-pre.servynchronize boot up for ifupdown...

[  OK  ] Finished ifupdown-pre.serv synchronize boot up for ifupdown.

[  OK  ] Finished systemd-sysusers.service - Create System Users.

[  OK  ] Finished systemd-journal-fush Journal to Persistent Storage.

         Starting systemd-tmpfiles-ate Static Device Nodes in /dev...

[  OK  ] Finished systemd-tmpfiles-reate Static Device Nodes in /dev.

[  OK  ] Reached target local-fs-prreparation for Local File Systems.

[  OK  ] Reached target local-fs.target - Local File Systems.

         Starting networking.service - Raise network interfaces...

         Starting systemd-tmpfiles- Volatile Files and Directories...

         Starting systemd-udevd.serger for Device Events and Files...

[  OK  ] Finished systemd-tmpfiles-te Volatile Files and Directories.

         Starting systemd-timesyncd - Network Time Synchronization...

         Starting systemd-update-utrd System Boot/Shutdown in UTMP...

[  OK  ] Finished systemd-update-utcord System Boot/Shutdown in UTMP.

[    5.442379] random: crng init done
[  OK  ] Started systemd-udevd.servnager for Device Events and Files.

         Starting systemd-networkd.ice - Network Configuration...

[  OK  ] Finished systemd-random-service - Load/Save Random Seed.

[  OK  ] Finished networking.service - Raise network interfaces.

[  OK  ] Found device dev-ttyS2.device - /dev/ttyS2.

[  OK  ] Started systemd-timesyncd.0m - Network Time Synchronization.

[    5.961542] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    6.032639] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    6.040277] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    6.056171] cfg80211: failed to load regulatory.db
[  OK  ] Reached target sysinit.target - System Initialization.

[  OK  ] Started systemd-tmpfiles-c Cleanup of Temporary Directories.

[  OK  ] Reached target time-set.target - System Time Set.

[  OK  ] Started apt-daily.timer - Daily apt download activities.

[  OK  ] Started apt-daily-upgrade. apt upgrade and clean activities.

[  OK  ] Started dpkg-db-backup.tim Daily dpkg database backup timer.

[  OK  ] Started e2scrub_all.timeretadata Check for All Filesystems.

[  OK  ] Started fstrim.timer - Discard unused blocks once a week.

[  OK  ] Started logrotate.timer - Daily rotation of log files.

[  OK  ] Started man-db.timer - Daily man-db regeneration.

[  OK  ] Reached target timers.target - Timer Units.

[  OK  ] Listening on dbus.socket- D-Bus System Message Bus Socket.

[  OK  ] Listening on ssh.socketpenBSD Secure Shell server socket.

[  OK  ] Listening on weston.socket - Weston socket.

[  OK  ] Reached target sockets.target - Socket Units.

[  OK  ] Reached target basic.target - Basic System.

[  OK  ] Started cron.service -kground program processing daemon.

         Starting dbus.service - D-Bus System Message Bus...

         Starting e2scrub_reap.serve ext4 Metadata Check Snapshots...

         Starting systemd-logind.seice - User Login Management...

[  OK  ] Started systemd-networkd.service - Network Configuration.

[  OK  ] Started dbus.service - D-Bus System Message Bus.

[    6.801798] mc: Linux media interface: v0.10
[    6.870823] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
[    6.921378] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
[  OK  ] Finished e2scrub_reap.servine ext4 Metadata Check Snapshots.

[    6.974887] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
[  OK  ] Started systemd-logind.service [    6.999358] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
- User Login Management.

[    7.010054] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
[    7.043222] videodev: Linux video capture interface: v2.00
         Starting NetworkManager.service - Network Manager...

[    7.103431] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
[    7.169712] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
[    7.177704] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
[    7.194507] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[    7.209861] platform 78000000.r5f: configured R5F for IPC-only mode
[    7.211114] remoteproc remoteproc0: 5000000.m4fss is available
[    7.216578] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
[    7.234093] remoteproc remoteproc1: 78000000.r5f is available
[    7.241056] remoteproc remoteproc0: powering up 5000000.m4fss
[    7.244862] remoteproc remoteproc1: attaching to 78000000.r5f
[    7.246941] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 55016
[    7.276740] platform 78000000.r5f: R5F core initialized in IPC-only mode
[    7.285371] rproc-virtio rproc-virtio.0.auto: assigned reserved memory node r5f-dma-memory@9da00000
[    7.295908] rproc-virtio rproc-virtio.1.auto: assigned reserved memory node m4f-dma-memory@9cb00000
[    7.312197] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
[    7.312634] rproc-virtio rproc-virtio.0.auto: registered virtio0 (type 7)
[    7.330248] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
[    7.331395] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:12 UTC (12)
[    7.395161] rproc-virtio rproc-virtio.1.auto: registered virtio1 (type 7)
[    7.395709] systemd-journald[154]: Time jumped backwards, rotating.
[    7.405291] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
[    7.564220] sii902x 1-003b: supply iovcc not found, using dummy regulator
[    7.583553] sii902x 1-003b: supply cvcc12 not found, using dummy regulator
[    7.595560] i2c i2c-1: Added multiplexed i2c bus 3
[    7.615852] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
[    7.626265] tidss 30200000.dss: [drm] Cannot find any crtc or sizes
[  OK  ] Listening on systemd-rfkill Switch Status /dev/rfkill Watch.

[  OK  ] Started NetworkManager.service - Network Manager.

[  OK  ] Reached target network.target - Network.

         Starting ssh.service - OpenBSD Secure Shell server...

         Starting systemd-user-sessvice - Permit User Sessions...

[    8.021742] remoteproc remoteproc2: 30074000.pru is available
[    8.040126] remoteproc remoteproc3: 30078000.pru is available
         Starting systemd-hostnamed.service - Hostname Service...

[    8.071876] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
[  OK  ] Finished systemd-user-sesservice[    8.087169] tps6598x 0-003f: Unable to find the interrupt, switching to polling
 - Permit User Sessions.

[  OK  ] Started getty@tty1.service - Getty on tty1.

[    8.169192] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    8.188225] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 1
[  OK  ] Started serial-getty@ttyS2rvice xhci-hcd xhci-hcd.4.auto: USB3 root hub has no ports
[0m - Serial Getty on ttyS2.

[    8.210735] xhci-hcd xhci-hcd.4.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
[  OK  ] Reached target getty.target - L[    8.230753] xhci-hcd xhci-hcd.4.auto: irq 457, io mem 0x31100000
ogin Prompts.

[    8.241025] virtio_rpmsg_bus virtio0: rpmsg host is online
[    8.246732] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
[    8.251613] hub 1-0:1.0: USB hub found
[    8.266221] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[    8.278530] virtio_rpmsg_bus virtio1: rpmsg host is online
[    8.284229] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
[    8.291351] hub 1-0:1.0: 1 port detected
[    8.291933] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
[  OK  ] Started weston.serviced compositor, as a system service.

[  OK  ] Reached target usb-gadget.m - Hardware activated USB gadget.

[    8.444448] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
[    8.471009] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
[    8.471284] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
[    8.494456] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
[    8.505652] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
[  OK  ] Created slice user-0.slice - Us[    8.515407] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
er Slice of UID 0.

[    8.530094] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
[    8.541498] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
[    8.551293] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
[    8.559723] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
[    8.569128] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
[    8.580766] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
         Starting user-runtime-dir@r Runtime Directo[    8.591637] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
ry /run/user/0...

[    8.614524] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
[    8.627459] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
[  OK  ] Started ssh.service - OpenBSD Secure Shell server.

[    8.646500] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
[    8.657857] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
[    8.666524] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
[    8.674843] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
[    8.683199] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
[  OK  ] Reached target multi-user.target    8.691691] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
m - Multi-User System.
[    8.705480] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)

[    8.720570] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
[    8.732496] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
[    8.741190] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
[    8.749666] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
[  OK  ] Reached target graphical.target[    8.760402] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
 - Graphical Interface.

[    8.772119] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
[    8.782820] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)
[    8.792572] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
[    8.801263] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
[    8.809691] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
         Starting systemd-update-ut Record Runlevel [    8.822793] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
Change in UTMP...

[    8.834195] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
[    8.844247] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
[    8.854238] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
[  OK  ] Finished user-runtime-dir@ser Ru[    8.865048] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
ntime Directory /run/user/0.

[    8.877181] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
[    8.888274] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
[    8.896772] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
[    8.905221] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
[    8.913722] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
[    8.922216] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
[    8.930762] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
[    8.939249] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
[    8.947735] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
[    8.956267] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
[    8.964858] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
[    8.973250] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
[  OK  ] Started systemd-hostnamed.service    8.981821] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
0m - Hostname Service.
[    8.995723] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)

[    9.006158] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
[    9.016113] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
[    9.026306] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
[    9.035982] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
[    9.046824] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
[    9.056735] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
[    9.065420] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
[    9.074073] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
[    9.082494] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
         Starting alsa-restore.serv- Save/Restore So[    9.091148] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
und Card State...

[    9.105088] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
[    9.115177] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
[    9.125136] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
         Starting user@0.service - User Manager for[    9.134178] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
 UID 0...

[    9.148241] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
[    9.157641] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)
[    9.173262] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
[  OK  ] Finished systemd-update-ut - Rec[    9.185649] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
ord Runlevel Change in UTMP.

[    9.199166] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
[    9.210104] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
[    9.220829] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
[  OK  ] Finished alsa-restore.servm - Sa[    9.229823] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
ve/Restore Sound Card State.

[    9.244015] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
[    9.254983] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
[    9.263603] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
[    9.272143] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
[  OK  ] Reached target sound.target - S[    9.293315] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
ound Card.

[    9.306032] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
[    9.326076] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
[    9.340219] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
         Starting NetworkManager-dinager Script Disp[    9.354909] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
atcher Service...

[    9.366623] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
[    9.376826] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
[    9.387579] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
[    9.396257] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
[    9.404885] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
[    9.413490] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
[    9.423237] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
[    9.437568] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[    9.447050] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
[    9.455755] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
[    9.460939] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
[    9.464273] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
[    9.486030] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
[    9.496749] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
[    9.505728] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
[    9.518448] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
[    9.526924] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
[    9.535519] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
[    9.544025] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
[    9.552511] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
[    9.560991] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
[    9.569603] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
[    9.578171] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
[    9.586675] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
[  OK  ] Started NetworkManager-disManage[    9.595934] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
r Script Dispatcher Service.

[    9.610605] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
[    9.625773] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
[    9.638534] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
[    9.647044] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
[    9.660635] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
[    9.671843] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
[    9.677839] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [TI DP83867] (irq=POLL)
[    9.681447] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
[    9.694215] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[    9.698167] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
[    9.716547] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
[    9.725232] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
[    9.735597] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
[    9.744625] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
[    9.753232] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
[    9.763807] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
[    9.772262] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
[    9.781962] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
[    9.798421] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
[    9.811300] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
[    9.820240] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
[    9.830104] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
[    9.839521] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
[    9.854531] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
[    9.868717] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
[    9.881254] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
[    9.894677] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
[    9.910481] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
[    9.933339] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
[    9.941837] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
[    9.956676] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
[    9.965566] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
[    9.974061] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
[    9.982458] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
[    9.990885] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
[    9.999301] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
[   10.007710] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
[   10.016093] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
[   10.024492] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
[   10.032880] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
[   10.041281] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
[   10.049672] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
[   10.058078] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
[   10.066487] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
[   10.074896] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
[   10.083296] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
[   10.091762] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
[   10.100162] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
[   10.108572] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
[   10.116957] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
[   10.125381] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
[   10.133839] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
[   10.142282] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
[   10.150711] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
[   10.159167] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
[   10.167555] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
[   10.175966] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
[   10.184351] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
[   10.192769] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
[   10.201203] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
[   10.209666] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
[   10.218142] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
[   10.226691] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
[   10.235260] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
[   10.243831] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
[   10.252324] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
[   10.260810] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
[   10.269290] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
[   10.277778] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
[   10.286282] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
[   10.294756] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
[   10.303230] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
[   10.311664] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
[   10.320051] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
[   10.328443] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
[   10.336888] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: goodbye!
[   10.343693] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
[   10.352138] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
[   10.360632] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
[   10.369099] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
[   10.377644] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
[   10.386792] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
[   10.395422] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
[   10.404025] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
[   10.412606] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
[   10.421343] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
[   10.429965] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
[   10.430085] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
[   10.430176] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
[   10.430268] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
[   10.430377] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
[   10.430485] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
[   10.430576] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
[   10.430671] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
[   10.430765] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
[   10.430860] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
[   10.430953] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
[   10.431045] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
[   10.431138] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
[   10.431230] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
[   10.431237] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: goodbye!
[  OK  ] Started user@0.service - User Manager for UID 0.

[  OK  ] Started session-c1.scope - Session c1 of User root.



Debian GNU/Linux 12 am62xx-evm ttyS2

am62xx-evm login: root

Linux am62xx-evm 6.1.33 #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024 aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jan  1 00:00:21 UTC 1970 on ttyS2
root@am62xx-evm:~# lscpu

Architecture:            aarch64
  CPU op-mode(s):        32-bit, 64-bit
  Byte Order:            Little Endian
CPU(s):                  2
  On-line CPU(s) list:   0,1
Vendor ID:               ARM
  Model name:            Cortex-A53
    Model:               4
    Thread(s) per core:  1
    Core(s) per cluster: 2
    Socket(s):           -
    Cluster(s):          1
    Stepping:            r0p4
    CPU(s) scaling MHz:  71%
    CPU max MHz:         1400.0000
    CPU min MHz:         200.0000
    BogoMIPS:            400.00
    Flags:               fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
Caches (sum of all):     
  L1d:                   64 KiB (2 instances)
  L1i:                   64 KiB (2 instances)
  L2:                    512 KiB (1 instance)
Vulnerabilities:         
  Itlb multihit:         Not affected
  L1tf:                  Not affected
  Mds:                   Not affected
  Meltdown:              Not affected
  Mmio stale data:       Not affected
  Retbleed:              Not affected
  Spec store bypass:     Not affected
  Spectre v1:            Mitigation; __user pointer sanitization
  Spectre v2:            Not affected
  Srbds:                 Not affected
  Tsx async abort:       Not affected
root@am62xx-evm:~# 

run on our board with am6254A TCGGAALW

U-Boot SPL 2023.04 (Mar 20 2024 - 20:22:41 +0800)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
SPL initial stack usage: 13376 bytes
Trying to boot from MMC2
Starting ATF on ARM64 core...

NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
NOTICE:  BL31: Built : 00:42:57, Jan 13 2023

U-Boot SPL 2023.04 (Mar 20 2024 - 20:22:49 +0800)
SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
SPL initial stack usage: 1856 bytes
i2c_write: error waiting for data ACK (status=0x116)
pca953x gpio@22: Error reading output register
Error (-2): cannot determine file size
Trying to boot from MMC2


U-Boot 2023.04 (Mar 20 2024 - 20:22:49 +0800)

SoC:   AM62X SR1.0 GP
Model: Texas Instruments AM625 SK
EEPROM not available at 80, trying to read at 81
Reading on-board EEPROM at 0x51 failed -1
DRAM:  2 GiB
Core:  71 devices, 31 uclasses, devicetree: separate
MMC:   mmc@fa10000: 0, mmc@fa00000: 1
Loading Environment from nowhere... OK
In:    serial
Out:   serial
Err:   serial
EEPROM not available at 80, trying to read at 81
Reading on-board EEPROM at 0x51 failed -1
Net:   eth0: ethernet@8000000port@1
Hit any key to stop autoboot:  2  1  0 
i2c_write: error waiting for data ACK (status=0x116)
pca953x gpio@22: Error reading output register
switch to partitions #0, OK
mmc1 is current device
i2c_write: error waiting for data ACK (status=0x116)
pca953x gpio@22: Error reading output register
SD/MMC found on device 1
Failed to load 'boot.scr'
Failed to load 'uEnv.txt'
## Error: "main_cpsw0_qsgmii_phyinit" not defined
20593152 bytes read in 865 ms (22.7 MiB/s)
53900 bytes read in 20 ms (2.6 MiB/s)
Working FDT set to 88000000
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
Working FDT set to 88000000
ERROR: reserving fdt memory region failed (addr=ff700000 size=8ca000 flags=4)
   Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK
Working FDT set to 8feef000

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
[    0.000000] Linux version 6.1.33 (root@andrew-GENE-CML5) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024
[    0.000000] Machine model: Texas Instruments AM625 SK
[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
[    0.000000] printk: bootconsole [ns16550a0] enabled
[    0.000000] efi: UEFI not found.
[    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB
[    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
[    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
[    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
[    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
[    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
[    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
[    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
[    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ff6fffff]
[    0.000000]   node   0: [mem 0x00000000ff700000-0x00000000fffc9fff]
[    0.000000]   node   0: [mem 0x00000000fffca000-0x00000000ffffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
[    0.000000] psci: probing for conduit method from DT.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.2
[    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
[    0.000000] Detected VIPT I-cache on CPU0
[    0.000000] CPU features: detected: GIC system register CPU interface
[    0.000000] CPU features: detected: ARM erratum 845719
[    0.000000] alternatives: applying boot alternatives
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=65450c88-02 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] Memory: 1838268K/2097152K available (12480K kernel code, 1294K rwdata, 4040K rodata, 2176K init, 498K bss, 127812K reserved, 131072K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] rcu: RCU event tracing is enabled.
[    0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000] Trampoline variant of Tasks RCU enabled.
[    0.000000] Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
[    0.000000] GICv3: 256 SPIs implemented
[    0.000000] GICv3: 0 Extended SPIs implemented
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv3: GICv3 features: 16 PPIs
[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
[    0.000000] ITS [mem 0x01820000-0x0182ffff]
[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
[    0.000000] ITS: using cache flushing for cmd queue
[    0.000000] GICv3: using LPI property table @0x0000000080030000
[    0.000000] GIC: using cache flushing for LPI property table
[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
[    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
[    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
[    0.008543] Console: colour dummy device 80x25
[    0.013137] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
[    0.023819] pid_max: default: 32768 minimum: 301
[    0.028590] LSM: Security Framework initializing
[    0.033439] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.041024] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    0.050796] cblist_init_generic: Setting adjustable number of callback queues.
[    0.058255] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.064554] cblist_init_generic: Setting shift to 1 and lim to 1.
[    0.070952] rcu: Hierarchical SRCU implementation.
[    0.075860] rcu: Max phase no-delay instances is 1000.
[    0.081474] Platform MSI: msi-controller@1820000 domain created
[    0.087786] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
[    0.097632] EFI services will not be available.
[    0.102482] smp: Bringing up secondary CPUs ...
[    0.107784] Detected VIPT I-cache on CPU1
[    0.107902] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
[    0.107921] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
[    0.107980] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
[    0.108095] smp: Brought up 1 node, 2 CPUs
[    0.137492] SMP: Total of 2 processors activated.
[    0.142305] CPU features: detected: 32-bit EL0 Support
[    0.147577] CPU features: detected: CRC32 instructions
[    0.152894] CPU: All CPU(s) started at EL2
[    0.157080] alternatives: applying system-wide alternatives
[    0.164623] devtmpfs: initialized
[    0.175617] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.185641] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
[    0.197101] pinctrl core: initialized pinctrl subsystem
[    0.203134] DMI not present or invalid.
[    0.207740] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.214978] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    0.222369] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.230443] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.238630] audit: initializing netlink subsys (disabled)
[    0.244427] audit: type=2000 audit(0.152:1): state=initialized audit_enabled=0 res=1
[    0.244961] thermal_sys: Registered thermal governor 'step_wise'
[    0.252369] thermal_sys: Registered thermal governor 'power_allocator'
[    0.258700] cpuidle: using governor menu
[    0.269589] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.276594] ASID allocator initialised with 65536 entries
[    0.292363] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
[    0.303614] platform connector: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
[    0.313031] KASLR disabled due to lack of seed
[    0.324722] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[    0.331692] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
[    0.338103] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
[    0.345042] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
[    0.351449] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[    0.358387] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
[    0.364794] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
[    0.371732] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
[    0.379979] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
[    0.389073] iommu: Default domain type: Translated 
[    0.394070] iommu: DMA domain TLB invalidation policy: strict mode 
[    0.400759] SCSI subsystem initialized
[    0.404995] usbcore: registered new interface driver usbfs
[    0.410646] usbcore: registered new interface driver hub
[    0.416099] usbcore: registered new device driver usb
[    0.421751] pps_core: LinuxPPS API ver. 1 registered
[    0.426831] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.436184] PTP clock support registered
[    0.440313] EDAC MC: Ver: 3.0.0
[    0.444465] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
[    0.451628] FPGA manager framework
[    0.455207] Advanced Linux Sound Architecture Driver Initialized.
[    0.462423] clocksource: Switched to clocksource arch_sys_counter
[    0.468921] VFS: Disk quotas dquot_6.6.0
[    0.472977] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.485941] NET: Registered PF_INET protocol family
[    0.491244] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    0.500501] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.509311] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[    0.517251] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.525461] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
[    0.533453] TCP: Hash tables configured (established 16384 bind 16384)
[    0.540369] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.547297] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    0.554816] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.561143] RPC: Registered named UNIX socket transport module.
[    0.567235] RPC: Registered udp transport module.
[    0.572046] RPC: Registered tcp transport module.
[    0.576855] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.583466] NET: Registered PF_XDP protocol family
[    0.588381] PCI: CLS 0 bytes, default 64
[    0.593213] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
[    0.603228] Initialise system trusted keyrings
[    0.608078] workingset: timestamp_bits=46 max_order=19 bucket_order=0
[    0.620534] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.627311] NFS: Registering the id_resolver key type
[    0.632541] Key type id_resolver registered
[    0.636819] Key type id_legacy registered
[    0.640985] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
[    0.647840] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
[    0.655617] 9p: Installing v9fs 9p2000 file system support
[    0.696463] Key type asymmetric registered
[    0.700655] Asymmetric key parser 'x509' registered
[    0.705695] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.713445] io scheduler mq-deadline registered
[    0.718087] io scheduler kyber registered
[    0.725267] pinctrl-single 4084000.pinctrl: 34 pins, size 136
[    0.731894] pinctrl-single f4000.pinctrl: 171 pins, size 684
[    0.738755] pinctrl-single a40000.pinctrl: 512 pins, size 2048
[    0.752133] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.766139] loop: module loaded
[    0.770622] megasas: 07.719.03.00-rc1
[    0.778369] tun: Universal TUN/TAP device driver, 1.6
[    0.784285] thunder_xcv, ver 1.0
[    0.787637] thunder_bgx, ver 1.0
[    0.790969] nicpf, ver 1.0
[    0.794104] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
[    0.801492] hns3: Copyright (c) 2017 Huawei Corporation.
[    0.806989] hclge is initializing
[    0.810393] e1000: Intel(R) PRO/1000 Network Driver
[    0.815379] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    0.821284] e1000e: Intel(R) PRO/1000 Network Driver
[    0.826358] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    0.832438] igb: Intel(R) Gigabit Ethernet Network Driver
[    0.837958] igb: Copyright (c) 2007-2014 Intel Corporation.
[    0.843683] igbvf: Intel(R) Gigabit Virtual Function Network Driver
[    0.850091] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
[    0.856281] sky2: driver version 1.30
[    0.860712] VFIO - User Level meta-driver version: 0.3
[    0.866792] usbcore: registered new interface driver usb-storage
[    0.873684] i2c_dev: i2c /dev entries driver
[    0.880134] sdhci: Secure Digital Host Controller Interface driver
[    0.886523] sdhci: Copyright(c) Pierre Ossman
[    0.891433] Synopsys Designware Multimedia Card Interface Driver
[    0.897989] sdhci-pltfm: SDHCI platform and OF driver helper
[    0.904726] ledtrig-cpu: registered to indicate activity on CPUs
[    0.911060] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    0.918008] usbcore: registered new interface driver usbhid
[    0.923724] usbhid: USB HID core driver
[    0.928891] optee: probing for conduit method.
[    0.933490] optee: revision 3.20 (8e74d476)
[    0.933836] optee: dynamic shared memory is enabled
[    0.943378] optee: initialized driver
[    0.948895] Initializing XFRM netlink socket
[    0.953325] NET: Registered PF_PACKET protocol family
[    0.958639] 9pnet: Installing 9P2000 support
[    0.963085] Key type dns_resolver registered
[    0.967886] registered taskstats version 1
[    0.972115] Loading compiled-in X.509 certificates
[    0.985924] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
[    1.046211] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
[    1.053598] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
[    1.060528] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
[    1.066534] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
[    1.074881] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
[    1.084125] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
[    1.094046] ti-udma 485c0100.dma-controller: Number of rings: 82
[    1.102238] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
[    1.113348] ti-udma 485c0000.dma-controller: Number of rings: 150
[    1.123454] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
[    1.133665] printk: console [ttyS2] disabled
[    1.138128] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250
[    1.147027] printk: console [ttyS2] enabled
[    1.147027] printk: console [ttyS2] enabled
[    1.155489] printk: bootconsole [ns16550a0] disabled
[    1.155489] printk: bootconsole [ns16550a0] disabled
[    1.167827] spi-nor spi0.0: unrecognized JEDEC id bytes: fe 00 00 00 00 00
[    1.175955] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
[    1.222450] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
[    1.232200] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
[    1.240316] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
[    1.248439] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
[    1.261384] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
[    1.267651] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
[    1.274777] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
[    1.281288] pps pps0: new PPS source ptp0
[    1.285620] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
[    1.295973] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
[    1.307427] mmc0: CQHCI version 5.10
[    1.308180] mmc1: CQHCI version 5.10
[    1.320624] pca953x 1-0022: supply vcc not found, using dummy regulator
[    1.327447] pca953x 1-0022: using AI
[    1.346992] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
[    1.354515] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
[    1.355356] pca953x 1-0022: failed writing register
[    1.367293] pca953x: probe of 1-0022 failed with error -121
[    1.374365] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
[    1.394683] ALSA device list:
[    1.397665]   No soundcards found.
[    1.401839] Waiting for root device PARTUUID=65450c88-02...
[    1.429799] mmc1: new ultra high speed SDR104 SDHC card at address 59b4
[    1.437411] mmcblk1: mmc1:59b4 SMTC  29.1 GiB 
[    1.443980]  mmcblk1: p1 p2
[    1.512763] EXT4-fs (mmcblk1p2): recovery complete
[    1.518710] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
[    1.527316] VFS: Mounted root (ext4 filesystem) on device 179:2.
[    1.535268] devtmpfs: mounted
[    1.539682] Freeing unused kernel memory: 2176K
[    1.544315] Run /sbin/init as init process
[    1.657329] mmc0: Command Queue Engine enabled
[    1.661883] mmc0: new HS200 MMC card at address 0001
[    1.668398] mmcblk0: mmc0:0001 DG4032 29.1 GiB 
[    1.676091]  mmcblk0: p1 p2
[    1.680001] mmcblk0boot0: mmc0:0001 DG4032 4.00 MiB 
[    1.686489] mmcblk0boot1: mmc0:0001 DG4032 4.00 MiB 
[    1.692951] mmcblk0rpmb: mmc0:0001 DG4032 4.00 MiB, chardev (240:0)
[    1.828232] systemd[1]: System time before build time, advancing clock.
[    1.881456] NET: Registered PF_INET6 protocol family
[    1.888215] Segment Routing with IPv6
[    1.892068] In-situ OAM (IOAM) with IPv6
[    1.947927] systemd[1]: systemd 252.22-1~deb12u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    1.980902] systemd[1]: Detected architecture arm64.

Welcome to Debian GNU/Linux 12 (bookworm)!


[    2.005104] systemd[1]: Hostname set to <am62xx-evm>.
[    2.643079] systemd[1]: Queued start job for default target graphical.target.
[    2.683440] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  OK  ] Created slice system-getty.slice - Slice /system/getty.

[    2.708813] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  OK  ] Created slice system-modprlice - Slice /system/modprobe.

[    2.737144] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[  OK  ] Created slice system-seria - Slice /system/serial-getty.

[    2.764232] systemd[1]: Created slice user.slice - User and Session Slice.
[  OK  ] Created slice user.slice - User and Session Slice.

[    2.787137] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started systemd-ask-passwoquests to Console Directory Watch.

[    2.815130] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  OK  ] Started systemd-ask-passwo Requests to Wall Directory Watch.

[    2.843058] systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
[    2.862540] systemd[1]: Expecting device dev-ttyS2.device - /dev/ttyS2...
         Expecting device dev-ttyS2.device - /dev/ttyS2...

[    2.886744] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  OK  ] Reached target cryptsetup.get - Local Encrypted Volumes.

[    2.910817] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  OK  ] Reached target integrityseLocal Integrity Protected Volumes.

[    2.935045] systemd[1]: Reached target paths.target - Path Units.
[  OK  ] Reached target paths.target - Path Units.

[    2.958907] systemd[1]: Reached target remote-cryptsetup.target - Remote Encrypted Volumes.
[  OK  ] Reached target remote-crypet - Remote Encrypted Volumes.

[    2.982782] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[  OK  ] Reached target remote-fs.target - Remote File Systems.

[    3.007164] systemd[1]: Reached target remote-veritysetup.target - Remote Verity Protected Volumes.
[  OK  ] Reached target remote-veri- Remote Verity Protected Volumes.

[    3.035123] systemd[1]: Reached target slices.target - Slice Units.
[  OK  ] Reached target slices.target - Slice Units.

[    3.058933] systemd[1]: Reached target swap.target - Swaps.
[  OK  ] Reached target swap.target - Swaps.

[    3.083395] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  OK  ] Reached target veritysetup - Local Verity Protected Volumes.

[    3.108625] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  OK  ] Listening on systemd-initc initctl Compatibility Named Pipe.

[    3.138607] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  OK  ] Listening on systemd-journsocket - Journal Audit Socket.

[    3.164333] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  OK  ] Listening on systemd-journt - Journal Socket (/dev/log).

[    3.192279] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  OK  ] Listening on systemd-journald.socket - Journal Socket.

[    3.218692] systemd[1]: Listening on systemd-networkd.socket - Network Service Netlink Socket.
[  OK  ] Listening on systemd-netwo - Network Service Netlink Socket.

[    3.246049] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  OK  ] Listening on systemd-udevd.socket - udev Control Socket.

[    3.273228] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Listening on systemd-udevdl.socket - udev Kernel Socket.

[    3.330956] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
         Mounting dev-hugepages.mount - Huge Pages File System...

[    3.361903] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
         Mounting dev-mqueue.mountPOSIX Message Queue File System...

[    3.411028] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
         Mounting sys-kernel-debug. - Kernel Debug File System...

[    3.440032] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
[    3.464358] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
         Starting kmod-static-nodesate List of Static Device Nodes...

[    3.523348] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
         Starting modprobe@configfsm - Load Kernel Module configfs...

[    3.555163] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
         Starting modprobe@dm_mod.s[0m - Load Kernel Module dm_mod...

[    3.576374] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[    3.603353] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
         Starting modprobe@drm.service - Load Kernel Module drm...

[    3.634063] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
         Starting modprobe@efi_psto- Load Kernel Module efi_pstore...

[    3.669777] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
         Starting modprobe@fuse.sere - Load Kernel Module fuse...

[    3.692948] fuse: init (API version 7.37)
[    3.719307] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
         Starting modprobe@loop.sere - Load Kernel Module loop...

[    3.753039] systemd[1]: Starting nftables.service - nftables...
         Starting nftables.service - nftables...

[    3.795385] systemd[1]: Starting systemd-journald.service - Journal Service...
         Starting systemd-journald.service - Journal Service...

[    3.831383] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
         Starting systemd-modules-lrvice - Load Kernel Modules...

[    3.865006] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
         Starting systemd-network-g units from Kernel command line...

[    3.923540] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
         Starting systemd-remount-fnt Root and Kernel File Systems...

[    3.983191] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
         Starting systemd-udev-trig[0m - Coldplug All udev Devices...

[    4.018105] systemd[1]: Started systemd-journald.service - Journal Service.
[  OK  ] Started systemd-journald.service - Journal Service.

[  OK  ] Mounted dev-hugepages.mount - Huge Pages File System.

[  OK  ] Mounted dev-mqueue.mount- POSIX Message Queue File System.

[  OK  ] Mounted sys-kernel-debug.mnt - Kernel Debug File System.

[  OK  ] Finished kmod-static-nodesreate List of Static Device Nodes.

[  OK  ] Finished modprobe@configfs[0m - Load Kernel Module configfs.

[  OK  ] Finished modprobe@dm_mod.se - Load Kernel Module dm_mod.

[  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.

[  OK  ] Finished modprobe@efi_pstom - Load Kernel Module efi_pstore.

[  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.

[  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.

[FAILED] Failed to start nftables.service - nftables.

See 'systemctl status nftables.service' for details.

[  OK  ] Finished systemd-modules-lservice - Load Kernel Modules.

[  OK  ] Finished systemd-network-grk units from Kernel command line.

[  OK  ] Finished systemd-remount-fount Root and Kernel File Systems.

[  OK  ] Reached target network-preget - Preparation for Network.

         Mounting sys-fs-fuse-conne - FUSE Control File System...

         Mounting sys-kernel-configernel Configuration File System...

         Starting systemd-journal-fh Journal to Persistent Storage...

[    4.490974] systemd-journald[153]: Received client request to flush runtime journal.
         Starting systemd-random-seice - Load/Sa[    4.503193] systemd-journald[153]: File /var/log/journal/a2d74207dadc41868525313647207531/system.journal corrupted or uncleanly shut down, renaming and replacing.
ve Random Seed...

         Starting systemd-sysctl.sece - Apply Kernel Variables...

         Starting systemd-sysusers.rvice - Create System Users...

[  OK  ] Finished systemd-udev-trige - Coldplug All udev Devices.

[  OK  ] Mounted sys-fs-fuse-connecnt - FUSE Control File System.

[  OK  ] Mounted sys-kernel-config. Kernel Configuration File System.

[  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.

         Starting ifupdown-pre.servynchronize boot up for ifupdown...

[  OK  ] Finished systemd-sysusers.service - Create System Users.

[  OK  ] Finished ifupdown-pre.serv synchronize boot up for ifupdown.

         Starting systemd-tmpfiles-ate Static Device Nodes in /dev...

[  OK  ] Finished systemd-journal-fush Journal to Persistent Storage.

[  OK  ] Finished systemd-tmpfiles-reate Static Device Nodes in /dev.

[  OK  ] Reached target local-fs-prreparation for Local File Systems.

[  OK  ] Reached target local-fs.target - Local File Systems.

         Starting networking.service - Raise network interfaces...

         Starting systemd-tmpfiles- Volatile Files and Directories...

         Starting systemd-udevd.serger for Device Events and Files...

[  OK  ] Finished systemd-tmpfiles-te Volatile Files and Directories.

         Starting systemd-timesyncd - Network Time Synchronization...

         Starting systemd-update-utrd System Boot/Shutdown in UTMP...

[  OK  ] Finished systemd-update-utcord System Boot/Shutdown in UTMP.

[  OK  ] Started systemd-udevd.servnager for Device Events and Files.

         Starting systemd-networkd.ice - Network Configuration...

[  OK  ] Finished networking.service - Raise network interfaces.

[    5.454477] random: crng init done
[  OK  ] Finished systemd-random-service - Load/Save Random Seed.

[    5.681229] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    5.728207] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    5.739439] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    5.751779] cfg80211: failed to load regulatory.db
[  OK  ] Started systemd-timesyncd.0m - Network Time Synchronization.

[  OK  ] Found device dev-ttyS2.device - /dev/ttyS2.

[  OK  ] Reached target sysinit.target - System Initialization.

[  OK  ] Started systemd-tmpfiles-c Cleanup of Temporary Directories.

[  OK  ] Reached target time-set.target - System Time Set.

[  OK  ] Started apt-daily.timer - Daily apt download activities.

[  OK  ] Started apt-daily-upgrade. apt upgrade and clean activities.

[  OK  ] Started dpkg-db-backup.tim Daily dpkg database backup timer.

[  OK  ] Started e2scrub_all.timeretadata Check for All Filesystems.

[  OK  ] Started fstrim.timer - Discard unused blocks once a week.

[  OK  ] Started logrotate.timer - Daily rotation of log files.

[  OK  ] Started man-db.timer - Daily man-db regeneration.

[  OK  ] Reached target timers.target - Timer Units.

[  OK  ] Listening on dbus.socket- D-Bus System Message Bus Socket.

[  OK  ] Listening on ssh.socketpenBSD Secure Shell server socket.

[  OK  ] Listening on weston.socket - Weston socket.

[  OK  ] Reached target sockets.target - Socket Units.

[  OK  ] Reached target basic.target - Basic System.

[  OK  ] Started cron.service -kground program processing daemon.

         Starting dbus.service - D-Bus System Message Bus...

         Starting e2scrub_reap.serve ext4 Metadata Check Snapshots...

         Starting systemd-logind.seice - User Login Management...

[  OK  ] Started systemd-networkd.service - Network Configuration.

[  OK  ] Started dbus.service - D-Bus System Message Bus.

[  OK  ] Finished e2scrub_reap.servine ext4 Metadata Check Snapshots.

[  OK  ] Started systemd-logind.service - User Login Management.

         Starting NetworkManager.service - Network Manager...

[    6.794887] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
[    6.844507] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
[    6.844939] mc: Linux media interface: v0.10
[    6.853657] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
[    6.863891] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
[    6.911503] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
[    6.936460] videodev: Linux video capture interface: v2.00
[    7.059180] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
[    7.070974] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
[    7.076211] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
[    7.090597] platform 78000000.r5f: configured R5F for IPC-only mode
[    7.107337] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
[    7.108932] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
[    7.125698] remoteproc remoteproc0: 5000000.m4fss is available
[    7.135732] remoteproc remoteproc0: powering up 5000000.m4fss
[    7.142467] remoteproc remoteproc0: Booting fw image am62-mcu-m4f0_0-fw, size 55016
[    7.157228] rproc-virtio rproc-virtio.0.auto: assigned reserved memory node m4f-dma-memory@9cb00000
[    7.166718] rproc-virtio rproc-virtio.0.auto: registered virtio0 (type 7)
[    7.173640] remoteproc remoteproc0: remote processor 5000000.m4fss is now up
[    7.191363] remoteproc remoteproc1: 78000000.r5f is available
[    7.196555] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
[    7.198896] remoteproc remoteproc1: attaching to 78000000.r5f
[    7.209191] platform 78000000.r5f: R5F core initialized in IPC-only mode
[    7.216257] rproc-virtio rproc-virtio.2.auto: assigned reserved memory node r5f-dma-memory@9da00000
[    7.225743] rproc-virtio rproc-virtio.2.auto: registered virtio1 (type 7)
[    7.232895] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
[    7.254714] systemd-journald[153]: Time jumped backwards, rotating.
[  OK  ] Started NetworkManager.service [    7.294171] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:13 UTC (13)
- Network Manager.

[  OK  ] Reached target network.target - Network.

[    7.327985] platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
         Starting ssh.service - OpenBSD Secure Shell server...

         Starting systemd-user-sessvice - Permit User Sessions...

[  OK  ] Finished systemd-user-sesservice - Permit User Sessions.

[  OK  ] Listening on systemd-rfkill Switch Status /dev/rfkill Watch.

[    7.770924] remoteproc remoteproc2: 30074000.pru is available
[    7.787553] remoteproc remoteproc3: 30078000.pru is available
[  OK  ] Started getty@tty1.service - Getty on tty1.

[    7.835724] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
[  OK  ] Started serial-getty@ttyS2rvice virtio_rpmsg_bus virtio0: rpmsg host is online
[0m - Serial Getty on ttyS2.

[    7.868875] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
[    7.881354] virtio_rpmsg_bus virtio1: rpmsg host is online
[    7.884445] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
[    7.898804] virtio_rpmsg_bus virtio1: creating channel ti.ipc4.ping-pong addr 0xd
[    7.907211] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
[  OK  ] Reached target getty.target - L[    7.915992] virtio_rpmsg_bus virtio1: creating channel rpmsg_chrdev addr 0xe
ogin Prompts.

[    7.937473] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
[    7.958759] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 1
[    7.969675] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
[    7.981100] xhci-hcd xhci-hcd.3.auto: USB3 root hub has no ports
[    7.985133] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
         Starting systemd-hostnamed.service - Hostn[    7.996079] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
[    8.007907] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
ame Service...

[    8.013755] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
[    8.028471] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
[    8.037109] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
[    8.045645] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
[    8.055358] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
[    8.063956] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
[    8.072563] xhci-hcd xhci-hcd.3.auto: irq 455, io mem 0x31100000
[    8.072964] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
[    8.072994] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
[    8.073064] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
[    8.073087] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
[    8.073135] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)
[    8.073163] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
[    8.073192] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
[    8.073252] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
[    8.073274] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
[    8.073301] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
[    8.073562] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
[    8.073599] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
[    8.073626] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
[    8.074274] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
[    8.074344] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
[    8.074401] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
[    8.074496] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
[    8.074526] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
[    8.075093] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
[    8.075161] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
[    8.075219] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
[    8.075273] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
[    8.075296] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
[    8.075325] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
[    8.075375] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
[    8.075397] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
[    8.075426] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
[    8.075476] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)
[    8.075498] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
[    8.075541] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
[    8.075563] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
[    8.075660] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)
[    8.075683] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
[    8.075710] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
[    8.075760] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
[    8.075781] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
[    8.075810] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
[    8.075862] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
[    8.075885] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
[    8.075911] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
[    8.075960] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
[    8.075982] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
[    8.076030] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
[    8.076052] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
[    8.076081] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
[    8.076104] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
[    8.076487] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
[    8.076530] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
[    8.076580] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
[    8.076603] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
[    8.076639] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
[    8.076666] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
[    8.076693] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
[    8.076721] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
[    8.076754] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
[    8.076778] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
[    8.076813] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
[    8.076839] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
[    8.076866] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
[    8.076895] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
[    8.076927] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
[    8.076953] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
[    8.076981] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
[    8.077009] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
[    8.077038] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)
[    8.077067] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
[    8.077096] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
[    8.077124] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
[    8.077152] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
[    8.077181] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
[    8.077213] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
[    8.077238] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
[    8.077268] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
[    8.077293] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
[    8.077328] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
[    8.077354] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
[    8.077380] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
[    8.077409] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
[    8.077442] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
[    8.077467] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
[    8.077496] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
[    8.077524] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
[    8.077553] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
[    8.077581] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
[    8.077614] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
[    8.077640] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
[    8.077669] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
[    8.077697] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
[    8.077738] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
[    8.077768] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
[    8.077821] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
[    8.077843] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
[    8.077874] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
[    8.077927] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
[    8.077948] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
[    8.077990] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
[    8.078011] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
[    8.078055] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
[    8.078078] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
[    8.078123] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
[    8.078145] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
[    8.078191] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
[    8.078212] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
[    8.078255] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
[    8.078277] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
[    8.078320] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
[    8.078343] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
[    8.078386] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
[    8.078512] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
[    8.078541] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
[    8.078568] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
[    8.078626] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
[    8.078649] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
[    8.078682] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
[    8.078729] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
[    8.078751] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
[    8.078796] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
[    8.078816] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
[    8.078859] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
[    8.078880] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
[    8.078925] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
[    8.078947] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
[    8.078992] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
[    8.079013] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
[    8.079058] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
[    8.079079] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
[    8.079125] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
[    8.079147] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
[    8.079178] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
[    8.079224] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
[    8.079246] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
[    8.079289] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
[    8.079311] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
[    8.079355] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
[    8.079376] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
[    8.079419] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
[    8.079440] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
[    8.079485] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
[    8.079507] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
[    8.079550] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
[    8.079571] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
[    8.079618] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
[    8.079639] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
[    8.079672] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
[    8.079717] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
[    8.079738] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
[    8.079784] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
[    8.079805] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
[    8.079850] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
[    8.079871] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
[    8.079913] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
[    8.079934] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
[    8.079979] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
[    8.080001] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
[    8.080047] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
[    8.080069] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
[    8.080113] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
[    8.080134] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
[    8.080180] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
[    8.080202] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
[    8.080245] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
[    8.080266] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
[    8.080312] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
[    8.080333] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
[    8.080375] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
[    8.080397] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
[    8.080446] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
[    8.080467] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
[    8.080501] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
[    8.080507] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: goodbye!
[    8.080539] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
[    8.080657] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
[    8.080759] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
[    8.080854] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
[    8.080944] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
[    8.143933] hub 1-0:1.0: USB hub found
[    8.154498] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
[    8.230977] hub 1-0:1.0: 1 port detected
[    8.237376] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
[    8.546430] usb 1-1: new high-speed USB device number 2 using xhci-hcd
[    8.555240] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
[    8.855195] hub 1-1:1.0: USB hub found
[    8.864043] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
[    8.888513] hub 1-1:1.0: 4 ports detected
[    8.897777] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
[    9.611801] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
[  OK  ] Started weston.serviced comp[    9.623063] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
ositor, as a system service.

[    9.635847] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
[    9.649088] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
[    9.662037] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
[    9.673987] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
[    9.690002] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
[  OK  ] Started systemd-hostnamed.service    9.699423] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
0m - Hostname Service.

[    9.727619] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
[    9.745243] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
[    9.755872] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
[    9.764549] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
[    9.774599] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
[    9.783180] rpmsg_client_sample virtio1.ti.ipc4.ping-pong.-1.13: goodbye!
[  OK  ] Started ssh.service - OpenBSD Secure Shell server.

[  OK  ] Reached target multi-user.target - Multi-User System.

[  OK  ] Reached target graphical.target - Graphical Interface.

[  OK  ] Reached target usb-gadget.m - Hardware activated USB gadget.

[    9.904472] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
[    9.913814] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
         Starting NetworkManager-dinager Script Dispatcher Service...

         Starting alsa-restore.serv- Save/Restore Sound Card State...

         Starting systemd-update-ut Record Runlevel Change in UTMP...

[  OK  ] Finished alsa-restore.servm - Save/Restore Sound Card State.

[   10.030882] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [TI DP83867] (irq=POLL)
[   10.040450] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[  OK  ] Started NetworkManager-disManager Script Dispatcher Service.

[  OK  ] Finished systemd-update-ut - Record Runlevel Change in UTMP.

[  OK  ] Created slice user-0.slice - User Slice of UID 0.

[  OK  ] Reached target sound.target - Sound Card.

         Starting user-runtime-dir@r Runtime Directory /run/user/0...

[  OK  ] Finished user-runtime-dir@ser Runtime Directory /run/user/0.

         Starting user@0.service - User Manager for UID 0...

[  OK  ] Started user@0.service - User Manager for UID 0.

[  OK  ] Started session-c1.scope - Session c1 of User root.



Debian GNU/Linux 12 am62xx-evm ttyS2

am62xx-evm login: root

Linux am62xx-evm 6.1.33 #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024 aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Thu Jan  1 00:00:20 UTC 1970 on ttyS2
root@am62xx-evm:~# lscpu

Architecture:            aarch64
  CPU op-mode(s):        32-bit, 64-bit
  Byte Order:            Little Endian
CPU(s):                  2
  On-line CPU(s) list:   0,1
Vendor ID:               ARM
  Model name:            Cortex-A53
    Model:               4
    Thread(s) per core:  1
    Core(s) per cluster: 2
    Socket(s):           -
    Cluster(s):          1
    Stepping:            r0p4
    CPU(s) scaling MHz:  71%
    CPU max MHz:         1400.0000
    CPU min MHz:         200.0000
    BogoMIPS:            400.00
    Flags:               fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
Caches (sum of all):     
  L1d:                   64 KiB (2 instances)
  L1i:                   64 KiB (2 instances)
  L2:                    512 KiB (1 instance)
Vulnerabilities:         
  Itlb multihit:         Not affected
  L1tf:                  Not affected
  Mds:                   Not affected
  Meltdown:              Not affected
  Mmio stale data:       Not affected
  Retbleed:              Not affected
  Spec store bypass:     Not affected
  Spectre v1:            Mitigation; __user pointer sanitization
  Spectre v2:            Not affected
  Srbds:                 Not affected
  Tsx async abort:       Not affected
root@am62xx-evm:~# [   18.296477] i2c 1-003b: deferred probe pending
[   18.301137] platform 30200000.dss: deferred probe pending

However, running on our board with am6232A TCGHAALW did not display any boot messages.

Is there any action I am missing?

Thanks,

Andrew

  • In AM62x datasheet "10.1.2 Device Naming Convention"
    - am6254A TCGGAALW => GP
    - am6232A TCGHAALW => HS-FS
    we'll need to use u-boot binary build for HS-FS to boot on HS-FS
    software-dl.ti.com/.../Foundational_Components_Migration_Guide.html
    Best,
    -Hong

  • Dear Hong,

    I have successfully booted up am6232a now.

    1.1.4. SDK Build using Makefile

    However, if I set CONFIG_K3_RTI_WATCHDOG=y, it gets stuck in the following log.

    not set CONFIG_K3_RTI_WATCHDOG:

    U-Boot SPL 2023.04 (Mar 22 2024 - 11:08:20 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 13376 bytes
    Trying to boot from MMC2
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 00:42:57, Jan 13 2023
    
    U-Boot SPL 2023.04 (Mar 22 2024 - 11:08:28 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 1856 bytes
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    Error (-2): cannot determine file size
    Trying to boot from MMC2
    Authentication passed
    Authentication passed
    
    
    U-Boot 2023.04 (Mar 22 2024 - 11:08:28 +0800)
    
    SoC:   AM62X SR1.0 HS-FS
    Model: Texas Instruments AM625 SK
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    DRAM:  2 GiB
    Core:  71 devices, 31 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial
    Out:   serial
    Err:   serial
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  2  1  0 
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    switch to partitions #0, OK
    mmc1 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    SD/MMC found on device 1
    Failed to load 'boot.scr'
    Failed to load 'uEnv.txt'
    ## Error: "main_cpsw0_qsgmii_phyinit" not defined
    20593152 bytes read in 864 ms (22.7 MiB/s)
    53900 bytes read in 18 ms (2.9 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
    ERROR: reserving fdt memory region failed (addr=ff700000 size=8ca000 flags=4)
       Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK
    Working FDT set to 8feef000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.1.33 (root@andrew-GENE-CML5) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024
    [    0.000000] Machine model: Texas Instruments AM625 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    [    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ff6fffff]
    [    0.000000]   node   0: [mem 0x00000000ff700000-0x00000000fffc9fff]
    [    0.000000]   node   0: [mem 0x00000000fffca000-0x00000000ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=a0ea9fb9-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 1838268K/2097152K available (12480K kernel code, 1294K rwdata, 4040K rodata, 2176K init, 498K bss, 127812K reserved, 131072K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: RCU event tracing is enabled.
    [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
    [    0.000000] Trampoline variant of Tasks RCU enabled.
    [    0.000000] Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008536] Console: colour dummy device 80x25
    [    0.013127] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023810] pid_max: default: 32768 minimum: 301
    [    0.028581] LSM: Security Framework initializing
    [    0.033438] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.041022] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.050784] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.058244] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.064542] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.070940] rcu: Hierarchical SRCU implementation.
    [    0.075846] rcu: Max phase no-delay instances is 1000.
    [    0.081463] Platform MSI: msi-controller@1820000 domain created
    [    0.087767] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.097608] EFI services will not be available.
    [    0.102461] smp: Bringing up secondary CPUs ...
    [    0.107765] Detected VIPT I-cache on CPU1
    [    0.107883] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.107901] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.107959] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108077] smp: Brought up 1 node, 2 CPUs
    [    0.137472] SMP: Total of 2 processors activated.
    [    0.142285] CPU features: detected: 32-bit EL0 Support
    [    0.147557] CPU features: detected: CRC32 instructions
    [    0.152870] CPU: All CPU(s) started at EL2
    [    0.157056] alternatives: applying system-wide alternatives
    [    0.164599] devtmpfs: initialized
    [    0.175593] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.185610] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.197059] pinctrl core: initialized pinctrl subsystem
    [    0.203089] DMI not present or invalid.
    [    0.207692] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.214937] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
    [    0.222327] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.230400] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.238585] audit: initializing netlink subsys (disabled)
    [    0.244375] audit: type=2000 audit(0.152:1): state=initialized audit_enabled=0 res=1
    [    0.244905] thermal_sys: Registered thermal governor 'step_wise'
    [    0.252315] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.258649] cpuidle: using governor menu
    [    0.269533] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.276537] ASID allocator initialised with 65536 entries
    [    0.292340] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.303587] platform connector: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.313022] KASLR disabled due to lack of seed
    [    0.324727] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.331700] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.338112] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.345051] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.351458] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.358396] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.364803] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.371741] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.379997] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.389102] iommu: Default domain type: Translated 
    [    0.394098] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.400784] SCSI subsystem initialized
    [    0.405022] usbcore: registered new interface driver usbfs
    [    0.410669] usbcore: registered new interface driver hub
    [    0.416122] usbcore: registered new device driver usb
    [    0.421784] pps_core: LinuxPPS API ver. 1 registered
    [    0.426864] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.436216] PTP clock support registered
    [    0.440346] EDAC MC: Ver: 3.0.0
    [    0.444500] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.451665] FPGA manager framework
    [    0.455246] Advanced Linux Sound Architecture Driver Initialized.
    [    0.462463] clocksource: Switched to clocksource arch_sys_counter
    [    0.468956] VFS: Disk quotas dquot_6.6.0
    [    0.473010] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.485999] NET: Registered PF_INET protocol family
    [    0.491297] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.500559] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
    [    0.509369] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.517309] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.525518] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
    [    0.533520] TCP: Hash tables configured (established 16384 bind 16384)
    [    0.540431] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.547357] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.554881] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.561208] RPC: Registered named UNIX socket transport module.
    [    0.567301] RPC: Registered udp transport module.
    [    0.572111] RPC: Registered tcp transport module.
    [    0.576920] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.583531] NET: Registered PF_XDP protocol family
    [    0.588446] PCI: CLS 0 bytes, default 64
    [    0.593279] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.603298] Initialise system trusted keyrings
    [    0.608154] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    0.620603] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.627351] NFS: Registering the id_resolver key type
    [    0.632575] Key type id_resolver registered
    [    0.636853] Key type id_legacy registered
    [    0.641020] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.647877] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.655656] 9p: Installing v9fs 9p2000 file system support
    [    0.695021] Key type asymmetric registered
    [    0.699212] Asymmetric key parser 'x509' registered
    [    0.704254] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.712010] io scheduler mq-deadline registered
    [    0.716652] io scheduler kyber registered
    [    0.723876] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.730497] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.737309] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.750742] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.764818] loop: module loaded
    [    0.769289] megasas: 07.719.03.00-rc1
    [    0.777062] tun: Universal TUN/TAP device driver, 1.6
    [    0.783014] thunder_xcv, ver 1.0
    [    0.786343] thunder_bgx, ver 1.0
    [    0.789681] nicpf, ver 1.0
    [    0.792824] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
    [    0.800212] hns3: Copyright (c) 2017 Huawei Corporation.
    [    0.805704] hclge is initializing
    [    0.809116] e1000: Intel(R) PRO/1000 Network Driver
    [    0.814102] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [    0.820007] e1000e: Intel(R) PRO/1000 Network Driver
    [    0.825081] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [    0.831161] igb: Intel(R) Gigabit Ethernet Network Driver
    [    0.836681] igb: Copyright (c) 2007-2014 Intel Corporation.
    [    0.842408] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.848816] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.855013] sky2: driver version 1.30
    [    0.859451] VFIO - User Level meta-driver version: 0.3
    [    0.865485] usbcore: registered new interface driver usb-storage
    [    0.872402] i2c_dev: i2c /dev entries driver
    [    0.878905] sdhci: Secure Digital Host Controller Interface driver
    [    0.885267] sdhci: Copyright(c) Pierre Ossman
    [    0.890167] Synopsys Designware Multimedia Card Interface Driver
    [    0.896715] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.903456] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.909793] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.916747] usbcore: registered new interface driver usbhid
    [    0.922472] usbhid: USB HID core driver
    [    0.927653] optee: probing for conduit method.
    [    0.932251] optee: revision 3.20 (8e74d476)
    [    0.932598] optee: dynamic shared memory is enabled
    [    0.942145] optee: initialized driver
    [    0.947722] Initializing XFRM netlink socket
    [    0.952152] NET: Registered PF_PACKET protocol family
    [    0.957463] 9pnet: Installing 9P2000 support
    [    0.961903] Key type dns_resolver registered
    [    0.966704] registered taskstats version 1
    [    0.970935] Loading compiled-in X.509 certificates
    [    0.984791] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    [    1.045138] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.052532] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [    1.059472] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.065460] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.073809] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.083053] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.092988] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.101200] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.112330] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.122363] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.132641] printk: console [ttyS2] disabled
    [    1.137104] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250
    [    1.146004] printk: console [ttyS2] enabled
    [    1.146004] printk: console [ttyS2] enabled
    [    1.154462] printk: bootconsole [ns16550a0] disabled
    [    1.154462] printk: bootconsole [ns16550a0] disabled
    [    1.166828] spi-nor spi0.0: unrecognized JEDEC id bytes: fe 00 00 00 00 00
    [    1.174973] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.218484] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.227631] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    [    1.234262] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    1.242388] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.255317] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.261583] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.268709] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.275229] pps pps0: new PPS source ptp0
    [    1.279559] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
    [    1.289910] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.303116] mmc0: CQHCI version 5.10
    [    1.304129] mmc1: CQHCI version 5.10
    [    1.315247] pca953x 1-0022: supply vcc not found, using dummy regulator
    [    1.322052] pca953x 1-0022: using AI
    [    1.345100] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.352475] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    1.352779] pca953x 1-0022: failed writing register
    [    1.365714] pca953x: probe of 1-0022 failed with error -121
    [    1.372808] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.393138] ALSA device list:
    [    1.396145]   No soundcards found.
    [    1.400207] Waiting for root device PARTUUID=a0ea9fb9-02...
    [    1.427407] mmc1: new ultra high speed SDR104 SDHC card at address 59b4
    [    1.434870] mmcblk1: mmc1:59b4 SMTC  29.1 GiB 
    [    1.441631]  mmcblk1: p1 p2
    [    1.456694] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
    [    1.465311] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    1.474311] devtmpfs: mounted
    [    1.478930] Freeing unused kernel memory: 2176K
    [    1.483629] Run /sbin/init as init process
    [    1.528972] mmc0: Command Queue Engine enabled
    [    1.533543] mmc0: new HS200 MMC card at address 0001
    [    1.539649] mmcblk0: mmc0:0001 DG4032 29.1 GiB 
    [    1.546709] mmcblk0boot0: mmc0:0001 DG4032 4.00 MiB 
    [    1.560500] mmcblk0boot1: mmc0:0001 DG4032 4.00 MiB 
    [    1.567568] mmcblk0rpmb: mmc0:0001 DG4032 4.00 MiB, chardev (240:0)
    [    1.758824] systemd[1]: System time before build time, advancing clock.
    [    1.824111] NET: Registered PF_INET6 protocol family
    [    1.831027] Segment Routing with IPv6
    [    1.834770] In-situ OAM (IOAM) with IPv6
    [    1.889825] systemd[1]: systemd 252.6-1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
    [    1.922041] systemd[1]: Detected architecture arm64.
    
    Welcome to Debian GNU/Linux 12 (bookworm)!
    
    [    1.944939] systemd[1]: Hostname set to <am62xx>.
    [    2.597557] systemd[1]: Queued start job for default target graphical.target.
    [    2.630980] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
    [  OK  ] Created slice system-getty.slice - Slice /system/getty.
    [    2.656509] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
    [  OK  ] Created slice system-modprlice - Slice /system/modprobe.
    [    2.680462] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
    [  OK  ] Created slice system-seria - Slice /system/serial-getty.
    [    2.708146] systemd[1]: Created slice user.slice - User and Session Slice.
    [  OK  ] Created slice user.slice - User and Session Slice.
    [    2.731281] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started systemd-ask-passwoquests to Console Directory Watch.
    [    2.759142] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started systemd-ask-passwo Requests to Wall Directory Watch.
    [    2.786941] systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
    [    2.806522] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
    [  OK  ] Reached target cryptsetup.get - Local Encrypted Volumes.
    [    2.830775] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
    [  OK  ] Reached target integrityseLocal Integrity Protected Volumes.
    [    2.854916] systemd[1]: Reached target paths.target - Path Units.
    [  OK  ] Reached target paths.target - Path Units.
    [    2.878764] systemd[1]: Reached target remote-fs.target - Remote File Systems.
    [  OK  ] Reached target remote-fs.target - Remote File Systems.
    [    2.902932] systemd[1]: Reached target slices.target - Slice Units.
    [  OK  ] Reached target slices.target - Slice Units.
    [    2.927067] systemd[1]: Reached target swap.target - Swaps.
    [  OK  ] Reached target swap.target - Swaps.
    [    2.950984] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
    [  OK  ] Reached target veritysetup - Local Verity Protected Volumes.
    [    2.976585] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
    [  OK  ] Listening on systemd-initc initctl Compatibility Named Pipe.
    [    3.006933] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
    [  OK  ] Listening on systemd-journsocket - Journal Audit Socket.
    [    3.032332] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
    [  OK  ] Listening on systemd-journt - Journal Socket (/dev/log).
    [    3.060631] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
    [  OK  ] Listening on systemd-journald.socket - Journal Socket.
    [    3.085794] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
    [  OK  ] Listening on systemd-udevd.socket - udev Control Socket.
    [    3.112455] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
    [  OK  ] Listening on systemd-udevdl.socket - udev Kernel Socket.
    [    3.158987] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
             Mounting dev-hugepages.mount - Huge Pages File System...
    [    3.189642] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
             Mounting dev-mqueue.mountPOSIX Message Queue File System...
    [    3.239015] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
             Mounting sys-kernel-debug. - Kernel Debug File System...
    [    3.263661] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    3.287488] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
             Starting kmod-static-nodesate List of Static Device Nodes...
    [    3.347593] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
             Starting modprobe@configfsm - Load Kernel Module configfs...
    [    3.382321] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
             Starting modprobe@dm_mod.s[0m - Load Kernel Module dm_mod...
    [    3.406190] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
    [    3.443412] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
             Starting modprobe@drm.service - Load Kernel Module drm...
    [    3.482187] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
             Starting modprobe@efi_psto- Load Kernel Module efi_pstore...
    [    3.516875] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
             Starting modprobe@fuse.sere - Load Kernel Module fuse...
    [    3.539790] fuse: init (API version 7.37)
    [    3.563407] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
             Starting modprobe@loop.sere - Load Kernel Module loop...
    [    3.599767] systemd[1]: Starting systemd-journald.service - Journal Service...
             Starting systemd-journald.service - Journal Service...
    [    3.630908] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
             Starting systemd-modules-lrvice - Load Kernel Modules...
    [    3.679439] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
             Starting systemd-remount-fnt Root and Kernel File Systems...
    [    3.707331] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
             Starting systemd-udev-trig[0m - Coldplug All udev Devices...
    [    3.754091] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
    [  OK  ] Mounted dev-hugepages.mount - Huge Pages File System.
    [    3.779444] systemd[1]: Started systemd-journald.service - Journal Service.
    [  OK  ] Started systemd-journald.service - Journal Service.
    [  OK  ] Mounted dev-mqueue.mount- POSIX Message Queue File System.
    [  OK  ] Mounted sys-kernel-debug.mnt - Kernel Debug File System.
    [  OK  ] Finished kmod-static-nodesreate List of Static Device Nodes.
    [  OK  ] Finished modprobe@configfs[0m - Load Kernel Module configfs.
    [  OK  ] Finished modprobe@dm_mod.se - Load Kernel Module dm_mod.
    [  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.
    [  OK  ] Finished modprobe@efi_pstom - Load Kernel Module efi_pstore.
    [  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.
    [  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.
    [  OK  ] Finished systemd-modules-lservice - Load Kernel Modules.
    [  OK  ] Finished systemd-remount-fount Root and Kernel File Systems.
             Mounting sys-fs-fuse-conne - FUSE Control File System...
             Mounting sys-kernel-configernel Configuration File System...
             Starting systemd-journal-fh Journal to Persistent Storage...
    [    4.152356] systemd-journald[150]: Received client request to flush runtime journal.
             Starting systemd-random-seice - Load/Sa[    4.167031] systemd-journald[150]: File /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal corrupted or uncleanly shut down, renaming and replacing.
    ve Random Seed...
             Starting systemd-sysctl.sece - Apply Kernel Variables...
             Starting systemd-sysusers.rvice - Create System Users...
    [  OK  ] Finished systemd-udev-trige - Coldplug All udev Devices.
    [  OK  ] Mounted sys-fs-fuse-connecnt - FUSE Control File System.
    [  OK  ] Mounted sys-kernel-config. Kernel Configuration File System.
             Starting ifupdown-pre.servynchronize boot up for ifupdown...
    [  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.
    [  OK  ] Finished ifupdown-pre.serv synchronize boot up for ifupdown.
    [  OK  ] Finished systemd-journal-fush Journal to Persistent Storage.
    [  OK  ] Finished systemd-sysusers.service - Create System Users.
             Starting systemd-tmpfiles-ate Static Device Nodes in /dev...
    [  OK  ] Finished systemd-tmpfiles-reate Static Device Nodes in /dev.
    [  OK  ] Reached target local-fs-prreparation for Local File Systems.
    [  OK  ] Reached target local-fs.target - Local File Systems.
             Starting networking.service - Raise network interfaces...
             Starting systemd-binfmt.seet Up Additional Binary Formats...
             Starting systemd-tmpfiles- Volatile Files and Directories...
             Starting systemd-udevd.serger for Device Events and Files...
    [FAILED] Failed to start systemd-bi Set Up Additional Binary Formats.
    See 'systemctl status systemd-binfmt.service' for details.
    [  OK  ] Finished systemd-tmpfiles-te Volatile Files and Directories.
             Starting systemd-timesyncd - Network Time Synchronization...
             Starting systemd-update-utrd System Boot/Shutdown in UTMP...
    [  OK  ] Finished networking.service - Raise network interfaces.
    [  OK  ] Started systemd-udevd.servnager for Device Events and Files.
    [  OK  ] Finished systemd-update-utcord System Boot/Shutdown in UTMP.
    [    5.250506] random: crng init done
    [  OK  ] Finished systemd-random-service - Load/Save Random Seed.
    [  OK  ] Found device dev-ttyS2.device - /dev/ttyS2.
    [  OK  ] Started systemd-timesyncd.0m - N[    5.451155] systemd-journald[150]: Oldest entry in /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal is older than the configured file retention duration (1month), suggesting rotation.
    etwork Time Synchronization.
    [    5.478755] systemd-journald[150]: /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal: Journal header limits reached or header out-of-date, rotating.
    [  OK  ] Reached target sysinit.target - System Initialization.
    [  OK  ] Started systemd-tmpfiles-c Cleanup of Temporary Directories.
    [  OK  ] Reached target time-set.target - System Time Set.
    [  OK  ] Started apt-daily.timer - Daily apt download activities.
    [  OK  ] Started apt-daily-upgrade. apt upgrade and clean activities.
    [  OK  ] Started dpkg-db-backup.tim Daily dpkg database backup timer.
    [  OK  ] Started e2scrub_all.timeretadata Check for All Filesystems.
    [  OK  ] Started fstrim.timer - Discard unused blocks once a week.
    [  OK  ] Started logrotate.timer - Daily rotation of log files.
    [  OK  ] Started man-db.timer - Daily man-db regeneration.
    [  OK  ] Reached target timers.target - Timer Units.
    [  OK  ] Listening on dbus.socket- D-Bus System Message Bus Socket.
    [  OK  ] Listening on weston.socket - Weston socket.
    [  OK  ] Reached target sockets.target - Socket Units.
    [  OK  ] Reached target basic.target - Basic System.
    [  OK  ] Started cron.service -kground program processing daemon.
             Starting dbus.service - D-Bus System Message Bus...
             Starting e2scrub_reap.serve ext4 Metadata Check Snapshots...
             Starting systemd-logind.seice - User Login Management...
    [  OK  ] Started dbus.service - D-Bus System Message Bus.
    [  OK  ] Finished e2scrub_reap.servine ext4 Metadata Check Snapshots.
    [    6.344969] mc: Linux media interface: v0.10
    [  OK  ] Started systemd-logind.service - User Login Management.
    [    6.421180] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
             Starting NetworkManager.service - Network Manager...
    [    6.449150] videodev: Linux video capture interface: v2.00
    [    6.488071] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
    [    6.533808] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
    [    6.541315] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
    [    6.551368] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
    [    6.760302] platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
    [    6.831359] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [    6.840327] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    6.840754] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    6.887729] systemd-journald[150]: Time jumped backwards, rotating.
    [  OK  ] Started NetworkManager.service [    6.899518] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:12 UTC (12)
    - Network Manager.
    [  OK  ] Reached target network.target - Network.
             Starting ssh.service - OpenBSD Secure Shell server...
    [    6.980662] platform 78000000.r5f: configured R5F for IPC-only mode
    [    6.988335] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
             Starting systemd-user-sessvice - Permit[    7.002200] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
     User Sessions...
    [    7.031419] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    7.041406] remoteproc remoteproc1: 78000000.r5f is available
    [    7.047518] remoteproc remoteproc0: 5000000.m4fss is available
    [    7.047604] remoteproc remoteproc1: attaching to 78000000.r5f
    [    7.061508] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    7.068464] rproc-virtio rproc-virtio.1.auto: assigned reserved memory node r5f-dma-memory@9da00000
    [    7.083113] rproc-virtio rproc-virtio.1.auto: registered virtio0 (type 7)
    [    7.090054] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    7.127347] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    7.154556] remoteproc remoteproc0: powering up 5000000.m4fss
    [    7.160421] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    7.182536] remoteproc remoteproc0: request_firmware failed: -2
             Starting systemd-hostnamed.service - Hostname Service...
    [  OK  ] Finished systemd-user-sesservice - Permit User Sessions.
    [  OK  ] Started getty@tty1.service - Getty on tty1.
    [    7.320918] remoteproc remoteproc2: 30074000.pru is available
    [  OK  ] Started serial-getty@ttyS2rvice remoteproc remoteproc3: 30078000.pru is available
    [0m - Serial Getty on ttyS2.
    [  OK  ] Reached target getty.target - Login Prompts.
    [  OK  ] Started weston.serviced compositor, as a system service.
    [  OK  ] Created slice user-0.slice - Us[    7.580735] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    er Slice of UID 0.
    [    7.609979] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    7.621724] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
             Starting user-runtime-dir@r Runtime Directo[    7.635560] xhci-hcd xhci-hcd.2.auto: USB3 root hub has no ports
    ry /run/user/0...
    [    7.643745] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    7.665413] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    7.666424] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [  OK  ] Started ssh.service - OpenBSD Secure Shell server.
    [    7.686699] xhci-hcd xhci-hcd.2.auto: irq 455, io mem 0x31100000
    [    7.693323] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [    7.710981] hub 1-0:1.0: USB hub found
    [    7.719988] hub 1-0:1.0: 1 port detected
    [  OK  ] Reached target multi-user.target - Multi-User System.
    [  OK  ] Reached target graphical.target - Graphical Interface.
    [  OK  ] Reached target sound.target - Sound Card.
    [    7.777697] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
    [  OK  ] Reached target usb-gadget.m - Ha[    7.791238] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
    rdware activated USB gadget.
    [    7.806632] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
    [    7.817832] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
    [    7.826367] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
    [    7.834809] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
    [    7.844479] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
    [    7.852987] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
    [    7.861373] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
             Starting systemd-update-ut Record Runlevel Change in UTMP...
    [    7.878624] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
    [    7.887041] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
    [    7.902830] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)
    [    7.911314] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
    [  OK  ] Finished user-runtime-dir@ser Runtime Directory /run/user/0.
    [    7.926649] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
    [    7.938587] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
    [    7.950678] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
    [    7.959113] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
    [    7.971834] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
    [    7.980295] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
    [    7.988776] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
    [    7.997174] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
    [    8.005599] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
    [    8.014019] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
    [    8.014522] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [    8.022463] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
    [    8.037312] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
             Starting user@0.service - User Manager for[    8.051551] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
     UID 0...
    [    8.062839] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
    [    8.072842] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
    [    8.082162] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)
    [    8.091794] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
    [    8.101028] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
    [    8.110783] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
    [  OK  ] Finished systemd-update-ut - Rec[    8.120114] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
    ord Runlevel Change in UTMP.
    [    8.134348] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
    [  OK  ] Started systemd-hostnamed.service    8.150068] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
    0m - Hostname Service.
    [    8.164327] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
    [    8.174541] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
    [    8.184936] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
    [    8.194134] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
    [    8.206599] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
    [    8.215198] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
    [    8.226951] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
    [    8.250189] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
    [    8.250240] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
    [    8.250273] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
    [    8.250308] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
    [    8.250406] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
    [    8.250533] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
    [    8.250588] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
    [    8.250628] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
    [    8.250667] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
    [  OK  ] Listening on systemd-rfkill Swit[    8.250710] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
    [    8.250748] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
    [    8.250791] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
    ch Status /dev/rfkill Watch.
    [    8.250830] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
    [    8.250890] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
    [    8.250928] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
    [    8.250965] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
    [    8.251005] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
    [    8.251043] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
    [    8.251081] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
    [    8.251121] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
    [    8.251165] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
    [    8.251204] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
    [    8.251241] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
    [    8.251278] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
    [    8.251317] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
    [    8.251355] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
    [    8.251392] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
    [    8.251433] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
    [    8.251470] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
    [    8.251507] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
    [    8.251546] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
    [    8.251584] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
    [    8.251623] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
    [    8.251662] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
    [    8.251700] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
    [    8.251737] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
    [    8.251774] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
    [    8.251810] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
    [    8.251850] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
    [    8.251888] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
    [    8.251925] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
    [    8.251964] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
    [    8.252002] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
    [    8.252039] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
    [    8.252077] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
    [    8.252115] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
    [    8.252159] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
    [    8.252199] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
    [    8.252236] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
    [    8.252273] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
    [    8.252310] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
    [    8.252347] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
    [    8.252385] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
    [    8.252423] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
    [    8.252461] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
    [    8.252499] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
    [    8.252537] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
    [    8.252574] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
    [    8.252612] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
    [    8.252619] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: goodbye!
    [    8.296566] hub 1-1:1.0: USB hub found
    [    8.296931] hub 1-1:1.0: 4 ports detected
             Starting NetworkManager-dinager Script Dispatcher Service...
    [    8.806709] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    8.816466] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started NetworkManager-disManager Script Dispatcher Service.
    [    9.118520] usb 1-1.3: new high-speed USB device number 3 using xhci-hcd
    [    9.229327] usb-storage 1-1.3:1.0: USB Mass Storage device detected
    [  OK  ] Started user@0.service - User Manager for UID 0.
    [    9.243716] scsi host0: usb-storage 1-1.3:1.0
    [  OK  ] Started session-c1.scope - Session c1 of User root.
    [   10.260428] scsi 0:0:0:0: Direct-Access      USB      SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6
    [   10.273986] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    [   10.286665] sd 0:0:0:0: [sda] Write Protect is off
    [   10.298220] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    
    
    Debian GNU/Linux 12 am62xx ttyS2
    
    am62xx login: [   10.326735]  sda: sda1
    [   10.329973] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [   12.916392] am65-cpsw-nuss 8000000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx
    [   12.925277] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
    root
    
    Linux am62xx 6.1.33 #1 SMP PREEMPT Wed Mar 20 19:26:13 CST 2024 aarch64
    
    The programs included with the Debian GNU/Linux system are free software;
    the exact distribution terms for each program are described in the
    individual files in /usr/share/doc/*/copyright.
    
    Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
    permitted by applicable law.
    Last login: Fri Mar 22 03:00:29 UTC 2024 on ttyS2
    root@am62xx:~# lscpu
    
    Architecture:            aarch64
      CPU op-mode(s):        32-bit, 64-bit
      Byte Order:            Little Endian
    CPU(s):                  2
      On-line CPU(s) list:   0,1
    Vendor ID:               ARM
      Model name:            Cortex-A53
        Model:               4
        Thread(s) per core:  1
        Core(s) per cluster: 2
        Socket(s):           -
        Cluster(s):          1
        Stepping:            r0p4
        CPU(s) scaling MHz:  71%
        CPU max MHz:         1400.0000
        CPU min MHz:         200.0000
        BogoMIPS:            400.00
        Flags:               fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
    Caches (sum of all):     
      L1d:                   64 KiB (2 instances)
      L1i:                   64 KiB (2 instances)
      L2:                    512 KiB (1 instance)
    Vulnerabilities:         
      Itlb multihit:         Not affected
      L1tf:                  Not affected
      Mds:                   Not affected
      Meltdown:              Not affected
      Mmio stale data:       Not affected
      Retbleed:              Not affected
      Spec store bypass:     Not affected
      Spectre v1:            Mitigation; __user pointer sanitization
      Spectre v2:            Not affected
      Srbds:                 Not affected
      Tsx async abort:       Not affected
    root@am62xx:~# [   18.040980] i2c 1-003b: deferred probe pending
    [   18.045509] platform 30200000.dss: deferred probe pending

    set CONFIG_K3_RTI_WATCHDOG=y

    U-Boot SPL 2023.04 (Mar 22 2024 - 11:13:25 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 13376 bytes
    Trying to boot from MMC2
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Authentication passed
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 00:42:57, Jan 13 2023
    
    U-Boot SPL 2023.04 (Mar 22 2024 - 11:13:33 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 1856 bytes
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    Error (-2): cannot determine file size
    Trying to boot from MMC2
    Authentication passed
    Authentication passed
    
    
    U-Boot 2023.04 (Mar 22 2024 - 11:13:33 +0800)
    
    SoC:   AM62X SR1.0 HS-FS
    Model: Texas Instruments AM625 SK
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    DRAM:  2 GiB
    Core:  71 devices, 31 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial
    Out:   serial
    Err:   serial
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  2  1  0 
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    switch to partitions #0, OK
    mmc1 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    SD/MMC found on device 1
    Failed to load 'boot.scr'
    Failed to load 'uEnv.txt'
    ## Error: "main_cpsw0_qsgmii_phyinit" not defined
    20593152 bytes read in 865 ms (22.7 MiB/s)
    53900 bytes read in 17 ms (3 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
    ERROR: reserving fdt memory region failed (addr=ff700000 size=8ca000 flags=4)
       Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK
    Working FDT set to 8feef000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.1.33 (root@andrew-GENE-CML5) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #2 SMP PREEMPT Fri Mar 22 11:12:52 CST 2024
    [    0.000000] Machine model: Texas Instruments AM625 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    [    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ff6fffff]
    [    0.000000]   node   0: [mem 0x00000000ff700000-0x00000000fffc9fff]
    [    0.000000]   node   0: [mem 0x00000000fffca000-0x00000000ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=a0ea9fb9-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 1838268K/2097152K available (12480K kernel code, 1294K rwdata, 4044K rodata, 2176K init, 498K bss, 127812K reserved, 131072K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: RCU event tracing is enabled.
    [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
    [    0.000000] Trampoline variant of Tasks RCU enabled.
    [    0.000000] Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008539] Console: colour dummy device 80x25
    [    0.013134] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023816] pid_max: default: 32768 minimum: 301
    [    0.028589] LSM: Security Framework initializing
    [    0.033441] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.041026] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.050786] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.058244] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.064541] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.070934] rcu: Hierarchical SRCU implementation.
    [    0.075840] rcu: Max phase no-delay instances is 1000.
    [    0.081450] Platform MSI: msi-controller@1820000 domain created
    [    0.087758] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.097594] EFI services will not be available.
    [    0.102437] smp: Bringing up secondary CPUs ...
    [    0.107739] Detected VIPT I-cache on CPU1
    [    0.107858] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.107876] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.107932] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108048] smp: Brought up 1 node, 2 CPUs
    [    0.137442] SMP: Total of 2 processors activated.
    [    0.142255] CPU features: detected: 32-bit EL0 Support
    [    0.147527] CPU features: detected: CRC32 instructions
    [    0.152845] CPU: All CPU(s) started at EL2
    [    0.157031] alternatives: applying system-wide alternatives
    [    0.164575] devtmpfs: initialized
    [    0.175583] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.185603] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.197064] pinctrl core: initialized pinctrl subsystem
    [    0.203093] DMI not present or invalid.
    [    0.207711] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.214940] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
    [    0.222329] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.230401] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.238591] audit: initializing netlink subsys (disabled)
    [    0.244382] audit: type=2000 audit(0.152:1): state=initialized audit_enabled=0 res=1
    [    0.244914] thermal_sys: Registered thermal governor 'step_wise'
    [    0.252319] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.258651] cpuidle: using governor menu
    [    0.269536] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.276537] ASID allocator initialised with 65536 entries
    [    0.292374] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.303648] platform connector: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.313061] KASLR disabled due to lack of seed
    [    0.324675] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.331646] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.338057] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.344996] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.351403] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.358341] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.364748] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.371686] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.379934] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.389037] iommu: Default domain type: Translated 
    [    0.394033] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.400721] SCSI subsystem initialized
    [    0.404952] usbcore: registered new interface driver usbfs
    [    0.410602] usbcore: registered new interface driver hub
    [    0.416056] usbcore: registered new device driver usb
    [    0.421708] pps_core: LinuxPPS API ver. 1 registered
    [    0.426788] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.436140] PTP clock support registered
    [    0.440270] EDAC MC: Ver: 3.0.0
    [    0.444425] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.451579] FPGA manager framework
    [    0.455158] Advanced Linux Sound Architecture Driver Initialized.
    [    0.462368] clocksource: Switched to clocksource arch_sys_counter
    [    0.468866] VFS: Disk quotas dquot_6.6.0
    [    0.472919] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.485901] NET: Registered PF_INET protocol family
    [    0.491203] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.500466] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
    [    0.509272] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.517211] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.525420] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
    [    0.533419] TCP: Hash tables configured (established 16384 bind 16384)
    [    0.540322] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.547248] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.554772] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.561085] RPC: Registered named UNIX socket transport module.
    [    0.567177] RPC: Registered udp transport module.
    [    0.571988] RPC: Registered tcp transport module.
    [    0.576797] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.583407] NET: Registered PF_XDP protocol family
    [    0.588322] PCI: CLS 0 bytes, default 64
    [    0.593146] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.603158] Initialise system trusted keyrings
    [    0.608017] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    0.620266] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.627016] NFS: Registering the id_resolver key type
    [    0.632235] Key type id_resolver registered
    [    0.636513] Key type id_legacy registered
    [    0.640678] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.647534] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.655314] 9p: Installing v9fs 9p2000 file system support
    [    0.695437] Key type asymmetric registered
    [    0.699628] Asymmetric key parser 'x509' registered
    [    0.704670] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.712419] io scheduler mq-deadline registered
    [    0.717060] io scheduler kyber registered
    [    0.724284] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.730949] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.737840] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.751298] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.765252] loop: module loaded
    [    0.769726] megasas: 07.719.03.00-rc1
    [    0.777534] tun: Universal TUN/TAP device driver, 1.6
    [    0.783447] thunder_xcv, ver 1.0
    [    0.786796] thunder_bgx, ver 1.0
    [    0.790120] nicpf, ver 1.0
    [    0.793261] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
    [    0.800650] hns3: Copyright (c) 2017 Huawei Corporation.
    [    0.806145] hclge is initializing
    [    0.809559] e1000: Intel(R) PRO/1000 Network Driver
    [    0.814545] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [    0.820450] e1000e: Intel(R) PRO/1000 Network Driver
    [    0.825525] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [    0.831606] igb: Intel(R) Gigabit Ethernet Network Driver
    [    0.837125] igb: Copyright (c) 2007-2014 Intel Corporation.
    [    0.842853] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.849261] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.855460] sky2: driver version 1.30
    [    0.859900] VFIO - User Level meta-driver version: 0.3
    [    0.865935] usbcore: registered new interface driver usb-storage
    [    0.872844] i2c_dev: i2c /dev entries driver
    [    0.879451] sdhci: Secure Digital Host Controller Interface driver
    [    0.885834] sdhci: Copyright(c) Pierre Ossman
    [    0.890748] Synopsys Designware Multimedia Card Interface Driver
    [    0.897303] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.904048] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.910398] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.917342] usbcore: registered new interface driver usbhid
    [    0.923058] usbhid: USB HID core driver
    [    0.928240] optee: probing for conduit method.
    [    0.932839] optee: revision 3.20 (8e74d476)
    [    0.933179] optee: dynamic shared memory is enabled
    [    0.942720] optee: initialized driver
    [    0.948273] Initializing XFRM netlink socket
    [    0.952705] NET: Registered PF_PACKET protocol family
    [    0.958011] 9pnet: Installing 9P2000 support
    [    0.962481] Key type dns_resolver registered
    [    0.967281] registered taskstats version 1
    [    0.971509] Loading compiled-in X.509 certificates
    [    0.985910] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    [    1.046329] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.053743] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [    1.060657] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.066647] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.074997] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.084243] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.094154] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.102297] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.113396] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.123419] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.133622] printk: console [ttyS2] disabled
    [    1.138081] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250
    [    1.146980] printk: console [ttyS2] enabled
    [    1.146980] printk: console [ttyS2] enabled
    [    1.155442] printk: bootconsole [ns16550a0] disabled
    [    1.155442] printk: bootconsole [ns16550a0] disabled
    [    1.167764] spi-nor spi0.0: unrecognized JEDEC id bytes: fe 00 00 00 00 00
    [    1.175898] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.222391] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.231532] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    [    1.238168] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    1.246288] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.259211] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.265478] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.272604] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.279115] pps pps0: new PPS source ptp0
    [    1.283434] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
    [    1.293801] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.304476] Internal error: synchronous external abort: 0000000096000010 [#1] PREEMPT SMP
    [    1.312660] Modules linked in:
    [    1.315712] CPU: 1 PID: 9 Comm: kworker/u4:0 Not tainted 6.1.33 #2
    [    1.321880] Hardware name: Texas Instruments AM625 SK (DT)
    [    1.327352] Workqueue: events_unbound deferred_probe_work_func
    [    1.333189] pstate: 80000005 (Nzcv daif -PAN -UAO -TCO -DIT -SSBS BTYPE=--)
    [    1.340135] pc : rti_wdt_probe+0x10c/0x510
    [    1.344225] lr : rti_wdt_probe+0xf8/0x510
    [    1.348224] sp : ffff8000094c3b60
    [    1.351525] x29: ffff8000094c3b60 x28: 0000000000000000 x27: 0000000000000000
    [    1.358650] x26: ffff8000093a9b78 x25: ffff00000000900d x24: 000000000000001e
    [    1.365776] x23: ffff800009408380 x22: ffff0000003b0000 x21: ffff0000003b0010
    [    1.372899] x20: ffff000001377290 x19: ffff000001377280 x18: ffffffffffffffff
    [    1.380024] x17: 0003000800000000 x16: 74656e7265687465 x15: 000000000000000c
    [    1.387148] x14: 0000000000000000 x13: 0000000000000001 x12: ffff800008000000
    [    1.394273] x11: ffff8000095ef000 x10: 000000000e020000 x9 : 0140000000000000
    [    1.401396] x8 : 0040000000000001 x7 : 0000800004a33000 x6 : ffff00007fffe250
    [    1.408521] x5 : ffff8000495ed000 x4 : ffff0000003b0210 x3 : ffff000001303200
    [    1.415644] x2 : 0000000000000000 x1 : ffff000000158000 x0 : ffff8000095ed090
    [    1.422770] Call trace:
    [    1.425207]  rti_wdt_probe+0x10c/0x510
    [    1.428946]  platform_probe+0x68/0xe0
    [    1.432601]  really_probe+0xbc/0x2dc
    [    1.436171]  __driver_probe_device+0x78/0x114
    [    1.440520]  driver_probe_device+0xd8/0x15c
    [    1.444695]  __device_attach_driver+0xb8/0x134
    [    1.449127]  bus_for_each_drv+0x78/0xd0
    [    1.452956]  __device_attach+0xa8/0x1c0
    [    1.456784]  device_initial_probe+0x14/0x20
    [    1.460957]  bus_probe_device+0x9c/0xa4
    [    1.464784]  deferred_probe_work_func+0x88/0xc0
    [    1.469305]  process_one_work+0x1d0/0x320
    [    1.473307]  worker_thread+0x2c8/0x444
    [    1.477045]  kthread+0x10c/0x110
    [    1.480267]  ret_from_fork+0x10/0x20
    [    1.483839] Code: b140041f 54001828 91024000 a90363f7 (b9400000) 
    [    1.489919] ---[ end trace 0000000000000000 ]---

    Thanks,

    Andrew

  • Dear Hong,

    As configured by the patch I provided, currently, 7 RTI nodes, GPU nodes, core2, and core3 nodes are all set to disabled. However, setting CONFIG_K3_RTI_WATCHDOG to y will cause the AM6232A to hang during boot. Moreover, the same configuration on AM6254 will not disable the watchdog node, as running ls /dev/watchdog* during boot will reveal that the watchdog node is not disabled.

    Below is the result of booting AM6254 after disabling the mentioned nodes and setting CONFIG_K3_RTI_WATCHDOG=y

    U-Boot SPL 2023.04 (Mar 25 2024 - 14:02:28 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 13376 bytes
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 00:42:57, Jan 13 2023
    
    U-Boot SPL 2023.04 (Mar 25 2024 - 14:02:35 +0800)
    SYSFW ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    SPL initial stack usage: 1856 bytes
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    Error (-2): cannot determine file size
    Trying to boot from MMC2
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    Warning: Detected image signing certificate on GP device. Skipping certificate to prevent boot failure. This will fail if the image was also encrypted
    
    
    U-Boot 2023.04 (Mar 25 2024 - 14:02:35 +0800)
    
    SoC:   AM62X SR1.0 GP
    Model: Texas Instruments AM625 SK
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    DRAM:  2 GiB
    Core:  71 devices, 31 uclasses, devicetree: separate
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1
    Loading Environment from nowhere... OK
    In:    serial
    Out:   serial
    Err:   serial
    EEPROM not available at 80, trying to read at 81
    Reading on-board EEPROM at 0x51 failed -1
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  2  1  0 
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    switch to partitions #0, OK
    mmc1 is current device
    i2c_write: error waiting for data ACK (status=0x116)
    pca953x gpio@22: Error reading output register
    SD/MMC found on device 1
    Failed to load 'boot.scr'
    Failed to load 'uEnv.txt'
    ## Error: "main_cpsw0_qsgmii_phyinit" not defined
    20593152 bytes read in 865 ms (22.7 MiB/s)
    53900 bytes read in 18 ms (2.9 MiB/s)
    Working FDT set to 88000000
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
    Working FDT set to 88000000
    ERROR: reserving fdt memory region failed (addr=ff700000 size=8ca000 flags=4)
       Loading Device Tree to 000000008feef000, end 000000008fffffff ... OK
    Working FDT set to 8feef000
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 6.1.33 (root@andrew-GENE-CML5) (aarch64-none-linux-gnu-gcc (Arm GNU Toolchain 11.3.Rel1) 11.3.1 20220712, GNU ld (Arm GNU Toolchain 11.3.Rel1) 2.38.20220708) #2 SMP PREEMPT Fri Mar 22 11:12:52 CST 2024
    [    0.000000] Machine model: Texas Instruments AM625 SK
    [    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    [    0.000000] printk: bootconsole [ns16550a0] enabled
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x00000000f7600000, size 128 MiB
    [    0.000000] OF: reserved mem: initialized node linux,cma, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    [    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    [    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    [    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    [    0.000000] Zone ranges:
    [    0.000000]   DMA      [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000]   DMA32    empty
    [    0.000000]   Normal   empty
    [    0.000000] Movable zone start for each node
    [    0.000000] Early memory node ranges
    [    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    [    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    [    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    [    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    [    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000ff6fffff]
    [    0.000000]   node   0: [mem 0x00000000ff700000-0x00000000fffc9fff]
    [    0.000000]   node   0: [mem 0x00000000fffca000-0x00000000ffffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000ffffffff]
    [    0.000000] psci: probing for conduit method from DT.
    [    0.000000] psci: PSCIv1.1 detected in firmware.
    [    0.000000] psci: Using standard PSCI v0.2 function IDs
    [    0.000000] psci: Trusted OS migration not required
    [    0.000000] psci: SMC Calling Convention v1.2
    [    0.000000] percpu: Embedded 19 pages/cpu s38376 r8192 d31256 u77824
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] alternatives: applying boot alternatives
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 516096
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 mtdparts=spi-nand0:512k(ospi.tiboot3),2m(ospi.tispl),4m(ospi.u-boot),256k(ospi.env),256k(ospi.env.backup),98048k@32m(ospi.rootfs),256k@130816k(ospi.phypattern);omap2-nand.0:2m(NAND.tiboot3),2m(NAND.tispl),2m(NAND.tiboot3.backup),4m(NAND.u-boot),256k(NAND.u-boot-env),256k(NAND.u-boot-env.backup),-(NAND.file-system) root=PARTUUID=a0ea9fb9-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 1838268K/2097152K available (12480K kernel code, 1294K rwdata, 4044K rodata, 2176K init, 498K bss, 127812K reserved, 131072K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu: RCU event tracing is enabled.
    [    0.000000] rcu: RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
    [    0.000000] Trampoline variant of Tasks RCU enabled.
    [    0.000000] Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] Root IRQ handler: gic_handle_irq
    [    0.000000] GICv3: GICv3 features: 16 PPIs
    [    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    [    0.000000] ITS [mem 0x01820000-0x0182ffff]
    [    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    [    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    [    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    [    0.000000] ITS: using cache flushing for cmd queue
    [    0.000000] GICv3: using LPI property table @0x0000000080030000
    [    0.000000] GIC: using cache flushing for LPI property table
    [    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    [    0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention.
    [    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0x3ffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 58 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008540] Console: colour dummy device 80x25
    [    0.013133] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023815] pid_max: default: 32768 minimum: 301
    [    0.028586] LSM: Security Framework initializing
    [    0.033436] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.041021] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
    [    0.050779] cblist_init_generic: Setting adjustable number of callback queues.
    [    0.058238] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.064535] cblist_init_generic: Setting shift to 1 and lim to 1.
    [    0.070928] rcu: Hierarchical SRCU implementation.
    [    0.075833] rcu: Max phase no-delay instances is 1000.
    [    0.081445] Platform MSI: msi-controller@1820000 domain created
    [    0.087758] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.097597] EFI services will not be available.
    [    0.102443] smp: Bringing up secondary CPUs ...
    [    0.107733] Detected VIPT I-cache on CPU1
    [    0.107852] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.107870] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.107928] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108046] smp: Brought up 1 node, 2 CPUs
    [    0.137439] SMP: Total of 2 processors activated.
    [    0.142252] CPU features: detected: 32-bit EL0 Support
    [    0.147524] CPU features: detected: CRC32 instructions
    [    0.152839] CPU: All CPU(s) started at EL2
    [    0.157025] alternatives: applying system-wide alternatives
    [    0.164683] devtmpfs: initialized
    [    0.175686] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.185709] futex hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.197154] pinctrl core: initialized pinctrl subsystem
    [    0.203188] DMI not present or invalid.
    [    0.207793] NET: Registered PF_NETLINK/PF_ROUTE protocol family
    [    0.215025] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
    [    0.222416] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.230489] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.238673] audit: initializing netlink subsys (disabled)
    [    0.244462] audit: type=2000 audit(0.152:1): state=initialized audit_enabled=0 res=1
    [    0.245007] thermal_sys: Registered thermal governor 'step_wise'
    [    0.252401] thermal_sys: Registered thermal governor 'power_allocator'
    [    0.258723] cpuidle: using governor menu
    [    0.269610] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.276611] ASID allocator initialised with 65536 entries
    [    0.292463] platform 30200000.dss: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.303731] platform connector: Fixed dependency cycle(s) with /bus@f0000/i2c@20010000/sii9022@3b
    [    0.313162] KASLR disabled due to lack of seed
    [    0.324783] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.331755] HugeTLB: 0 KiB vmemmap can be freed for a 1.00 GiB page
    [    0.338165] HugeTLB: registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.345104] HugeTLB: 0 KiB vmemmap can be freed for a 32.0 MiB page
    [    0.351511] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.358450] HugeTLB: 0 KiB vmemmap can be freed for a 2.00 MiB page
    [    0.364857] HugeTLB: registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.371794] HugeTLB: 0 KiB vmemmap can be freed for a 64.0 KiB page
    [    0.380032] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.389127] iommu: Default domain type: Translated 
    [    0.394123] iommu: DMA domain TLB invalidation policy: strict mode 
    [    0.400813] SCSI subsystem initialized
    [    0.405043] usbcore: registered new interface driver usbfs
    [    0.410691] usbcore: registered new interface driver hub
    [    0.416145] usbcore: registered new device driver usb
    [    0.421809] pps_core: LinuxPPS API ver. 1 registered
    [    0.426889] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.436241] PTP clock support registered
    [    0.440373] EDAC MC: Ver: 3.0.0
    [    0.444537] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.451699] FPGA manager framework
    [    0.455279] Advanced Linux Sound Architecture Driver Initialized.
    [    0.462486] clocksource: Switched to clocksource arch_sys_counter
    [    0.468989] VFS: Disk quotas dquot_6.6.0
    [    0.473047] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.486035] NET: Registered PF_INET protocol family
    [    0.491339] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
    [    0.500597] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
    [    0.509407] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
    [    0.517346] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.525556] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear)
    [    0.533556] TCP: Hash tables configured (established 16384 bind 16384)
    [    0.540465] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.547393] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
    [    0.554919] NET: Registered PF_UNIX/PF_LOCAL protocol family
    [    0.561241] RPC: Registered named UNIX socket transport module.
    [    0.567334] RPC: Registered udp transport module.
    [    0.572145] RPC: Registered tcp transport module.
    [    0.576953] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.583565] NET: Registered PF_XDP protocol family
    [    0.588479] PCI: CLS 0 bytes, default 64
    [    0.593309] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.603315] Initialise system trusted keyrings
    [    0.608183] workingset: timestamp_bits=46 max_order=19 bucket_order=0
    [    0.620445] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.627205] NFS: Registering the id_resolver key type
    [    0.632426] Key type id_resolver registered
    [    0.636704] Key type id_legacy registered
    [    0.640867] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.647723] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.655506] 9p: Installing v9fs 9p2000 file system support
    [    0.696031] Key type asymmetric registered
    [    0.700222] Asymmetric key parser 'x509' registered
    [    0.705265] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.713017] io scheduler mq-deadline registered
    [    0.717657] io scheduler kyber registered
    [    0.724877] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.731503] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.738397] pinctrl-single a40000.pinctrl: 512 pins, size 2048
    [    0.751848] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
    [    0.765822] loop: module loaded
    [    0.770305] megasas: 07.719.03.00-rc1
    [    0.778091] tun: Universal TUN/TAP device driver, 1.6
    [    0.784001] thunder_xcv, ver 1.0
    [    0.787349] thunder_bgx, ver 1.0
    [    0.790681] nicpf, ver 1.0
    [    0.793817] hns3: Hisilicon Ethernet Network Driver for Hip08 Family - version
    [    0.801205] hns3: Copyright (c) 2017 Huawei Corporation.
    [    0.806703] hclge is initializing
    [    0.810106] e1000: Intel(R) PRO/1000 Network Driver
    [    0.815093] e1000: Copyright (c) 1999-2006 Intel Corporation.
    [    0.820998] e1000e: Intel(R) PRO/1000 Network Driver
    [    0.826073] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [    0.832153] igb: Intel(R) Gigabit Ethernet Network Driver
    [    0.837672] igb: Copyright (c) 2007-2014 Intel Corporation.
    [    0.843398] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.849806] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.855999] sky2: driver version 1.30
    [    0.860440] VFIO - User Level meta-driver version: 0.3
    [    0.866517] usbcore: registered new interface driver usb-storage
    [    0.873408] i2c_dev: i2c /dev entries driver
    [    0.879998] sdhci: Secure Digital Host Controller Interface driver
    [    0.886388] sdhci: Copyright(c) Pierre Ossman
    [    0.891295] Synopsys Designware Multimedia Card Interface Driver
    [    0.897843] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.904584] ledtrig-cpu: registered to indicate activity on CPUs
    [    0.910922] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.917877] usbcore: registered new interface driver usbhid
    [    0.923595] usbhid: USB HID core driver
    [    0.928775] optee: probing for conduit method.
    [    0.933375] optee: revision 3.20 (8e74d476)
    [    0.933711] optee: dynamic shared memory is enabled
    [    0.943250] optee: initialized driver
    [    0.948782] Initializing XFRM netlink socket
    [    0.953214] NET: Registered PF_PACKET protocol family
    [    0.958534] 9pnet: Installing 9P2000 support
    [    0.962975] Key type dns_resolver registered
    [    0.967778] registered taskstats version 1
    [    0.972007] Loading compiled-in X.509 certificates
    [    0.986410] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0009 '9.0.5--v09.00.05 (Kool Koala)')
    [    1.046927] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    1.054309] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [    1.061226] omap_i2c 20020000.i2c: bus 2 rev0.12 at 400 kHz
    [    1.067214] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    [    1.075568] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    [    1.084814] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    [    1.094774] ti-udma 485c0100.dma-controller: Number of rings: 82
    [    1.102936] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    [    1.113992] ti-udma 485c0000.dma-controller: Number of rings: 150
    [    1.124001] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    [    1.134204] printk: console [ttyS2] disabled
    [    1.138666] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 239, base_baud = 3000000) is a 8250
    [    1.147565] printk: console [ttyS2] enabled
    [    1.147565] printk: console [ttyS2] enabled
    [    1.156022] printk: bootconsole [ns16550a0] disabled
    [    1.156022] printk: bootconsole [ns16550a0] disabled
    [    1.168369] spi-nor spi0.0: unrecognized JEDEC id bytes: fe 00 00 00 00 00
    [    1.176493] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.222511] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.232250] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver TI DP83867
    [    1.240368] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver TI DP83867
    [    1.248492] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.261431] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.267700] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.274825] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.281332] pps pps0: new PPS source ptp0
    [    1.285665] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:1
    [    1.296047] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.311219] mmc0: CQHCI version 5.10
    [    1.315403] mmc1: CQHCI version 5.10
    [    1.323982] pca953x 1-0022: supply vcc not found, using dummy regulator
    [    1.330772] pca953x 1-0022: using AI
    [    1.353169] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.354626] pca953x 1-0022: failed writing register
    [    1.360691] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    1.365761] pca953x: probe of 1-0022 failed with error -121
    [    1.380114] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.400998] ALSA device list:
    [    1.404059]   No soundcards found.
    [    1.408194] Waiting for root device PARTUUID=a0ea9fb9-02...
    [    1.436166] mmc1: new ultra high speed SDR104 SDHC card at address 59b4
    [    1.443845] mmcblk1: mmc1:59b4 SMTC  29.1 GiB 
    [    1.450793]  mmcblk1: p1 p2
    [    1.520448] EXT4-fs (mmcblk1p2): recovery complete
    [    1.526296] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Quota mode: none.
    [    1.534940] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    1.544106] devtmpfs: mounted
    [    1.548537] Freeing unused kernel memory: 2176K
    [    1.553215] Run /sbin/init as init process
    [    1.681367] mmc0: Command Queue Engine enabled
    [    1.685965] mmc0: new HS200 MMC card at address 0001
    [    1.692172] mmcblk0: mmc0:0001 DG4032 29.1 GiB 
    [    1.698633]  mmcblk0: p1 p2
    [    1.708943] mmcblk0boot0: mmc0:0001 DG4032 4.00 MiB 
    [    1.715504] mmcblk0boot1: mmc0:0001 DG4032 4.00 MiB 
    [    1.721805] mmcblk0rpmb: mmc0:0001 DG4032 4.00 MiB, chardev (240:0)
    [    1.794545] systemd[1]: System time before build time, advancing clock.
    [    1.849564] NET: Registered PF_INET6 protocol family
    [    1.856455] Segment Routing with IPv6
    [    1.860226] In-situ OAM (IOAM) with IPv6
    [    1.912992] systemd[1]: systemd 252.6-1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
    [    1.945213] systemd[1]: Detected architecture arm64.
    
    Welcome to Debian GNU/Linux 12 (bookworm)!
    
    [    1.969014] systemd[1]: Hostname set to <am62xx>.
    [    2.665591] systemd[1]: Queued start job for default target graphical.target.
    [    2.698851] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
    [  OK  ] Created slice system-getty.slice - Slice /system/getty.
    [    2.724483] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
    [  OK  ] Created slice system-modprlice - Slice /system/modprobe.
    [    2.748572] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
    [  OK  ] Created slice system-seria - Slice /system/serial-getty.
    [    2.776150] systemd[1]: Created slice user.slice - User and Session Slice.
    [  OK  ] Created slice user.slice - User and Session Slice.
    [    2.799299] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started systemd-ask-passwoquests to Console Directory Watch.
    [    2.827183] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started systemd-ask-passwo Requests to Wall Directory Watch.
    [    2.854953] systemd[1]: proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point was skipped because of an unmet condition check (ConditionPathExists=/proc/sys/fs/binfmt_misc).
    [    2.874533] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
    [  OK  ] Reached target cryptsetup.get - Local Encrypted Volumes.
    [    2.898818] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
    [  OK  ] Reached target integrityseLocal Integrity Protected Volumes.
    [    2.922950] systemd[1]: Reached target paths.target - Path Units.
    [  OK  ] Reached target paths.target - Path Units.
    [    2.946810] systemd[1]: Reached target remote-fs.target - Remote File Systems.
    [  OK  ] Reached target remote-fs.target - Remote File Systems.
    [    2.970960] systemd[1]: Reached target slices.target - Slice Units.
    [  OK  ] Reached target slices.target - Slice Units.
    [    2.995141] systemd[1]: Reached target swap.target - Swaps.
    [  OK  ] Reached target swap.target - Swaps.
    [    3.018939] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
    [  OK  ] Reached target veritysetup - Local Verity Protected Volumes.
    [    3.044454] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
    [  OK  ] Listening on systemd-initc initctl Compatibility Named Pipe.
    [    3.072831] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
    [  OK  ] Listening on systemd-journsocket - Journal Audit Socket.
    [    3.100710] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
    [  OK  ] Listening on systemd-journt - Journal Socket (/dev/log).
    [    3.128681] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
    [  OK  ] Listening on systemd-journald.socket - Journal Socket.
    [    3.153946] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
    [  OK  ] Listening on systemd-udevd.socket - udev Control Socket.
    [    3.180589] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
    [  OK  ] Listening on systemd-udevdl.socket - udev Kernel Socket.
    [    3.231055] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
             Mounting dev-hugepages.mount - Huge Pages File System...
    [    3.269896] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
             Mounting dev-mqueue.mountPOSIX Message Queue File System...
    [    3.319002] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
             Mounting sys-kernel-debug. - Kernel Debug File System...
    [    3.343660] systemd[1]: sys-kernel-tracing.mount - Kernel Trace File System was skipped because of an unmet condition check (ConditionPathExists=/sys/kernel/tracing).
    [    3.367251] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
             Starting kmod-static-nodesate List of Static Device Nodes...
    [    3.423476] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
             Starting modprobe@configfsm - Load Kernel Module configfs...
    [    3.454967] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
             Starting modprobe@dm_mod.s[0m - Load Kernel Module dm_mod...
    [    3.478425] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
    [    3.496135] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
             Starting modprobe@drm.service - Load Kernel Module drm...
    [    3.526838] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
             Starting modprobe@efi_psto- Load Kernel Module efi_pstore...
    [    3.564687] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
             Starting modprobe@fuse.sere - Load Kernel Module fuse...
    [    3.585043] fuse: init (API version 7.37)
    [    3.619461] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
             Starting modprobe@loop.sere - Load Kernel Module loop...
    [    3.655339] systemd[1]: Starting systemd-journald.service - Journal Service...
             Starting systemd-journald.service - Journal Service...
    [    3.686952] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
             Starting systemd-modules-lrvice - Load Kernel Modules...
    [    3.739437] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
             Starting systemd-remount-fnt Root and Kernel File Systems...
    [    3.771940] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
             Starting systemd-udev-trig[0m - Coldplug All udev Devices...
    [    3.814134] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
    [  OK  ] Mounted dev-hugepages.mount - Huge Pages File System.
    [    3.847479] systemd[1]: Started systemd-journald.service - Journal Service.
    [  OK  ] Started systemd-journald.service - Journal Service.
    [  OK  ] Mounted dev-mqueue.mount- POSIX Message Queue File System.
    [  OK  ] Mounted sys-kernel-debug.mnt - Kernel Debug File System.
    [  OK  ] Finished kmod-static-nodesreate List of Static Device Nodes.
    [  OK  ] Finished modprobe@configfs[0m - Load Kernel Module configfs.
    [  OK  ] Finished modprobe@dm_mod.se - Load Kernel Module dm_mod.
    [  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.
    [  OK  ] Finished modprobe@efi_pstom - Load Kernel Module efi_pstore.
    [  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.
    [  OK  ] Finished modprobe@loop.service - Load Kernel Module loop.
    [  OK  ] Finished systemd-modules-lservice - Load Kernel Modules.
    [  OK  ] Finished systemd-remount-fount Root and Kernel File Systems.
             Mounting sys-fs-fuse-conne - FUSE Control File System...
             Mounting sys-kernel-configernel Configuration File System...
             Starting systemd-journal-fh Journal to Persistent Storage...
             Starting systemd-random-seice - Load/Save Random Seed...
             Starting systemd-sysctl.sece - Apply Kernel Variables...
    [    4.239488] systemd-journald[151]: Received client request to flush runtime journal.
             Starting systemd-sysusers.rvice - Create System Users...
    [    4.268598] systemd-journald[151]: File /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal corrupted or uncleanly shut down, renaming and replacing.
    [  OK  ] Finished systemd-udev-trige - Coldplug All udev Devices.
    [  OK  ] Mounted sys-fs-fuse-connecnt - FUSE Control File System.
    [  OK  ] Mounted sys-kernel-config. Kernel Configuration File System.
    [  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.
             Starting ifupdown-pre.servynchronize boot up for ifupdown...
    [  OK  ] Finished systemd-sysusers.service - Create System Users.
    [  OK  ] Finished ifupdown-pre.serv synchronize boot up for ifupdown.
             Starting systemd-tmpfiles-ate Static Device Nodes in /dev...
    [  OK  ] Finished systemd-journal-fush Journal to Persistent Storage.
    [  OK  ] Finished systemd-tmpfiles-reate Static Device Nodes in /dev.
    [  OK  ] Reached target local-fs-prreparation for Local File Systems.
    [  OK  ] Reached target local-fs.target - Local File Systems.
             Starting networking.service - Raise network interfaces...
             Starting systemd-binfmt.seet Up Additional Binary Formats...
             Starting systemd-tmpfiles- Volatile Files and Directories...
             Starting systemd-udevd.serger for Device Events and Files...
    [FAILED] Failed to start systemd-bi Set Up Additional Binary Formats.
    See 'systemctl status systemd-binfmt.service' for details.
    [  OK  ] Finished systemd-tmpfiles-te Volatile Files and Directories.
             Starting systemd-timesyncd - Network Time Synchronization...
             Starting systemd-update-utrd System Boot/Shutdown in UTMP...
    [  OK  ] Finished networking.service - Raise network interfaces.
    [  OK  ] Started systemd-udevd.servnager for Device Events and Files.
    [  OK  ] Finished systemd-update-utcord System Boot/Shutdown in UTMP.
    [    5.242562] random: crng init done
    [  OK  ] Finished systemd-random-service - Load/Save Random Seed.
    [  OK  ] Found device dev-ttyS2.device - /dev/ttyS2.
    [    5.400188] systemd-journald[151]: Oldest entry in /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal is older than the configured file retention duration (1month), suggesting rotation.
    [  OK  ] Started systemd-timesyncd.0m - Network Time Synchronization.
    [    5.433967] systemd-journald[151]: /var/log/journal/32b9038acc144206958cb8f97bb82d1f/system.journal: Journal header limits reached or header out-of-date, rotating.
    [  OK  ] Reached target sysinit.target - System Initialization.
    [  OK  ] Started systemd-tmpfiles-c Cleanup of Temporary Directories.
    [  OK  ] Reached target time-set.target - System Time Set.
    [  OK  ] Started apt-daily.timer - Daily apt download activities.
    [  OK  ] Started apt-daily-upgrade. apt upgrade and clean activities.
    [  OK  ] Started dpkg-db-backup.tim Daily dpkg database backup timer.
    [  OK  ] Started e2scrub_all.timeretadata Check for All Filesystems.
    [  OK  ] Started fstrim.timer - Discard unused blocks once a week.
    [  OK  ] Started logrotate.timer - Daily rotation of log files.
    [  OK  ] Started man-db.timer - Daily man-db regeneration.
    [  OK  ] Reached target timers.target - Timer Units.
    [  OK  ] Listening on dbus.socket- D-Bus System Message Bus Socket.
    [  OK  ] Listening on weston.socket - Weston socket.
    [  OK  ] Reached target sockets.target - Socket Units.
    [  OK  ] Reached target basic.target - Basic System.
    [  OK  ] Started cron.service -kground program processing daemon.
             Starting dbus.service - D-Bus System Message Bus...
             Starting e2scrub_reap.serve ext4 Metadata Check Snapshots...
             Starting systemd-logind.seice - User Login Management...
    [  OK  ] Started dbus.service - D-Bus System Message Bus.
    [    6.240206] tlv320aic3x 1-001b: supply IOVDD not found, using dummy regulator
    [    6.339938] mc: Linux media interface: v0.10
    [    6.371264] tlv320aic3x 1-001b: supply DVDD not found, using dummy regulator
    [    6.378914] tlv320aic3x 1-001b: supply AVDD not found, using dummy regulator
    [    6.386888] tlv320aic3x 1-001b: supply DRVDD not found, using dummy regulator
    [    6.400635] tlv320aic3x 1-001b: Invalid supply voltage(s) AVDD: -22, DVDD: -22
    [    6.418298] videodev: Linux video capture interface: v2.00
    [    6.436216] platform 31000000.usb: Fixed dependency cycle(s) with /bus@f0000/i2c@20000000/tps6598x@3f/connector
    [    6.483637] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    6.494378] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [    6.502457] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [    6.520539] remoteproc remoteproc0: 5000000.m4fss is available
    [    6.528773] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    6.538062] remoteproc remoteproc0: powering up 5000000.m4fss
    [    6.544409] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    6.553769] remoteproc remoteproc0: request_firmware failed: -2
    [    6.700791] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    6.713338] platform 78000000.r5f: configured R5F for IPC-only mode
    [    6.720016] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    6.729898] remoteproc remoteproc1: 78000000.r5f is available
    [    6.735914] remoteproc remoteproc1: attaching to 78000000.r5f
    [    6.742705] rtc-ti-k3 2b1f0000.rtc: registered as rtc0
    [    6.742755] rtc-ti-k3 2b1f0000.rtc: setting system clock to 1970-01-01T00:00:12 UTC (12)
    [    6.751737] systemd-journald[151]: Time jumped backwards, rotating.
    [  OK  ] Finished e2scrub_reap.servine ext4 Metadata Check Snapshots.
             Starting NetworkManager.service - Network Manager...
    [    6.838737] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    6.845848] rproc-virtio rproc-virtio.0.auto: assigned reserved memory node r5f-dma-memory@9da00000
    [    6.855413] rproc-virtio rproc-virtio.0.auto: registered virtio0 (type 7)
    [    6.865020] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [  OK  ] Reached target sound.target - S[    7.862380] remoteproc remoteproc2: 30074000.pru is available
    ound Card.
    [    7.893551] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    7.927430] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    7.928253] remoteproc remoteproc3: 30078000.pru is available
    [    7.935489] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    7.963518] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    [  OK  ] Started systemd-logind.service - User Login Management.
    [  OK  ] Reached target usb-gadget.m - Hardware activated USB gadget.
    [    8.088495] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    8.099767] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [    8.110571] xhci-hcd xhci-hcd.2.auto: USB3 root hub has no ports
    [    8.116727] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    8.128170] xhci-hcd xhci-hcd.2.auto: irq 455, io mem 0x31100000
    [    8.136014] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: new channel: 0x401 -> 0xd!
    [    8.136503] hub 1-0:1.0: USB hub found
    [    8.151059] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 1 (src: 0xd)
    [    8.154908] hub 1-0:1.0: 1 port detected
    [    8.161396] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 2 (src: 0xd)
    [    8.171945] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 3 (src: 0xd)
    [    8.180490] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 4 (src: 0xd)
    [    8.188862] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 5 (src: 0xd)
    [    8.198379] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 6 (src: 0xd)
    [    8.206829] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 7 (src: 0xd)
    [    8.215337] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 8 (src: 0xd)
    [    8.224833] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 9 (src: 0xd)
    [    8.234384] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 10 (src: 0xd)
    [    8.242844] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 11 (src: 0xd)
    [    8.251301] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 12 (src: 0xd)
    [    8.260797] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 13 (src: 0xd)
    [    8.270183] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 14 (src: 0xd)
    [    8.280037] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 15 (src: 0xd)
    [    8.289846] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 16 (src: 0xd)
    [    8.299593] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 17 (src: 0xd)
    [    8.309347] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 18 (src: 0xd)
    [    8.317890] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 19 (src: 0xd)
    [    8.326378] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 20 (src: 0xd)
    [    8.334821] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 21 (src: 0xd)
    [    8.343319] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 22 (src: 0xd)
    [    8.352281] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 23 (src: 0xd)
    [    8.360801] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 24 (src: 0xd)
    [    8.370793] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 25 (src: 0xd)
    [    8.379781] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 26 (src: 0xd)
    [    8.388256] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 27 (src: 0xd)
    [    8.396780] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 28 (src: 0xd)
    [    8.405908] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 29 (src: 0xd)
    [    8.414438] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 30 (src: 0xd)
    [    8.422920] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 31 (src: 0xd)
    [    8.431443] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 32 (src: 0xd)
    [    8.434545] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [    8.441290] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 33 (src: 0xd)
    [    8.454908] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 34 (src: 0xd)
    [    8.463931] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 35 (src: 0xd)
    [    8.472476] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 36 (src: 0xd)
    [    8.480946] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 37 (src: 0xd)
    [    8.489521] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 38 (src: 0xd)
    [    8.498050] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 39 (src: 0xd)
    [    8.506585] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 40 (src: 0xd)
    [    8.515044] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 41 (src: 0xd)
    [    8.523640] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 42 (src: 0xd)
    [    8.532159] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 43 (src: 0xd)
    [    8.540683] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 44 (src: 0xd)
    [    8.550149] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 45 (src: 0xd)
    [    8.558707] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 46 (src: 0xd)
    [    8.567613] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 47 (src: 0xd)
    [    8.580617] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 48 (src: 0xd)
    [    8.589172] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 49 (src: 0xd)
    [    8.597755] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 50 (src: 0xd)
    [    8.606174] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 51 (src: 0xd)
    [  OK  ] Started NetworkManager.service [    8.614769] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 52 (src: 0xd)
    - Network Manager.
    [    8.628634] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 53 (src: 0xd)
    [    8.639647] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 54 (src: 0xd)
    [  OK  ] Reached target network.target -[    8.649775] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 55 (src: 0xd)
     Network.
    [    8.671530] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 56 (src: 0xd)
    [    8.680943] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 57 (src: 0xd)
    [    8.689604] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 58 (src: 0xd)
    [    8.700015] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 59 (src: 0xd)
    [    8.708875] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 60 (src: 0xd)
    [    8.717951] hub 1-1:1.0: USB hub found
    [    8.719538] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 61 (src: 0xd)
    [    8.731164] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 62 (src: 0xd)
    [    8.733032] hub 1-1:1.0: 4 ports detected
    [    8.740586] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 63 (src: 0xd)
             Starting ssh.service - OpenBSD Secure Shel[    8.752668] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 64 (src: 0xd)
    l server...
    [    8.766028] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 65 (src: 0xd)
    [    8.775546] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 66 (src: 0xd)
    [    8.784081] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 67 (src: 0xd)
    [    8.792766] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 68 (src: 0xd)
    [    8.801315] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 69 (src: 0xd)
    [    8.809843] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 70 (src: 0xd)
    [    8.818836] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 71 (src: 0xd)
    [    8.829685] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 72 (src: 0xd)
    [    8.838280] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 73 (src: 0xd)
    [    8.839898] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 74 (src: 0xd)
    [    8.842403] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 75 (src: 0xd)
    [    8.867967] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 76 (src: 0xd)
    [    8.877812] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 77 (src: 0xd)
    [    8.888010] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 78 (src: 0xd)
             Starting systemd-user-sessvice - Permit[    8.897846] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 79 (src: 0xd)
     User Sessions...
    [    8.912223] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 80 (src: 0xd)
    [    8.922246] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 81 (src: 0xd)
    [    8.930947] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 82 (src: 0xd)
    [    8.930993] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 83 (src: 0xd)
    [    8.931028] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 84 (src: 0xd)
    [    8.939632] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 85 (src: 0xd)
    [    8.939697] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 86 (src: 0xd)
    [    8.939736] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 87 (src: 0xd)
    [    8.939773] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 88 (src: 0xd)
    [    8.948196] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 89 (src: 0xd)
    [    8.948293] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 90 (src: 0xd)
    [    8.948336] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 91 (src: 0xd)
    [    8.956838] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 92 (src: 0xd)
    [    8.956918] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 93 (src: 0xd)
    [    8.956957] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 94 (src: 0xd)
    [    8.965427] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 95 (src: 0xd)
    [    8.965549] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 96 (src: 0xd)
    [    8.965595] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 97 (src: 0xd)
    [    8.965632] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 98 (src: 0xd)
    [    8.974074] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 99 (src: 0xd)
    [    8.974181] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: incoming msg 100 (src: 0xd)
    [    8.974190] rpmsg_client_sample virtio0.ti.ipc4.ping-pong.-1.13: goodbye!
    [  OK  ] Finished systemd-user-sesservice - Permit User Sessions.
    [  OK  ] Started getty@tty1.service - Getty on tty1.
    [  OK  ] Started serial-getty@ttyS2rvice - Serial Getty on ttyS2.
    [  OK  ] Reached target getty.target - Login Prompts.
             Starting systemd-hostnamed.service - Hostname Service...
    [  OK  ] Started weston.serviced compositor, as a system service.
    [  OK  ] Started ssh.service - OpenBSD Secure Shell server.
    [  OK  ] Created slice user-0.slice - User Slice of UID 0.
    [  OK  ] Reached target multi-user.target - Multi-User System.
    [  OK  ] Reached target graphical.target - Graphical Interface.
             Starting systemd-update-ut Record Runlevel Change in UTMP...
             Starting user-runtime-dir@r Runtime Directory /run/user/0...
    [  OK  ] Started systemd-hostnamed.service - Hostname Service.
    [  OK  ] Finished user-runtime-dir@ser Runtime Directory /run/user/0.
    [  OK  ] Listening on systemd-rfkill Switch Status /dev/rfkill Watch.
             Starting user@0.service - User Manager for UID 0...
             Starting NetworkManager-dinager Script Dispatcher Service...
    [  OK  ] Finished systemd-update-ut - Record Runlevel Change in UTMP.
    [    9.854123] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [TI DP83867] (irq=POLL)
    [    9.863704] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started NetworkManager-disManager Script Dispatcher Service.
    [    9.961873] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [TI DP83867] (irq=POLL)
    [    9.975802] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started user@0.service - User Manager for UID 0.
    [  OK  ] Started session-c1.scope - Session c1 of User root.
    
    
    Debian GNU/Linux 12 am62xx ttyS2
    
    am62xx login: root
    
    
    Linux am62xx 6.1.33 #2 SMP PREEMPT Fri Mar 22 11:12:52 CST 2024 aarch64
    
    The programs included with the Debian GNU/Linux system are free software;
    the exact distribution terms for each program are described in the
    individual files in /usr/share/doc/*/copyright.
    
    Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
    permitted by applicable law.
    Last login: Thu Jan  1 00:00:17 UTC 1970 on ttyS2
    root@am62xx:~# 
    
    root@am62xx:~# [   18.296359] i2c 1-003b: deferred probe pending
    [   18.301005] platform 30200000.dss: deferred probe pending
    
    
    root@am62xx:~# ls /dev/watchdog*
    ls /dev/watchdog*
    
    /dev/watchdog/dev/watchdog1/dev/watchdog3
    /dev/watchdog0/dev/watchdog2/dev/watchdog4
    root@am62xx:~# 
    
    root@am62xx:~# ls -al /sys/class/watchdog/
    ls -al /sys/class/watchdog/
    
    total 0
    drwxr-xr-x  2 root root 0 Feb 28  2023 .
    drwxr-xr-x 79 root root 0 Feb 28  2023 ..
    lrwxrwxrwx  1 root root 0 Feb 28  2023 watchdog0 -> ../../devices/platform/bus@f0000/e000000.watchdog/watchdog/watchdog0
    lrwxrwxrwx  1 root root 0 Feb 28  2023 watchdog1 -> ../../devices/platform/bus@f0000/e010000.watchdog/watchdog/watchdog1
    lrwxrwxrwx  1 root root 0 Feb 28  2023 watchdog2 -> ../../devices/platform/bus@f0000/e020000.watchdog/watchdog/watchdog2
    lrwxrwxrwx  1 root root 0 Feb 28  2023 watchdog3 -> ../../devices/platform/bus@f0000/e030000.watchdog/watchdog/watchdog3
    lrwxrwxrwx  1 root root 0 Feb 28  2023 watchdog4 -> ../../devices/platform/bus@f0000/e0f0000.watchdog/watchdog/watchdog4
    root@am62xx:~# 

    Thanks,

    Andrew

  • Let me loop in my colleague to follow up on RTI_WDT in kernel.
    Please expect delayed response as he is currently out of office.
    Best,
    -Hong

  • Hello Andrew,

    Apologies for the delayed responses here - I'm back in the office now.

    To clarify the document Hong pointed to earlier:  You are using an AM62x variant with 2 A53 cores, so the other A53 cores listed in the devicetree file need to be disabled, along with the RTI nodes SPECIFIC TO THE DISABLED CORES.

    https://dev.ti.com/tirex/explore/node?node=A__AZ853VXSIrRV0D6eoeZeeg__AM62-ACADEMY__uiYMDcq__LATEST

    So if you are disabling cpu@2 and cpu@3 in your devicetree file, you should disable &main_rti2 and &main_rti3 (which are associated specifically with those two RTI instances). You would NOT disable &main_rti0 or &main_rti1, since those are associated with A53 cores 0 and 1.

    Remember, RTI is just another name for a watchdog timer. So it would make sense that Linux would run into issues if you disable the RTI instance that Linux would use for the watchdog functionality, and then try to enable the watchdog software.

    Regards,

    Nick

  • Dear Nick,

    I will attempt the following setup and report back the results to you.

    board-support\ti-linux-kernel\arch\arm64\boot\dts\ti\k3-am625-sk.dts

    / {
    	cpus {
    		cpu-map {
    			cluster0 {
    				/delete-node/ core2;
    				/delete-node/ core3;
    			};
    		};
    	
    		/delete-node/ cpu@2;
    		/delete-node/ cpu@3;
    	};
    };
    	
    &wkup_rti0 {
    	states = "disabled";
    };
    
    &mcu_rti0 {
    	states = "disabled";
    };
    
    &main_rti0 {
    	states = "okay";
    };
    
    &main_rti1 {
    	states = "okay";
    };
    
    &main_rti2 {
    	states = "disabled";
    };
    
    &main_rti3 {
    	states = "disabled";
    };
    
    &main_rti15 {
    	states = "disabled";
    };
    
    &gpu {
    	status = "disabled";
    };

    board-support\ti-linux-kernel\arch\arm64\boot\dts\ti\k3-am62x-sk-common.dtsi

    / {
    	chosen {
    		stdout-path = "serial2:115200n8";
    		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 maxcpus=2";
    	};
    };

    board-support\ti-linux-kernel\arch\arm64\configs\defconfig

    +CONFIG_K3_RTI_WATCHDOG=y

    board-support\ti-u-boot\arch\arm\dts\k3-am625-sk.dts

    / {
    	chosen {
    		stdout-path = "serial2:115200n8";
    		bootargs = "console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 maxcpus=2";
    	};
    	
    	cpus {
    		cpu-map {
    			cluster0 {
    				/delete-node/ core2;
    				/delete-node/ core3;
    			};
    		};
    		
    		/delete-node/ cpu@2;
    		/delete-node/ cpu@3;
    	};
    };

    Thanks,

    Andrew

  • Hello Andrew,

    Status vs "state"

    Another thing I just noticed:

    I use status = disabled or okay for devicetree nodes. Refer to the rest of the devicetree files for examples. I am NOT sure what happens if you say "state" instead of "status" - that might lead to issues.

    Are you programming anything into the M4F core / DM R5F core?

    I think (but I am not sure) that the default software we have running on M4F and DM R5F does not rely on watchdog functionality. However, it is possible that something could go wrong if you disable &wkup_rti0 or &mcu_rti0, and there IS software running that depends on those watchdogs.

    Regards,

    Nick

  • Dear Nick,

    change states > status is work.

    Thanks,

    Andrew

  • Hello Andrew,

    I am glad to hear that you are able to make progress! If you have additional questions, feel free to create a new thread.

    Regards,

    Nick