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: mmc1(sdhci1) can not be detected

Part Number: AM625
Part Number: AM625
Hi TI community,
Thank you for all of your support. I am using AM625 on our board and I have a question regarding the mmc1(sdhci1). 
I want to mount eMMC on mmc1(sdhci1). 
 
Here is the situation I have met,
1. I'm able to successfully read from the SD card during u-boot and rootfs , but  eMMC is not able to detect.
2. When I short the SDCD pin to GND(pull low) , eMMC can be detected and read in rootfs.   
3. Then I tried to modified the setting in the device tree of kernel & uboot, I failed. The eMMC can not be detect.
The modification is as follows, 
1. add "on-removable;" 
2. add "no-1-8-v;"
A lot of SDHCI register dumps logs getting printed continuously,
root@am62xx-evm:~# [ 23.094692] mmc1: Timeout waiting for hardware cmd interrupt.
[ 23.094717] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
[ 23.094722] mmc1: sdhci: Sys addr: 0x00000000 | Version: 0x00001004
[ 23.094733] mmc1: sdhci: Blk size: 0x00000000 | Blk cnt: 0x00000000
[ 23.094737] mmc1: sdhci: Argument: 0x80000c08 | Trn mode: 0x00000000
[ 23.094741] mmc1: sdhci: Present: 0x01f20001 | Host ctl: 0x00000001
[ 23.094745] mmc1: sdhci: Power: 0x0000000e | Blk gap: 0x00000080
[ 23.094749] mmc1: sdhci: Wake-up: 0x00000000 | Clock: 0x0000fa07
[ 23.094753] mmc1: sdhci: Timeout: 0x00000000 | Int stat: 0x00000000
[ 23.094757] mmc1: sdhci: Int enab: 0x00ff0003 | Sig enab: 0x00ff0003
[ 23.094761] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
[ 23.094765] mmc1: sdhci: Caps: 0x7de8c801 | Caps_1: 0x18002407
[ 23.094769] mmc1: sdhci: Cmd: 0x0000341a | Max curr: 0x00000000
[ 23.094773] mmc1: sdhci: Resp[0]: 0x00000000 | Resp[1]: 0x00000000
[ 23.094776] mmc1: sdhci: Resp[2]: 0x00000000 | Resp[3]: 0x00000000
[ 23.094780] mmc1: sdhci: Host ctl2: 0x00000000
[ 23.094783] mmc1: sdhci: ADMA Err: 0x00000000 | ADMA Ptr: 0x0000000000000000
[ 23.094787] mmc1: sdhci: ============================================
3.After that, I tried to remove "non-removable;" and add "gpios = <&main_gpio1 48 GPIO_ACTIVE_LOW>;"  and  the pin D17  set to the mode 7 as follow:
	main_mmc1_pins_default: main-mmc1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x23c, PIN_INPUT, 0) /* (A21) MMC1_CMD */
			AM62X_IOPAD(0x234, PIN_INPUT, 0) /* (B22) MMC1_CLK */
			AM62X_IOPAD(0x230, PIN_INPUT, 0) /* (A22) MMC1_DAT0 */
			AM62X_IOPAD(0x22c, PIN_INPUT, 0) /* (B21) MMC1_DAT1 */
			AM62X_IOPAD(0x228, PIN_INPUT, 0) /* (C21) MMC1_DAT2 */
			AM62X_IOPAD(0x224, PIN_INPUT, 0) /* (D22) MMC1_DAT3 */
			AM62X_IOPAD(0x240, PIN_INPUT, 7) /* (D17) MMC1_SDCD */
		>;
	};
But now SD card is not able to get in uboot as follow,
U-Boot SPL 2021.01-ge7c2703b4a (Sep 12 2023 - 09:48:45 +0000)
SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
Trying to boot from MMC2
spl: mmc init failed with error: -70
SPL: failed to boot from all boot devices
### ERROR ### Please RESET the board ###
I feel confused . Why is it not detecting the eMMC but SD card  can do that?
It seems to be related to SDCD pin detect problem. 
How can I detect eMMC during uboot and  rootfs with correct setting? 
Here's the relevant dts file.
uboot
// SPDX-License-Identifier: GPL-2.0
/*
 * Common dtsi for AM62x SK and derivatives
 *
 * Copyright (C) 2021-2022 Texas Instruments Incorporated - https://www.ti.com/
 */

/dts-v1/;

#include <dt-bindings/leds/common.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/net/ti-dp83867.h>
#include "k3-am625.dtsi"

/ {
	aliases {
		serial2 = &main_uart0;
		mmc0 = &sdhci0;
		mmc1 = &sdhci1;
		mmc2 = &sdhci2;
		usb0 = &usb0;
		usb1 = &usb1;
		spi0 = &ospi0;
		remoteproc0 = &mcu_m4fss;
	};

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

	memory@80000000 {
		device_type = "memory";
		/* 1G RAM */
		reg = <0x00000000 0x80000000 0x00000000 0x40000000>;

	};

	reserved-memory {
		#address-cells = <2>;
		#size-cells = <2>;
		ranges;

		mcu_m4fss_dma_memory_region: m4f-dma-memory@9cb00000 {
			compatible = "shared-dma-pool";
			reg = <0x00 0x9cb00000 0x00 0x100000>;
			no-map;
		};

		mcu_m4fss_memory_region: m4f-memory@9cc00000 {
			compatible = "shared-dma-pool";
			reg = <0x00 0x9cc00000 0x00 0xe00000>;
			no-map;
		};

		secure_tfa_ddr: tfa@9e780000 {
			reg = <0x00 0x9e780000 0x00 0x80000>;
			alignment = <0x1000>;
			no-map;
		};

		secure_ddr: optee@9e800000 {
			reg = <0x00 0x9e800000 0x00 0x01800000>; /* for OP-TEE */
			alignment = <0x1000>;
			no-map;
		};

		wkup_r5fss0_core0_dma_memory_region: r5f-dma-memory@9db00000 {
			compatible = "shared-dma-pool";
			reg = <0x00 0x9db00000 0x00 0xc00000>;
			no-map;
		};
	};

	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: fixed-regulator-sd {
		/* 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: gpio-regulator-TLV71033 {
		/* 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>;
	};

	leds {
		compatible = "gpio-leds";
		pinctrl-names = "default";
		pinctrl-0 = <&usr_led_pins_default>;

		led-0 {
			label = "am62-sk:green:heartbeat";
			gpios = <&main_gpio1 49 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
			function = LED_FUNCTION_HEARTBEAT;
			default-state = "off";
		};
	};

	extcon_usb0: extcon-usb0 {
		compatible = "linux,extcon-usb-gpio";
		id-gpios = <&main_gpio1 50 GPIO_ACTIVE_HIGH>;
		pinctrl-names = "default";
		pinctrl-0 = <&extcon_usb0_gpio_id_pins_default>;
	};
};

&main_pmx0 {
	main_uart0_pins_default: main-uart0-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x1c8, PIN_INPUT, 0) /* (D14) UART0_RXD */
			AM62X_IOPAD(0x1cc, PIN_OUTPUT, 0) /* (E14) UART0_TXD */
		>;
	};

	main_i2c0_pins_default: main-i2c0-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x1e0, PIN_INPUT_PULLUP, 0) /* (B16) I2C0_SCL */
			AM62X_IOPAD(0x1e4, PIN_INPUT_PULLUP, 0) /* (A16) I2C0_SDA */
		>;
	};

	main_i2c1_pins_default: main-i2c1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x1e8, PIN_INPUT_PULLUP, 0) /* (B17) I2C1_SCL */
			AM62X_IOPAD(0x1ec, PIN_INPUT_PULLUP, 0) /* (A17) I2C1_SDA */
		>;
	};

	main_i2c2_pins_default: main-i2c2-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x0b0, PIN_INPUT_PULLUP, 1) /* (K22) GPMC0_CSn2.I2C2_SCL */
			AM62X_IOPAD(0x0b4, PIN_INPUT_PULLUP, 1) /* (K24) GPMC0_CSn3.I2C2_SDA */
		>;
	};

	main_mmc0_pins_default: main-mmc0-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x220, PIN_INPUT, 0) /* (Y3) MMC0_CMD */
			AM62X_IOPAD(0x218, PIN_INPUT, 0) /* (AB1) MMC0_CLK */
			AM62X_IOPAD(0x214, PIN_INPUT, 0) /* (AA2) MMC0_DAT0 */
			AM62X_IOPAD(0x210, PIN_INPUT, 0) /* (AA1) MMC0_DAT1 */
			AM62X_IOPAD(0x20c, PIN_INPUT, 0) /* (AA3) MMC0_DAT2 */
			AM62X_IOPAD(0x208, PIN_INPUT, 0) /* (Y4) MMC0_DAT3 */
			AM62X_IOPAD(0x204, PIN_INPUT, 0) /* (AB2) MMC0_DAT4 */
			AM62X_IOPAD(0x200, PIN_INPUT, 0) /* (AC1) MMC0_DAT5 */
			AM62X_IOPAD(0x1fc, PIN_INPUT, 0) /* (AD2) MMC0_DAT6 */
			AM62X_IOPAD(0x1f8, PIN_INPUT, 0) /* (AC2) MMC0_DAT7 */
		>;
	};

	main_mmc1_pins_default: main-mmc1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x23c, PIN_INPUT, 0) /* (A21) MMC1_CMD */
			AM62X_IOPAD(0x234, PIN_INPUT, 0) /* (B22) MMC1_CLK */
			AM62X_IOPAD(0x230, PIN_INPUT, 0) /* (A22) MMC1_DAT0 */
			AM62X_IOPAD(0x22c, PIN_INPUT, 0) /* (B21) MMC1_DAT1 */
			AM62X_IOPAD(0x228, PIN_INPUT, 0) /* (C21) MMC1_DAT2 */
			AM62X_IOPAD(0x224, PIN_INPUT, 0) /* (D22) MMC1_DAT3 */
			AM62X_IOPAD(0x240, PIN_INPUT, 0) /* (D17) MMC1_SDCD */
		>;
	};

	usr_led_pins_default: usr-led-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x244, PIN_OUTPUT, 7) /* (C17) MMC1_SDWP.GPIO1_49 */
		>;
	};

	main_mdio1_pins_default: main-mdio1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x160, PIN_OUTPUT, 0) /* (AD24) MDIO0_MDC */
			AM62X_IOPAD(0x15c, PIN_INPUT, 0) /* (AB22) MDIO0_MDIO */
		>;
	};

	main_rgmii1_pins_default: main-rgmii1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x14c, PIN_INPUT, 0) /* (AB17) RGMII1_RD0 */
			AM62X_IOPAD(0x150, PIN_INPUT, 0) /* (AC17) RGMII1_RD1 */
			AM62X_IOPAD(0x154, PIN_INPUT, 0) /* (AB16) RGMII1_RD2 */
			AM62X_IOPAD(0x158, PIN_INPUT, 0) /* (AA15) RGMII1_RD3 */
			AM62X_IOPAD(0x148, PIN_INPUT, 0) /* (AD17) RGMII1_RXC */
			AM62X_IOPAD(0x144, PIN_INPUT, 0) /* (AE17) RGMII1_RX_CTL */
			AM62X_IOPAD(0x134, PIN_OUTPUT, 0) /* (AE20) RGMII1_TD0 */
			AM62X_IOPAD(0x138, PIN_OUTPUT, 0) /* (AD20) RGMII1_TD1 */
			AM62X_IOPAD(0x13c, PIN_OUTPUT, 0) /* (AE18) RGMII1_TD2 */
			AM62X_IOPAD(0x140, PIN_OUTPUT, 0) /* (AD18) RGMII1_TD3 */
			AM62X_IOPAD(0x130, PIN_OUTPUT, 0) /* (AE19) RGMII1_TXC */
			AM62X_IOPAD(0x12c, PIN_OUTPUT, 0) /* (AD19) RGMII1_TX_CTL */
		>;
	};

	main_rgmii2_pins_default: main-rgmii2-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x184, PIN_INPUT, 0) /* (AE23) RGMII2_RD0 */
			AM62X_IOPAD(0x188, PIN_INPUT, 0) /* (AB20) RGMII2_RD1 */
			AM62X_IOPAD(0x18c, PIN_INPUT, 0) /* (AC21) RGMII2_RD2 */
			AM62X_IOPAD(0x190, PIN_INPUT, 0) /* (AE22) RGMII2_RD3 */
			AM62X_IOPAD(0x180, PIN_INPUT, 0) /* (AD23) RGMII2_RXC */
			AM62X_IOPAD(0x17c, PIN_INPUT, 0) /* (AD22) RGMII2_RX_CTL */
			AM62X_IOPAD(0x16c, PIN_OUTPUT, 0) /* (Y18) RGMII2_TD0 */
			AM62X_IOPAD(0x170, PIN_OUTPUT, 0) /* (AA18) RGMII2_TD1 */
			AM62X_IOPAD(0x174, PIN_OUTPUT, 0) /* (AD21) RGMII2_TD2 */
			AM62X_IOPAD(0x178, PIN_OUTPUT, 0) /* (AC20) RGMII2_TD3 */
			AM62X_IOPAD(0x168, PIN_OUTPUT, 0) /* (AE21) RGMII2_TXC */
			AM62X_IOPAD(0x164, PIN_OUTPUT, 0) /* (AA19) RGMII2_TX_CTL */
		>;
	};

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

	extcon_usb0_gpio_id_pins_default: extcon-usb0-gpio-id-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x254, PIN_INPUT_PULLUP, 7) /* (C20) USB0_DRVVBUS.GPIO1_50 */
		>;
	};

	main_usb1_pins_default: main-usb1-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x0258, PIN_OUTPUT, 0) /* (F18) USB1_DRVVBUS */
		>;
	};

	ospi0_pins_default: ospi0-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x000, PIN_OUTPUT, 0) /* (H24) OSPI0_CLK */
			AM62X_IOPAD(0x02c, PIN_OUTPUT, 0) /* (F23) OSPI0_CSn0 */
			AM62X_IOPAD(0x00c, PIN_INPUT, 0) /* (E25) OSPI0_D0 */
			AM62X_IOPAD(0x010, PIN_INPUT, 0) /* (G24) OSPI0_D1 */
			AM62X_IOPAD(0x014, PIN_INPUT, 0) /* (F25) OSPI0_D2 */
			AM62X_IOPAD(0x018, PIN_INPUT, 0) /* (F24) OSPI0_D3 */
			AM62X_IOPAD(0x01c, PIN_INPUT, 0) /* (J23) OSPI0_D4 */
			AM62X_IOPAD(0x020, PIN_INPUT, 0) /* (J25) OSPI0_D5 */
			AM62X_IOPAD(0x024, PIN_INPUT, 0) /* (H25) OSPI0_D6 */
			AM62X_IOPAD(0x028, PIN_INPUT, 0) /* (J22) OSPI0_D7 */
			AM62X_IOPAD(0x008, PIN_INPUT, 0) /* (J24) OSPI0_DQS */
		>;
	};
};

&wkup_uart0 {
	/* WKUP UART0 is used by DM firmware */
	status = "reserved";
};

&mcu_uart0 {
	status = "disabled";
};

&main_uart0 {
	pinctrl-names = "default";
	pinctrl-0 = <&main_uart0_pins_default>;
};

&main_uart1 {
	/* Main UART1 is used by TIFS firmware */
	status = "reserved";
};

&main_uart2 {
	status = "disabled";
};

&main_uart3 {
	status = "disabled";
};

&main_uart4 {
	status = "disabled";
};

&main_uart5 {
	status = "disabled";
};

&main_uart6 {
	status = "disabled";
};

&mcu_i2c0 {
	status = "disabled";
};

&wkup_i2c0 {
	status = "disabled";
};

&main_i2c0 {
	pinctrl-names = "default";
	pinctrl-0 = <&main_i2c0_pins_default>;
	clock-frequency = <400000>;
};

&main_i2c1 {
	pinctrl-names = "default";
	pinctrl-0 = <&main_i2c1_pins_default>;
	clock-frequency = <400000>;

	exp1: gpio@22 {
		compatible = "ti,tca6424";
		reg = <0x22>;
		gpio-controller;
		#gpio-cells = <2>;
		gpio-line-names = "GPIO_CPSW2_RST", "GPIO_CPSW1_RST",
				   "PRU_DETECT", "MMC1_SD_EN",
				   "VPP_LDO_EN", "EXP_PS_3V3_En",
				   "EXP_PS_5V0_En", "EXP_HAT_DETECT",
				   "GPIO_AUD_RSTn", "GPIO_eMMC_RSTn",
				   "UART1_FET_BUF_EN", "WL_LT_EN",
				   "GPIO_HDMI_RSTn", "CSI_GPIO1",
				   "CSI_GPIO2", "PRU_3V3_EN",
				   "HDMI_INTn", "TEST_GPIO2",
				   "MCASP1_FET_EN", "MCASP1_BUF_BT_EN",
				   "MCASP1_FET_SEL", "UART1_FET_SEL",
				   "TSINT#", "IO_EXP_TEST_LED";
	};
};

&main_i2c2 {
	status = "disabled";
};

&main_i2c3 {
	status = "disabled";
};

&sdhci0 {
	pinctrl-names = "default";
	pinctrl-0 = <&main_mmc0_pins_default>;
	ti,driver-strength-ohm = <50>;
	disable-wp;
};

&sdhci1 {
	/* SD/MMC */
	vmmc-supply = <&vdd_mmc1>;
	vqmmc-supply = <&vdd_mmc1>;
	pinctrl-names = "default";
	pinctrl-0 = <&main_mmc1_pins_default>;
	ti,driver-strength-ohm = <50>;
	disable-wp;
	non-removable;
	sdhci-caps-mask = <0x00000007 0x00000000>; // HS
        no-1-8-v;
};

&usbss0 {
	ti,vbus-divider;
};

&usb0 {
	extcon = <&extcon_usb0>;
};

&usb1 {
	dr_mode = "host";
	pinctrl-names = "default";
	pinctrl-0 = <&main_usb1_pins_default>;
};

&cpsw3g {
	pinctrl-names = "default";
	pinctrl-0 = <&main_mdio1_pins_default
		     &main_rgmii1_pins_default
		     &main_rgmii2_pins_default>;
};

&cpsw_port1 {
	phy-mode = "rgmii-rxid";
	phy-handle = <&cpsw3g_phy0>;
};

&cpsw3g_mdio {
	cpsw3g_phy0: ethernet-phy@0 {
		reg = <0>;
		ti,rx-internal-delay = <DP83867_RGMIIDCTL_2_00_NS>;
		ti,fifo-depth = <DP83867_PHYCR_FIFO_DEPTH_4_B_NIB>;
		ti,min-output-impedance;
	};
};

&mailbox0_cluster0 {
	mbox_m4_0: mbox-m4-0 {
		ti,mbox-rx = <0 0 0>;
		ti,mbox-tx = <1 0 0>;
	};
};

&ospi0 {
	pinctrl-names = "default";
	pinctrl-0 = <&ospi0_pins_default>;
};
kernel:
// SPDX-License-Identifier: GPL-2.0
/*
 * AM625 SK: https://www.ti.com/lit/zip/sprr448
 *
 * Copyright (C) 2021-2022 Texas Instruments Incorporated - https://www.ti.com/
 */

/dts-v1/;

#include <dt-bindings/leds/common.h>
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/net/ti-dp83867.h>
#include "k3-am625.dtsi"
#include "k3-am62x-sk-common.dtsi"

/ {
	compatible =  "ti,am625-sk", "ti,am625";
	model = "Texas Instruments AM625 SK";

	wlan_lten: regulator-5 {
		compatible = "regulator-fixed";
		regulator-name = "wlan_lten";
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-always-on;
		vin-supply = <&vcc_3v3_sys>;
		gpios = <&exp1 11 GPIO_ACTIVE_LOW>;
	};

	wlan_en: regulator-6 {
		/* OUTPUT of SN74AVC2T244DQMR */
		compatible = "regulator-fixed";
		regulator-name = "wlan_en";
		regulator-min-microvolt = <1800000>;
		regulator-max-microvolt = <1800000>;
		enable-active-high;
		vin-supply = <&wlan_lten>;
		gpios = <&main_gpio0 71 GPIO_ACTIVE_HIGH>;
		pinctrl-names = "default";
		pinctrl-0 = <&wlan_en_pins_default>;
	};

	opp-table {
		/* Add 1.4GHz OPP for am625-sk board. Requires VDD_CORE to be at 0.85V */
		opp-1400000000 {
			opp-hz = /bits/ 64 <1400000000>;
			opp-supported-hw = <0x01 0x0004>;
			clock-latency-ns = <6000000>;
		};
	};

	display0 {
		compatible = "syntec,800x600","panel-dpi";
		backlight = <&lcd_bl>;
		power-supply = <&ldo1_reg>;
		label = "lcd";
                
		port {
			lcd_in0: endpoint {
				remote-endpoint = <&dpi1_out>;
			};
		};
	};

	lcd_bl:backlight {
		compatible = "gpio-backlight";
		pinctrl-names = "default";
		pinctrl-0 = < &backlight1_pins>;
		gpios = <&main_gpio0 91 GPIO_ACTIVE_HIGH>;
		default-on;
	};
};

&main_pmx0 {

        /delete-node/ ospi0_pins_default;

	wlan_en_pins_default: wlan-en-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x124, PIN_OUTPUT, 7) /* (A23) MMC2_SDCD.GPIO0_71 */
		>;
	};

	backlight1_pins: pinmux_backlight1_pins {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x174, PIN_OUTPUT, 7) /* (AD21) GPIO0_91 */
		>;
	};

	pmic_irq_pins_default: pmic-irq-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x01f4, PIN_INPUT_PULLUP, 0) /* (D16) EXTINTn */
		>;
	};

	main_i2c3_pins_default: main-i2c3-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x1d0, PIN_INPUT_PULLUP, 2) /* (A15) I2C3_SCL */
			AM62X_IOPAD(0x1d4, PIN_INPUT_PULLUP, 2) /* (B15) I2C3_SDA */
		>;
	};

	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 */
		>;
	};

	main_dss0_pins_default: main-dss0-pins-default {
		pinctrl-single,pins = <
			AM62X_IOPAD(0x0100, PIN_OUTPUT, 0) /* (AC25) VOUT0_VSYNC */
			AM62X_IOPAD(0x00f8, PIN_OUTPUT, 0) /* (AB24) VOUT0_HSYNC */
			AM62X_IOPAD(0x0104, PIN_OUTPUT, 0) /* (AC24) VOUT0_PCLK */
			AM62X_IOPAD(0x00fc, PIN_OUTPUT, 0) /* (Y20) VOUT0_DE */
			AM62X_IOPAD(0x00b8, PIN_OUTPUT, 0) /* (U22) VOUT0_DATA0 */
			AM62X_IOPAD(0x00bc, PIN_OUTPUT, 0) /* (V24) VOUT0_DATA1 */
			AM62X_IOPAD(0x00c0, PIN_OUTPUT, 0) /* (W25) VOUT0_DATA2 */
			AM62X_IOPAD(0x00c4, PIN_OUTPUT, 0) /* (W24) VOUT0_DATA3 */
			AM62X_IOPAD(0x00c8, PIN_OUTPUT, 0) /* (Y25) VOUT0_DATA4 */
			AM62X_IOPAD(0x00cc, PIN_OUTPUT, 0) /* (Y24) VOUT0_DATA5 */
			AM62X_IOPAD(0x00d0, PIN_OUTPUT, 0) /* (Y23) VOUT0_DATA6 */
			AM62X_IOPAD(0x00d4, PIN_OUTPUT, 0) /* (AA25) VOUT0_DATA7 */
			AM62X_IOPAD(0x00d8, PIN_OUTPUT, 0) /* (V21) VOUT0_DATA8 */
			AM62X_IOPAD(0x00dc, PIN_OUTPUT, 0) /* (W21) VOUT0_DATA9 */
			AM62X_IOPAD(0x00e0, PIN_OUTPUT, 0) /* (V20) VOUT0_DATA10 */
			AM62X_IOPAD(0x00e4, PIN_OUTPUT, 0) /* (AA23) VOUT0_DATA11 */
			AM62X_IOPAD(0x00e8, PIN_OUTPUT, 0) /* (AB25) VOUT0_DATA12 */
			AM62X_IOPAD(0x00ec, PIN_OUTPUT, 0) /* (AA24) VOUT0_DATA13 */
			AM62X_IOPAD(0x00f0, PIN_OUTPUT, 0) /* (Y22) VOUT0_DATA14 */
			AM62X_IOPAD(0x00f4, PIN_OUTPUT, 0) /* (AA21) VOUT0_DATA15 */
		>;
	};


};

&dss {
	pinctrl-names = "default";
	pinctrl-0 = <&main_dss0_pins_default>;
};

&dss_ports {
	#address-cells = <1>;
	#size-cells = <0>;

	/* VP2: DPI Output */
	port@1 {
		reg = <1>;

		dpi1_out: endpoint {
			remote-endpoint = <&lcd_in0>;
		};
	};
};

&ecap0_pwm {
	status = "disabled";
};

&main_i2c0 {
        /delete-node/ typec_pd;

	tps65219: pmic@30 {
		compatible = "ti,tps65219";
		reg = <0x30>;
		system-power-controller;

		pinctrl-names = "default";
		pinctrl-0 = <&pmic_irq_pins_default>;
		interrupt-parent = <&gic500>;
		interrupts = <GIC_SPI 256 IRQ_TYPE_LEVEL_HIGH>;
		interrupt-controller;

		buck1-supply = <&vcc_5v0>;
		buck2-supply = <&vcc_5v0>;
		buck3-supply = <&vcc_5v0>;
		ldo1-supply = <&vcc_5v0>;
		ldo2-supply = <&buck2_reg>;
		ldo3-supply = <&vcc_5v0>;
		ldo4-supply = <&vcc_5v0>;

		regulators {
			buck1_reg: buck1 {
				regulator-name = "VDD_CORE";
				regulator-min-microvolt = <850000>;
				regulator-max-microvolt = <850000>;
				regulator-boot-on;
				regulator-always-on;
			};

			buck2_reg: buck2 {
				regulator-name = "VCC1V8";
				regulator-min-microvolt = <1800000>;
				regulator-max-microvolt = <1800000>;
				regulator-boot-on;
				regulator-always-on;
			};

			buck3_reg: buck3 {
				regulator-name = "VDDS_DDR";
				regulator-min-microvolt = <1100000>;
				regulator-max-microvolt = <1100000>;
				regulator-boot-on;
				regulator-always-on;
			};

			ldo1_reg: ldo1 {
				regulator-name = "VDDSHV_MCU";
				regulator-min-microvolt = <3300000>;
				regulator-max-microvolt = <3300000>;
				regulator-allow-bypass;
			};

			ldo2_reg: ldo2 {
				regulator-name = "VDDR_CORE";
				regulator-min-microvolt = <850000>;
				regulator-max-microvolt = <850000>;
				regulator-boot-on;
				regulator-always-on;
			};

			ldo3_reg: ldo3 {
				regulator-name = "VDDA_1V8";
				regulator-min-microvolt = <1800000>;
				regulator-max-microvolt = <1800000>;
				regulator-boot-on;
				regulator-always-on;
			};

			ldo4_reg: ldo4 {
				regulator-name = "VDD_PHY_2V5";
				regulator-min-microvolt = <2500000>;
				regulator-max-microvolt = <2500000>;
				regulator-boot-on;
				regulator-always-on;
			};
		};
	};
};

&main_i2c1 {
        /delete-node/ exp1;
        /delete-node/ sii9022;
        /delete-node/ tlv320aic3106;
};

&main_i2c3 {
        pinctrl-names = "default";
	pinctrl-0 = <&main_i2c3_pins_default>;
	clock-frequency = <100000>;
	status = "okay";

        s35390a: s35390a@30 {
		compatible = "sii,s35390a";
		reg = <0x30>;
	};
};

&sdhci0 {
	/* eMMC */
	vmmc-supply = <&buck2_reg>;
	vqmmc-supply = <&buck2_reg>;
	non-removable;
	ti,driver-strength-ohm = <50>;
	disable-wp;
	max-frequency = <200000000>;
};

&sdhci1 {
    /* SD card */
   vmmc-supply = <&vcc_3v3_sys>;
   vqmmc-supply = <&vcc_3v3_sys>;
   pinctrl-names = "default";
   pinctrl-0 = <&main_mmc1_pins_default>;
   ti,driver-strength-ohm = <50>;
   disable-wp;
   non-removable;
   sdhci-caps-mask = <0x00000007 0x00000000>; /* Limiting to DDR50 speed mode */
   no-1-8-v;
};

&sdhci2 {
	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_FALLING>;
	};
};

&ospi0 {
        /delete-node/ spi_nor_flash;
};
Any ideas would be helpful! 
Thank you for your support:)
  • Sorry for  the incorrect location of  the circuit picture  and  the wrong word "non-removable;" .

    The modification is as follows, 
    1. add "non-removable;" 
    2. add "no-1-8-v;"

    Here is the log , 

    U-Boot SPL 2021.01-ge7c2703b4a (Aug 30 2023 - 11:14:55 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    SPL initial stack usage: 13424 bytes
    Trying to boot from MMC1
    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
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
    
    init_env from device 9 not supported!
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 08:24:34, Aug 30 2023
    
    U-Boot SPL 2021.01-ge7c2703b4a (Sep 12 2023 - 08:11:18 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    Trying to boot from MMC1
    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 2021.01-ge7c2703b4a (Sep 12 2023 - 08:11:18 +0000)
    
    SoC:   AM62X SR1.0 GP
    Model: Texas Instruments AM625 SK
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -19
    DRAM:  1 GiB
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1, mmc@fa20000: 2
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  0
    => mmc dev 1
    sdhci_send_command: Timeout for status update!
    => boot
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    1578 bytes read in 3 ms (513.7 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    Running uenvcmd ...
    syntax error
    18940416 bytes read in 125 ms (144.5 MiB/s)
    57545 bytes read in 3 ms (18.3 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Tue Sep 12 08:13:36 UTC 2023
    [    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 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-0x00000000bfffffff]
    [    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-0x00000000bfffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000] On node 0 totalpages: 262144
    [    0.000000]   DMA zone: 4096 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    [    0.000000] cma: Failed to reserve 512 MiB
    [    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 18 pages/cpu s35968 r8192 d29568 u73728
    [    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=4a7953cb-03 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4308K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    [    0.000000] rcu:     RCU priority boosting: priority 1 delay 500 ms.
    [    0.000000] rcu:     RCU_SOFTIRQ processing moved to rcuc kthreads.
    [    0.000000]  No expedited grace period (rcu_normal_after_boot).
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    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] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008548] Console: colour dummy device 80x25
    [    0.013145] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023826] pid_max: default: 32768 minimum: 301
    [    0.028653] LSM: Security Framework initializing
    [    0.033442] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.041018] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.051090] rcu: Hierarchical SRCU implementation.
    [    0.056554] Platform MSI: msi-controller@1820000 domain created
    [    0.062968] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.072274] EFI services will not be available.
    [    0.077242] smp: Bringing up secondary CPUs ...
    [    0.082679] Detected VIPT I-cache on CPU1
    [    0.086816] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.093855] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.101292] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108861] Detected VIPT I-cache on CPU2
    [    0.112989] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.120024] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    [    0.127444] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.134935] Detected VIPT I-cache on CPU3
    [    0.139062] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.146096] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    [    0.153512] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.160280] smp: Brought up 1 node, 4 CPUs
    [    0.164487] SMP: Total of 4 processors activated.
    [    0.169305] CPU features: detected: 32-bit EL0 Support
    [    0.174566] CPU features: detected: CRC32 instructions
    [    0.187164] CPU: All CPU(s) started at EL2
    [    0.191373] alternatives: patching kernel code
    [    0.197195] devtmpfs: initialized
    [    0.209265] KASLR disabled due to lack of seed
    [    0.214032] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.224012] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    [    0.231513] pinctrl core: initialized pinctrl subsystem
    [    0.237471] DMI not present or invalid.
    [    0.242096] NET: Registered protocol family 16
    [    0.247241] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.254513] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.262459] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.271165] thermal_sys: Registered thermal governor 'step_wise'
    [    0.271788] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.284955] ASID allocator initialised with 65536 entries
    [    0.318658] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.325568] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.332431] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.339295] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.347222] cryptd: max_cpu_qlen set to 1000
    [    0.354829] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.363997] vcc_5v0: supplied by vmain_pd
    [    0.368491] vcc_3v3_sys: supplied by vmain_pd
    [    0.373540] vcc_1v8: supplied by vcc_3v3_sys
    [    0.379192] iommu: Default domain type: Translated
    [    0.384456] vgaarb: loaded
    [    0.387587] SCSI subsystem initialized
    [    0.391967] mc: Linux media interface: v0.10
    [    0.396377] videodev: Linux video capture interface: v2.00
    [    0.402104] pps_core: LinuxPPS API ver. 1 registered
    [    0.407179] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.416528] PTP clock support registered
    [    0.420568] EDAC MC: Ver: 3.0.0
    [    0.424627] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.431869] FPGA manager framework
    [    0.435475] Advanced Linux Sound Architecture Driver Initialized.
    [    0.442689] clocksource: Switched to clocksource arch_sys_counter
    [    0.449174] VFS: Disk quotas dquot_6.6.0
    [    0.453244] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.466389] NET: Registered protocol family 2
    [    0.471107] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.479652] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.488364] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.496371] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    [    0.504258] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.511111] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.517996] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.525532] NET: Registered protocol family 1
    [    0.530607] RPC: Registered named UNIX socket transport module.
    [    0.536707] RPC: Registered udp transport module.
    [    0.541517] RPC: Registered tcp transport module.
    [    0.546326] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.552916] NET: Registered protocol family 44
    [    0.557473] PCI: CLS 0 bytes, default 64
    [    0.562379] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.574894] Initialise system trusted keyrings
    [    0.579711] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.591294] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.597984] NFS: Registering the id_resolver key type
    [    0.603234] Key type id_resolver registered
    [    0.607530] Key type id_legacy registered
    [    0.611728] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.618593] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.626401] 9p: Installing v9fs 9p2000 file system support
    [    0.666882] Key type asymmetric registered
    [    0.671111] Asymmetric key parser 'x509' registered
    [    0.676156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    [    0.683730] io scheduler mq-deadline registered
    [    0.688383] io scheduler kyber registered
    [    0.694947] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.701329] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.716147] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.738085] brd: module loaded
    [    0.750470] loop: module loaded
    [    0.754662] megasas: 07.714.04.00-rc1
    [    0.762628] tun: Universal TUN/TAP device driver, 1.6
    [    0.768537] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.774981] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.781108] sky2: driver version 1.30
    [    0.785960] VFIO - User Level meta-driver version: 0.3
    [    0.792464] i2c /dev entries driver
    [    0.798043] sdhci: Secure Digital Host Controller Interface driver
    [    0.804405] sdhci: Copyright(c) Pierre Ossman
    [    0.809240] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.816470] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.824872] optee: probing for conduit method.
    [    0.829523] optee: revision 3.20 (8e74d476)
    [    0.829845] optee: dynamic shared memory is enabled
    [    0.839377] optee: initialized driver
    [    0.845438] NET: Registered protocol family 17
    [    0.850217] 9pnet: Installing 9P2000 support
    [    0.854703] Key type dns_resolver registered
    [    0.859493] printk: bootconsole [ns16550a0]: printing thread started
    [    0.859544] Loading compiled-in X.509 certificates
    [    0.872963] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    [    0.873011] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    [    0.939413] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    0.942013] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    [    0.942033] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.972362] VDD_CORE: Bringing 750000uV into 850000-850000uV
    [    0.973210] VDD_CORE: supplied by vcc_5v0
    [    0.974026] VCC1V8: supplied by vcc_5v0
    [    0.974827] VDDS_DDR: supplied by vcc_5v0
    [    0.975951] VDDSHV_MCU: supplied by vcc_5v0
    [    0.976296] VDDR_CORE: supplied by VCC1V8
    [    0.977321] VDDA_1V8: supplied by vcc_5v0
    [    0.978047] VDD_PHY_2V5: supplied by vcc_5v0
    [    0.979936] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    [    0.980154] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.982669] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [▒▒r▒▒▒▒▒▒▒Iэ▒▒ͪ▒ʂ
                     ▒▒j▒▒▒▒▒▒▒▒▒▒ѕɕ▒▒
                                      ́▒э▒j▒▒[    1.011593] rtc-s35390a 2-0030: setting system clock to 2023-09-12T04:21:55 UTC (1694492515)
    [    1.037069] printk: console [ttyS2]: printing thread started
    [    1.011663] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    [    1.037087] printk: console [ttyS2] enabled
    [    1.037091] printk: bootconsole [ns16550a0] disabled
    [    1.057092] printk: bootconsole [ns16550a0]: printing thread stopped
    [    1.058250] panel-simple display0: Specify missing connector_type
    [    1.070092] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.106709] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.108580] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    [    1.108597] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver unknown
    [    1.108721] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.109009] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.109020] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.109026] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.109858] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    1.111007] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.115167] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    [    1.220337] mmc1: CQHCI version 5.10
    [    1.221287] mmc0: CQHCI version 5.10
    [    1.222892] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    1.236836] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    [    1.236857] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    [    1.236863] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    [    1.236871] pca953x 1-0022: Error applying setting, reverse things back
    [    1.236889] pca953x: probe of 1-0022 failed with error -22
        1.237824] panel-simple display0: Specify missing connector_type
    [    1.240343] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [    1.258197] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.272256] Console: switching to colour frame buffer device 100x37
    [    1.288434] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [    1.298853] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    [    1.298910] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    [    1.298948] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    [    1.299387] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.313061] ALSA device list:
    [    1.313077]   No soundcards found.
    [    1.327769] mmc0: new HS200 MMC card at address 0001
    [    1.328677] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    [    1.329006] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    [    1.329321] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    [    1.329534] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:0)
    [    1.331286]  mmcblk0: p1 p2 p3 p4
    [    2.741291] sdhci-am654 fa00000.mmc: Power on failed
    [    2.771941] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.908745] EXT4-fs (mmcblk0p3): recovery complete
    [    2.909303] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [    2.909362] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    [    2.909437] VFS: Mounted root (ext4 filesystem) on device 179:3.
    [    2.910557] devtmpfs: mounted
    [    2.912059] Freeing unused kernel memory: 1792K
    [    2.912186] Run /sbin/init as init process
    [    3.013108] NET: Registered protocol family 10
    [    3.014523] Segment Routing with IPv6
    [    3.032423] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    3.032910] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    3.083690] systemd[1]: Set hostname to <am62xx-evm>.
    [    3.085781] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.085871] systemd[1]: Initializing machine ID from random generator.
    [    3.401483] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.405176] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Created slice system-serial\x2dgett[    3.430971] random: systemd: uninitialized urandom read (16 bytes read)
    y.slice.
    [    3.432514] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice User and Session Slic[    3.456324] systemd[1]: Created slice User and Session Slice.
    e.
    [  OK  ] Started Dispatch Password …ts to [    3.479325] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Console Directory Watch.
    [  OK  ] Started Forward Password R…uests [    3.503157] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    to Wall Directory Watch.
    [  OK  ] Reached target Paths.
    [    3.527061] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Remote File Systems systemd[1]: Reached target Remote File Systems.
    [0m.
    [  OK  ] Reached target Slices.[    3.558899] systemd[1]: Reached target Slices.
    
    [  OK  ] Reached target Swap.
    [    3.578925] systemd[1]: Reached target Swap.
    [  OK  ] Listening on RPCbind Server Activat[    3.609743] systemd[1]: Listening on RPCbind Server Activation Socket.
    ion Socket.
    [  OK  ] Reached target RPC Port Mapper.[    3.635090] systemd[1]: Reached target RPC Port Mapper.
    
    [  OK  ] Listening on Process Core Dump Sock[    3.659930] systemd[1]: Listening on Process Core Dump Socket.
    et.
    [  OK  ] Listening on initctl Compatibility [    3.683362] systemd[1]: Listening on initctl Compatibility Named Pipe.
    Named Pipe.
    [    3.710648] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    3.711727] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket.[    3.739661] systemd[1]: Listening on Journal Socket.
    
    [  OK  ] Listening on Network Service Netlin[    3.759758] systemd[1]: Listening on Network Service Netlink Socket.
    k Socket.
    [  OK  ] Listening on udev Control Socket    3.783573] systemd[1]: Listening on udev Control Socket.
    m.
    [  OK  ] Listening on udev Kernel Socket[    3.807406] systemd[1]: Listening on udev Kernel Socket.
    .
             Mounting Huge Pages File System...[    3.832069] systemd[1]: Mounting Huge Pages File System...
    
             Mounting POSIX Message Queue File System..[    3.859975] systemd[1]: Mounting POSIX Message Queue File System...
    .
             Mounting Kernel Debug File System...
    [    3.887921] systemd[1]: Mounting Kernel Debug File System...
             Mounting Temporary Directory (/tmp)...
    [    3.918956] systemd[1]: Mounting Temporary Directory (/tmp)...
             Starting Create list of st…odes for the curr[    3.936274] systemd[1]: Starting Create list of static device nodes for the current kernel...
    ent kernel...
    [    3.974368] systemd[1]: Starting Start psplash boot splash screen...
             Starting Start psplash boot splash screen...
             Starting RPC Bind...
    [    4.004755] systemd[1]: Starting RPC Bind...
    [    4.015240] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    4.022978] systemd[1]: Starting Journal Service...
             Starting Journal Service...
             Starting Load Kernel Modules...
    [    4.049499] systemd[1]: Starting Load Kernel Modules...
             Starting Remount Root and Kernel File Systems systemd[1]: Starting Remount Root and Kernel File Systems...
    [0m...
    [    4.069950] cryptodev: loading out-of-tree module taints kernel.
    [    4.089096] cryptodev: driver 1.10 loaded.
    [    4.089326] systemd[1]: Starting udev Coldplug all Devices...
    [    4.089338] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    [    4.089384] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    [    4.117619] random: systemd-journal: uninitialized urandom read (16 bytes read)
             Starting udev Coldplug all Devices...
    [    4.117780] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [    4.118227] random: systemd-journal: uninitialized urandom read (16 bytes read)
    [  OK  ] Started Start psplash boot splash s[    4.146073] systemd[1]: Started Start psplash boot splash screen.
    creen.
    [  OK  ] Started RPC Bind.
    [    4.171711] systemd[1]: Started RPC Bind.
    [  OK  ] Started Journal Service.
    [    4.187733] systemd[1]: Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
    [  OK  ] Started Start psplash-syst…progress communication helper.
             Starting Flush Journal to Persistent Storage...
    [    4.401310] systemd-journald[231]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
             Starting Create System Users...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create System Users.
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Reached target Local File Systems (Pre).
             Mounting /media/ram...
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Rebuild Dynamic Linker Cache...
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
    [    5.128357] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.137188] random: systemd-journal: uninitialized urandom read (16 bytes read)
             Starting Run pending postinsts...
    [    5.159165] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Rebuild Journal Catalog...
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Rebuild Dynamic Linker Cache.
    [  OK  ] Started Rebuild Journal Catalog.
             Starting Update is Completed...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [  OK  ] Started Update is Completed.
    [  OK  ] Started Run pending postinsts.
    [  OK  ] Created slice system-systemd\x2dbacklight.slice.
             Starting Load/Save Screen …ness of backlight:backlight...
    [  OK  ] Started Load/Save Screen B…htness of backlight:backlight.
    [  OK  ] Started Network Time Synchronization.
    [    6.162366] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [    6.343085] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    6.356622] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [    6.356777] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [    6.357134] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Started D-Bus System Message Bus    6.358364] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    m.
    [    6.358401] remoteproc remoteproc0: powering up 5000000.m4fss
    [    6.358446] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    6.358454] remoteproc remoteproc0: request_firmware failed: -2
    [    6.474782] random: crng init done
    [    6.474805] random: 96 urandom warning(s) missed due to ratelimiting
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting telnetd.service...
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started telnetd.service.
    [  OK  ] Reached target Network (Pre).
    [    7.091797] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    7.092407] platform 78000000.r5f: configured R5F for IPC-only mode
    [    7.092622] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    7.106147] remoteproc remoteproc1: 78000000.r5f is available
    [    7.106266] remoteproc remoteproc1: attaching to 78000000.r5f
    [    7.128031] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    7.128088]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    [    7.150374] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    7.151471] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    7.156182]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [    7.156218] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    7.178522] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
             Starting LSB: Expand Rootfs of boot device...
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            bash
            cifs-utils
            dosfstools
            less
            libdw1
            libelf1
            libreadline8
            parted
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
             Starting Network Service...
    [  OK  ] Started Print notice about GPLv3 packages.
    [  OK  ] Started LSB: Expand Rootfs of boot device.
    [  OK  ] Started Network Service.
             Starting Wait for Network to be Configured...
    [    7.846564] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [Generic PHY] (irq=POLL)
    [    7.846603] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
             Starting Network Name Resolution...
    [    7.928277] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    [    7.928311] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started Login Service.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Permit User Sessions...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Synchronize System and HW clocks.
    [  OK  ] Found device /dev/mmcblk0p1.
    [  OK  ] Found device /dev/mmcblk0p4.
             Mounting /run/media/mmcblk0p1...
             Mounting /run/media/mmcblk0p4...
    [    9.275488] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [    9.355852] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
    [  OK  ] Mounted /run/media/mmcblk0p4.
    [    9.497819] remoteproc remoteproc2: 30074000.pru is available
    [    9.516723] remoteproc remoteproc3: 30078000.pru is available
    [    9.540251] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    9.603962] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
             Starting Save/Restore Sound Card State...
    [    9.703787] usbcore: registered new interface driver usbfs
    [    9.703857] usbcore: registered new interface driver hub
    [    9.703933] usbcore: registered new device driver usb
    [    9.718392] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    9.718453] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [    9.720911] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [  OK  ] Started Save/Restore Sound Card Sta[    9.721250] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    te.[    9.721489] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    9.721510] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [    9.721539] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [    9.722326] hub 1-0:1.0: USB hub found
    [    9.722358] hub 1-0:1.0: 1 port detected
    [    9.729613] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    9.730515] hub 2-0:1.0: USB hub found
    [    9.730568] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    9.736945] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    9.736993] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    [    9.737188] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    
    [    9.740638] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    [    9.740893] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    9.740915] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    [    9.740940] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    [    9.741768] hub 3-0:1.0: USB hub found
    [    9.741805] hub 3-0:1.0: 1 port detected
    [    9.751241] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [  OK  ] Reached target Sound Card.
    [    9.761589] hub 4-0:1.0: USB hub found
    [    9.761679] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    9.994717] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    [   10.189475] hub 3-1:1.0: USB hub found
    [   10.189800] hub 3-1:1.0: 4 ports detected
    [   10.542716] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    [   10.661939] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    [   10.662577] scsi host0: usb-storage 3-1.4:1.0
    [   10.663559] usbcore: registered new interface driver usb-storage
    [   10.671578] usbcore: registered new interface driver uas
    [   11.672071] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    [   11.673203] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    [   11.674644] sd 0:0:0:0: [sda] Write Protect is off
    [   11.676044] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [   11.720463]  sda: sda1
    [   11.724371] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [  OK  ] Found device Ultra_Fit 1.
             Mounting /run/media/sda1...
    [   12.231830] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/sda1.
    [   12.854689] mmc1: Timeout waiting for hardware cmd interrupt.
    [   12.854714] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   12.854719] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   12.854729] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   12.854734] mmc1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    [   12.854738] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   12.854742] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   12.854746] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   12.854750] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   12.854753] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   12.854757] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [   12.854761] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   12.854765] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    [   12.854769] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [   12.854773] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [   12.854777] mmc1: sdhci: Host ctl2: 0x00000000
    [   12.854780] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [   12.854786] mmc1: sdhci: ============================================
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project am62xx-evm ttyS2
    
    Arago 2021.09 am62xx-evm ttyS2
    
    am62xx-evm login: root
    root@am62xx-evm:~# [   23.094692] mmc1: Timeout waiting for hardware cmd interrupt.
    [   23.094717] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   23.094722] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   23.094733] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   23.094737] mmc1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    [   23.094741] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   23.094745] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   23.094749] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   23.094753] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   23.094757] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   23.094761] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [   23.094765] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   23.094769] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    [   23.094773] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [   23.094776] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [   23.094780] mmc1: sdhci: Host ctl2: 0x00000000
    [   23.094783] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [   23.094787] mmc1: sdhci: ============================================
    cat /sys/kernel/debug/mmc1/ios
    clock:          400000 Hz
    actual clock:   400000 Hz
    vdd:            21 (3.3 ~ 3.4 V)
    bus mode:       2 (push-pull)
    chip select:    1 (active high)
    power mode:     2 (on)
    bus width:      0 (1 bits)
    timing spec:    0 (legacy)
    signal voltage: 0 (3.30 V)
    driver type:    0 (driver type B)
    
    

  • Hi Vincent,

    I want to mount eMMC on mmc1(sdhci1). 

    I didn't review the rest of your post after I see this message. I believe MMC1 only supports SD card and SDIO, not eMMC. Please see the AM625x Datasheet section 7.10.5.15.2 MMC1/MMC2 - SD/SDIO Interface for details.

  • Hi Bin, 

    Thanks for your reply,
    Let me briefly explain our usage scenario. Initially, I used an SD card (connected to MMC1) to boot the system, and then the system was burned into the eMMC (mount on MMC0). After that
    , SD card slot (MMC1) was replaced with an external board (another eMMC).  Finally, the system was booted from the eMMC (MMC0) and eMMC(MMC1) became a storage device.

    Hence, there are totoally two eMMCs. (MMC0 for system, MMC1 for storage)

    I have a few questions:

    1. I know that MMC1 is designed for SD card, not eMMC .But it can't explain why I shorted the SDCD pin to GND(pull low) , eMMC can be detected.  

    2. Would it be possible to modify the MMC1 driver or device tree to detect eMMC without pull-low CD pin ?

    I  tried to log the kmsg , when MMC1 connected the eMMC and SD card (use command: cat /proc/kmsg).

    Here's the relevant log,

     pull-low CD pin:

    U-Boot SPL 2021.01-ge7c2703b4a (Aug 30 2023 - 11:14:55 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    SPL initial stack usage: 13424 bytes
    Trying to boot from MMC1
    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
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
    
    init_env from device 9 not supported!
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 08:24:34, Aug 30 2023
    
    U-Boot SPL 2021.01-ge7c2703b4a (Sep 14 2023 - 07:36:50 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    Trying to boot from MMC1
    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 2021.01-ge7c2703b4a (Sep 14 2023 - 07:36:50 +0000)
    
    SoC:   AM62X SR1.0 GP
    Model: Texas Instruments AM625 SK
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -19
    DRAM:  1 GiB
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1, mmc@fa20000: 2
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  0
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    1578 bytes read in 3 ms (513.7 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    Running uenvcmd ...
    syntax error
    18940416 bytes read in 124 ms (145.7 MiB/s)
    57545 bytes read in 3 ms (18.3 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Thu Sep 14 07:40:35 UTC 2023
    [    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 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-0x00000000bfffffff]
    [    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-0x00000000bfffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000] On node 0 totalpages: 262144
    [    0.000000]   DMA zone: 4096 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    [    0.000000] cma: Failed to reserve 512 MiB
    [    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 18 pages/cpu s35968 r8192 d29568 u73728
    [    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ef21face-03 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4312K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    [    0.000000] rcu:     RCU priority boosting: priority 1 delay 500 ms.
    [    0.000000] rcu:     RCU_SOFTIRQ processing moved to rcuc kthreads.
    [    0.000000]  No expedited grace period (rcu_normal_after_boot).
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    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] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008548] Console: colour dummy device 80x25
    [    0.013145] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023827] pid_max: default: 32768 minimum: 301
    [    0.028652] LSM: Security Framework initializing
    [    0.033443] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.041017] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.051085] rcu: Hierarchical SRCU implementation.
    [    0.056537] Platform MSI: msi-controller@1820000 domain created
    [    0.062946] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.072245] EFI services will not be available.
    [    0.077215] smp: Bringing up secondary CPUs ...
    [    0.082648] Detected VIPT I-cache on CPU1
    [    0.086784] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.093822] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.101264] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108825] Detected VIPT I-cache on CPU2
    [    0.112953] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.119987] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    [    0.127408] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.134912] Detected VIPT I-cache on CPU3
    [    0.139035] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.146069] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    [    0.153489] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.160258] smp: Brought up 1 node, 4 CPUs
    [    0.164464] SMP: Total of 4 processors activated.
    [    0.169283] CPU features: detected: 32-bit EL0 Support
    [    0.174545] CPU features: detected: CRC32 instructions
    [    0.187135] CPU: All CPU(s) started at EL2
    [    0.191344] alternatives: patching kernel code
    [    0.197164] devtmpfs: initialized
    [    0.209340] KASLR disabled due to lack of seed
    [    0.214106] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.224085] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    [    0.231583] pinctrl core: initialized pinctrl subsystem
    [    0.237554] DMI not present or invalid.
    [    0.242174] NET: Registered protocol family 16
    [    0.247318] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.254589] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.262534] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.271248] thermal_sys: Registered thermal governor 'step_wise'
    [    0.271871] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.285043] ASID allocator initialised with 65536 entries
    [    0.318807] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.325717] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.332578] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.339441] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.347367] cryptd: max_cpu_qlen set to 1000
    [    0.354963] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.364140] vcc_5v0: supplied by vmain_pd
    [    0.368751] vcc_3v3_sys: supplied by vmain_pd
    [    0.373747] vcc_1v8: supplied by vcc_3v3_sys
    [    0.379347] iommu: Default domain type: Translated
    [    0.384612] vgaarb: loaded
    [    0.387741] SCSI subsystem initialized
    [    0.392127] mc: Linux media interface: v0.10
    [    0.396534] videodev: Linux video capture interface: v2.00
    [    0.402260] pps_core: LinuxPPS API ver. 1 registered
    [    0.407334] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.416684] PTP clock support registered
    [    0.420724] EDAC MC: Ver: 3.0.0
    [    0.424766] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.431994] FPGA manager framework
    [    0.435598] Advanced Linux Sound Architecture Driver Initialized.
    [    0.442811] clocksource: Switched to clocksource arch_sys_counter
    [    0.449298] VFS: Disk quotas dquot_6.6.0
    [    0.453372] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.466529] NET: Registered protocol family 2
    [    0.471251] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.479765] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.488487] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.496495] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    [    0.504394] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.511243] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.518127] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.525663] NET: Registered protocol family 1
    [    0.530737] RPC: Registered named UNIX socket transport module.
    [    0.536835] RPC: Registered udp transport module.
    [    0.541645] RPC: Registered tcp transport module.
    [    0.546454] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.553045] NET: Registered protocol family 44
    [    0.557603] PCI: CLS 0 bytes, default 64
    [    0.562515] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.575020] Initialise system trusted keyrings
    [    0.579837] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.591402] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.598094] NFS: Registering the id_resolver key type
    [    0.603346] Key type id_resolver registered
    [    0.607642] Key type id_legacy registered
    [    0.611843] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.618708] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.626518] 9p: Installing v9fs 9p2000 file system support
    [    0.668148] Key type asymmetric registered
    [    0.672372] Asymmetric key parser 'x509' registered
    [    0.677419] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    [    0.684993] io scheduler mq-deadline registered
    [    0.689645] io scheduler kyber registered
    [    0.696210] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.702575] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.717379] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.739477] brd: module loaded
    [    0.751914] loop: module loaded
    [    0.756131] megasas: 07.714.04.00-rc1
    [    0.764167] tun: Universal TUN/TAP device driver, 1.6
    [    0.770017] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.776466] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.782591] sky2: driver version 1.30
    [    0.787492] VFIO - User Level meta-driver version: 0.3
    [    0.794018] i2c /dev entries driver
    [    0.799677] sdhci: Secure Digital Host Controller Interface driver
    [    0.806045] sdhci: Copyright(c) Pierre Ossman
    [    0.810888] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.818133] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.826529] optee: probing for conduit method.
    [    0.831142] optee: revision 3.20 (8e74d476)
    [    0.831459] optee: dynamic shared memory is enabled
    [    0.840992] optee: initialized driver
    [    0.847165] NET: Registered protocol family 17
    [    0.851917] 9pnet: Installing 9P2000 support
    [    0.856411] Key type dns_resolver registered
    [    0.861192] printk: bootconsole [ns16550a0]: printing thread started
    [    0.861244] Loading compiled-in X.509 certificates
    [    0.874706] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    [    0.874754] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    [    0.941380] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    0.944134] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    [    0.944154] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.972476] VDD_CORE: Bringing 750000uV into 850000-850000uV
    [    0.973326] VDD_CORE: supplied by vcc_5v0
    [    0.974136] VCC1V8: supplied by vcc_5v0
    [    0.974950] VDDS_DDR: supplied by vcc_5v0
    [    0.976064] VDDSHV_MCU: supplied by vcc_5v0
    [    0.976408] VDDR_CORE: supplied by VCC1V8
    [    0.977425] VDDA_1V8: supplied by vcc_5v0
    [    0.978145] VDD_PHY_2V5: supplied by vcc_5v0
    [    0.980020] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    [    0.980238] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.982763] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [▒   1.010674] rtc-s35390a 2-0030: registered as rtc0
    [    1.011715] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:24:33 UTC (1694665473)
    [    1.037155] printk: console [ttyS2]: printing thread started
    [    1.011787] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    [    1.037173] printk: console [ttyS2] enabled
    [    1.037177] printk: bootconsole [ns16550a0] disabled
    [    1.057160] printk: bootconsole [ns16550a0]: printing thread stopped
    [    1.058323] panel-simple display0: Specify missing connector_type
    [    1.070181] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.106839] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.108722] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    [    1.108740] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver unknown
    [    1.108862] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.109151] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.109160] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.109166] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.110008] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    1.111164] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.115435] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    [    1.220656] mmc1: CQHCI version 5.10
    [    1.222132] mmc0: CQHCI version 5.10
    [    1.222657] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    1.236935] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    [    1.236952] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    [    1.236960] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    [    1.236967] pca953x 1-0022: Error applying setting, reverse things back
    [    1.236984] pca953x: probe of 1-0022 failed with error -22
    [    1.237918] panel-simple display0: Specify missing connector_type
    [    1.240459] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [    1.257520] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.263074] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    1.272418] Console: switching to colour frame buffer device 100x37
    [    1.288588] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [    1.298937] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    [    1.298993] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    [    1.299061] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    [    1.299588] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.313970] ALSA device list:
    [    1.313975]   No soundcards found.
    [    1.318876] mmc1: new MMC card at address 0001
    [    1.319799] mmcblk1: mmc1:0001 Q2J54A 3.64 GiB
    [    1.320113] mmcblk1boot0: mmc1:0001 Q2J54A partition 1 2.00 MiB
    [    1.320422] mmcblk1boot1: mmc1:0001 Q2J54A partition 2 2.00 MiB
    [    1.320692] mmcblk1rpmb: mmc1:0001 Q2J54A partition 3 512 KiB, chardev (237:0)
    [    1.323121]  mmcblk1: p1
    [    1.328292] mmc0: new HS200 MMC card at address 0001
    [    1.329190] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    [    1.329524] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    [    1.329831] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    [    1.330084] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:1)
    [    1.333177]  mmcblk0: p1 p2 p3 p4
    [    1.408903] EXT4-fs (mmcblk0p3): recovery complete
    [    1.409409] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [    1.409448] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    [    1.409524] VFS: Mounted root (ext4 filesystem) on device 179:99.
    [    1.410183] devtmpfs: mounted
    [    1.411683] Freeing unused kernel memory: 1792K
    [    1.411814] Run /sbin/init as init process
    [    1.529322] NET: Registered protocol family 10
    [    1.530521] Segment Routing with IPv6
    [    1.549453] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    1.549931] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    1.595752] systemd[1]: Set hostname to <am62xx-evm>.
    [    1.889848] random: systemd: uninitialized urandom read (16 bytes read)
    [    1.893661] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Created slice system-serial\x2dgett[    1.919082] random: systemd: uninitialized urandom read (16 bytes read)
    y.slice.
    [    1.920640] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice User and Session Slic[    1.943038] random: systemd: uninitialized urandom read (16 bytes read)
    e.
    [    1.944440] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Started Dispatch Password …ts to [    1.967467] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Console Directory Watch.
    [  OK  ] Started Forward Password R…uests [    1.991266] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    to Wall Directory Watch.
    [  OK  ] Reached target Paths.
    [    2.015165] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Remote File Systems systemd[1]: Reached target Remote File Systems.
    [0m.
    [  OK  ] Reached target Slices.
    [    2.046987] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Swap.
    [    2.059004] systemd[1]: Reached target Swap.
    [  OK  ] Listening on RPCbind Server Activat[    2.090424] systemd[1]: Listening on RPCbind Server Activation Socket.
    ion Socket.
    [  OK  ] Reached target RPC Port Mapper.[    2.115277] systemd[1]: Reached target RPC Port Mapper.
    
    [  OK  ] Listening on Process Core Dump Sock[    2.140065] systemd[1]: Listening on Process Core Dump Socket.
    et.
    [  OK  ] Listening on initctl Compatibility [    2.163480] systemd[1]: Listening on initctl Compatibility Named Pipe.
    Named Pipe.
    [    2.190622] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    2.191720] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket.
    [    2.219762] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Network Service Netlin[    2.231910] systemd[1]: Listening on Network Service Netlink Socket.
    k Socket.
    [  OK  ] Listening on udev Control Socket    2.255731] systemd[1]: Listening on udev Control Socket.
    m.
    [  OK  ] Listening on udev Kernel Socket[    2.279461] systemd[1]: Listening on udev Kernel Socket.
    .
             Mounting Huge Pages File System...
    [    2.304102] systemd[1]: Mounting Huge Pages File System...
             Mounting POSIX Message Queue File System..[    2.320281] systemd[1]: Mounting POSIX Message Queue File System...
    .
             Mounting Kernel Debug File System...[    2.348072] systemd[1]: Mounting Kernel Debug File System...
    
             Mounting Temporary Directory (/tmp)...
    [    2.376635] systemd[1]: Mounting Temporary Directory (/tmp)...
             Starting Create list of st…odes for the curr[    2.393779] systemd[1]: Starting Create list of static device nodes for the current kernel...
    ent kernel...
             Starting Start psplash boot splash screen.[    2.426222] systemd[1]: Starting Start psplash boot splash screen...
    ..
    [    2.456156] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    2.475342] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    2.482383] systemd[1]: Starting Journal Service...
             Starting Journal Service...
             Starting Load Kernel Modules...
    [    2.514160] systemd[1]: Starting Load Kernel Modules...
             Starting Remount Root and Kernel File Systems cryptodev: loading out-of-tree module taints kernel.
    [    2.533596] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    2.536023] cryptodev: driver 1.10 loaded.
    [    2.555944] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    [    2.556006] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    [0m...
             Starting udev Coldplug all Devices...
    [    2.592110] systemd[1]: Starting udev Coldplug all Devices...
    [  OK  ] Started Start psplash boot splash s[    2.612606] systemd[1]: Started Start psplash boot splash screen.
    creen.
    [  OK  ] Started RPC Bind.
    [    2.635868] systemd[1]: Started RPC Bind.
    [  OK  ] Started Journal Service.
    [    2.651926] systemd[1]: Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
    [  OK  ] Started Start psplash-syst…progress communication helper.
             Starting Flush Journal to Persistent Storage...
    [    2.878140] systemd-journald[231]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
    [    2.899525] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Create Static Device Nodes in /dev    2.912916] random: systemd-journal: uninitialized urandom read (16 bytes read)
    m...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Reached target Local File Systems ([    3.020759] random: systemd: uninitialized urandom read (16 bytes read)
    Pre).
             Mounting /media/ram...
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [    3.936560] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.937462] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Created slice system-systemd\x2dbacklight.slice.
    [    3.983207] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Load/Save Screen …ness of backlight:backlight...
    [  OK  ] Started Load/Save Screen B…htness of backlight:backlight.
    [  OK  ] Started Network Time Synchronization.
    [    4.655686] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    4.655855] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [    4.655961] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [    4.656293] remoteproc remoteproc0: 5000000.m4fss is available
    [  OK  ] Reached target System Initializatio[    4.679017] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    n.
    [    4.679050] remoteproc remoteproc0: powering up 5000000.m4fss
    [    4.679090] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    4.679097] remoteproc remoteproc0: request_firmware failed: -2
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started D-Bus System Message Bus.
    [    5.055027] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.072173] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    5.072354] platform 78000000.r5f: configured R5F for IPC-only mode
    [    5.072637] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    5.090289] remoteproc remoteproc1: 78000000.r5f is available
    [    5.091435] remoteproc remoteproc1: attaching to 78000000.r5f
    [    5.125025] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    5.125079]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    [    5.138914] random: crng init done
    [    5.138934] random: 81 urandom warning(s) missed due to ratelimiting
    [    5.169723] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    5.170128]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [    5.170145] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    5.170461] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.197982] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting telnetd.service...
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started telnetd.service.
    [  OK  ] Reached target Network (Pre).
             Starting LSB: Expand Rootfs of boot device...
             Starting Network Service...
    [  OK  ] Started Network Service.
             Starting Wait for Network to be Configured...
    [    6.250734] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [Generic PHY] (irq=POLL)
             Starting Network Name Resolution...
    [    6.250776] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started Login Service.
    [    6.381757] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    [    6.381797] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started LSB: Expand Rootfs of boot device.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Permit User Sessions...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Synchronize System and HW clocks.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            bash
            cifs-utils
            dosfstools
            less
            libdw1
            libelf1
            libreadline8
            parted
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Print notice about GPLv3 packages.
    [  OK  ] Found device /dev/mmcblk0p1.
    [  OK  ] Found device /dev/mmcblk0p4.
    [  OK  ] Found device /dev/mmcblk1p1.
             Mounting /run/media/mmcblk0p1...
    [    7.838060] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
             Mounting /run/media/mmcblk0p4...
             Mounting /run/media/mmcblk1p1...
    [    8.008891] EXT4-fs (mmcblk0p4): recovery complete
    [    8.008933] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [  OK  ] Mounted /run/media/mmcblk0p4.
    [    8.137614] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/mmcblk1p1.
    [    8.250409] remoteproc remoteproc2: 30074000.pru is available
    [    8.268841] remoteproc remoteproc3: 30078000.pru is available
    [    8.304287] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    8.351754] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
             Starting Save/Restore Sound Card State...
    [    8.492755] usbcore: registered new interface driver usbfs
    [    8.494201] usbcore: registered new interface driver hub
    [    8.497363] usbcore: registered new device driver usb
    [  OK  ] Started Save/Restore Sound Card State.
    [    8.516021] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    8.516099] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [    8.516309] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    8.519548] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    [    8.519821] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    8.519848] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [    8.519878] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [    8.544764] hub 1-0:1.0: USB hub found
    [    8.544861] hub 1-0:1.0: 1 port detected
    [    8.553637] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [  OK  ] Reached target Sound Card.
    [    8.557537] hub 2-0:1.0: USB hub found
    [    8.557622] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    8.576426] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    8.576521] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    [    8.576734] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    8.578261] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    [    8.578517] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    8.578538] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    [    8.578558] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    [    8.580238] hub 3-0:1.0: USB hub found
    [    8.580300] hub 3-0:1.0: 1 port detected
    [    8.589127] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [    8.589886] hub 4-0:1.0: USB hub found
    [    8.589921] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    8.834830] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    [    9.027095] hub 3-1:1.0: USB hub found
    [    9.027433] hub 3-1:1.0: 4 ports detected
    [    9.378831] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    [    9.497555] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    [    9.498216] scsi host0: usb-storage 3-1.4:1.0
    [    9.499743] usbcore: registered new interface driver usb-storage
    [    9.508957] usbcore: registered new interface driver uas
    [   10.520160] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    [   10.521576] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    [   10.524077] sd 0:0:0:0: [sda] Write Protect is off
    [   10.525122] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [   10.570001]  sda: sda1
    [   10.574098] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [  OK  ] Found device Ultra_Fit 1.
             Mounting /run/media/sda1...
    [   11.078979] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/sda1.
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project am62xx-evm ttyS2
    
    Arago 2021.09 am62xx-evm ttyS2
    
    am62xx-evm login: root
    root@am62xx-evm:~# cat /proc/kmsg
    <6>[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    <5>[    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Thu Sep 14 07:40:35 UTC 2023
    <6>[    0.000000] Machine model: Texas Instruments AM625 SK
    <6>[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    <6>[    0.000000] printk: bootconsole [ns16550a0] enabled
    <6>[    0.000000] efi: UEFI not found.
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    <6>[    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    <6>[    0.000000] Zone ranges:
    <6>[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000bfffffff]
    <6>[    0.000000]   DMA32    empty
    <6>[    0.000000]   Normal   empty
    <6>[    0.000000] Movable zone start for each node
    <6>[    0.000000] Early memory node ranges
    <6>[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    <6>[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000bfffffff]
    <6>[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    <7>[    0.000000] On node 0 totalpages: 262144
    <7>[    0.000000]   DMA zone: 4096 pages used for memmap
    <7>[    0.000000]   DMA zone: 0 pages reserved
    <7>[    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    <3>[    0.000000] cma: Failed to reserve 512 MiB
    <6>[    0.000000] psci: probing for conduit method from DT.
    <6>[    0.000000] psci: PSCIv1.1 detected in firmware.
    <6>[    0.000000] psci: Using standard PSCI v0.2 function IDs
    <6>[    0.000000] psci: Trusted OS migration not required
    <6>[    0.000000] psci: SMC Calling Convention v1.2
    <6>[    0.000000] percpu: Embedded 18 pages/cpu s35968 r8192 d29568 u73728
    <7>[    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    <7>[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    <6>[    0.000000] Detected VIPT I-cache on CPU0
    <6>[    0.000000] CPU features: detected: ARM erratum 845719
    <6>[    0.000000] CPU features: detected: GIC system register CPU interface
    <6>[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    <5>[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ef21face-03 rw rootfstype=ext4 rootwait
    <6>[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    <6>[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    <6>[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    <6>[    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4312K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    <6>[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    <6>[    0.000000] rcu: Preemptible hierarchical RCU implementation.
    <6>[    0.000000] rcu:  RCU event tracing is enabled.
    <6>[    0.000000] rcu:  RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    <6>[    0.000000] rcu:  RCU priority boosting: priority 1 delay 500 ms.
    <6>[    0.000000] rcu:  RCU_SOFTIRQ processing moved to rcuc kthreads.
    <6>[    0.000000]       No expedited grace period (rcu_normal_after_boot).
    <6>[    0.000000]       Trampoline variant of Tasks RCU enabled.
    <6>[    0.000000]       Tracing variant of Tasks RCU enabled.
    <6>[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    <6>[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    <6>[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    <6>[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    <6>[    0.000000] GICv3: 256 SPIs implemented
    <6>[    0.000000] GICv3: 0 Extended SPIs implemented
    <6>[    0.000000] GICv3: Distributor has no Range Selector support
    <6>[    0.000000] GICv3: 16 PPIs implemented
    <6>[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    <6>[    0.000000] ITS [mem 0x01820000-0x0182ffff]
    <6>[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    <4>[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    <6>[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    <6>[    0.000000] ITS: using cache flushing for cmd queue
    <6>[    0.000000] GICv3: using LPI property table @0x0000000080030000
    <6>[    0.000000] GIC: using cache flushing for LPI property table
    <6>[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    <6>[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    <6>[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    <6>[    0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    <6>[    0.008548] Console: colour dummy device 80x25
    <6>[    0.013145] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    <6>[    0.023827] pid_max: default: 32768 minimum: 301
    <6>[    0.028652] LSM: Security Framework initializing
    <6>[    0.033443] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.041017] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.051085] rcu: Hierarchical SRCU implementation.
    <6>[    0.056537] Platform MSI: msi-controller@1820000 domain created
    <6>[    0.062946] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    <6>[    0.072245] EFI services will not be available.
    <6>[    0.077215] smp: Bringing up secondary CPUs ...
    <6>[    0.082648] Detected VIPT I-cache on CPU1
    <6>[    0.086784] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    <6>[    0.093822] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    <6>[    0.101264] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    <6>[    0.108825] Detected VIPT I-cache on CPU2
    <6>[    0.112953] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    <6>[    0.119987] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    <6>[    0.127408] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    <6>[    0.134912] Detected VIPT I-cache on CPU3
    <6>[    0.139035] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    <6>[    0.146069] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    <6>[    0.153489] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    <6>[    0.160258] smp: Brought up 1 node, 4 CPUs
    <6>[    0.164464] SMP: Total of 4 processors activated.
    <6>[    0.169283] CPU features: detected: 32-bit EL0 Support
    <6>[    0.174545] CPU features: detected: CRC32 instructions
    <6>[    0.187135] CPU: All CPU(s) started at EL2
    <6>[    0.191344] alternatives: patching kernel code
    <6>[    0.197164] devtmpfs: initialized
    <4>[    0.209340] KASLR disabled due to lack of seed
    <6>[    0.214106] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    <6>[    0.224085] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    <6>[    0.231583] pinctrl core: initialized pinctrl subsystem
    <6>[    0.237554] DMI not present or invalid.
    <6>[    0.242174] NET: Registered protocol family 16
    <6>[    0.247318] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    <6>[    0.254589] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    <6>[    0.262534] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    <6>[    0.271248] thermal_sys: Registered thermal governor 'step_wise'
    <6>[    0.271871] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    <6>[    0.285043] ASID allocator initialised with 65536 entries
    <6>[    0.318807] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    <6>[    0.325717] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    <6>[    0.332578] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    <6>[    0.339441] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    <6>[    0.347367] cryptd: max_cpu_qlen set to 1000
    <6>[    0.354963] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    <6>[    0.364140] vcc_5v0: supplied by vmain_pd
    <6>[    0.368751] vcc_3v3_sys: supplied by vmain_pd
    <6>[    0.373747] vcc_1v8: supplied by vcc_3v3_sys
    <6>[    0.379347] iommu: Default domain type: Translated
    <6>[    0.384612] vgaarb: loaded
    <5>[    0.387741] SCSI subsystem initialized
    <6>[    0.392127] mc: Linux media interface: v0.10
    <6>[    0.396534] videodev: Linux video capture interface: v2.00
    <6>[    0.402260] pps_core: LinuxPPS API ver. 1 registered
    <6>[    0.407334] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    <6>[    0.416684] PTP clock support registered
    <6>[    0.420724] EDAC MC: Ver: 3.0.0
    <6>[    0.424766] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    <6>[    0.431994] FPGA manager framework
    <6>[    0.435598] Advanced Linux Sound Architecture Driver Initialized.
    <6>[    0.442811] clocksource: Switched to clocksource arch_sys_counter
    <5>[    0.449298] VFS: Disk quotas dquot_6.6.0
    <6>[    0.453372] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    <6>[    0.466529] NET: Registered protocol family 2
    <6>[    0.471251] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    <6>[    0.479765] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    <6>[    0.488487] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    <6>[    0.496495] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    <6>[    0.504394] TCP: Hash tables configured (established 8192 bind 8192)
    <6>[    0.511243] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.518127] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.525663] NET: Registered protocol family 1
    <6>[    0.530737] RPC: Registered named UNIX socket transport module.
    <6>[    0.536835] RPC: Registered udp transport module.
    <6>[    0.541645] RPC: Registered tcp transport module.
    <6>[    0.546454] RPC: Registered tcp NFSv4.1 backchannel transport module.
    <6>[    0.553045] NET: Registered protocol family 44
    <6>[    0.557603] PCI: CLS 0 bytes, default 64
    <6>[    0.562515] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    <5>[    0.575020] Initialise system trusted keyrings
    <6>[    0.579837] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    <6>[    0.591402] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    <5>[    0.598094] NFS: Registering the id_resolver key type
    <5>[    0.603346] Key type id_resolver registered
    <5>[    0.607642] Key type id_legacy registered
    <6>[    0.611843] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    <6>[    0.618708] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    <6>[    0.626518] 9p: Installing v9fs 9p2000 file system support
    <5>[    0.668148] Key type asymmetric registered
    <5>[    0.672372] Asymmetric key parser 'x509' registered
    <6>[    0.677419] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    <6>[    0.684993] io scheduler mq-deadline registered
    <6>[    0.689645] io scheduler kyber registered
    <6>[    0.696210] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    <6>[    0.702575] pinctrl-single f4000.pinctrl: 171 pins, size 684
    <6>[    0.717379] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    <6>[    0.739477] brd: module loaded
    <6>[    0.751914] loop: module loaded
    <6>[    0.756131] megasas: 07.714.04.00-rc1
    <6>[    0.764167] tun: Universal TUN/TAP device driver, 1.6
    <6>[    0.770017] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    <6>[    0.776466] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    <6>[    0.782591] sky2: driver version 1.30
    <6>[    0.787492] VFIO - User Level meta-driver version: 0.3
    <6>[    0.794018] i2c /dev entries driver
    <6>[    0.799677] sdhci: Secure Digital Host Controller Interface driver
    <6>[    0.806045] sdhci: Copyright(c) Pierre Ossman
    <6>[    0.810888] sdhci-pltfm: SDHCI platform and OF driver helper
    <6>[    0.818133] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    <6>[    0.826529] optee: probing for conduit method.
    <6>[    0.831142] optee: revision 3.20 (8e74d476)
    <6>[    0.831459] optee: dynamic shared memory is enabled
    <6>[    0.840992] optee: initialized driver
    <6>[    0.847165] NET: Registered protocol family 17
    <6>[    0.851917] 9pnet: Installing 9P2000 support
    <5>[    0.856411] Key type dns_resolver registered
    <6>[    0.861192] printk: bootconsole [ns16550a0]: printing thread started
    <5>[    0.861244] Loading compiled-in X.509 certificates
    <4>[    0.874706] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    <6>[    0.874754] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    <3>[    0.941380] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <6>[    0.944134] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    <4>[    0.944154] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    <6>[    0.972476] VDD_CORE: Bringing 750000uV into 850000-850000uV
    <6>[    0.973326] VDD_CORE: supplied by vcc_5v0
    <6>[    0.974136] VCC1V8: supplied by vcc_5v0
    <6>[    0.974950] VDDS_DDR: supplied by vcc_5v0
    <6>[    0.976064] VDDSHV_MCU: supplied by vcc_5v0
    <6>[    0.976408] VDDR_CORE: supplied by VCC1V8
    <6>[    0.977425] VDDA_1V8: supplied by vcc_5v0
    <6>[    0.978145] VDD_PHY_2V5: supplied by vcc_5v0
    <4>[    0.980020] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    <6>[    0.980238] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    <6>[    0.982763] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    <6>[    1.010674] rtc-s35390a 2-0030: registered as rtc0
    <6>[    1.011715] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:24:33 UTC (1694665473)
    <6>[    1.011787] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    <6>[    1.012269] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    <6>[    1.012429] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    <6>[    1.012718] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    <6>[    1.014069] ti-udma 485c0100.dma-controller: Number of rings: 82
    <6>[    1.016435] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    <6>[    1.019325] ti-udma 485c0000.dma-controller: Number of rings: 150
    <6>[    1.023715] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    <6>[    1.026521] printk: console [ttyS2] disabled
    <6>[    1.032069] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 27, base_baud = 3000000) is a 8250
    <6>[    1.037155] printk: console [ttyS2]: printing thread started
    <6>[    1.037173] printk: console [ttyS2] enabled
    <6>[    1.037177] printk: bootconsole [ns16550a0] disabled
    <6>[    1.057160] printk: bootconsole [ns16550a0]: printing thread stopped
    <4>[    1.058323] panel-simple display0: Specify missing connector_type
    <6>[    1.070181] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    <6>[    1.106839] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    <6>[    1.108722] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    <6>[    1.108740] davinci_mdio 8000f00.mdio: phy[1]: device 8000f00.mdio:01, driver unknown
    <6>[    1.108862] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    <3>[    1.109151] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    <6>[    1.109160] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    <6>[    1.109166] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    <6>[    1.110008] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    <6>[    1.111164] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    <6>[    1.115435] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    <7>[    1.220551] mmc1: sdhci: Version:   0x00001004 | Present:  0x01f70000
    <7>[    1.220571] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <7>[    1.220629] mmc1: sdhci: Auto-CMD23 available
    <6>[    1.220656] mmc1: CQHCI version 5.10
    <7>[    1.220669] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-mmc-hs
    <7>[    1.220686] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-ddr52
    <7>[    1.220693] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs200
    <7>[    1.220698] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs400
    <7>[    1.221168] mmc0: sdhci: Version:   0x00001004 | Present:  0x013f0040
    <7>[    1.221186] mmc0: sdhci: Caps:      0x7decc801 | Caps_1:   0x18002407
    <7>[    1.221240] mmc0: sdhci: Auto-CMD23 available
    <7>[    1.221615] mmc1: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.222132] mmc0: CQHCI version 5.10
    <7>[    1.222167] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sd-hs
    <7>[    1.222182] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr12
    <7>[    1.222194] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr25
    <7>[    1.222201] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr50
    <7>[    1.222233] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr104
    <7>[    1.222239] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-ddr50
    <7>[    1.222248] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-hs400
    <3>[    1.222657] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <7>[    1.223113] mmc0: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.232036] sdhci-am654 fa00000.mmc: mmc_regulator_set_vqmmc: found vmmc voltage range of 3300000-3400000uV
    <7>[    1.232381] sdhci-am654 fa10000.mmc: Initial signal voltage of 1.8v
    <3>[    1.236935] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    <3>[    1.236952] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    <3>[    1.236960] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    <3>[    1.236967] pca953x 1-0022: Error applying setting, reverse things back
    <4>[    1.236984] pca953x: probe of 1-0022 failed with error -22
    <4>[    1.237918] panel-simple display0: Specify missing connector_type
    <7>[    1.237961] sdhci-am654 fa00000.mmc: Initial signal voltage of 3.3v
    <6>[    1.240459] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    <7>[    1.244917] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.250490] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.257520] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    <7>[    1.257885] mmc0: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <7>[    1.258702] mmc0: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <7>[    1.261444] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.263074] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    <7>[    1.263385] mmc1: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <7>[    1.263753] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.264117] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.264184] mmc1: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    <7>[    1.264479] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.266283] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.266910] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.268934] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.269296] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.269657] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.271458] mmc1: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.272418] Console: switching to colour frame buffer device 100x37
    <7>[    1.284626] mmc1: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.284672] mmc1: clock 400000Hz busmode 1 powermode 2 cs 1 Vdd 21 width 1 timing 0
    <7>[    1.287384] mmc1: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.288588] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    <7>[    1.292266] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.292310] mmc0: clock 400000Hz busmode 1 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <7>[    1.295022] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <3>[    1.298937] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    <3>[    1.298993] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    <3>[    1.299061] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    <3>[    1.299588] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    <7>[    1.302726] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.310493] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.313970] ALSA device list:
    <6>[    1.313975]   No soundcards found.
    <7>[    1.317109] mmc1: clock 25000000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.317235] mmc1: clock 25000000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 4 timing 0
    <6>[    1.318876] mmc1: new MMC card at address 0001
    <7>[    1.319775] mmc1: calculated max. discard sectors 26947584 for timeout 134217728 ms
    <6>[    1.319799] mmcblk1: mmc1:0001 Q2J54A 3.64 GiB
    <7>[    1.320101] mmc1: calculated max. discard sectors 26947584 for timeout 134217728 ms
    <6>[    1.320113] mmcblk1boot0: mmc1:0001 Q2J54A partition 1 2.00 MiB
    <7>[    1.320411] mmc1: calculated max. discard sectors 26947584 for timeout 134217728 ms
    <6>[    1.320422] mmcblk1boot1: mmc1:0001 Q2J54A partition 2 2.00 MiB
    <6>[    1.320692] mmcblk1rpmb: mmc1:0001 Q2J54A partition 3 512 KiB, chardev (237:0)
    <6>[    1.323121]  mmcblk1: p1
    <7>[    1.324322] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 0
    <7>[    1.326456] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.326525] mmc0: clock 52000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.326614] mmc0: clock 200000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <6>[    1.328292] mmc0: new HS200 MMC card at address 0001
    <7>[    1.329164] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.329190] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    <7>[    1.329512] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.329524] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    <7>[    1.329820] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.329831] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    <6>[    1.330084] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:1)
    <6>[    1.333177]  mmcblk0: p1 p2 p3 p4
    <6>[    1.408903] EXT4-fs (mmcblk0p3): recovery complete
    <6>[    1.409409] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    1.409448] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    <6>[    1.409524] VFS: Mounted root (ext4 filesystem) on device 179:99.
    <6>[    1.410183] devtmpfs: mounted
    <6>[    1.411683] Freeing unused kernel memory: 1792K
    <6>[    1.411814] Run /sbin/init as init process
    <7>[    1.411817]   with arguments:
    <7>[    1.411818]     /sbin/init
    <7>[    1.411820]   with environment:
    <7>[    1.411822]     HOME=/
    <7>[    1.411823]     TERM=linux
    <6>[    1.529322] NET: Registered protocol family 10
    <6>[    1.530521] Segment Routing with IPv6
    <30>[    1.549453] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    <30>[    1.549931] systemd[1]: Detected architecture arm64.
    <30>[    1.595752] systemd[1]: Set hostname to <am62xx-evm>.
    <5>[    1.889848] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.893661] systemd[1]: Created slice system-getty.slice.
    <5>[    1.919082] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.920640] systemd[1]: Created slice system-serial\x2dgetty.slice.
    <5>[    1.943038] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.944440] systemd[1]: Created slice User and Session Slice.
    <30>[    1.967467] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    <30>[    1.991266] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    <30>[    2.015165] systemd[1]: Reached target Paths.
    <30>[    2.027012] systemd[1]: Reached target Remote File Systems.
    <30>[    2.046987] systemd[1]: Reached target Slices.
    <30>[    2.059004] systemd[1]: Reached target Swap.
    <30>[    2.090424] systemd[1]: Listening on RPCbind Server Activation Socket.
    <30>[    2.115277] systemd[1]: Reached target RPC Port Mapper.
    <30>[    2.140065] systemd[1]: Listening on Process Core Dump Socket.
    <30>[    2.163480] systemd[1]: Listening on initctl Compatibility Named Pipe.
    <30>[    2.190622] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    <30>[    2.191720] systemd[1]: Listening on Journal Socket (/dev/log).
    <30>[    2.219762] systemd[1]: Listening on Journal Socket.
    <30>[    2.231910] systemd[1]: Listening on Network Service Netlink Socket.
    <30>[    2.255731] systemd[1]: Listening on udev Control Socket.
    <30>[    2.279461] systemd[1]: Listening on udev Kernel Socket.
    <30>[    2.304102] systemd[1]: Mounting Huge Pages File System...
    <30>[    2.320281] systemd[1]: Mounting POSIX Message Queue File System...
    <30>[    2.348072] systemd[1]: Mounting Kernel Debug File System...
    <30>[    2.376635] systemd[1]: Mounting Temporary Directory (/tmp)...
    <30>[    2.393779] systemd[1]: Starting Create list of static device nodes for the current kernel...
    <30>[    2.426222] systemd[1]: Starting Start psplash boot splash screen...
    <30>[    2.456156] systemd[1]: Starting RPC Bind...
    <30>[    2.475342] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    <30>[    2.482383] systemd[1]: Starting Journal Service...
    <30>[    2.514160] systemd[1]: Starting Load Kernel Modules...
    <4>[    2.533187] cryptodev: loading out-of-tree module taints kernel.
    <30>[    2.533596] systemd[1]: Starting Remount Root and Kernel File Systems...
    <6>[    2.536023] cryptodev: driver 1.10 loaded.
    <6>[    2.555944] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    <4>[    2.556006] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    <30>[    2.592110] systemd[1]: Starting udev Coldplug all Devices...
    <30>[    2.612606] systemd[1]: Started Start psplash boot splash screen.
    <30>[    2.635868] systemd[1]: Started RPC Bind.
    <30>[    2.651926] systemd[1]: Started Journal Service.
    <46>[    2.878140] systemd-journald[231]: Received client request to flush runtime journal.
    <5>[    2.899525] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    2.912916] random: systemd-journal: uninitialized urandom read (16 bytes read)
    <5>[    3.020759] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    3.936560] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    3.937462] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    3.983207] random: systemd: uninitialized urandom read (16 bytes read)
    <6>[    4.655686] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    <3>[    4.655855] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    <4>[    4.655961] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    <6>[    4.656293] remoteproc remoteproc0: 5000000.m4fss is available
    <4>[    4.679017] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <6>[    4.679050] remoteproc remoteproc0: powering up 5000000.m4fss
    <4>[    4.679090] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <3>[    4.679097] remoteproc remoteproc0: request_firmware failed: -2
    <5>[    5.055027] random: systemd: uninitialized urandom read (16 bytes read)
    <4>[    5.072173] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    <3>[    5.072354] platform 78000000.r5f: configured R5F for IPC-only mode
    <6>[    5.072637] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    <6>[    5.090289] remoteproc remoteproc1: 78000000.r5f is available
    <6>[    5.091435] remoteproc remoteproc1: attaching to 78000000.r5f
    <3>[    5.125025] platform 78000000.r5f: R5F core initialized in IPC-only mode
    <6>[    5.125079]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    <5>[    5.138914] random: crng init done
    <5>[    5.138934] random: 81 urandom warning(s) missed due to ratelimiting
    <6>[    5.169723] virtio_rpmsg_bus virtio0: rpmsg host is online
    <6>[    5.170128]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    <6>[    5.170145] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    <6>[    5.170461] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    <6>[    5.197982] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    <6>[    6.250734] am65-cpsw-nuss 8000000.ethernet eth1: PHY [8000f00.mdio:01] driver [Generic PHY] (irq=POLL)
    <6>[    6.250776] am65-cpsw-nuss 8000000.ethernet eth1: configuring for phy/rgmii-rxid link mode
    <6>[    6.381757] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    <6>[    6.381797] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    <4>[    7.838060] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <6>[    8.008891] EXT4-fs (mmcblk0p4): recovery complete
    <6>[    8.008933] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    8.137614] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <6>[    8.250409] remoteproc remoteproc2: 30074000.pru is available
    <6>[    8.268841] remoteproc remoteproc3: 30078000.pru is available
    <4>[    8.304287] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    <4>[    8.351754] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
    <6>[    8.492755] usbcore: registered new interface driver usbfs
    <6>[    8.494201] usbcore: registered new interface driver hub
    <6>[    8.497363] usbcore: registered new device driver usb
    <6>[    8.516021] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    8.516099] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    <6>[    8.516309] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    8.519548] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    <6>[    8.519821] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    8.519848] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    <6>[    8.519878] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    <6>[    8.544764] hub 1-0:1.0: USB hub found
    <6>[    8.544861] hub 1-0:1.0: 1 port detected
    <6>[    8.553637] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    8.557537] hub 2-0:1.0: USB hub found
    <3>[    8.557622] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    8.576426] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    8.576521] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    <6>[    8.576734] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    8.578261] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    <6>[    8.578517] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    8.578538] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    <6>[    8.578558] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    <6>[    8.580238] hub 3-0:1.0: USB hub found
    <6>[    8.580300] hub 3-0:1.0: 1 port detected
    <6>[    8.589127] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    8.589886] hub 4-0:1.0: USB hub found
    <3>[    8.589921] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    8.834830] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    <6>[    9.027095] hub 3-1:1.0: USB hub found
    <6>[    9.027433] hub 3-1:1.0: 4 ports detected
    <6>[    9.378831] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    <6>[    9.497555] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    <6>[    9.498216] scsi host0: usb-storage 3-1.4:1.0
    <6>[    9.499743] usbcore: registered new interface driver usb-storage
    <6>[    9.508957] usbcore: registered new interface driver uas
    <5>[   10.520160] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    <5>[   10.521576] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    <5>[   10.524077] sd 0:0:0:0: [sda] Write Protect is off
    <7>[   10.524100] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
    <5>[   10.525122] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    <6>[   10.570001]  sda: sda1
    <5>[   10.574098] sd 0:0:0:0: [sda] Attached SCSI removable disk
    <4>[   11.078979] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [   31.798889] tlv71033: disabling
    <6>[   31.798889] tlv71033: disabling
    

    not pull-low CD pin:

    [    0.051101] rcu: Hierarchical SRCU implementation.
    [    0.056557] Platform MSI: msi-controller@1820000 domain created
    [    0.062971] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.072274] EFI services will not be available.
    [    0.077243] smp: Bringing up secondary CPUs ...
    [    0.082682] Detected VIPT I-cache on CPU1
    [    0.086820] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.093859] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.101299] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108862] Detected VIPT I-cache on CPU2
    [    0.112984] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.120021] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    [    0.127440] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.134938] Detected VIPT I-cache on CPU3
    [    0.139064] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.146099] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    [    0.153516] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.160283] smp: Brought up 1 node, 4 CPUs
    [    0.164489] SMP: Total of 4 processors activated.
    [    0.169308] CPU features: detected: 32-bit EL0 Support
    [    0.174570] CPU features: detected: CRC32 instructions
    [    0.187148] CPU: All CPU(s) started at EL2
    [    0.191359] alternatives: patching kernel code
    [    0.197182] devtmpfs: initialized
    [    0.209346] KASLR disabled due to lack of seed
    [    0.214115] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.224093] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    [    0.231584] pinctrl core: initialized pinctrl subsystem
    [    0.237558] DMI not present or invalid.
    [    0.242183] NET: Registered protocol family 16
    [    0.247321] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.254597] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.262543] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.271254] thermal_sys: Registered thermal governor 'step_wise'
    [    0.271880] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.285047] ASID allocator initialised with 65536 entries
    [    0.318718] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.325630] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.332493] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.339356] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.347252] cryptd: max_cpu_qlen set to 1000
    [    0.354874] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.364047] vcc_5v0: supplied by vmain_pd
    [    0.368545] vcc_3v3_sys: supplied by vmain_pd
    [    0.373600] vcc_1v8: supplied by vcc_3v3_sys
    [    0.379266] iommu: Default domain type: Translated
    [    0.384531] vgaarb: loaded
    [    0.387660] SCSI subsystem initialized
    [    0.392043] mc: Linux media interface: v0.10
    [    0.396452] videodev: Linux video capture interface: v2.00
    [    0.402183] pps_core: LinuxPPS API ver. 1 registered
    [    0.407258] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.416607] PTP clock support registered
    [    0.420647] EDAC MC: Ver: 3.0.0
    [    0.424709] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.431939] FPGA manager framework
    [    0.435546] Advanced Linux Sound Architecture Driver Initialized.
    [    0.442764] clocksource: Switched to clocksource arch_sys_counter
    [    0.449244] VFS: Disk quotas dquot_6.6.0
    [    0.453317] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.466469] NET: Registered protocol family 2
    [    0.471181] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.479709] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.488431] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.496436] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    [    0.504338] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.511184] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.518068] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.525600] NET: Registered protocol family 1
    [    0.530683] RPC: Registered named UNIX socket transport module.
    [    0.536780] RPC: Registered udp transport module.
    [    0.541589] RPC: Registered tcp transport module.
    [    0.546398] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.552988] NET: Registered protocol family 44
    [    0.557547] PCI: CLS 0 bytes, default 64
    [    0.562460] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.574978] Initialise system trusted keyrings
    [    0.579799] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.591371] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.598093] NFS: Registering the id_resolver key type
    [    0.603339] Key type id_resolver registered
    [    0.607631] Key type id_legacy registered
    [    0.611817] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.618681] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.626482] 9p: Installing v9fs 9p2000 file system support
    [    0.666749] Key type asymmetric registered
    [    0.670972] Asymmetric key parser 'x509' registered
    [    0.676018] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    [    0.683591] io scheduler mq-deadline registered
    [    0.688245] io scheduler kyber registered
    [    0.694727] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.701142] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.716035] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.738017] brd: module loaded
    [    0.750556] loop: module loaded
    [    0.754804] megasas: 07.714.04.00-rc1
    [    0.762842] tun: Universal TUN/TAP device driver, 1.6
    [    0.768668] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.775111] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.781247] sky2: driver version 1.30
    [    0.786097] VFIO - User Level meta-driver version: 0.3
    [    0.792596] i2c /dev entries driver
    [    0.798229] sdhci: Secure Digital Host Controller Interface driver
    [    0.804592] sdhci: Copyright(c) Pierre Ossman
    [    0.809426] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.816690] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.825108] optee: probing for conduit method.
    [    0.829763] optee: revision 3.20 (8e74d476)
    [    0.830104] optee: dynamic shared memory is enabled
    [    0.839637] optee: initialized driver
    [    0.845746] NET: Registered protocol family 17
    [    0.850536] 9pnet: Installing 9P2000 support
    [    0.855017] Key type dns_resolver registered
    [    0.859810] printk: bootconsole [ns16550a0]: printing thread started
    [    0.859863] Loading compiled-in X.509 certificates
    [    0.873372] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    [    0.873420] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    [    0.940834] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    0.943583] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    [    0.943602] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.972421] VDD_CORE: Bringing 750000uV into 850000-850000uV
    [    0.973271] VDD_CORE: supplied by vcc_5v0
    [    0.974091] VCC1V8: supplied by vcc_5v0
    [    0.974903] VDDS_DDR: supplied by vcc_5v0
    [    0.976011] VDDSHV_MCU: supplied by vcc_5v0
    [    0.976379] VDDR_CORE: supplied by VCC1V8
    [    0.977381] VDDA_1V8: supplied by vcc_5v0
    [    0.978116] VDD_PHY_2V5: supplied by vcc_5v0
    [    0.979974] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    [    0.980188] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.982690] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [ H▒▒1.010629] rtc-s35390a 2-0030: registered as rtc0
    [    1.011670] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:01:42 UTC (1694664102)
    [    1.037138] printk: console [ttyS2]: printing thread started
    [    1.011742] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    [    1.037154] printk: console [ttyS2] enabled
    [    1.037158] printk: bootconsole [ns16550a0] disabled
    [    1.057171] printk: bootconsole [ns16550a0]: printing thread stopped
    [    1.058331] panel-simple display0: Specify missing connector_type
    [    1.070332] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.106783] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.108165] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    [    1.108181] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    [    1.108305] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.108585] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.108595] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.108601] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.109430] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    1.110502] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.114825] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    [    1.220067] mmc1: CQHCI version 5.10
    [    1.220872] mmc0: CQHCI version 5.10
    [    1.222634] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    1.236610] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    [    1.236619] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    [    1.236626] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    [    1.236633] pca953x 1-0022: Error applying setting, reverse things back
    [    1.236650] pca953x: probe of 1-0022 failed with error -22
        1.237622] panel-simple display0: Specify missing connector_type
    [    1.240143] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [    1.261341] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.272304] Console: switching to colour frame buffer device 100x37
    [    1.288470] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [    1.298595] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    [    1.298676] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    [    1.298718] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    [    1.299268] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.312773] ALSA device list:
    [    1.312778]   No soundcards found.
    [    1.394470] mmc0: new HS200 MMC card at address 0001
    [    1.395438] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    [    1.395763] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    [    1.396079] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    [    1.396298] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:0)
    [    1.398038]  mmcblk0: p1 p2 p3 p4
    [    2.740257] sdhci-am654 fa00000.mmc: Power on failed
    [    2.770931] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    2.835300] EXT4-fs (mmcblk0p3): recovery complete
    [    2.835817] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [    2.835855] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    [    2.835930] VFS: Mounted root (ext4 filesystem) on device 179:3.
    [    2.836557] devtmpfs: mounted
    [    2.837974] Freeing unused kernel memory: 1792K
    [    2.838088] Run /sbin/init as init process
    [    2.938600] NET: Registered protocol family 10
    [    2.940067] Segment Routing with IPv6
    [    2.957356] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    2.957841] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    3.011838] systemd[1]: Set hostname to <am62xx-evm>.
    [    3.308413] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.312245] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Created slice system-serial\x2dgett[    3.339034] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.340563] systemd[1]: Created slice system-serial\x2dgetty.slice.
    y.slice.
    [  OK  ] Created slice User and Session Slic[    3.370974] random: systemd: uninitialized urandom read (16 bytes read)
    e.
    [    3.372273] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Started Dispatch Password …ts to [    3.395392] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Console Directory Watch.
    [  OK  ] Started Forward Password R…uests [    3.419251] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    to Wall Directory Watch.
    [  OK  ] Reached target Paths.
    [    3.443113] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Remote File Systems systemd[1]: Reached target Remote File Systems.
    [0m.
    [  OK  ] Reached target Slices.
    [    3.474947] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Swap.
    [    3.486949] systemd[1]: Reached target Swap.
    [  OK  ] Listening on RPCbind Server Activat[    3.518223] systemd[1]: Listening on RPCbind Server Activation Socket.
    ion Socket.
    [  OK  ] Reached target RPC Port Mapper.[    3.539198] systemd[1]: Reached target RPC Port Mapper.
    
    [  OK  ] Listening on Process Core Dump Sock[    3.563984] systemd[1]: Listening on Process Core Dump Socket.
    et.
    [  OK  ] Listening on initctl Compatibility [    3.587478] systemd[1]: Listening on initctl Compatibility Named Pipe.
    Named Pipe.
    [    3.614689] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    3.615805] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket.[    3.643728] systemd[1]: Listening on Journal Socket.
    
    [  OK  ] Listening on Network Service Netlin[    3.663828] systemd[1]: Listening on Network Service Netlink Socket.
    k Socket.
    [  OK  ] Listening on udev Control Socket    3.687683] systemd[1]: Listening on udev Control Socket.
    m.
    [  OK  ] Listening on udev Kernel Socket[    3.711477] systemd[1]: Listening on udev Kernel Socket.
    .
             Mounting Huge Pages File System...[    3.736018] systemd[1]: Mounting Huge Pages File System...
    
             Mounting POSIX Message Queue File System..[    3.763953] systemd[1]: Mounting POSIX Message Queue File System...
    .
             Mounting Kernel Debug File System...
    [    3.791974] systemd[1]: Mounting Kernel Debug File System...
             Mounting Temporary Directory (/tmp)...
    [    3.812463] systemd[1]: Mounting Temporary Directory (/tmp)...
             Starting Create list of st…odes for the curr[    3.829601] systemd[1]: Starting Create list of static device nodes for the current kernel...
    ent kernel...
             Starting Start psplash boot splash screen.[    3.862327] systemd[1]: Starting Start psplash boot splash screen...
    ..
    [    3.888571] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    3.911260] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    3.917876] systemd[1]: Starting Journal Service...
             Starting Journal Service...
             Starting Load Kernel Modules...
    [    3.950007] systemd[1]: Starting Load Kernel Modules...
             Starting Remount Root and Kernel File Systems cryptodev: loading out-of-tree module taints kernel.
    [    3.968487] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    3.970550] cryptodev: driver 1.10 loaded.
    [    3.992105] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    [    3.992174] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    [0m...
             Starting udev Coldplug all Devices...[    4.031913] systemd[1]: Starting udev Coldplug all Devices...
    
    [  OK  ] Started Start psplash boot splash s[    4.063332] systemd[1]: Started Start psplash boot splash screen.
    creen.
    [  OK  ] Started RPC Bind.[    4.087767] systemd[1]: Started RPC Bind.
    
    [  OK  ] Started Journal Service.
    [    4.107893] systemd[1]: Started Journal Service.
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
    [  OK  ] Started Start psplash-syst…progress communication helper.
             Starting Flush Journal to Persistent Storage...
    [    4.317102] systemd-journald[227]: Received client request to flush runtime journal.
    [    4.327382] random: systemd: uninitialized urandom read (16 bytes read)
    [    4.335605] random: systemd-journal: uninitialized urandom read (16 bytes read)
             Starting Apply Kernel Variables...
    [    4.355498] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Reached target Local File Systems (Pre).
             Mounting /media/ram...
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [    5.417915] random: systemd: uninitialized urandom read (16 bytes read)
    [    5.426023] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Created slice system-systemd\x2dbacklight.slice.
    [    5.511266] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Load/Save Screen …ness of backlight:backlight...
    [  OK  ] Started Load/Save Screen B…htness of backlight:backlight.
    [    6.038638] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    6.038946] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [    6.039239] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    [    6.075662] remoteproc remoteproc0: 5000000.m4fss is available
    [    6.077979] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    6.078012] remoteproc remoteproc0: powering up 5000000.m4fss
    [    6.078050] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    6.078059] remoteproc remoteproc0: request_firmware failed: -2
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [    6.310875] random: crng init done
    [    6.310895] random: 77 urandom warning(s) missed due to ratelimiting
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started D-Bus System Message Bus.
             Starting Print notice about GPLv3 packages...
    [    6.435065] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    6.435235] platform 78000000.r5f: configured R5F for IPC-only mode
    [    6.435423] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    6.435832] remoteproc remoteproc1: 78000000.r5f is available
    [    6.435938] remoteproc remoteproc1: attaching to 78000000.r5f
    [    6.444495] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    6.444534]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    [    6.463918] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    6.464257] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    6.464893]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [    6.464907] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    6.491674] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
             Starting IPv6 Packet Filtering Framework...
             Starting IPv4 Packet Filtering Framework...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting telnetd.service...
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started telnetd.service.
    [  OK  ] Reached target Network (Pre).
             Starting LSB: Expand Rootfs of boot device...
             Starting Network Service...
    [  OK  ] Started LSB: Expand Rootfs of boot device.
    [  OK  ] Started Network Service.
             Starting Wait for Network to be Configured...
             Starting Network Name Resolution...
    [  OK  ] Started Login Service.
    [    7.579177] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    [    7.579222] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Permit User Sessions...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            bash
            cifs-utils
            dosfstools
            less
            libdw1
            libelf1
            libreadline8
            parted
    
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Print notice about GPLv3 packages.
    [  OK  ] Started Synchronize System and HW clocks.
    [  OK  ] Found device /dev/mmcblk0p4.
             Mounting /run/media/mmcblk0p4...
    [  OK  ] Found device /dev/mmcblk0p1.
    [    8.879240] EXT4-fs (mmcblk0p4): recovery complete
    [    8.879290] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
             Mounting /run/media/mmcblk0p1...
    [  OK  ] Mounted /run/media/mmcblk0p4.
    [    8.951695] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [    9.173247] remoteproc remoteproc2: 30074000.pru is available
    [    9.189011] remoteproc remoteproc3: 30078000.pru is available
    [    9.209202] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    9.284463] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
             Starting Save/Restore Sound Card State...
    [    9.385649] usbcore: registered new interface driver usbfs
    [    9.386647] usbcore: registered new interface driver hub
    [    9.401224] usbcore: registered new device driver usb
    [  OK  ] Started Save/Restore Sound Card Sta[    9.441588] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    te.
    [    9.441671] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [    9.441958] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    9.442463] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    [    9.443202] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    9.443252] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [    9.443289] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [    9.444755] hub 1-0:1.0: USB hub found
    [    9.444825] hub 1-0:1.0: 1 port detected
    [    9.462648] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    9.471186] hub 2-0:1.0: USB hub found
    [    9.471390] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    9.500471] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    9.500523] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    [  OK  ] Reached target Sound Card.
    [    9.500755] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    9.507101] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    [    9.507347] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    9.507374] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    [    9.507405] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    [    9.508633] hub 3-0:1.0: USB hub found
    [    9.508684] hub 3-0:1.0: 1 port detected
    [    9.517516] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [    9.519398] hub 4-0:1.0: USB hub found
    [    9.519460] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    9.762788] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    [    9.955937] hub 3-1:1.0: USB hub found
    [    9.956263] hub 3-1:1.0: 4 ports detected
    [   10.306780] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    [   10.424653] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    [   10.425299] scsi host0: usb-storage 3-1.4:1.0
    [   10.425824] usbcore: registered new interface driver usb-storage
    [   10.431958] usbcore: registered new interface driver uas
    [   11.448082] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    [   11.449129] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    [   11.451170] sd 0:0:0:0: [sda] Write Protect is off
    [   11.455467] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [   11.497566]  sda: sda1
    [   11.501585] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [  OK  ] Found device Ultra_Fit 1.
             Mounting /run/media/sda1...
    [   12.014051] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/sda1.
    [   12.854767] mmc1: Timeout waiting for hardware cmd interrupt.
    [   12.854791] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   12.854795] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   12.854804] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   12.854808] mmc1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    [   12.854815] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   12.854819] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   12.854823] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   12.854826] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   12.854830] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   12.854834] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [   12.854838] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   12.854841] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    [   12.854846] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [   12.854849] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [   12.854853] mmc1: sdhci: Host ctl2: 0x00000000
    [   12.854856] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [   12.854860] mmc1: sdhci: ============================================
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project am62xx-evm ttyS2
    
    Arago 2021.09 am62xx-evm ttyS2
    
    am62xx-evm login: root
    root@am62xx-evm:~# cat /proc/kmsg
    <6>[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    <5>[    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Thu Sep 14 07:40:35 UTC 2023
    <6>[    0.000000] Machine model: Texas Instruments AM625 SK
    <6>[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    <6>[    0.000000] printk: bootconsole [ns16550a0] enabled
    <6>[    0.000000] efi: UEFI not found.
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    <6>[    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    <6>[    0.000000] Zone ranges:
    <6>[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000bfffffff]
    <6>[    0.000000]   DMA32    empty
    <6>[    0.000000]   Normal   empty
    <6>[    0.000000] Movable zone start for each node
    <6>[    0.000000] Early memory node ranges
    <6>[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    <6>[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000bfffffff]
    <6>[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    <7>[    0.000000] On node 0 totalpages: 262144
    <7>[    0.000000]   DMA zone: 4096 pages used for memmap
    <7>[    0.000000]   DMA zone: 0 pages reserved
    <7>[    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    <3>[    0.000000] cma: Failed to reserve 512 MiB
    <6>[    0.000000] psci: probing for conduit method from DT.
    <6>[    0.000000] psci: PSCIv1.1 detected in firmware.
    <6>[    0.000000] psci: Using standard PSCI v0.2 function IDs
    <6>[    0.000000] psci: Trusted OS migration not required
    <6>[    0.000000] psci: SMC Calling Convention v1.2
    <6>[    0.000000] percpu: Embedded 18 pages/cpu s35968 r8192 d29568 u73728
    <7>[    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    <7>[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    <6>[    0.000000] Detected VIPT I-cache on CPU0
    <6>[    0.000000] CPU features: detected: ARM erratum 845719
    <6>[    0.000000] CPU features: detected: GIC system register CPU interface
    <6>[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    <5>[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ef21face-03 rw rootfstype=ext4 rootwait
    <6>[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    <6>[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    <6>[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    <6>[    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4312K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    <6>[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    <6>[    0.000000] rcu: Preemptible hierarchical RCU implementation.
    <6>[    0.000000] rcu:  RCU event tracing is enabled.
    <6>[    0.000000] rcu:  RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    <6>[    0.000000] rcu:  RCU priority boosting: priority 1 delay 500 ms.
    <6>[    0.000000] rcu:  RCU_SOFTIRQ processing moved to rcuc kthreads.
    <6>[    0.000000]       No expedited grace period (rcu_normal_after_boot).
    <6>[    0.000000]       Trampoline variant of Tasks RCU enabled.
    <6>[    0.000000]       Tracing variant of Tasks RCU enabled.
    <6>[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    <6>[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    <6>[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    <6>[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    <6>[    0.000000] GICv3: 256 SPIs implemented
    <6>[    0.000000] GICv3: 0 Extended SPIs implemented
    <6>[    0.000000] GICv3: Distributor has no Range Selector support
    <6>[    0.000000] GICv3: 16 PPIs implemented
    <6>[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    <6>[    0.000000] ITS [mem 0x01820000-0x0182ffff]
    <6>[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    <4>[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    <6>[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    <6>[    0.000000] ITS: using cache flushing for cmd queue
    <6>[    0.000000] GICv3: using LPI property table @0x0000000080030000
    <6>[    0.000000] GIC: using cache flushing for LPI property table
    <6>[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    <6>[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    <6>[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    <6>[    0.000000] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    <6>[    0.008547] Console: colour dummy device 80x25
    <6>[    0.013145] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    <6>[    0.023827] pid_max: default: 32768 minimum: 301
    <6>[    0.028654] LSM: Security Framework initializing
    <6>[    0.033444] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.041018] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.051101] rcu: Hierarchical SRCU implementation.
    <6>[    0.056557] Platform MSI: msi-controller@1820000 domain created
    <6>[    0.062971] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    <6>[    0.072274] EFI services will not be available.
    <6>[    0.077243] smp: Bringing up secondary CPUs ...
    <6>[    0.082682] Detected VIPT I-cache on CPU1
    <6>[    0.086820] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    <6>[    0.093859] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    <6>[    0.101299] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    <6>[    0.108862] Detected VIPT I-cache on CPU2
    <6>[    0.112984] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    <6>[    0.120021] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    <6>[    0.127440] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    <6>[    0.134938] Detected VIPT I-cache on CPU3
    <6>[    0.139064] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    <6>[    0.146099] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    <6>[    0.153516] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    <6>[    0.160283] smp: Brought up 1 node, 4 CPUs
    <6>[    0.164489] SMP: Total of 4 processors activated.
    <6>[    0.169308] CPU features: detected: 32-bit EL0 Support
    <6>[    0.174570] CPU features: detected: CRC32 instructions
    <6>[    0.187148] CPU: All CPU(s) started at EL2
    <6>[    0.191359] alternatives: patching kernel code
    <6>[    0.197182] devtmpfs: initialized
    <4>[    0.209346] KASLR disabled due to lack of seed
    <6>[    0.214115] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    <6>[    0.224093] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    <6>[    0.231584] pinctrl core: initialized pinctrl subsystem
    <6>[    0.237558] DMI not present or invalid.
    <6>[    0.242183] NET: Registered protocol family 16
    <6>[    0.247321] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    <6>[    0.254597] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    <6>[    0.262543] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    <6>[    0.271254] thermal_sys: Registered thermal governor 'step_wise'
    <6>[    0.271880] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    <6>[    0.285047] ASID allocator initialised with 65536 entries
    <6>[    0.318718] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    <6>[    0.325630] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    <6>[    0.332493] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    <6>[    0.339356] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    <6>[    0.347252] cryptd: max_cpu_qlen set to 1000
    <6>[    0.354874] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    <6>[    0.364047] vcc_5v0: supplied by vmain_pd
    <6>[    0.368545] vcc_3v3_sys: supplied by vmain_pd
    <6>[    0.373600] vcc_1v8: supplied by vcc_3v3_sys
    <6>[    0.379266] iommu: Default domain type: Translated
    <6>[    0.384531] vgaarb: loaded
    <5>[    0.387660] SCSI subsystem initialized
    <6>[    0.392043] mc: Linux media interface: v0.10
    <6>[    0.396452] videodev: Linux video capture interface: v2.00
    <6>[    0.402183] pps_core: LinuxPPS API ver. 1 registered
    <6>[    0.407258] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    <6>[    0.416607] PTP clock support registered
    <6>[    0.420647] EDAC MC: Ver: 3.0.0
    <6>[    0.424709] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    <6>[    0.431939] FPGA manager framework
    <6>[    0.435546] Advanced Linux Sound Architecture Driver Initialized.
    <6>[    0.442764] clocksource: Switched to clocksource arch_sys_counter
    <5>[    0.449244] VFS: Disk quotas dquot_6.6.0
    <6>[    0.453317] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    <6>[    0.466469] NET: Registered protocol family 2
    <6>[    0.471181] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    <6>[    0.479709] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    <6>[    0.488431] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    <6>[    0.496436] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    <6>[    0.504338] TCP: Hash tables configured (established 8192 bind 8192)
    <6>[    0.511184] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.518068] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.525600] NET: Registered protocol family 1
    <6>[    0.530683] RPC: Registered named UNIX socket transport module.
    <6>[    0.536780] RPC: Registered udp transport module.
    <6>[    0.541589] RPC: Registered tcp transport module.
    <6>[    0.546398] RPC: Registered tcp NFSv4.1 backchannel transport module.
    <6>[    0.552988] NET: Registered protocol family 44
    <6>[    0.557547] PCI: CLS 0 bytes, default 64
    <6>[    0.562460] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    <5>[    0.574978] Initialise system trusted keyrings
    <6>[    0.579799] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    <6>[    0.591371] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    <5>[    0.598093] NFS: Registering the id_resolver key type
    <5>[    0.603339] Key type id_resolver registered
    <5>[    0.607631] Key type id_legacy registered
    <6>[    0.611817] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    <6>[    0.618681] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    <6>[    0.626482] 9p: Installing v9fs 9p2000 file system support
    <5>[    0.666749] Key type asymmetric registered
    <5>[    0.670972] Asymmetric key parser 'x509' registered
    <6>[    0.676018] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    <6>[    0.683591] io scheduler mq-deadline registered
    <6>[    0.688245] io scheduler kyber registered
    <6>[    0.694727] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    <6>[    0.701142] pinctrl-single f4000.pinctrl: 171 pins, size 684
    <6>[    0.716035] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    <6>[    0.738017] brd: module loaded
    <6>[    0.750556] loop: module loaded
    <6>[    0.754804] megasas: 07.714.04.00-rc1
    <6>[    0.762842] tun: Universal TUN/TAP device driver, 1.6
    <6>[    0.768668] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    <6>[    0.775111] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    <6>[    0.781247] sky2: driver version 1.30
    <6>[    0.786097] VFIO - User Level meta-driver version: 0.3
    <6>[    0.792596] i2c /dev entries driver
    <6>[    0.798229] sdhci: Secure Digital Host Controller Interface driver
    <6>[    0.804592] sdhci: Copyright(c) Pierre Ossman
    <6>[    0.809426] sdhci-pltfm: SDHCI platform and OF driver helper
    <6>[    0.816690] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    <6>[    0.825108] optee: probing for conduit method.
    <6>[    0.829763] optee: revision 3.20 (8e74d476)
    <6>[    0.830104] optee: dynamic shared memory is enabled
    <6>[    0.839637] optee: initialized driver
    <6>[    0.845746] NET: Registered protocol family 17
    <6>[    0.850536] 9pnet: Installing 9P2000 support
    <5>[    0.855017] Key type dns_resolver registered
    <6>[    0.859810] printk: bootconsole [ns16550a0]: printing thread started
    <5>[    0.859863] Loading compiled-in X.509 certificates
    <4>[    0.873372] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    <6>[    0.873420] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    <3>[    0.940834] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <6>[    0.943583] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    <4>[    0.943602] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    <6>[    0.972421] VDD_CORE: Bringing 750000uV into 850000-850000uV
    <6>[    0.973271] VDD_CORE: supplied by vcc_5v0
    <6>[    0.974091] VCC1V8: supplied by vcc_5v0
    <6>[    0.974903] VDDS_DDR: supplied by vcc_5v0
    <6>[    0.976011] VDDSHV_MCU: supplied by vcc_5v0
    <6>[    0.976379] VDDR_CORE: supplied by VCC1V8
    <6>[    0.977381] VDDA_1V8: supplied by vcc_5v0
    <6>[    0.978116] VDD_PHY_2V5: supplied by vcc_5v0
    <4>[    0.979974] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    <6>[    0.980188] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    <6>[    0.982690] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    <6>[    1.010629] rtc-s35390a 2-0030: registered as rtc0
    <6>[    1.011670] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:01:42 UTC (1694664102)
    <6>[    1.011742] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    <6>[    1.012219] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    <6>[    1.012382] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    <6>[    1.012673] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    <6>[    1.014033] ti-udma 485c0100.dma-controller: Number of rings: 82
    <6>[    1.016405] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    <6>[    1.019306] ti-udma 485c0000.dma-controller: Number of rings: 150
    <6>[    1.023663] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    <6>[    1.026484] printk: console [ttyS2] disabled
    <6>[    1.032057] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 27, base_baud = 3000000) is a 8250
    <6>[    1.037138] printk: console [ttyS2]: printing thread started
    <6>[    1.037154] printk: console [ttyS2] enabled
    <6>[    1.037158] printk: bootconsole [ns16550a0] disabled
    <6>[    1.057171] printk: bootconsole [ns16550a0]: printing thread stopped
    <4>[    1.058331] panel-simple display0: Specify missing connector_type
    <6>[    1.070332] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    <6>[    1.106783] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    <3>[    1.108165] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    <6>[    1.108181] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    <6>[    1.108305] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    <3>[    1.108585] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    <6>[    1.108595] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    <6>[    1.108601] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    <6>[    1.109430] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    <6>[    1.110502] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    <6>[    1.114825] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    <7>[    1.219960] mmc1: sdhci: Version:   0x00001004 | Present:  0x01f20000
    <7>[    1.219980] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <7>[    1.220040] mmc1: sdhci: Auto-CMD23 available
    <6>[    1.220067] mmc1: CQHCI version 5.10
    <7>[    1.220080] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-mmc-hs
    <7>[    1.220097] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-ddr52
    <7>[    1.220104] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs200
    <7>[    1.220109] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs400
    <7>[    1.220358] mmc0: sdhci: Version:   0x00001004 | Present:  0x013f0040
    <7>[    1.220368] mmc0: sdhci: Caps:      0x7decc801 | Caps_1:   0x18002407
    <7>[    1.220416] mmc0: sdhci: Auto-CMD23 available
    <6>[    1.220872] mmc0: CQHCI version 5.10
    <7>[    1.220902] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sd-hs
    <7>[    1.220915] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr12
    <7>[    1.220922] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr25
    <7>[    1.220929] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr50
    <7>[    1.220939] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr104
    <7>[    1.220944] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-ddr50
    <7>[    1.220954] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-hs400
    <7>[    1.221059] mmc1: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.221607] mmc0: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 7 width 1 timing 0
    <3>[    1.222634] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <7>[    1.236194] sdhci-am654 fa10000.mmc: Initial signal voltage of 1.8v
    <3>[    1.236610] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    <3>[    1.236619] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    <3>[    1.236626] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    <3>[    1.236633] pca953x 1-0022: Error applying setting, reverse things back
    <4>[    1.236650] pca953x: probe of 1-0022 failed with error -22
    <4>[    1.237622] panel-simple display0: Specify missing connector_type
    <6>[    1.240143] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    <7>[    1.248738] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.261341] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    <7>[    1.261697] mmc0: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <7>[    1.262523] mmc0: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <7>[    1.265281] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.267308] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.267674] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.268036] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.269847] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.272304] Console: switching to colour frame buffer device 100x37
    <6>[    1.288470] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    <3>[    1.298595] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    <3>[    1.298676] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    <3>[    1.298718] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    <7>[    1.298857] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.298934] mmc0: clock 400000Hz busmode 1 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <3>[    1.299268] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    <7>[    1.310776] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.312773] ALSA device list:
    <6>[    1.312778]   No soundcards found.
    <7>[    1.346770] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.390629] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 0
    <7>[    1.392688] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.392727] mmc0: clock 52000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.392804] mmc0: clock 200000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <6>[    1.394470] mmc0: new HS200 MMC card at address 0001
    <7>[    1.395412] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.395438] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    <7>[    1.395746] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.395763] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    <7>[    1.396069] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.396079] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    <6>[    1.396298] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:0)
    <6>[    1.398038]  mmcblk0: p1 p2 p3 p4
    <4>[    2.740257] sdhci-am654 fa00000.mmc: Power on failed
    <7>[    2.740297] sdhci-am654 fa00000.mmc: mmc_regulator_set_vqmmc: found vmmc voltage range of 3300000-3400000uV
    <7>[    2.745840] sdhci-am654 fa00000.mmc: Initial signal voltage of 3.3v
    <7>[    2.758363] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    2.770931] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    <7>[    2.771279] mmc1: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <6>[    2.835300] EXT4-fs (mmcblk0p3): recovery complete
    <6>[    2.835817] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    2.835855] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    <6>[    2.835930] VFS: Mounted root (ext4 filesystem) on device 179:3.
    <6>[    2.836557] devtmpfs: mounted
    <6>[    2.837974] Freeing unused kernel memory: 1792K
    <6>[    2.838088] Run /sbin/init as init process
    <7>[    2.838091]   with arguments:
    <7>[    2.838093]     /sbin/init
    <7>[    2.838095]   with environment:
    <7>[    2.838098]     HOME=/
    <7>[    2.838100]     TERM=linux
    <6>[    2.938600] NET: Registered protocol family 10
    <6>[    2.940067] Segment Routing with IPv6
    <30>[    2.957356] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    <30>[    2.957841] systemd[1]: Detected architecture arm64.
    <30>[    3.011838] systemd[1]: Set hostname to <am62xx-evm>.
    <5>[    3.308413] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    3.312245] systemd[1]: Created slice system-getty.slice.
    <5>[    3.339034] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    3.340563] systemd[1]: Created slice system-serial\x2dgetty.slice.
    <5>[    3.370974] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    3.372273] systemd[1]: Created slice User and Session Slice.
    <30>[    3.395392] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    <30>[    3.419251] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    <30>[    3.443113] systemd[1]: Reached target Paths.
    <30>[    3.454983] systemd[1]: Reached target Remote File Systems.
    <30>[    3.474947] systemd[1]: Reached target Slices.
    <30>[    3.486949] systemd[1]: Reached target Swap.
    <30>[    3.518223] systemd[1]: Listening on RPCbind Server Activation Socket.
    <30>[    3.539198] systemd[1]: Reached target RPC Port Mapper.
    <30>[    3.563984] systemd[1]: Listening on Process Core Dump Socket.
    <30>[    3.587478] systemd[1]: Listening on initctl Compatibility Named Pipe.
    <30>[    3.614689] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    <30>[    3.615805] systemd[1]: Listening on Journal Socket (/dev/log).
    <30>[    3.643728] systemd[1]: Listening on Journal Socket.
    <30>[    3.663828] systemd[1]: Listening on Network Service Netlink Socket.
    <30>[    3.687683] systemd[1]: Listening on udev Control Socket.
    <30>[    3.711477] systemd[1]: Listening on udev Kernel Socket.
    <30>[    3.736018] systemd[1]: Mounting Huge Pages File System...
    <30>[    3.763953] systemd[1]: Mounting POSIX Message Queue File System...
    <30>[    3.791974] systemd[1]: Mounting Kernel Debug File System...
    <30>[    3.812463] systemd[1]: Mounting Temporary Directory (/tmp)...
    <30>[    3.829601] systemd[1]: Starting Create list of static device nodes for the current kernel...
    <30>[    3.862327] systemd[1]: Starting Start psplash boot splash screen...
    <30>[    3.888571] systemd[1]: Starting RPC Bind...
    <30>[    3.911260] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    <30>[    3.917876] systemd[1]: Starting Journal Service...
    <30>[    3.950007] systemd[1]: Starting Load Kernel Modules...
    <4>[    3.968392] cryptodev: loading out-of-tree module taints kernel.
    <30>[    3.968487] systemd[1]: Starting Remount Root and Kernel File Systems...
    <6>[    3.970550] cryptodev: driver 1.10 loaded.
    <6>[    3.992105] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    <4>[    3.992174] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    <30>[    4.031913] systemd[1]: Starting udev Coldplug all Devices...
    <30>[    4.063332] systemd[1]: Started Start psplash boot splash screen.
    <30>[    4.087767] systemd[1]: Started RPC Bind.
    <30>[    4.107893] systemd[1]: Started Journal Service.
    <46>[    4.317102] systemd-journald[227]: Received client request to flush runtime journal.
    <5>[    4.327382] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    4.335605] random: systemd-journal: uninitialized urandom read (16 bytes read)
    <5>[    4.355498] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    5.417915] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    5.426023] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    5.511266] random: systemd: uninitialized urandom read (16 bytes read)
    <6>[    6.038638] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    <3>[    6.038946] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    <4>[    6.039239] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    <6>[    6.075662] remoteproc remoteproc0: 5000000.m4fss is available
    <4>[    6.077979] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <6>[    6.078012] remoteproc remoteproc0: powering up 5000000.m4fss
    <4>[    6.078050] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <3>[    6.078059] remoteproc remoteproc0: request_firmware failed: -2
    <5>[    6.310875] random: crng init done
    <5>[    6.310895] random: 77 urandom warning(s) missed due to ratelimiting
    <4>[    6.435065] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    <3>[    6.435235] platform 78000000.r5f: configured R5F for IPC-only mode
    <6>[    6.435423] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    <6>[    6.435832] remoteproc remoteproc1: 78000000.r5f is available
    <6>[    6.435938] remoteproc remoteproc1: attaching to 78000000.r5f
    <3>[    6.444495] platform 78000000.r5f: R5F core initialized in IPC-only mode
    <6>[    6.444534]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    <6>[    6.463918] virtio_rpmsg_bus virtio0: rpmsg host is online
    <6>[    6.464257] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    <6>[    6.464893]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    <6>[    6.464907] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    <6>[    6.491674] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    <6>[    7.579177] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    <6>[    7.579222] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    <6>[    8.879240] EXT4-fs (mmcblk0p4): recovery complete
    <6>[    8.879290] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    8.951695] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <6>[    9.173247] remoteproc remoteproc2: 30074000.pru is available
    <6>[    9.189011] remoteproc remoteproc3: 30078000.pru is available
    <4>[    9.209202] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    <4>[    9.284463] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
    <6>[    9.385649] usbcore: registered new interface driver usbfs
    <6>[    9.386647] usbcore: registered new interface driver hub
    <6>[    9.401224] usbcore: registered new device driver usb
    <6>[    9.441588] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    9.441671] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    <6>[    9.441958] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    9.442463] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    <6>[    9.443202] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    9.443252] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    <6>[    9.443289] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    <6>[    9.444755] hub 1-0:1.0: USB hub found
    <6>[    9.444825] hub 1-0:1.0: 1 port detected
    <6>[    9.462648] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    9.471186] hub 2-0:1.0: USB hub found
    <3>[    9.471390] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    9.500471] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    9.500523] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    <6>[    9.500755] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    9.507101] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    <6>[    9.507347] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    9.507374] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    <6>[    9.507405] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    <6>[    9.508633] hub 3-0:1.0: USB hub found
    <6>[    9.508684] hub 3-0:1.0: 1 port detected
    <6>[    9.517516] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    9.519398] hub 4-0:1.0: USB hub found
    <3>[    9.519460] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    9.762788] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    <6>[    9.955937] hub 3-1:1.0: USB hub found
    <6>[    9.956263] hub 3-1:1.0: 4 ports detected
    <6>[   10.306780] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    <6>[   10.424653] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    <6>[   10.425299] scsi host0: usb-storage 3-1.4:1.0
    <6>[   10.425824] usbcore: registered new interface driver usb-storage
    <6>[   10.431958] usbcore: registered new interface driver uas
    <5>[   11.448082] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    <5>[   11.449129] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    <5>[   11.451170] sd 0:0:0:0: [sda] Write Protect is off
    <7>[   11.451192] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
    <5>[   11.455467] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    <6>[   11.497566]  sda: sda1
    <5>[   11.501585] sd 0:0:0:0: [sda] Attached SCSI removable disk
    <4>[   12.014051] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <3>[   12.854767] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[   12.854791] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[   12.854795] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[   12.854804] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   12.854808] mmc1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    <3>[   12.854815] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[   12.854819] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[   12.854823] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[   12.854826] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[   12.854830] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   12.854834] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   12.854838] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   12.854841] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    <3>[   12.854846] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   12.854849] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   12.854853] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   12.854856] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   12.854860] mmc1: sdhci: ============================================
    [   23.094770] mmc1: Timeout waiting for hardware cmd interrupt.
    [   23.094792] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   23.094797] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   23.094806] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   23.094810] mmc1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    [   23.094814] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   23.094820] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   23.094823] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   23.094827] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   23.094831] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   23.094835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [   23.094839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   23.094843] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    [   23.094846] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [   23.094850] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [   23.094854] mmc1: sdhci: Host ctl2: 0x00000000
    [   23.094857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [   23.094861] mmc1: sdhci: ============================================
    <3>[   23.094770] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[   23.094792] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[   23.094797] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[   23.094806] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   23.094810] mmc1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    <3>[   23.094814] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[   23.094820] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[   23.094823] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[   23.094827] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[   23.094831] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   23.094835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   23.094839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   23.094843] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    <3>[   23.094846] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   23.094850] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   23.094854] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   23.094857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   23.094861] mmc1: sdhci: ============================================
    <7>[   23.094959] mmc1: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    [   31.798854] tlv71033: disabling
    <6>[   31.798854] tlv71033: disabling
    [   33.334767] mmc1: Timeout waiting for hardware cmd interrupt.
    [   33.334789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   33.334793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   33.334801] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   33.334805] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   33.334767] mmc1: Timeout waiting for hardware cmd interru[   33.334809] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    pt.
    <3>[   33.334789] mmc1: sdhci: ============ SDHCI REGISTER [   33.334813] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    DUMP ===========
    <3>[   33.334793] mmc1: sdhci: Sys addr:  0x00[   33.334818] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    000000 | Version:  0x00001004
    <3>[   33.334801] mmc1: sdhci: Bl[   33.334823] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   33.334805] mm[   33.334827] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   [   33.334831] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    33.334809] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[   33.334834] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    0001
    <3>[   33.334813] mmc1: sdhci: Power:     0x0000000e | Blk[   33.334838] mmc1: sdhci: Cmd:       0x00000000 | Max curr: 0x00000000
     gap:  0x00000080
    <3>[   33.334818] mmc1: sdhci: Wake-up:   0x0[   33.334842] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    0000000 | Clock:    0x0000fa07
    <3>[   33.334823] mmc1: sdhci: T[   33.334846] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[   33.334827] m[   33.334850] mmc1: sdhci: Host ctl2: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [   33.334854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
     33.334831] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[   33.334858] mmc1: sdhci: ============================================
    00000
    <3>[   33.334834] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   33.334838] mmc1: sdhci: Cmd:       0x00000000 | Max curr: 0x00000000
    <3>[   33.334842] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   33.334846] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   33.334850] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   33.334854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   33.334858] mmc1: sdhci: ============================================
    <7>[   33.336209] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [   43.574782] mmc1: Timeout waiting for hardware cmd interrupt.
    [   43.574806] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   43.574810] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   43.574819] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   43.574782] mmc1: Timeout waiting for hardware cmd interru[   43.574825] mmc1: sdhci: Argument:  0x000001aa | Trn mode: 0x00000000
    pt.
    [   43.574829] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   43.574833] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   43.574837] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   43.574841] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   43.574844] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   43.574848] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   43.574806] mmc1: sdhci: ============ SDHCI REGISTER DUMP [   43.574852] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    ===========
    <3>[   43.574810] mmc1: sdhci: Sys addr:  0x0000000[   43.574856] mmc1: sdhci: Cmd:       0x0000081a | Max curr: 0x00000000
    0 | Version:  0x00001004
    <3>[   43.574819] mmc1: sdhci: Blk siz[   43.574860] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[   43.574825] mmc1: s[   43.574864] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    dhci: Argument:  0x000001aa | Trn mode: 0x00000000
    <3>[   43.57[   43.574867] mmc1: sdhci: Host ctl2: 0x00000000
    [   43.574871] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    
    <3>[   43.574833] mmc1: sdhci: Power:     0x0000000e | Blk gap:[   43.574875] mmc1: sdhci: ============================================
      0x00000080
    <3>[   43.574837] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[   43.574841] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[   43.574844] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   43.574848] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   43.574852] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   43.574856] mmc1: sdhci: Cmd:       0x0000081a | Max curr: 0x00000000
    <3>[   43.574860] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   43.574864] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   43.574867] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   43.574871] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   43.574875] mmc1: sdhci: ============================================
    [   53.814766] mmc1: Timeout waiting for hardware cmd interrupt.
    [   53.814792] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   53.814797] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   53.814806] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   53.814810] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    [   53.814814] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   53.814818] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   53.814821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [   53.814825] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [   53.814831] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [   53.814835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [   53.814839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   53.814843] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    [   53.814847] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [   53.814850] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [   53.814854] mmc1: sdhci: Host ctl2: 0x00000000
    [   53.814857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [   53.814861] mmc1: sdhci: ============================================
    <3>[   53.814766] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[   53.814792] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[   53.814797] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[   53.814806] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   53.814810] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   53.814814] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[   53.814818] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[   53.814821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[   53.814825] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[   53.814831] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   53.814835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   53.814839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   53.814843] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[   53.814847] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   53.814850] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   53.814854] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   53.814857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   53.814861] mmc1: sdhci: ============================================
    <7>[   53.814973] mmc1: req failed (CMD5): -110, retrying...
    [   64.054766] mmc1: Timeout waiting for hardware cmd interrupt.
    [   64.054790] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   64.054794] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   64.054802] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   64.054766] mmc1: Timeout waiting for hardware cmd interru[   64.054806] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [   64.054810] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[   64.054790] mmc1: sdhci: ============ SDHCI REGISTER DUMP [   64.054814] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    ===========
    <3>[   64.054794] mmc1: sdhci: Sys addr:  0x0000000[   64.054819] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    0 | Version:  0x00001004[   64.054822] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    
    <3>[   64.054802] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt[   64.054826] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    :  0x00000000
    <3>[   64.054806] mmc1: sdhci: Argument:  0x00000[   64.054830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    000 | Trn mode: 0x00000000
    <3>[   64.054810] mmc1: sdhci: Prese[   64.054835] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    nt:   0x01f20001 | Host ctl: 0x00000001
    <3>[   64.054814] mmc1:[   64.054839] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    [   64.054843] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
     sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[   64.[   64.054847] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    054819] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa0[   64.054851] mmc1: sdhci: Host ctl2: 0x00000000
    7
    <3>[   64.054822] mmc1: sdhci: Timeout:   0x00000000 | Int st[   64.054854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    at: 0x00000000
    <3>[   64.054826] mmc1: sdhci: Int enab:  0x00ff[   64.054859] mmc1: sdhci: ============================================
    0003 | Sig enab: 0x00ff0003
    <3>[   64.054830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   64.054835] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   64.054839] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[   64.054843] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   64.054847] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   64.054851] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   64.054854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   64.054859] mmc1: sdhci: ============================================
    <7>[   64.054945] mmc1: req failed (CMD5): -110, retrying...
    [   74.294765] mmc1: Timeout waiting for hardware cmd interrupt.
    [   74.294789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   74.294793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   74.294803] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [   74.294807] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   74.294765] mmc1: Timeout waiting for hardware cmd interru[   74.294811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    pt.
    <3>[   74.294789] mmc1: sdhci: ============ SDHCI REGISTER [   74.294815] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   74.294821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    DUMP ===========
    <3>[   74.294793] mmc1: sdhci: Sys addr:  0x00[   74.294825] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    000000 | Version:  0x00001004
    <3>[   74.294803] mmc1: sdhci: Bl[   74.294829] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   74.294807] mm[   74.294832] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   [   74.294836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    74.294811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[   74.294840] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    0001
    <3>[   74.294815] mmc1: sdhci: Power:     0x0000000e | Blk[   74.294844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
     gap:  0x00000080
    <3>[   74.294821] mmc1: sdhci: Wake-up:   0x0[   74.294848] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    0000000 | Clock:    0x0000fa07
    <3>[   74.294825] mmc1: sdhci: T[   74.294851] mmc1: sdhci: Host ctl2: 0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[   74.294829] m[   74.294854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [   74.294859] mmc1: sdhci: ============================================
     74.294832] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   74.294836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   74.294840] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[   74.294844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   74.294848] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   74.294851] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   74.294854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   74.294859] mmc1: sdhci: ============================================
    <7>[   74.294944] mmc1: req failed (CMD5): -110, retrying...
    [   84.534769] mmc1: Timeout waiting for hardware cmd interrupt.
    [   84.534793] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   84.534797] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   84.534806] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   84.534769] mmc1: Timeout waiting for hardware cmd interru[   84.534810] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [   84.534814] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   84.534818] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[   84.534793] mmc1: sdhci: ============ SDHCI REGISTER DUMP [   84.534821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    ===========
    <3>[   84.534797] mmc1: sdhci: Sys addr:  0x0000000[   84.534828] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0 | Version:  0x00001004
    <3>[   84.534806] mmc1: sdhci: Blk siz[   84.534832] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[   84.534810] mmc1: s[   84.534835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    dhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   84.53[   84.534839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [   84.534843] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    
    <3>[   84.534818] mmc1: sdhci: Power:     0x0000000e | Blk gap:[   84.534847] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
      0x00000080
    <3>[   84.534821] mmc1: sdhci: Wake-up:   0x000000[   84.534851] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00 | Clock:    0x0000fa07
    <3>[   84.534828] mmc1: sdhci: Timeou[   84.534854] mmc1: sdhci: Host ctl2: 0x00000000
    t:   0x00000000 | Int stat: 0x00000000
    <3>[   84.534832] mmc1: [   84.534857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   84.5[   84.534862] mmc1: sdhci: ============================================
    34835] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   84.534839] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   84.534843] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[   84.534847] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   84.534851] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   84.534854] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   84.534857] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   84.534862] mmc1: sdhci: ============================================
    [   94.774765] mmc1: Timeout waiting for hardware cmd interrupt.
    [   94.774789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [   94.774793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [   94.774801] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[   94.774765] mmc1: Timeout waiting for hardware cmd interru[   94.774806] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [   94.774810] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [   94.774813] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [   94.774818] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[   94.774789] mmc1: sdhci: ============ SDHCI REGISTER DUMP [   94.774822] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    ===========
    <3>[   94.774793] mmc1: sdhci: Sys addr:  0x0000000[   94.774825] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    0 | Version:  0x00001004
    <3>[   94.774801] mmc1: sdhci: Blk siz[   94.774829] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[   94.774806] mmc1: s[   94.774833] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    dhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[   94.77[   94.774837] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    [   94.774840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    
    <3>[   94.774813] mmc1: sdhci: Power:     0x0000000e | Blk gap:[   94.774844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
      0x00000080
    <3>[   94.774818] mmc1: sdhci: Wake-up:   0x000000[   94.774848] mmc1: sdhci: Host ctl2: 0x00000000
    00 | Clock:    0x0000fa07
    <3>[   94.774822] mmc1: sdhci: Timeou[   94.774852] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    t:   0x00000000 | Int stat: 0x00000000
    <3>[   94.774825] mmc1: [   94.774855] mmc1: sdhci: ============================================
    sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[   94.774829] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[   94.774833] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[   94.774837] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[   94.774840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[   94.774844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[   94.774848] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[   94.774852] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[   94.774855] mmc1: sdhci: ============================================
    [  105.014765] mmc1: Timeout waiting for hardware cmd interrupt.
    [  105.014790] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  105.014793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  105.014765] mmc1: Timeout waiting for hardware cmd interru[  105.014802] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    pt.
    [  105.014805] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  105.014790] mmc1: sdhci: ============ SDHCI REGISTER DUMP [  105.014810] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    ===========
    <3>[  105.014793] mmc1: sdhci: Sys addr:  0x0000000[  105.014814] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    0 | Version:  0x00001004
    <3>[  105.014802] mmc1: sdhci: Blk siz[  105.014818] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[  105.014805] mmc1: s[  105.014821] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    dhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  105.01[  105.014825] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  105.014830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    
    <3>[  105.014814] mmc1: sdhci: Power:     0x0000000e | Blk gap:[  105.014834] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
      0x00000080
    <3>[  105.014818] mmc1: sdhci: Wake-up:   0x000000[  105.014838] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    00 | Clock:    0x0000fa07
    <3>[  105.014821] mmc1: sdhci: Timeou[  105.014842] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    t:   0x00000000 | Int stat: 0x00000000
    <3>[  105.014825] mmc1: [  105.014845] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  105.0[  105.014849] mmc1: sdhci: Host ctl2: 0x00000000
    14830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000[  105.014852] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    
    <3>[  105.014834] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:[  105.014856] mmc1: sdhci: ============================================
       0x18002407
    <3>[  105.014838] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  105.014842] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  105.014845] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  105.014849] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  105.014852] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  105.014856] mmc1: sdhci: ============================================
    [  115.254768] mmc1: Timeout waiting for hardware cmd interrupt.
    [  115.254791] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  115.254795] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  115.254803] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [  115.254808] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    [  115.254811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [  115.254816] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [  115.254819] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [  115.254823] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [  115.254827] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  115.254830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  115.254836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  115.254768] mmc1: Timeout waiting for hardware cmd interru[  115.254840] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    pt.
    <3>[  115.254791] mmc1: sdhci: ============ SDHCI REGISTER [  115.254844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [  115.254848] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [  115.254851] mmc1: sdhci: Host ctl2: 0x00000000
    [  115.254855] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [  115.254859] mmc1: sdhci: ============================================
    DUMP ===========
    <3>[  115.254795] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  115.254803] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  115.254808] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  115.254811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  115.254816] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  115.254819] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[  115.254823] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  115.254827] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  115.254830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  115.254836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  115.254840] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  115.254844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  115.254848] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  115.254851] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  115.254855] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  115.254859] mmc1: sdhci: ============================================
    [  125.494767] mmc1: Timeout waiting for hardware cmd interrupt.
    [  125.494791] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  125.494796] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  125.494804] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [  125.494808] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    [  125.494811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [  125.494815] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [  125.494821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    [  125.494824] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [  125.494829] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  125.494832] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  125.494836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [  125.494840] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    [  125.494844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [  125.494847] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  125.494767] mmc1: Timeout waiting for hardware cmd interru[  125.494851] mmc1: sdhci: Host ctl2: 0x00000000
    pt.
    <3>[  125.494791] mmc1: sdhci: ============ SDHCI REGISTER [  125.494854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    DUMP ===========
    <3>[  125.494796] mmc1: sdhci: Sys addr:  0x00[  125.494859] mmc1: sdhci: ============================================
    000000 | Version:  0x00001004
    <3>[  125.494804] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  125.494808] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  125.494811] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  125.494815] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  125.494821] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[  125.494824] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  125.494829] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  125.494832] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  125.494836] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  125.494840] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  125.494844] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  125.494847] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  125.494851] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  125.494854] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  125.494859] mmc1: sdhci: ============================================
    <7>[  125.494961] mmc1: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [  135.734764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  135.734789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  135.734792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  135.734801] mmc1: sdhci: Blk size:  0x0
                                              <3>[  135.734764] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  135.734789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  135.734792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  135.734801] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  135.734805] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  135.734809] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  135.734813] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  135.734817] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000fa07
    <3>[  135.734821] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  135.734824] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  135.734830] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  135.734834] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  135.734838] mmc1: sdhci: Cmd:       0x00000102 | Max curr: 0x00000000
    <3>[  135.734841] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  135.734845] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  135.734849] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  135.734853] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  135.734857] mmc1: sdhci: ============================================
    <7>[  135.734948] mmc1: clock 0Hz busmode 2 powermode 0 cs 0 Vdd 0 width 1 timing 0
    <7>[  135.736281] mmc1: mmc_rescan_try_freq: trying to init card at 300000 Hz
    <7>[  135.736288] mmc1: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 21 width 1 timing 0
    <4>[  137.248149] sdhci-am654 fa00000.mmc: Power on failed
    <7>[  137.248189] sdhci-am654 fa00000.mmc: mmc_regulator_set_vqmmc: found vmmc voltage range of 3300000-3400000uV
    <7>[  137.253761] sdhci-am654 fa00000.mmc: Initial signal voltage of 3.3v
    <7>[  137.266292] mmc1: clock 300000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <3>[  147.510764] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  147.510783] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  147.510787] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  147.510794] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  147.510798] mmc1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    <3>[  147.510803] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  147.510807] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  147.510813] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  147.510816] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  147.510820] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  147.510824] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  147.510828] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  147.510832] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    <3>[  147.510836] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  147.510839] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  147.510843] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  147.510846] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  147.510850] mmc1: sdhci: ============================================
    <3>[  157.750768] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  157.750789] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  157.750793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  157.750800] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  157.750803] mmc1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    <3>[  157.750807] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  157.750811] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  157.750817] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  157.750821] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  157.750824] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  157.750828] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  157.750832] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  157.750836] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    <3>[  157.750840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  157.750844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  157.750847] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  157.750851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  157.750855] mmc1: sdhci: ============================================
    <7>[  157.750954] mmc1: clock 300000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    <3>[  167.990765] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  167.990782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  167.990787] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  167.990793] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  167.990796] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  167.990800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  167.990804] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  167.990807] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  167.990812] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  167.990816] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  167.990821] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  167.990826] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  167.990830] mmc1: sdhci: Cmd:       0x00000000 | Max curr: 0x00000000
    <3>[  167.990833] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  167.990837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  167.990841] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  167.990845] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  167.990848] mmc1: sdhci: ============================================
    <7>[  167.992197] mmc1: clock 300000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [  178.230763] mmc1: Timeout waiting for hardware cmd interrupt.
    [  178.230777] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  178.230781] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  178.230788] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  178.230763] mmc1: Timeout waiting for hardware cmd interru[  178.230792] mmc1: sdhci: Argument:  0x000001aa | Trn mode: 0x00000000
    pt.
    [  178.230796] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  178.230777] mmc1: sdhci: ============ SDHCI REGISTER DUMP [  178.230800] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [  178.230804] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    [  178.230808] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [  178.230812] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  178.230815] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  178.230821] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [  178.230825] mmc1: sdhci: Cmd:       0x0000081a | Max curr: 0x00000000
    [  178.230829] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [  178.230833] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [  178.230836] mmc1: sdhci: Host ctl2: 0x00000000
    [  178.230840] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [  178.230843] mmc1: sdhci: ============================================
    ===========
    <3>[  178.230781] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  178.230788] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  178.230792] mmc1: sdhci: Argument:  0x000001aa | Trn mode: 0x00000000
    <3>[  178.230796] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  178.230800] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  178.230804] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  178.230808] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  178.230812] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  178.230815] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  178.230821] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  178.230825] mmc1: sdhci: Cmd:       0x0000081a | Max curr: 0x00000000
    <3>[  178.230829] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  178.230833] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  178.230836] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  178.230840] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  178.230843] mmc1: sdhci: ============================================
    [  188.470766] mmc1: Timeout waiting for hardware cmd interrupt.
    [  188.470788] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  188.470793] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  188.470800] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  188.470766] mmc1: Timeout waiting for hardware cmd interru[  188.470804] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [  188.470808] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [  188.470812] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [  188.470816] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    [  188.470820] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [  188.470824] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  188.470829] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  188.470833] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [  188.470837] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    [  188.470841] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [  188.470844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  188.470788] mmc1: sdhci: ============ SDHCI REGISTER DUMP [  188.470848] mmc1: sdhci: Host ctl2: 0x00000000
    ===========
    <3>[  188.470793] mmc1: sdhci: Sys addr:  0x0000000[  188.470851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    0 | Version:  0x00001004
    <3>[  188.470800] mmc1: sdhci: Blk siz[  188.470855] mmc1: sdhci: ============================================
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[  188.470804] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  188.470808] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  188.470812] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  188.470816] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  188.470820] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  188.470824] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  188.470829] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  188.470833] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  188.470837] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[  188.470841] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  188.470844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  188.470848] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  188.470851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  188.470855] mmc1: sdhci: ============================================
    <7>[  188.470942] mmc1: req failed (CMD5): -110, retrying...
    [  198.710764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  198.710782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  198.710786] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  198.710793] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [  198.710796] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    [  198.710800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    [  198.710804] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    [  198.710808] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    [  198.710812] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    [  198.710816] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    [  198.710820] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  198.710824] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    [  198.710828] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    [  198.710834] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    [  198.710837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    [  198.710841] mmc1: sdhci: Host ctl2: 0x00000000
    [  198.710844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    [  198.710848] mmc1: sdhci: ============================================
    <3>[  198.710764] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  198.710782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  198.710786] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  198.710793] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  198.710796] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  198.710800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  198.710804] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  198.710808] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  198.710812] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  198.710816] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  198.710820] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  198.710824] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  198.710828] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[  198.710834] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  198.710837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  198.710841] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  198.710844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  198.710848] mmc1: sdhci: ============================================
    <7>[  198.710931] mmc1: req failed (CMD5): -110, retrying...
    [  208.950762] mmc1: Timeout waiting for hardware cmd interrupt.
    [  208.950779] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  208.950784] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  208.950790] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  208.950762] mmc1: Timeout waiting for hardware cmd interru[  208.950794] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    <3>[  208.950779] mmc1: sdhci: ============ SDHCI REGISTER [  208.950798] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    DUMP ===========
    <3>[  208.950784] mmc1: sdhci: Sys addr:  0x00[  208.950802] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    000000 | Version:  0x00001004
    <3>[  208.950790] mmc1: sdhci: Bl[  208.950805] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  208.950794] mm[  208.950809] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  2[  208.950813] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    08.950798] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  208.950819] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0001
    <3>[  208.950802] mmc1: sdhci: Power:     0x0000000e | Blk[  208.950822] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
     gap:  0x00000080
    <3>[  208.950805] mmc1: sdhci: Wake-up:   0x0[  208.950826] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    0000000 | Clock:    0x00004e47
    <3>[  208.950809] mmc1: sdhci: T[  208.950830] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  208.950813] m[  208.950834] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  208.950837] mmc1: sdhci: Host ctl2: 0x00000000
    208.950819] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  208.950840] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    00000
    <3>[  208.950822] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  208.950844] mmc1: sdhci: ============================================
    ps_1:   0x18002407
    <3>[  208.950826] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[  208.950830] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  208.950834] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  208.950837] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  208.950840] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  208.950844] mmc1: sdhci: ============================================
    <7>[  208.950927] mmc1: req failed (CMD5): -110, retrying...
    [  219.190766] mmc1: Timeout waiting for hardware cmd interrupt.
    [  219.190788] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  219.190792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  219.190766] mmc1: Timeout waiting fo
                                              <3>[  219.190788] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  219.190792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  219.190800] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  219.190804] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  219.190808] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  219.190811] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  219.190815] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  219.190819] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  219.190824] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  219.190828] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  219.190832] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  219.190836] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    <3>[  219.190840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  219.190844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  219.190847] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  219.190850] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  219.190854] mmc1: sdhci: ============================================
    <3>[  229.430764] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  229.430782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  229.430786] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  229.430793] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  229.430797] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  229.430801] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  229.430805] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  229.430808] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  229.430812] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  229.430816] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  229.430820] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  229.430823] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  229.430827] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  229.430831] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  229.430835] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  229.430838] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  229.430842] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  229.430846] mmc1: sdhci: ============================================
    <3>[  239.670765] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  239.670788] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  239.670792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  239.670798] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  239.670802] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  239.670806] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  239.670810] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  239.670814] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  239.670818] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  239.670822] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  239.670825] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  239.670831] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  239.670835] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  239.670839] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  239.670843] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  239.670847] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  239.670850] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  239.670854] mmc1: sdhci: ============================================
    <3>[  249.910766] mmc1: Timeout waiting for hardware cmd interrupt.
    <3>[  249.910788] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  249.910792] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  249.910799] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  249.910803] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  249.910807] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  249.910811] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    <3>[  249.910815] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  249.910819] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    <3>[  249.910823] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  249.910827] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  249.910831] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  249.910837] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  249.910841] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  249.910845] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  249.910848] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  249.910851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  249.910855] mmc1: sdhci: ============================================
    [  260.150764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  260.150784] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  260.150788] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  260.150795] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  260.150764] mmc1: Timeout waiting for hardware cmd interru[  260.150799] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [  260.150802] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  260.150784] mmc1: sdhci: ============ SDHCI REGISTER DUMP [  260.150806] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    ===========
    <3>[  260.150788] mmc1: sdhci: Sys addr:  0x0000000[  260.150810] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    0 | Version:  0x00001004
    <3>[  260.150795] mmc1: sdhci: Blk siz[  260.150813] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    e:  0x00000000 | Blk cnt:  0x00000000
    <3>[  260.150799] mmc1: s[  260.150819] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    dhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  260.15[  260.150823] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    [  260.150827] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    
    <3>[  260.150806] mmc1: sdhci: Power:     0x0000000e | Blk gap:[  260.150831] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
      0x00000080
    <3>[  260.150810] mmc1: sdhci: Wake-up:   0x000000[  260.150834] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    00 | Clock:    0x00004e47
    <3>[  260.150813] mmc1: sdhci: Timeou[  260.150838] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    t:   0x00000000 | Int stat: 0x00000000
    <3>[  260.150819] mmc1: [  260.150841] mmc1: sdhci: Host ctl2: 0x00000000
    sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  260.1[  260.150845] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    50823] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000[  260.150849] mmc1: sdhci: ============================================
    
    <3>[  260.150827] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  260.150831] mmc1: sdhci: Cmd:       0x0000371a | Max curr: 0x00000000
    <3>[  260.150834] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  260.150838] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  260.150841] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  260.150845] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  260.150849] mmc1: sdhci: ============================================
    <7>[  260.150938] mmc1: clock 300000Hz busmode 1 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [  270.390767] mmc1: Timeout waiting for hardware cmd interrupt.
    [  270.390786] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  270.390789] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  270.390795] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  270.390767] mmc1: Timeout waiting for hardware cmd interru[  270.390799] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    pt.
    [  270.390803] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  270.390786] mmc1: sdhci: ============ SDHCI REGISTER DUMP [  270.390806] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    ===========
    [  270.390810] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x00004e47
    <3>[  270.390789] mmc1: sdhci: Sys addr:  0x00000000 | Version: [  270.390814] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
     0x00001004
    <3>[  270.390795] mmc1: sdhci: Blk size:  0x0000000[  270.390818] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    0 | Blk cnt:  0x00000000
    <3>[  270.390799] mmc1: sdhci: Argumen[  270.390821] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    t:  0x00000000 | Trn mode: 0x00000000
    <3>[  270.390803] mmc1: s[  270.390826] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    dhci: Present:   0x01f20001 | Host ctl: 0x00000001
    <3>[  270.39[  270.390830] mmc1: sdhci: Cmd:       0x00000102 | Max curr: 0x00000000
    [  270.390833] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    
    <3>[  270.390810] mmc1: sdhci: Wake-up:   0x00000000 | Clock:  [  270.390837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
      0x00004e47
    <3>[  270.390814] mmc1: sdhci: Timeout:   0x000000[  270.390841] mmc1: sdhci: Host ctl2: 0x00000000
    00 | Int stat: 0x00000000
    <3>[  270.390818] mmc1: sdhci: Int en[  270.390844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    ab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  270.390821] mmc1: [  270.390848] mmc1: sdhci: ============================================
    sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    <3>[  270.390826] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  270.390830] mmc1: sdhci: Cmd:       0x00000102 | Max curr: 0x00000000
    <3>[  270.390833] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  270.390837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  270.390841] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  270.390844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  270.390848] mmc1: sdhci: ============================================
    <7>[  270.390938] mmc1: clock 0Hz busmode 2 powermode 0 cs 0 Vdd 0 width 1 timing 0
    <7>[  270.392266] mmc1: mmc_rescan_try_freq: trying to init card at 200000 Hz
    <7>[  270.392273] mmc1: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 21 width 1 timing 0
    [  271.904263] sdhci-am654 fa00000.mmc: Power on failed
    <4>[  271.904263] sdhci-am654 fa00000.mmc: Power on failed
    <7>[  271.904300] sdhci-am654 fa00000.mmc: mmc_regulator_set_vqmmc: found vmmc voltage range of 3300000-3400000uV
    <7>[  271.909864] sdhci-am654 fa00000.mmc: Initial signal voltage of 3.3v
    <7>[  271.922397] mmc1: clock 200000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [  282.166764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  282.166787] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  282.166791] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  282.166764] mmc1: Timeout waiting for hardware cmd interru[  282.166797] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    pt.
    <3>[  282.166787] mmc1: sdhci: ============ SDHCI REGISTER [  282.166801] mmc1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    DUMP ===========
    <3>[  282.166791] mmc1: sdhci: Sys addr:  0x00[  282.166805] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    000000 | Version:  0x00001004
    <3>[  282.166797] mmc1: sdhci: Bl[  282.166813] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  282.166801] mm[  282.166817] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    c1: sdhci: Argument:  0x00000c00 | Trn mode: 0x00000000
    <3>[  2[  282.166821] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    82.166805] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  282.166825] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    0001
    <3>[  282.166813] mmc1: sdhci: Power:     0x0000000e | Blk[  282.166828] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
     gap:  0x00000080
    <3>[  282.166817] mmc1: sdhci: Wake-up:   0x0[  282.166832] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    0000000 | Clock:    0x0000f447
    <3>[  282.166821] mmc1: sdhci: T[  282.166836] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  282.166825] m[  282.166840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  282.166844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    282.166828] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  282.166848] mmc1: sdhci: Host ctl2: 0x00000000
    00000
    <3>[  282.166832] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  282.166851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    ps_1:   0x18002407
    <3>[  282.166836] mmc1: sdhci: Cmd:       0x[  282.166855] mmc1: sdhci: ============================================
    0000341a | Max curr: 0x00000000
    <3>[  282.166840] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  282.166844] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  282.166848] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  282.166851] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  282.166855] mmc1: sdhci: ============================================
    [  292.406764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  292.406782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  292.406764] mmc1: Timeout waiting for hardware cmd interru[  292.406786] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    pt.
    <3>[  292.406782] mmc1: sdhci: ============ SDHCI REGISTER [  292.406793] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    DUMP ===========
    <3>[  292.406786] mmc1: sdhci: Sys addr:  0x00[  292.406797] mmc1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    000000 | Version:  0x00001004
    <3>[  292.406793] mmc1: sdhci: Bl[  292.406801] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  292.406797] mm[  292.406805] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    c1: sdhci: Argument:  0x80000c08 | Trn mode: 0x00000000
    <3>[  2[  292.406809] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    92.406801] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  292.406814] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0001
    <3>[  292.406805] mmc1: sdhci: Power:     0x0000000e | Blk[  292.406818] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
     gap:  0x00000080
    <3>[  292.406809] mmc1: sdhci: Wake-up:   0x0[  292.406822] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  292.406814] mmc1: sdhci: T[  292.406826] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  292.406818] m[  292.406830] mmc1: sdhci: Cmd:       0x0000341a | Max curr: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  292.406834] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    292.406822] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  292.406837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00000
    <3>[  292.406826] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  292.406841] mmc1: sdhci: Host ctl2: 0x00000000
    ps_1:   0x18002407
    <3>[  292.406830] mmc1: sdhci: Cmd:       0x[  292.406844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    0000341a | Max curr: 0x00000000
    <3>[  292.406834] mmc1: sdhci: [  292.406848] mmc1: sdhci: ============================================
    Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  292.406837] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  292.406841] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  292.406844] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  292.406848] mmc1: sdhci: ============================================
    <7>[  292.406936] mmc1: clock 200000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    [  302.646765] mmc1: Timeout waiting for hardware cmd interrupt.
    [  302.646782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  302.646785] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    [  302.646792] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    [  302.646796] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  302.646765] mmc1: Timeout waiting for hardware cmd interru[  302.646800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    pt.
    <3>[  302.646782] mmc1: sdhci: ============ SDHCI REGISTER [  302.646803] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    DUMP ===========
    <3>[  302.646785] mmc1: sdhci: Sys addr:  0x00[  302.646807] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    000000 | Version:  0x00001004
    <3>[  302.646792] mmc1: sdhci: Bl[  302.646810] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  302.646796] mm[  302.646814] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  3[  302.646820] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    02.646800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  302.646824] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    0001
    <3>[  302.646803] mmc1: sdhci: Power:     0x0000000e | Blk[  302.646828] mmc1: sdhci: Cmd:       0x00000000 | Max curr: 0x00000000
     gap:  0x00000080
    <3>[  302.646807] mmc1: sdhci: Wake-up:   0x0[  302.646831] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  302.646810] mmc1: sdhci: T[  302.646836] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  302.646814] m[  302.646839] mmc1: sdhci: Host ctl2: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  302.646842] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    302.646820] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  302.646846] mmc1: sdhci: ============================================
    00000
    <3>[  302.646824] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <3>[  302.646828] mmc1: sdhci: Cmd:       0x00000000 | Max curr: 0x00000000
    <3>[  302.646831] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  302.646836] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  302.646839] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  302.646842] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  302.646846] mmc1: sdhci: ============================================
    <7>[  302.648192] mmc1: clock 200000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    [  312.886764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  312.886785] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  312.886764] mmc1: Timeout waiting for hardware cmd interru[  312.886789] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    pt.
    <3>[  312.886785] mmc1: sdhci: ============ SDHCI REGISTER [  312.886797] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    DUMP ===========
    <3>[  312.886789] mmc1: sdhci: Sys addr:  0x00[  312.886801] mmc1: sdhci: Argument:  0x000001aa | Trn mode: 0x00000000
    000000 | Version:  0x00001004
    <3>[  312.886797] mmc1: sdhci: Bl[  312.886805] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  312.886801] mm[  312.886810] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    c1: sdhci: Argument:  0x000001aa | Trn mode: 0x00000000
    <3>[  3[  312.886814] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    12.886805] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  312.886819] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0001
    <3>[  312.886810] mmc1: sdhci: Power:     0x0000000e | Blk[  312.886823] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
     gap:  0x00000080
    <3>[  312.886814] mmc1: sdhci: Wake-up:   0x0[  312.886827] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  312.886819] mmc1: sdhci: T[  312.886830] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  312.886823] m[  312.886834] mmc1: sdhci: Cmd:       0x0000081a | Max curr: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  312.886838] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    312.886827] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  312.886842] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00000
    <3>[  312.886830] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  312.886846] mmc1: sdhci: Host ctl2: 0x00000000
    ps_1:   0x18002407
    <3>[  312.886834] mmc1: sdhci: Cmd:       0x[  312.886849] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    0000081a | Max curr: 0x00000000
    <3>[  312.886838] mmc1: sdhci: [  312.886853] mmc1: sdhci: ============================================
    Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  312.886842] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  312.886846] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  312.886849] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  312.886853] mmc1: sdhci: ============================================
    [  323.126764] mmc1: Timeout waiting for hardware cmd interrupt.
    [  323.126784] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  323.126764] mmc1: Timeout waiting for hardware cmd interru[  323.126789] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    pt.
    <3>[  323.126784] mmc1: sdhci: ============ SDHCI REGISTER [  323.126795] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    DUMP ===========
    <3>[  323.126789] mmc1: sdhci: Sys addr:  0x00[  323.126800] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    000000 | Version:  0x00001004
    <3>[  323.126795] mmc1: sdhci: Bl[  323.126804] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  323.126800] mm[  323.126808] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  3[  323.126812] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    23.126804] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  323.126816] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0001
    <3>[  323.126808] mmc1: sdhci: Power:     0x0000000e | Blk[  323.126819] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
     gap:  0x00000080
    <3>[  323.126812] mmc1: sdhci: Wake-up:   0x0[  323.126825] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  323.126816] mmc1: sdhci: T[  323.126829] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  323.126819] m[  323.126833] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  323.126837] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    323.126825] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  323.126841] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00000
    <3>[  323.126829] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  323.126844] mmc1: sdhci: Host ctl2: 0x00000000
    ps_1:   0x18002407
    <3>[  323.126833] mmc1: sdhci: Cmd:       0x[  323.126847] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    00000502 | Max curr: 0x00000000
    <3>[  323.126837] mmc1: sdhci: [  323.126851] mmc1: sdhci: ============================================
    Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  323.126841] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  323.126844] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  323.126847] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  323.126851] mmc1: sdhci: ============================================
    <7>[  323.126936] mmc1: req failed (CMD5): -110, retrying...
    [  333.366763] mmc1: Timeout waiting for hardware cmd interrupt.
    [  333.366782] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    [  333.366786] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    <3>[  333.366763] mmc1: Timeout waiting for hardware cmd interru[  333.366792] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    pt.
    <3>[  333.366782] mmc1: sdhci: ============ SDHCI REGISTER [  333.366796] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    DUMP ===========
    <3>[  333.366786] mmc1: sdhci: Sys addr:  0x00[  333.366800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    000000 | Version:  0x00001004
    <3>[  333.366792] mmc1: sdhci: Bl[  333.366804] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  333.366796] mm[  333.366807] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  3[  333.366811] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    33.366800] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  333.366816] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    0001
    <3>[  333.366804] mmc1: sdhci: Power:     0x0000000e | Blk[  333.366819] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
     gap:  0x00000080
    <3>[  333.366807] mmc1: sdhci: Wake-up:   0x0[  333.366823] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    0000000 | Clock:    0x0000f447
    <3>[  333.366811] mmc1: sdhci: T[  333.366827] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  333.366816] m[  333.366833] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  333.366836] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    333.366819] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  333.366840] mmc1: sdhci: Host ctl2: 0x00000000
    00000
    <3>[  333.366823] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  333.366843] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    ps_1:   0x18002407
    <3>[  333.366827] mmc1: sdhci: Cmd:       0x[  333.366848] mmc1: sdhci: ============================================
    00000502 | Max curr: 0x00000000
    <3>[  333.366833] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  333.366836] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  333.366840] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  333.366843] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  333.366848] mmc1: sdhci: ============================================
    <7>[  333.366928] mmc1: req failed (CMD5): -110, retrying...
    [  343.606765] mmc1: Timeout waiting for hardware cmd interrupt.
    [  343.606787] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  343.606765] mmc1: Timeout waiting for hardware cmd interru[  343.606791] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    pt.
    <3>[  343.606787] mmc1: sdhci: ============ SDHCI REGISTER [  343.606798] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    DUMP ===========
    <3>[  343.606791] mmc1: sdhci: Sys addr:  0x00[  343.606802] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    000000 | Version:  0x00001004
    <3>[  343.606798] mmc1: sdhci: Bl[  343.606806] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  343.606802] mm[  343.606810] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  3[  343.606814] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    43.606806] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  343.606820] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0001
    <3>[  343.606810] mmc1: sdhci: Power:     0x0000000e | Blk[  343.606823] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
     gap:  0x00000080
    <3>[  343.606814] mmc1: sdhci: Wake-up:   0x0[  343.606827] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  343.606820] mmc1: sdhci: T[  343.606831] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  343.606823] m[  343.606834] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  343.606838] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    343.606827] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  343.606843] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00000
    <3>[  343.606831] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  343.606846] mmc1: sdhci: Host ctl2: 0x00000000
    ps_1:   0x18002407
    <3>[  343.606834] mmc1: sdhci: Cmd:       0x[  343.606850] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    00000502 | Max curr: 0x00000000
    <3>[  343.606838] mmc1: sdhci: [  343.606854] mmc1: sdhci: ============================================
    Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  343.606843] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  343.606846] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  343.606850] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  343.606854] mmc1: sdhci: ============================================
    <7>[  343.606938] mmc1: req failed (CMD5): -110, retrying...
    [  353.846766] mmc1: Timeout waiting for hardware cmd interrupt.
    [  353.846785] mmc1: sdhci: ============ SDHCI REGISTER DUMP ===========
    <3>[  353.846766] mmc1: Timeout waiting for hardware cmd interru[  353.846789] mmc1: sdhci: Sys addr:  0x00000000 | Version:  0x00001004
    pt.
    <3>[  353.846785] mmc1: sdhci: ============ SDHCI REGISTER [  353.846796] mmc1: sdhci: Blk size:  0x00000000 | Blk cnt:  0x00000000
    DUMP ===========
    <3>[  353.846789] mmc1: sdhci: Sys addr:  0x00[  353.846799] mmc1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    000000 | Version:  0x00001004
    <3>[  353.846796] mmc1: sdhci: Bl[  353.846803] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x00000001
    k size:  0x00000000 | Blk cnt:  0x00000000
    <3>[  353.846799] mm[  353.846807] mmc1: sdhci: Power:     0x0000000e | Blk gap:  0x00000080
    c1: sdhci: Argument:  0x00000000 | Trn mode: 0x00000000
    <3>[  3[  353.846811] mmc1: sdhci: Wake-up:   0x00000000 | Clock:    0x0000f447
    53.846803] mmc1: sdhci: Present:   0x01f20001 | Host ctl: 0x0000[  353.846815] mmc1: sdhci: Timeout:   0x00000000 | Int stat: 0x00000000
    0001
    <3>[  353.846807] mmc1: sdhci: Power:     0x0000000e | Blk[  353.846818] mmc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
     gap:  0x00000080
    <3>[  353.846811] mmc1: sdhci: Wake-up:   0x0[  353.846824] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x00000000
    0000000 | Clock:    0x0000f447
    <3>[  353.846815] mmc1: sdhci: T[  353.846828] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    imeout:   0x00000000 | Int stat: 0x00000000
    <3>[  353.846818] m[  353.846832] mmc1: sdhci: Cmd:       0x00000502 | Max curr: 0x00000000
    mc1: sdhci: Int enab:  0x00ff0003 | Sig enab: 0x00ff0003
    <3>[  [  353.846836] mmc1: sdhci: Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    353.846824] mmc1: sdhci: ACmd stat: 0x00000000 | Slot int: 0x000[  353.846840] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    00000
    <3>[  353.846828] mmc1: sdhci: Caps:      0x7de8c801 | Ca[  353.846843] mmc1: sdhci: Host ctl2: 0x00000000
    ps_1:   0x18002407
    <3>[  353.846832] mmc1: sdhci: Cmd:       0x[  353.846846] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    00000502 | Max curr: 0x00000000
    <3>[  353.846836] mmc1: sdhci: [  353.846850] mmc1: sdhci: ============================================
    Resp[0]:   0x00000000 | Resp[1]:  0x00000000
    <3>[  353.846840] mmc1: sdhci: Resp[2]:   0x00000000 | Resp[3]:  0x00000000
    <3>[  353.846843] mmc1: sdhci: Host ctl2: 0x00000000
    <3>[  353.846846] mmc1: sdhci: ADMA Err:  0x00000000 | ADMA Ptr: 0x0000000000000000
    <3>[  353.846850] mmc1: sdhci: ============================================
    

    SD card

    U-Boot SPL 2021.01-ge7c2703b4a (Aug 30 2023 - 11:14:55 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    SPL initial stack usage: 13424 bytes
    Trying to boot from MMC1
    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
    Loading Environment from MMC... *** Warning - bad CRC, using default environment
    
    init_env from device 9 not supported!
    Starting ATF on ARM64 core...
    
    NOTICE:  BL31: v2.8(release):v2.8-226-g2fcd408bb3-dirty
    NOTICE:  BL31: Built : 08:24:34, Aug 30 2023
    
    U-Boot SPL 2021.01-ge7c2703b4a (Sep 14 2023 - 07:36:50 +0000)
    SYSFW ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    Trying to boot from MMC1
    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 2021.01-ge7c2703b4a (Sep 14 2023 - 07:36:50 +0000)
    
    SoC:   AM62X SR1.0 GP
    Model: Texas Instruments AM625 SK
    EEPROM not available at 0x50, trying to read at 0x51
    Reading on-board EEPROM at 0x51 failed -19
    DRAM:  1 GiB
    MMC:   mmc@fa10000: 0, mmc@fa00000: 1, mmc@fa20000: 2
    Loading Environment from MMC... OK
    In:    serial@2800000
    Out:   serial@2800000
    Err:   serial@2800000
    Net:   eth0: ethernet@8000000port@1
    Hit any key to stop autoboot:  0
    switch to partitions #0, OK
    mmc0(part 0) is current device
    SD/MMC found on device 0
    Failed to load 'boot.scr'
    1578 bytes read in 2 ms (770.5 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    Running uenvcmd ...
    syntax error
    18940416 bytes read in 124 ms (145.7 MiB/s)
    57545 bytes read in 4 ms (13.7 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 000000008feee000, end 000000008fffffff ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    [    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Thu Sep 14 07:40:35 UTC 2023
    [    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 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-0x00000000bfffffff]
    [    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-0x00000000bfffffff]
    [    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    [    0.000000] On node 0 totalpages: 262144
    [    0.000000]   DMA zone: 4096 pages used for memmap
    [    0.000000]   DMA zone: 0 pages reserved
    [    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    [    0.000000] cma: Failed to reserve 512 MiB
    [    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 18 pages/cpu s35968 r8192 d29568 u73728
    [    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    [    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    [    0.000000] Detected VIPT I-cache on CPU0
    [    0.000000] CPU features: detected: ARM erratum 845719
    [    0.000000] CPU features: detected: GIC system register CPU interface
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    [    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ef21face-03 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    [    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    [    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    [    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4312K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000] rcu:     RCU event tracing is enabled.
    [    0.000000] rcu:     RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    [    0.000000] rcu:     RCU priority boosting: priority 1 delay 500 ms.
    [    0.000000] rcu:     RCU_SOFTIRQ processing moved to rcuc kthreads.
    [    0.000000]  No expedited grace period (rcu_normal_after_boot).
    [    0.000000]  Trampoline variant of Tasks RCU enabled.
    [    0.000000]  Tracing variant of Tasks RCU enabled.
    [    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    [    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    [    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    [    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    [    0.000000] GICv3: 256 SPIs implemented
    [    0.000000] GICv3: 0 Extended SPIs implemented
    [    0.000000] GICv3: Distributor has no Range Selector support
    [    0.000000] GICv3: 16 PPIs implemented
    [    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] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    [    0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    [    0.008547] Console: colour dummy device 80x25
    [    0.013144] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    [    0.023825] pid_max: default: 32768 minimum: 301
    [    0.028649] LSM: Security Framework initializing
    [    0.033440] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.041014] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    [    0.051092] rcu: Hierarchical SRCU implementation.
    [    0.056550] Platform MSI: msi-controller@1820000 domain created
    [    0.062966] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    [    0.072273] EFI services will not be available.
    [    0.077246] smp: Bringing up secondary CPUs ...
    [    0.082679] Detected VIPT I-cache on CPU1
    [    0.086817] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    [    0.093855] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    [    0.101294] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    [    0.108848] Detected VIPT I-cache on CPU2
    [    0.112975] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    [    0.120011] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    [    0.127432] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    [    0.134924] Detected VIPT I-cache on CPU3
    [    0.139048] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    [    0.146082] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    [    0.153501] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    [    0.160272] smp: Brought up 1 node, 4 CPUs
    [    0.164477] SMP: Total of 4 processors activated.
    [    0.169296] CPU features: detected: 32-bit EL0 Support
    [    0.174558] CPU features: detected: CRC32 instructions
    [    0.187124] CPU: All CPU(s) started at EL2
    [    0.191333] alternatives: patching kernel code
    [    0.197161] devtmpfs: initialized
    [    0.209311] KASLR disabled due to lack of seed
    [    0.214080] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    [    0.224059] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    [    0.231562] pinctrl core: initialized pinctrl subsystem
    [    0.237520] DMI not present or invalid.
    [    0.242149] NET: Registered protocol family 16
    [    0.247280] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    [    0.254554] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    [    0.262499] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    [    0.271205] thermal_sys: Registered thermal governor 'step_wise'
    [    0.271827] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    [    0.284999] ASID allocator initialised with 65536 entries
    [    0.318669] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    [    0.325584] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    [    0.332466] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    [    0.339328] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    [    0.347240] cryptd: max_cpu_qlen set to 1000
    [    0.354846] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    [    0.364010] vcc_5v0: supplied by vmain_pd
    [    0.368518] vcc_3v3_sys: supplied by vmain_pd
    [    0.373594] vcc_1v8: supplied by vcc_3v3_sys
    [    0.379241] iommu: Default domain type: Translated
    [    0.384508] vgaarb: loaded
    [    0.387632] SCSI subsystem initialized
    [    0.392008] mc: Linux media interface: v0.10
    [    0.396419] videodev: Linux video capture interface: v2.00
    [    0.402144] pps_core: LinuxPPS API ver. 1 registered
    [    0.407219] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.416568] PTP clock support registered
    [    0.420608] EDAC MC: Ver: 3.0.0
    [    0.424625] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    [    0.431845] FPGA manager framework
    [    0.435450] Advanced Linux Sound Architecture Driver Initialized.
    [    0.442671] clocksource: Switched to clocksource arch_sys_counter
    [    0.449163] VFS: Disk quotas dquot_6.6.0
    [    0.453236] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [    0.466334] NET: Registered protocol family 2
    [    0.471059] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    [    0.479617] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    [    0.488326] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    [    0.496335] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    [    0.504234] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.511084] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.517967] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    [    0.525493] NET: Registered protocol family 1
    [    0.530586] RPC: Registered named UNIX socket transport module.
    [    0.536682] RPC: Registered udp transport module.
    [    0.541492] RPC: Registered tcp transport module.
    [    0.546300] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.552892] NET: Registered protocol family 44
    [    0.557451] PCI: CLS 0 bytes, default 64
    [    0.562351] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    [    0.574858] Initialise system trusted keyrings
    [    0.579675] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    [    0.591257] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.597892] NFS: Registering the id_resolver key type
    [    0.603143] Key type id_resolver registered
    [    0.607435] Key type id_legacy registered
    [    0.611633] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    [    0.618499] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    [    0.626310] 9p: Installing v9fs 9p2000 file system support
    [    0.667044] Key type asymmetric registered
    [    0.671274] Asymmetric key parser 'x509' registered
    [    0.676317] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    [    0.683891] io scheduler mq-deadline registered
    [    0.688544] io scheduler kyber registered
    [    0.695126] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    [    0.701494] pinctrl-single f4000.pinctrl: 171 pins, size 684
    [    0.716330] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    0.738267] brd: module loaded
    [    0.750648] loop: module loaded
    [    0.754938] megasas: 07.714.04.00-rc1
    [    0.763084] tun: Universal TUN/TAP device driver, 1.6
    [    0.768905] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    [    0.775350] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    [    0.781481] sky2: driver version 1.30
    [    0.786352] VFIO - User Level meta-driver version: 0.3
    [    0.792889] i2c /dev entries driver
    [    0.798490] sdhci: Secure Digital Host Controller Interface driver
    [    0.804863] sdhci: Copyright(c) Pierre Ossman
    [    0.809693] sdhci-pltfm: SDHCI platform and OF driver helper
    [    0.816942] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    [    0.825356] optee: probing for conduit method.
    [    0.830012] optee: revision 3.20 (8e74d476)
    [    0.830334] optee: dynamic shared memory is enabled
    [    0.839863] optee: initialized driver
    [    0.845950] NET: Registered protocol family 17
    [    0.850751] 9pnet: Installing 9P2000 support
    [    0.855227] Key type dns_resolver registered
    [    0.860007] printk: bootconsole [ns16550a0]: printing thread started
    [    0.860058] Loading compiled-in X.509 certificates
    [    0.873606] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    [    0.873656] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    [    0.940574] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    0.943310] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    [    0.943327] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    [    0.972316] VDD_CORE: Bringing 750000uV into 850000-850000uV
    [    0.973163] VDD_CORE: supplied by vcc_5v0
    [    0.973979] VCC1V8: supplied by vcc_5v0
    [    0.974744] VDDS_DDR: supplied by vcc_5v0
    [    0.975886] VDDSHV_MCU: supplied by vcc_5v0
    [    0.976234] VDDR_CORE: supplied by VCC1V8
    [    0.977258] VDDA_1V8: supplied by vcc_5v0
    [    0.977982] VDD_PHY_2V5: supplied by vcc_5v0
    [    0.979828] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    [    0.980043] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.982585] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    [ H▒▒1.010533] rtc-s35390a 2-0030: registered as rtc0
    [    1.011572] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:11:21 UTC (1694664681)
    [    1.037022] printk: console [ttyS2]: printing thread started
    [    1.011647] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    [    1.037038] printk: console [ttyS2] enabled
    [    1.037042] printk: bootconsole [ns16550a0] disabled
    [    1.057021] printk: bootconsole [ns16550a0]: printing thread stopped
    [    1.058200] panel-simple display0: Specify missing connector_type
    [    1.070110] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    [    1.106694] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    [    1.108105] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    [    1.108123] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    [    1.108247] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    [    1.108532] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    [    1.108543] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    [    1.108549] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    [    1.109385] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    [    1.110437] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    [    1.114812] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    [    1.220132] mmc1: CQHCI version 5.10
    [    1.220735] mmc0: CQHCI version 5.10
    [    1.222289] davinci-mcasp 2b10000.mcasp: IRQ common not found
    [    1.236473] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    [    1.236491] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    [    1.236498] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    [    1.236505] pca953x 1-0022: Error applying setting, reverse things back
    [    1.236524] pca953x: probe of 1-0022 failed with error -22
        1.237480] panel-simple display0: Specify missing connector_type
    [    1.240003] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    [    1.257266] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    [    1.262810] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    [    1.272262] Console: switching to colour frame buffer device 100x37
    [    1.288439] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    [    1.298532] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    [    1.298594] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    [    1.298737] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    [    1.299163] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    [    1.312659] ALSA device list:
    [    1.312664]   No soundcards found.
    [    1.327805] mmc0: new HS200 MMC card at address 0001
    [    1.328691] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    [    1.329015] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    [    1.329322] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    [    1.329531] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:0)
    [    1.333646]  mmcblk0: p1 p2 p3 p4
    [    1.405900] EXT4-fs (mmcblk0p3): recovery complete
    [    1.406422] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    [    1.406462] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    [    1.406536] VFS: Mounted root (ext4 filesystem) on device 179:3.
    [    1.407273] devtmpfs: mounted
    [    1.408676] Freeing unused kernel memory: 1792K
    [    1.408795] Run /sbin/init as init process
    [    1.509944] NET: Registered protocol family 10
    [    1.511415] Segment Routing with IPv6
    [    1.528775] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    1.529281] systemd[1]: Detected architecture arm64.
    
    Welcome to Arago 2021.09!
    
    [    1.579348] systemd[1]: Set hostname to <am62xx-evm>.
    [    1.737360] mmc1: new high speed SDHC card at address aaaa
    [    1.738373] mmcblk1: mmc1:aaaa SS16G 14.8 GiB
    [    1.756567]  mmcblk1: p1 p2 p3
    [    1.880900] random: systemd: uninitialized urandom read (16 bytes read)
    [    1.884671] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Created slice system-serial\x2dgett[    1.910946] random: systemd: uninitialized urandom read (16 bytes read)
    y.slice.
    [    1.912467] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice User and Session Slic[    1.934897] random: systemd: uninitialized urandom read (16 bytes read)
    e.
    [    1.936220] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Started Dispatch Password …ts to [    1.959335] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    Console Directory Watch.
    [  OK  ] Started Forward Password R…uests [    1.983138] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    to Wall Directory Watch.
    [  OK  ] Reached target Paths.
    [    2.007043] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Remote File Systems systemd[1]: Reached target Remote File Systems.
    [0m.
    [  OK  ] Reached target Slices.
    [    2.038884] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Swap.
    [    2.050887] systemd[1]: Reached target Swap.
    [  OK  ] Listening on RPCbind Server Activat[    2.081941] systemd[1]: Listening on RPCbind Server Activation Socket.
    ion Socket.
    [  OK  ] Reached target RPC Port Mapper.[    2.103094] systemd[1]: Reached target RPC Port Mapper.
    
    [  OK  ] Listening on Process Core Dump Sock[    2.127985] systemd[1]: Listening on Process Core Dump Socket.
    et.
    [  OK  ] Listening on initctl Compatibility [    2.151364] systemd[1]: Listening on initctl Compatibility Named Pipe.
    Named Pipe.
    [    2.178481] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    [    2.179679] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket.
    [    2.207645] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Network Service Netlin[    2.219793] systemd[1]: Listening on Network Service Netlink Socket.
    k Socket.
    [  OK  ] Listening on udev Control Socket    2.243597] systemd[1]: Listening on udev Control Socket.
    m.
    [  OK  ] Listening on udev Kernel Socket[    2.267340] systemd[1]: Listening on udev Kernel Socket.
    .
             Mounting Huge Pages File System...
    [    2.291881] systemd[1]: Mounting Huge Pages File System...
             Mounting POSIX Message Queue File System..[    2.308089] systemd[1]: Mounting POSIX Message Queue File System...
    .
             Mounting Kernel Debug File System...[    2.336039] systemd[1]: Mounting Kernel Debug File System...
    
             Mounting Temporary Directory (/tmp)...
    [    2.364258] systemd[1]: Mounting Temporary Directory (/tmp)...
             Starting Create list of st…odes for the curr[    2.381410] systemd[1]: Starting Create list of static device nodes for the current kernel...
    ent kernel...
             Starting Start psplash boot splash screen.[    2.414111] systemd[1]: Starting Start psplash boot splash screen...
    ..
    [    2.439992] systemd[1]: Starting RPC Bind...
             Starting RPC Bind...
    [    2.463135] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    [    2.469756] systemd[1]: Starting Journal Service...
             Starting Journal Service...
             Starting Load Kernel Modules...
    [    2.497566] systemd[1]: Starting Load Kernel Modules...
             Starting Remount Root and Kernel File Systems...
    [    2.515584] cryptodev: loading out-of-tree module taints kernel.
    [    2.515827] systemd[1]: Starting Remount Root and Kernel File Systems...
    [    2.517953] cryptodev: driver 1.10 loaded.
    [    2.536911] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
             Starting udev Coldplug all Devices...[    2.536999] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    [    2.542200] systemd[1]: Starting udev Coldplug all Devices...
    
    [  OK  ] Started Start psplash boot splash s[    2.591036] systemd[1]: Started Start psplash boot splash screen.
    creen.
    [  OK  ] Started RPC Bind.[    2.615660] systemd[1]: Started RPC Bind.
    
    [  OK  ] Started Journal Service.[    2.635731] systemd[1]: Started Journal Service.
    
    [  OK  ] Mounted Huge Pages File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Started Create list of sta… nodes for the current kernel.
    [  OK  ] Started Load Kernel Modules.
    [  OK  ] Started Remount Root and Kernel File Systems.
             Mounting Kernel Configuration File System...
    [  OK  ] Started Start psplash-syst…progress communication helper.
             Starting Flush Journal to Persistent Storage...
    [    2.857775] systemd-journald[229]: Received client request to flush runtime journal.
             Starting Apply Kernel Variables...
    [    2.887198] random: systemd: uninitialized urandom read (16 bytes read)
    [    2.898337] random: systemd-journal: uninitialized urandom read (16 bytes read)
             Starting Create Static Device Nodes in /dev...
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Started Apply Kernel Variables.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [  OK  ] Reached target Local File Systems ([    3.016183] random: systemd: uninitialized urandom read (16 bytes read)
    Pre).
             Mounting /media/ram...
             Mounting /var/volatile...
             Starting udev Kernel Device Manager...
    [  OK  ] Started udev Coldplug all Devices.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Kernel Device Manager.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [    3.931908] random: systemd: uninitialized urandom read (16 bytes read)
    [    3.932810] random: systemd: uninitialized urandom read (16 bytes read)
    [  OK  ] Created slice system-systemd\x2dbacklight.slice.
    [    4.055036] random: systemd: uninitialized urandom read (16 bytes read)
             Starting Load/Save Screen …ness of backlight:backlight...
    [  OK  ] Started Load/Save Screen B…htness of backlight:backlight.
    [  OK  ] Started Network Time Synchronization.
    [  OK  ] Reached target System Initialization.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target System Time Set.
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [    4.672636] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    [    4.672790] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    [  OK  ] Listening on D-Bus System Message B[    4.672880] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    us Socket.
    [    4.689767] remoteproc remoteproc0: 5000000.m4fss is available
    [    4.691037] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    4.691069] remoteproc remoteproc0: powering up 5000000.m4fss
    [    4.691105] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    [    4.691113] remoteproc remoteproc0: request_firmware failed: -2
    [    4.822759] random: crng init done
    [    4.822781] random: 77 urandom warning(s) missed due to ratelimiting
    [  OK  ] Listening on dropbear.socket.
    [  OK  ] Reached target Sockets.
    [  OK  ] Reached target Basic System.
    [  OK  ] Started D-Bus System Message Bus.
             Starting Print notice about GPLv3 packages...
             Starting IPv6 Packet Filtering Framework...
    [    5.147067] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    [    5.147254] platform 78000000.r5f: configured R5F for IPC-only mode
    [    5.147444] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    [    5.186774] remoteproc remoteproc1: 78000000.r5f is available
    [    5.186935] remoteproc remoteproc1: attaching to 78000000.r5f
    [    5.203643] platform 78000000.r5f: R5F core initialized in IPC-only mode
    [    5.203701]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    [    5.249711] virtio_rpmsg_bus virtio0: rpmsg host is online
    [    5.249850] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    [    5.250210]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    [    5.250230] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    [    5.287765] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
             Starting IPv4 Packet Filtering Framework...
             Starting Login Service...
    [  OK  ] Started TEE Supplicant.
             Starting telnetd.service...
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            bash
            cifs-utils
            dosfstools
            less
            libdw1
            libelf1
            libreadline8
            parted
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Started Print notice about GPLv3 packages.
    [  OK  ] Started IPv6 Packet Filtering Framework.
    [  OK  ] Started IPv4 Packet Filtering Framework.
    [  OK  ] Started telnetd.service.
    [  OK  ] Reached target Network (Pre).
             Starting LSB: Expand Rootfs of boot device...
             Starting Network Service...
    [  OK  ] Started Login Service.
    [  OK  ] Started Network Service.
             Starting Wait for Network to be Configured...
             Starting Network Name Resolution...
    [    6.377341] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    [    6.377383] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    [  OK  ] Started LSB: Expand Rootfs of boot device.
    [  OK  ] Started Network Name Resolution.
    [  OK  ] Reached target Network.
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
             Starting Permit User Sessions...
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [  OK  ] Started Synchronize System and HW clocks.
    [  OK  ] Found device /dev/mmcblk0p4.
             Mounting /run/media/mmcblk0p4...
    [  OK  ] Found device /dev/mmcblk1p2.
             Mounting /run/media/mmcblk1p2...
    [  OK  ] Found device /dev/mmcblk0p1.
    [    7.857149] EXT4-fs (mmcblk0p4): recovery complete
    [    7.857196] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
             Mounting /run/media/mmcblk0p1...
    [  OK  ] Mounted /run/media/mmcblk0p4.
    [    7.907952] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [    7.953971] FAT-fs (mmcblk1p2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/mmcblk1p2.
    [  OK  ] Mounted /run/media/mmcblk0p1.
    [    8.285557] remoteproc remoteproc2: 30074000.pru is available
    [    8.310338] remoteproc remoteproc3: 30078000.pru is available
    [    8.359741] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    [    8.412874] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
             Starting Save/Restore Sound Card State...
    [  OK  ] Started Save/Restore Sound Card Sta[    8.517505] usbcore: registered new interface driver usbfs
    te.
    [    8.517587] usbcore: registered new interface driver hub
    [    8.535867] usbcore: registered new device driver usb
    [  OK  ] Reached target Sound Card.
    [    8.568885] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    8.568992] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    [    8.569260] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    8.569718] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    [    8.570006] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    [    8.570044] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    [    8.570079] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    [    8.572489] hub 1-0:1.0: USB hub found
    [    8.572565] hub 1-0:1.0: 1 port detected
    [    8.593859] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [    8.609236] hub 2-0:1.0: USB hub found
    [    8.610888] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    8.626521] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    8.626579] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    [    8.626884] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    [    8.634884] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    [    8.635134] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    [    8.635161] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    [    8.635188] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    [    8.636054] hub 3-0:1.0: USB hub found
    [    8.636094] hub 3-0:1.0: 1 port detected
    [    8.640013] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    [    8.640873] hub 4-0:1.0: USB hub found
    [    8.640924] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    [    8.890704] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    [    9.083846] hub 3-1:1.0: USB hub found
    [    9.084205] hub 3-1:1.0: 4 ports detected
    [    9.434682] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    [    9.552711] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    [    9.553373] scsi host0: usb-storage 3-1.4:1.0
    [    9.554020] usbcore: registered new interface driver usb-storage
    [    9.560644] usbcore: registered new interface driver uas
    [   10.584018] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    [   10.586403] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    [   10.588432] sd 0:0:0:0: [sda] Write Protect is off
    [   10.589789] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    [   10.633486]  sda: sda1
    [   10.637610] sd 0:0:0:0: [sda] Attached SCSI removable disk
    [  OK  ] Found device Ultra_Fit 1.
             Mounting /run/media/sda1...
    [   11.142334] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Mounted /run/media/sda1.
    
     _____                    _____           _         _
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|
                  |___|                    |___|
    
    Arago Project am62xx-evm ttyS2
    
    Arago 2021.09 am62xx-evm ttyS2
    
    am62xx-evm login: root
    root@am62xx-evm:~# cat /proc/kmsg
    <6>[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]
    <5>[    0.000000] Linux version 5.10.168-rt83-gda79ed03a4 (oe-user@oe-host) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 9.2.1 20191025, GNU ld (GNU Toolchain for the A-profile Architecture 9.2-2019.12 (arm-9.10)) 2.33.1.20191209) #1 SMP PREEMPT_RT Thu Sep 14 07:40:35 UTC 2023
    <6>[    0.000000] Machine model: Texas Instruments AM625 SK
    <6>[    0.000000] earlycon: ns16550a0 at MMIO32 0x0000000002800000 (options '')
    <6>[    0.000000] printk: bootconsole [ns16550a0] enabled
    <6>[    0.000000] efi: UEFI not found.
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009c800000, size 3 MiB
    <6>[    0.000000] OF: reserved mem: initialized node ipc-memories@9c800000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cb00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-dma-memory@9cb00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009cc00000, size 14 MiB
    <6>[    0.000000] OF: reserved mem: initialized node m4f-memory@9cc00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009da00000, size 1 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-dma-memory@9da00000, compatible id shared-dma-pool
    <6>[    0.000000] Reserved memory: created DMA memory pool at 0x000000009db00000, size 12 MiB
    <6>[    0.000000] OF: reserved mem: initialized node r5f-memory@9db00000, compatible id shared-dma-pool
    <6>[    0.000000] Zone ranges:
    <6>[    0.000000]   DMA      [mem 0x0000000080000000-0x00000000bfffffff]
    <6>[    0.000000]   DMA32    empty
    <6>[    0.000000]   Normal   empty
    <6>[    0.000000] Movable zone start for each node
    <6>[    0.000000] Early memory node ranges
    <6>[    0.000000]   node   0: [mem 0x0000000080000000-0x000000009c7fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009c800000-0x000000009e6fffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e700000-0x000000009e77ffff]
    <6>[    0.000000]   node   0: [mem 0x000000009e780000-0x000000009fffffff]
    <6>[    0.000000]   node   0: [mem 0x00000000a0000000-0x00000000bfffffff]
    <6>[    0.000000] Initmem setup node 0 [mem 0x0000000080000000-0x00000000bfffffff]
    <7>[    0.000000] On node 0 totalpages: 262144
    <7>[    0.000000]   DMA zone: 4096 pages used for memmap
    <7>[    0.000000]   DMA zone: 0 pages reserved
    <7>[    0.000000]   DMA zone: 262144 pages, LIFO batch:63
    <3>[    0.000000] cma: Failed to reserve 512 MiB
    <6>[    0.000000] psci: probing for conduit method from DT.
    <6>[    0.000000] psci: PSCIv1.1 detected in firmware.
    <6>[    0.000000] psci: Using standard PSCI v0.2 function IDs
    <6>[    0.000000] psci: Trusted OS migration not required
    <6>[    0.000000] psci: SMC Calling Convention v1.2
    <6>[    0.000000] percpu: Embedded 18 pages/cpu s35968 r8192 d29568 u73728
    <7>[    0.000000] pcpu-alloc: s35968 r8192 d29568 u73728 alloc=18*4096
    <7>[    0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
    <6>[    0.000000] Detected VIPT I-cache on CPU0
    <6>[    0.000000] CPU features: detected: ARM erratum 845719
    <6>[    0.000000] CPU features: detected: GIC system register CPU interface
    <6>[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 258048
    <5>[    0.000000] Kernel command line: console=ttyS2,115200n8 earlycon=ns16550a,mmio32,0x02800000 root=PARTUUID=ef21face-03 rw rootfstype=ext4 rootwait
    <6>[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
    <6>[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
    <6>[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
    <6>[    0.000000] Memory: 951768K/1048576K available (11072K kernel code, 1216K rwdata, 4312K rodata, 1792K init, 439K bss, 96808K reserved, 0K cma-reserved)
    <6>[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
    <6>[    0.000000] rcu: Preemptible hierarchical RCU implementation.
    <6>[    0.000000] rcu:  RCU event tracing is enabled.
    <6>[    0.000000] rcu:  RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=4.
    <6>[    0.000000] rcu:  RCU priority boosting: priority 1 delay 500 ms.
    <6>[    0.000000] rcu:  RCU_SOFTIRQ processing moved to rcuc kthreads.
    <6>[    0.000000]       No expedited grace period (rcu_normal_after_boot).
    <6>[    0.000000]       Trampoline variant of Tasks RCU enabled.
    <6>[    0.000000]       Tracing variant of Tasks RCU enabled.
    <6>[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
    <6>[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
    <6>[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
    <6>[    0.000000] GICv3: GIC: Using split EOI/Deactivate mode
    <6>[    0.000000] GICv3: 256 SPIs implemented
    <6>[    0.000000] GICv3: 0 Extended SPIs implemented
    <6>[    0.000000] GICv3: Distributor has no Range Selector support
    <6>[    0.000000] GICv3: 16 PPIs implemented
    <6>[    0.000000] GICv3: CPU0: found redistributor 0 region 0:0x0000000001880000
    <6>[    0.000000] ITS [mem 0x01820000-0x0182ffff]
    <6>[    0.000000] GIC: enabling workaround for ITS: Socionext Synquacer pre-ITS
    <4>[    0.000000] ITS@0x0000000001820000: Devices Table too large, reduce ids 20->19
    <6>[    0.000000] ITS@0x0000000001820000: allocated 524288 Devices @80800000 (flat, esz 8, psz 64K, shr 0)
    <6>[    0.000000] ITS: using cache flushing for cmd queue
    <6>[    0.000000] GICv3: using LPI property table @0x0000000080030000
    <6>[    0.000000] GIC: using cache flushing for LPI property table
    <6>[    0.000000] GICv3: CPU0: using allocated LPI pending table @0x0000000080040000
    <6>[    0.000000] arch_timer: cp15 timer(s) running at 200.00MHz (phys).
    <6>[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2e2049d3e8, max_idle_ns: 440795210634 ns
    <6>[    0.000001] sched_clock: 56 bits at 200MHz, resolution 5ns, wraps every 4398046511102ns
    <6>[    0.008547] Console: colour dummy device 80x25
    <6>[    0.013144] Calibrating delay loop (skipped), value calculated using timer frequency.. 400.00 BogoMIPS (lpj=800000)
    <6>[    0.023825] pid_max: default: 32768 minimum: 301
    <6>[    0.028649] LSM: Security Framework initializing
    <6>[    0.033440] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.041014] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)
    <6>[    0.051092] rcu: Hierarchical SRCU implementation.
    <6>[    0.056550] Platform MSI: msi-controller@1820000 domain created
    <6>[    0.062966] PCI/MSI: /bus@f0000/interrupt-controller@1800000/msi-controller@1820000 domain created
    <6>[    0.072273] EFI services will not be available.
    <6>[    0.077246] smp: Bringing up secondary CPUs ...
    <6>[    0.082679] Detected VIPT I-cache on CPU1
    <6>[    0.086817] GICv3: CPU1: found redistributor 1 region 0:0x00000000018a0000
    <6>[    0.093855] GICv3: CPU1: using allocated LPI pending table @0x0000000080050000
    <6>[    0.101294] CPU1: Booted secondary processor 0x0000000001 [0x410fd034]
    <6>[    0.108848] Detected VIPT I-cache on CPU2
    <6>[    0.112975] GICv3: CPU2: found redistributor 2 region 0:0x00000000018c0000
    <6>[    0.120011] GICv3: CPU2: using allocated LPI pending table @0x0000000080060000
    <6>[    0.127432] CPU2: Booted secondary processor 0x0000000002 [0x410fd034]
    <6>[    0.134924] Detected VIPT I-cache on CPU3
    <6>[    0.139048] GICv3: CPU3: found redistributor 3 region 0:0x00000000018e0000
    <6>[    0.146082] GICv3: CPU3: using allocated LPI pending table @0x0000000080070000
    <6>[    0.153501] CPU3: Booted secondary processor 0x0000000003 [0x410fd034]
    <6>[    0.160272] smp: Brought up 1 node, 4 CPUs
    <6>[    0.164477] SMP: Total of 4 processors activated.
    <6>[    0.169296] CPU features: detected: 32-bit EL0 Support
    <6>[    0.174558] CPU features: detected: CRC32 instructions
    <6>[    0.187124] CPU: All CPU(s) started at EL2
    <6>[    0.191333] alternatives: patching kernel code
    <6>[    0.197161] devtmpfs: initialized
    <4>[    0.209311] KASLR disabled due to lack of seed
    <6>[    0.214080] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
    <6>[    0.224059] futex hash table entries: 1024 (order: 5, 131072 bytes, linear)
    <6>[    0.231562] pinctrl core: initialized pinctrl subsystem
    <6>[    0.237520] DMI not present or invalid.
    <6>[    0.242149] NET: Registered protocol family 16
    <6>[    0.247280] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
    <6>[    0.254554] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
    <6>[    0.262499] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
    <6>[    0.271205] thermal_sys: Registered thermal governor 'step_wise'
    <6>[    0.271827] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
    <6>[    0.284999] ASID allocator initialised with 65536 entries
    <6>[    0.318669] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
    <6>[    0.325584] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
    <6>[    0.332466] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
    <6>[    0.339328] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
    <6>[    0.347240] cryptd: max_cpu_qlen set to 1000
    <6>[    0.354846] k3-chipinfo 43000014.chipid: Family:AM62X rev:SR1.0 JTAGID[0x0bb7e02f] Detected
    <6>[    0.364010] vcc_5v0: supplied by vmain_pd
    <6>[    0.368518] vcc_3v3_sys: supplied by vmain_pd
    <6>[    0.373594] vcc_1v8: supplied by vcc_3v3_sys
    <6>[    0.379241] iommu: Default domain type: Translated
    <6>[    0.384508] vgaarb: loaded
    <5>[    0.387632] SCSI subsystem initialized
    <6>[    0.392008] mc: Linux media interface: v0.10
    <6>[    0.396419] videodev: Linux video capture interface: v2.00
    <6>[    0.402144] pps_core: LinuxPPS API ver. 1 registered
    <6>[    0.407219] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    <6>[    0.416568] PTP clock support registered
    <6>[    0.420608] EDAC MC: Ver: 3.0.0
    <6>[    0.424625] omap-mailbox 29000000.mailbox: omap mailbox rev 0x66fc9100
    <6>[    0.431845] FPGA manager framework
    <6>[    0.435450] Advanced Linux Sound Architecture Driver Initialized.
    <6>[    0.442671] clocksource: Switched to clocksource arch_sys_counter
    <5>[    0.449163] VFS: Disk quotas dquot_6.6.0
    <6>[    0.453236] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    <6>[    0.466334] NET: Registered protocol family 2
    <6>[    0.471059] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)
    <6>[    0.479617] tcp_listen_portaddr_hash hash table entries: 512 (order: 3, 32768 bytes, linear)
    <6>[    0.488326] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)
    <6>[    0.496335] TCP bind hash table entries: 8192 (order: 6, 458752 bytes, linear)
    <6>[    0.504234] TCP: Hash tables configured (established 8192 bind 8192)
    <6>[    0.511084] UDP hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.517967] UDP-Lite hash table entries: 512 (order: 4, 65536 bytes, linear)
    <6>[    0.525493] NET: Registered protocol family 1
    <6>[    0.530586] RPC: Registered named UNIX socket transport module.
    <6>[    0.536682] RPC: Registered udp transport module.
    <6>[    0.541492] RPC: Registered tcp transport module.
    <6>[    0.546300] RPC: Registered tcp NFSv4.1 backchannel transport module.
    <6>[    0.552892] NET: Registered protocol family 44
    <6>[    0.557451] PCI: CLS 0 bytes, default 64
    <6>[    0.562351] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available
    <5>[    0.574858] Initialise system trusted keyrings
    <6>[    0.579675] workingset: timestamp_bits=46 max_order=18 bucket_order=0
    <6>[    0.591257] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    <5>[    0.597892] NFS: Registering the id_resolver key type
    <5>[    0.603143] Key type id_resolver registered
    <5>[    0.607435] Key type id_legacy registered
    <6>[    0.611633] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
    <6>[    0.618499] nfs4flexfilelayout_init: NFSv4 Flexfile Layout Driver Registering...
    <6>[    0.626310] 9p: Installing v9fs 9p2000 file system support
    <5>[    0.667044] Key type asymmetric registered
    <5>[    0.671274] Asymmetric key parser 'x509' registered
    <6>[    0.676317] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
    <6>[    0.683891] io scheduler mq-deadline registered
    <6>[    0.688544] io scheduler kyber registered
    <6>[    0.695126] pinctrl-single 4084000.pinctrl: 34 pins, size 136
    <6>[    0.701494] pinctrl-single f4000.pinctrl: 171 pins, size 684
    <6>[    0.716330] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    <6>[    0.738267] brd: module loaded
    <6>[    0.750648] loop: module loaded
    <6>[    0.754938] megasas: 07.714.04.00-rc1
    <6>[    0.763084] tun: Universal TUN/TAP device driver, 1.6
    <6>[    0.768905] igbvf: Intel(R) Gigabit Virtual Function Network Driver
    <6>[    0.775350] igbvf: Copyright (c) 2009 - 2012 Intel Corporation.
    <6>[    0.781481] sky2: driver version 1.30
    <6>[    0.786352] VFIO - User Level meta-driver version: 0.3
    <6>[    0.792889] i2c /dev entries driver
    <6>[    0.798490] sdhci: Secure Digital Host Controller Interface driver
    <6>[    0.804863] sdhci: Copyright(c) Pierre Ossman
    <6>[    0.809693] sdhci-pltfm: SDHCI platform and OF driver helper
    <6>[    0.816942] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
    <6>[    0.825356] optee: probing for conduit method.
    <6>[    0.830012] optee: revision 3.20 (8e74d476)
    <6>[    0.830334] optee: dynamic shared memory is enabled
    <6>[    0.839863] optee: initialized driver
    <6>[    0.845950] NET: Registered protocol family 17
    <6>[    0.850751] 9pnet: Installing 9P2000 support
    <5>[    0.855227] Key type dns_resolver registered
    <6>[    0.860007] printk: bootconsole [ns16550a0]: printing thread started
    <5>[    0.860058] Loading compiled-in X.509 certificates
    <4>[    0.873606] ti-sci 44043000.system-controller: lpm region is required for suspend but not provided.
    <6>[    0.873656] ti-sci 44043000.system-controller: ABI: 3.1 (firmware rev 0x0008 '8.6.4--v08.06.04 (Chill Capybar')
    <3>[    0.940574] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <6>[    0.943310] omap-gpmc 3b000000.memory-controller: GPMC revision 6.0
    <4>[    0.943327] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
    <6>[    0.972316] VDD_CORE: Bringing 750000uV into 850000-850000uV
    <6>[    0.973163] VDD_CORE: supplied by vcc_5v0
    <6>[    0.973979] VCC1V8: supplied by vcc_5v0
    <6>[    0.974744] VDDS_DDR: supplied by vcc_5v0
    <6>[    0.975886] VDDSHV_MCU: supplied by vcc_5v0
    <6>[    0.976234] VDDR_CORE: supplied by VCC1V8
    <6>[    0.977258] VDDA_1V8: supplied by vcc_5v0
    <6>[    0.977982] VDD_PHY_2V5: supplied by vcc_5v0
    <4>[    0.979828] tps65219 0-0030: Setup as system-power-controller but pm_power_off function already registered, overwriting
    <6>[    0.980043] omap_i2c 20000000.i2c: bus 0 rev0.12 at 400 kHz
    <6>[    0.982585] omap_i2c 20010000.i2c: bus 1 rev0.12 at 100 kHz
    <6>[    1.010533] rtc-s35390a 2-0030: registered as rtc0
    <6>[    1.011572] rtc-s35390a 2-0030: setting system clock to 2023-09-14T04:11:21 UTC (1694664681)
    <6>[    1.011647] omap_i2c 20030000.i2c: bus 2 rev0.12 at 100 kHz
    <6>[    1.012133] ti-sci-intr 4210000.interrupt-controller: Interrupt Router 5 domain created
    <6>[    1.012299] ti-sci-intr bus@f0000:interrupt-controller@a00000: Interrupt Router 3 domain created
    <6>[    1.012582] ti-sci-inta 48000000.interrupt-controller: Interrupt Aggregator domain 28 created
    <6>[    1.013929] ti-udma 485c0100.dma-controller: Number of rings: 82
    <6>[    1.016288] ti-udma 485c0100.dma-controller: Channels: 48 (bchan: 18, tchan: 12, rchan: 18)
    <6>[    1.019207] ti-udma 485c0000.dma-controller: Number of rings: 150
    <6>[    1.023591] ti-udma 485c0000.dma-controller: Channels: 35 (tchan: 20, rchan: 15)
    <6>[    1.026409] printk: console [ttyS2] disabled
    <6>[    1.031962] 2800000.serial: ttyS2 at MMIO 0x2800000 (irq = 27, base_baud = 3000000) is a 8250
    <6>[    1.037022] printk: console [ttyS2]: printing thread started
    <6>[    1.037038] printk: console [ttyS2] enabled
    <6>[    1.037042] printk: bootconsole [ns16550a0] disabled
    <6>[    1.057021] printk: bootconsole [ns16550a0]: printing thread stopped
    <4>[    1.058200] panel-simple display0: Specify missing connector_type
    <6>[    1.070110] davinci_mdio 8000f00.mdio: Configuring MDIO in manual mode
    <6>[    1.106694] davinci_mdio 8000f00.mdio: davinci mdio revision 9.7, bus freq 1000000
    <3>[    1.108105] mdio_bus 8000f00.mdio: MDIO device at address 1 is missing.
    <6>[    1.108123] davinci_mdio 8000f00.mdio: phy[0]: device 8000f00.mdio:00, driver unknown
    <6>[    1.108247] am65-cpsw-nuss 8000000.ethernet: initializing am65 cpsw nuss version 0x6BA01103, cpsw version 0x6BA81103 Ports: 3 quirks:00000006
    <3>[    1.108532] am65-cpsw-nuss 8000000.ethernet: Use random MAC address
    <6>[    1.108543] am65-cpsw-nuss 8000000.ethernet: initialized cpsw ale version 1.5
    <6>[    1.108549] am65-cpsw-nuss 8000000.ethernet: ALE Table size 512
    <6>[    1.109385] am65-cpsw-nuss 8000000.ethernet: CPTS ver 0x4e8a010c, freq:500000000, add_val:1 pps:0
    <6>[    1.110437] am65-cpsw-nuss 8000000.ethernet: set new flow-id-base 19
    <6>[    1.114812] rtc-ti-k3 2b1f0000.rtc: registered as rtc1
    <7>[    1.220025] mmc1: sdhci: Version:   0x00001004 | Present:  0x01f70000
    <7>[    1.220045] mmc1: sdhci: Caps:      0x7de8c801 | Caps_1:   0x18002407
    <7>[    1.220104] mmc1: sdhci: Auto-CMD23 available
    <6>[    1.220132] mmc1: CQHCI version 5.10
    <7>[    1.220144] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-mmc-hs
    <7>[    1.220160] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-ddr52
    <7>[    1.220167] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs200
    <7>[    1.220173] sdhci-am654 fa00000.mmc: Couldn't find ti,otap-del-sel-hs400
    <7>[    1.220226] mmc0: sdhci: Version:   0x00001004 | Present:  0x013f0040
    <7>[    1.220233] mmc0: sdhci: Caps:      0x7decc801 | Caps_1:   0x18002407
    <7>[    1.220275] mmc0: sdhci: Auto-CMD23 available
    <6>[    1.220735] mmc0: CQHCI version 5.10
    <7>[    1.220766] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sd-hs
    <7>[    1.220774] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr12
    <7>[    1.220781] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr25
    <7>[    1.220793] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr50
    <7>[    1.220801] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-sdr104
    <7>[    1.220812] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-ddr50
    <7>[    1.220821] sdhci-am654 fa10000.mmc: Couldn't find ti,otap-del-sel-hs400
    <7>[    1.221010] mmc1: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.221482] mmc0: clock 0Hz busmode 2 powermode 1 cs 0 Vdd 7 width 1 timing 0
    <3>[    1.222289] davinci-mcasp 2b10000.mcasp: IRQ common not found
    <7>[    1.231871] sdhci-am654 fa00000.mmc: mmc_regulator_set_vqmmc: found vmmc voltage range of 3300000-3400000uV
    <7>[    1.232124] sdhci-am654 fa10000.mmc: Initial signal voltage of 1.8v
    <3>[    1.236473] pinctrl-single f4000.pinctrl: pin PIN117 already requested by 20030000.i2c; cannot claim for 1-0022
    <3>[    1.236491] pinctrl-single f4000.pinctrl: pin-117 (1-0022) status -22
    <3>[    1.236498] pinctrl-single f4000.pinctrl: could not request pin 117 (PIN117) from group main-gpio1-ioexp-intr-pins-default  on device pinctrl-single
    <3>[    1.236505] pca953x 1-0022: Error applying setting, reverse things back
    <4>[    1.236524] pca953x: probe of 1-0022 failed with error -22
    <4>[    1.237480] panel-simple display0: Specify missing connector_type
    <7>[    1.237693] sdhci-am654 fa00000.mmc: Initial signal voltage of 3.3v
    <6>[    1.240003] [drm] Initialized tidss 1.0.0 20180215 for 30200000.dss on minor 0
    <7>[    1.244658] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.250223] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.257266] mmc0: SDHCI controller on fa10000.mmc [fa10000.mmc] using ADMA 64-bit
    <7>[    1.257620] mmc0: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <7>[    1.258443] mmc0: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <7>[    1.261187] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.262810] mmc1: SDHCI controller on fa00000.mmc [fa00000.mmc] using ADMA 64-bit
    <7>[    1.263114] mmc1: mmc_rescan_try_freq: trying to init card at 400000 Hz
    <7>[    1.263476] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.263842] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.263904] mmc1: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    <7>[    1.264203] mmc0: req failed (CMD5): -110, retrying...
    <7>[    1.265999] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.266633] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <7>[    1.268623] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.268985] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.269345] mmc1: req failed (CMD5): -110, retrying...
    <7>[    1.270315] mmc1: clock 400000Hz busmode 2 powermode 2 cs 1 Vdd 21 width 1 timing 0
    <6>[    1.272262] Console: switching to colour frame buffer device 100x37
    <7>[    1.273023] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 0
    <6>[    1.288439] tidss 30200000.dss: [drm] fb0: tidssdrmfb frame buffer device
    <7>[    1.291999] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <7>[    1.292045] mmc0: clock 400000Hz busmode 1 powermode 2 cs 1 Vdd 7 width 1 timing 0
    <7>[    1.294757] mmc0: clock 400000Hz busmode 1 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <3>[    1.298532] debugfs: Directory 'pd:53' with parent 'pm_genpd' already present!
    <3>[    1.298594] debugfs: Directory 'pd:52' with parent 'pm_genpd' already present!
    <3>[    1.298737] debugfs: Directory 'pd:51' with parent 'pm_genpd' already present!
    <3>[    1.299163] debugfs: Directory 'pd:182' with parent 'pm_genpd' already present!
    <7>[    1.310311] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 1 timing 0
    <6>[    1.312659] ALSA device list:
    <6>[    1.312664]   No soundcards found.
    <7>[    1.324070] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 0
    <7>[    1.326137] mmc0: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.326177] mmc0: clock 52000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <7>[    1.326252] mmc0: clock 200000000Hz busmode 2 powermode 2 cs 0 Vdd 7 width 8 timing 9
    <6>[    1.327805] mmc0: new HS200 MMC card at address 0001
    <7>[    1.328670] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.328691] mmcblk0: mmc0:0001 004GA0 3.69 GiB
    <7>[    1.329001] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.329015] mmcblk0boot0: mmc0:0001 004GA0 partition 1 2.00 MiB
    <7>[    1.329311] mmc0: calculated max. discard sectors 523567104 for timeout 134217728 ms
    <6>[    1.329322] mmcblk0boot1: mmc0:0001 004GA0 partition 2 2.00 MiB
    <6>[    1.329531] mmcblk0rpmb: mmc0:0001 004GA0 partition 3 512 KiB, chardev (237:0)
    <6>[    1.333646]  mmcblk0: p1 p2 p3 p4
    <6>[    1.405900] EXT4-fs (mmcblk0p3): recovery complete
    <6>[    1.406422] EXT4-fs (mmcblk0p3): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    1.406462] ext4 filesystem being mounted at /root supports timestamps until 2038 (0x7fffffff)
    <6>[    1.406536] VFS: Mounted root (ext4 filesystem) on device 179:3.
    <6>[    1.407273] devtmpfs: mounted
    <6>[    1.408676] Freeing unused kernel memory: 1792K
    <6>[    1.408795] Run /sbin/init as init process
    <7>[    1.408800]   with arguments:
    <7>[    1.408801]     /sbin/init
    <7>[    1.408803]   with environment:
    <7>[    1.408804]     HOME=/
    <7>[    1.408806]     TERM=linux
    <6>[    1.509944] NET: Registered protocol family 10
    <6>[    1.511415] Segment Routing with IPv6
    <30>[    1.528775] systemd[1]: systemd 244.5+ running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR -SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    <30>[    1.529281] systemd[1]: Detected architecture arm64.
    <30>[    1.579348] systemd[1]: Set hostname to <am62xx-evm>.
    <7>[    1.737108] mmc1: clock 400000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 2
    <7>[    1.737201] mmc1: clock 50000000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 1 timing 2
    <7>[    1.737310] mmc1: clock 50000000Hz busmode 2 powermode 2 cs 0 Vdd 21 width 4 timing 2
    <6>[    1.737360] mmc1: new high speed SDHC card at address aaaa
    <7>[    1.737667] mmcblk mmc1:aaaa: calling add_quirk_sd
    <7>[    1.738353] mmc1: calculated max. discard sectors 4294950912 for timeout 134217728 ms
    <6>[    1.738373] mmcblk1: mmc1:aaaa SS16G 14.8 GiB
    <6>[    1.756567]  mmcblk1: p1 p2 p3
    <5>[    1.880900] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.884671] systemd[1]: Created slice system-getty.slice.
    <5>[    1.910946] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.912467] systemd[1]: Created slice system-serial\x2dgetty.slice.
    <5>[    1.934897] random: systemd: uninitialized urandom read (16 bytes read)
    <30>[    1.936220] systemd[1]: Created slice User and Session Slice.
    <30>[    1.959335] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    <30>[    1.983138] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    <30>[    2.007043] systemd[1]: Reached target Paths.
    <30>[    2.018913] systemd[1]: Reached target Remote File Systems.
    <30>[    2.038884] systemd[1]: Reached target Slices.
    <30>[    2.050887] systemd[1]: Reached target Swap.
    <30>[    2.081941] systemd[1]: Listening on RPCbind Server Activation Socket.
    <30>[    2.103094] systemd[1]: Reached target RPC Port Mapper.
    <30>[    2.127985] systemd[1]: Listening on Process Core Dump Socket.
    <30>[    2.151364] systemd[1]: Listening on initctl Compatibility Named Pipe.
    <30>[    2.178481] systemd[1]: Condition check resulted in Journal Audit Socket being skipped.
    <30>[    2.179679] systemd[1]: Listening on Journal Socket (/dev/log).
    <30>[    2.207645] systemd[1]: Listening on Journal Socket.
    <30>[    2.219793] systemd[1]: Listening on Network Service Netlink Socket.
    <30>[    2.243597] systemd[1]: Listening on udev Control Socket.
    <30>[    2.267340] systemd[1]: Listening on udev Kernel Socket.
    <30>[    2.291881] systemd[1]: Mounting Huge Pages File System...
    <30>[    2.308089] systemd[1]: Mounting POSIX Message Queue File System...
    <30>[    2.336039] systemd[1]: Mounting Kernel Debug File System...
    <30>[    2.364258] systemd[1]: Mounting Temporary Directory (/tmp)...
    <30>[    2.381410] systemd[1]: Starting Create list of static device nodes for the current kernel...
    <30>[    2.414111] systemd[1]: Starting Start psplash boot splash screen...
    <30>[    2.439992] systemd[1]: Starting RPC Bind...
    <30>[    2.463135] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
    <30>[    2.469756] systemd[1]: Starting Journal Service...
    <30>[    2.497566] systemd[1]: Starting Load Kernel Modules...
    <4>[    2.515584] cryptodev: loading out-of-tree module taints kernel.
    <30>[    2.515827] systemd[1]: Starting Remount Root and Kernel File Systems...
    <6>[    2.517953] cryptodev: driver 1.10 loaded.
    <6>[    2.536911] EXT4-fs (mmcblk0p3): re-mounted. Opts: (null)
    <4>[    2.536999] ext4 filesystem being remounted at / supports timestamps until 2038 (0x7fffffff)
    <30>[    2.542200] systemd[1]: Starting udev Coldplug all Devices...
    <30>[    2.591036] systemd[1]: Started Start psplash boot splash screen.
    <30>[    2.615660] systemd[1]: Started RPC Bind.
    <30>[    2.635731] systemd[1]: Started Journal Service.
    <46>[    2.857775] systemd-journald[229]: Received client request to flush runtime journal.
    <5>[    2.887198] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    2.898337] random: systemd-journal: uninitialized urandom read (16 bytes read)
    <5>[    3.016183] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    3.931908] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    3.932810] random: systemd: uninitialized urandom read (16 bytes read)
    <5>[    4.055036] random: systemd: uninitialized urandom read (16 bytes read)
    <6>[    4.672636] k3-m4-rproc 5000000.m4fss: assigned reserved memory node m4f-dma-memory@9cb00000
    <3>[    4.672790] k3-m4-rproc 5000000.m4fss: configured M4 for remoteproc mode
    <4>[    4.672880] k3-m4-rproc 5000000.m4fss: local reset is deasserted for device
    <6>[    4.689767] remoteproc remoteproc0: 5000000.m4fss is available
    <4>[    4.691037] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <6>[    4.691069] remoteproc remoteproc0: powering up 5000000.m4fss
    <4>[    4.691105] remoteproc remoteproc0: Direct firmware load for am62-mcu-m4f0_0-fw failed with error -2
    <3>[    4.691113] remoteproc remoteproc0: request_firmware failed: -2
    <5>[    4.822759] random: crng init done
    <5>[    4.822781] random: 77 urandom warning(s) missed due to ratelimiting
    <4>[    5.147067] platform 78000000.r5f: R5F core may have been powered on by a different host, programmed state (0) != actual state (1)
    <3>[    5.147254] platform 78000000.r5f: configured R5F for IPC-only mode
    <6>[    5.147444] platform 78000000.r5f: assigned reserved memory node r5f-dma-memory@9da00000
    <6>[    5.186774] remoteproc remoteproc1: 78000000.r5f is available
    <6>[    5.186935] remoteproc remoteproc1: attaching to 78000000.r5f
    <3>[    5.203643] platform 78000000.r5f: R5F core initialized in IPC-only mode
    <6>[    5.203701]  remoteproc1#vdev0buffer: assigned reserved memory node r5f-dma-memory@9da00000
    <6>[    5.249711] virtio_rpmsg_bus virtio0: rpmsg host is online
    <6>[    5.249850] virtio_rpmsg_bus virtio0: creating channel ti.ipc4.ping-pong addr 0xd
    <6>[    5.250210]  remoteproc1#vdev0buffer: registered virtio0 (type 7)
    <6>[    5.250230] remoteproc remoteproc1: remote processor 78000000.r5f is now attached
    <6>[    5.287765] virtio_rpmsg_bus virtio0: creating channel rpmsg_chrdev addr 0xe
    <6>[    6.377341] am65-cpsw-nuss 8000000.ethernet eth0: PHY [8000f00.mdio:00] driver [Generic PHY] (irq=POLL)
    <6>[    6.377383] am65-cpsw-nuss 8000000.ethernet eth0: configuring for phy/rgmii-rxid link mode
    <6>[    7.857149] EXT4-fs (mmcblk0p4): recovery complete
    <6>[    7.857196] EXT4-fs (mmcblk0p4): mounted filesystem with ordered data mode. Opts: (null)
    <4>[    7.907952] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <4>[    7.953971] FAT-fs (mmcblk1p2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    <6>[    8.285557] remoteproc remoteproc2: 30074000.pru is available
    <6>[    8.310338] remoteproc remoteproc3: 30078000.pru is available
    <4>[    8.359741] cdns-csi2rx: probe of 30101000.csi-bridge failed with error -22
    <4>[    8.412874] dwc3 31000000.usb: Configuration mismatch. dr_mode forced to host
    <6>[    8.517505] usbcore: registered new interface driver usbfs
    <6>[    8.517587] usbcore: registered new interface driver hub
    <6>[    8.535867] usbcore: registered new device driver usb
    <6>[    8.568885] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    8.568992] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
    <6>[    8.569260] xhci-hcd xhci-hcd.2.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    8.569718] xhci-hcd xhci-hcd.2.auto: irq 509, io mem 0x31000000
    <6>[    8.570006] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
    <6>[    8.570044] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
    <6>[    8.570079] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed
    <6>[    8.572489] hub 1-0:1.0: USB hub found
    <6>[    8.572565] hub 1-0:1.0: 1 port detected
    <6>[    8.593859] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    8.609236] hub 2-0:1.0: USB hub found
    <3>[    8.610888] hub 2-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    8.626521] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    8.626579] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 3
    <6>[    8.626884] xhci-hcd xhci-hcd.3.auto: hcc params 0x0258fe6d hci version 0x110 quirks 0x0000000000010010
    <6>[    8.634884] xhci-hcd xhci-hcd.3.auto: irq 510, io mem 0x31100000
    <6>[    8.635134] xhci-hcd xhci-hcd.3.auto: xHCI Host Controller
    <6>[    8.635161] xhci-hcd xhci-hcd.3.auto: new USB bus registered, assigned bus number 4
    <6>[    8.635188] xhci-hcd xhci-hcd.3.auto: Host supports USB 3.0 SuperSpeed
    <6>[    8.636054] hub 3-0:1.0: USB hub found
    <6>[    8.636094] hub 3-0:1.0: 1 port detected
    <6>[    8.640013] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
    <6>[    8.640873] hub 4-0:1.0: USB hub found
    <3>[    8.640924] hub 4-0:1.0: config failed, hub doesn't have any ports! (err -19)
    <6>[    8.890704] usb 3-1: new high-speed USB device number 2 using xhci-hcd
    <6>[    9.083846] hub 3-1:1.0: USB hub found
    <6>[    9.084205] hub 3-1:1.0: 4 ports detected
    <6>[    9.434682] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd
    <6>[    9.552711] usb-storage 3-1.4:1.0: USB Mass Storage device detected
    <6>[    9.553373] scsi host0: usb-storage 3-1.4:1.0
    <6>[    9.554020] usbcore: registered new interface driver usb-storage
    <6>[    9.560644] usbcore: registered new interface driver uas
    <5>[   10.584018] scsi 0:0:0:0: Direct-Access     SanDisk  Ultra Fit        1.00 PQ: 0 ANSI: 6
    <5>[   10.586403] sd 0:0:0:0: [sda] 30031872 512-byte logical blocks: (15.4 GB/14.3 GiB)
    <5>[   10.588432] sd 0:0:0:0: [sda] Write Protect is off
    <7>[   10.588457] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00
    <5>[   10.589789] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
    <6>[   10.633486]  sda: sda1
    <5>[   10.637610] sd 0:0:0:0: [sda] Attached SCSI removable disk
    <4>[   11.142334] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [   31.798753] tlv71033: disabling
    <6>[   31.798753] tlv71033: disabling
    

    Thank you for your support

  • Hi Vincent,

    I will review the information you provided by mid of next week and get back to you.

  • Hi Bin, 

    Thank you for your support!

    I'm looking forward to your reply.

  • Hi Vincent,

    1. I know that MMC1 is designed for SD card, not eMMC .But it can't explain why I shorted the SDCD pin to GND(pull low) , eMMC can be detected.  

    I guess, grounding SDCD pin tells the MMC controller the "fake SD card" exists, so the MMC controller tries to enumerate the MMC device.

    2. Would it be possible to modify the MMC1 driver or device tree to detect eMMC without pull-low CD pin ?

    Please try to add DT property "ti,fails-without-test-cd;" in your &sdhci1 node to see if it solves the problem.

  • Thanks for your help! Now eMMC can be detected under the rootfs. 

    However, DT property "ti,fails-without-test-cd;" didn't work under u-boot .  EMMC can not be  detectded during u-boot.  

    Here is the device tree of u-boot,

    &sdhci1 {
    	/* SD/MMC */
    	vmmc-supply = <&vdd_mmc1>;
    	vqmmc-supply = <&vdd_mmc1>;
    	pinctrl-names = "default";
    	pinctrl-0 = <&main_mmc1_pins_default>;
    	ti,driver-strength-ohm = <50>;
    	disable-wp;
    	sdhci-caps-mask = <0x00000007 0x00000000>; // HS
    	no-1-8-v;
    };

    The another question is that the speed mode was always on legacy mode, and the clock was 25MHz,  as follow:

    cat /sys/kernel/debug/mmc1/ios
    clock:          25000000 Hz
    actual clock:   25000000 Hz
    vdd:            21 (3.3 ~ 3.4 V)
    bus mode:       2 (push-pull)
    chip select:    0 (don't care)
    power mode:     2 (on)
    bus width:      2 (4 bits)
    timing spec:    0 (legacy)
    signal voltage: 0 (3.30 V)
    driver type:    0 (driver type B)
    

    How can I modify my device tree to upgrade the speed level?

    Here is the device tree of kernel,

    ...
    &sdhci1 {
        /* SD card */
       vmmc-supply = <&vcc_3v3_sys>;
       vqmmc-supply = <&vcc_3v3_sys>;
       pinctrl-names = "default";
       pinctrl-0 = <&main_mmc1_pins_default>;
       ti,driver-strength-ohm = <50>;
       disable-wp;
       max-frequency = <50000000>;
       sdhci-caps-mask = <0x00000007 0x00000000>; /* Limiting to DDR50 speed mode */
       non-removable;
       no-1-8-v;
       ti,fails-without-test-cd;
    };
    ...

  • Hi Vincent,

    Sorry but I don't think I should continue supporting your follow-up questions. As I mentioned before, eMMC is only supported on AM62x MMC0 interface, eMMC cannot be connected to other MMC interfaces. MMC1 interface is not timing closed for eMMC.

  • Hi Bin,

    OK, I got it.

    Thanks for your support!

    Best regards,
    Vincent