20251215给飞凌OK3588-C开发板适配Rockchip原厂的Buildroot【linux-5.10】后调通typeC1接口

cat /sys/kernel/debug/pinctrl/pinctrl-rockchip-pinctrl/pinmux-pins

cat /sys/kernel/debug/gpio

20251215给飞凌OK3588-C开发板适配Rockchip原厂的Buildroot【linux-5.10】后调通typeC1接口

2025/12/15 20:46

缘起:给飞凌OK3588-C开发板适配Rockchip原厂的Buildroot【linux-6.1】后,调通了type C0。

【通过USB-A母头转TYPE-C公头转接USB3.0接口的U盘来测试!】

调试type C1有点问题。

老是识别不了:不是LCD+HDMI没有显示了!

就是关闭DP之后,结果TYPE C1也彻底不认识了!【插U盘】

公司使用荣品RPO-RK3566+RTL8211F-CG的机器经常出现断联【linux/Buildroot】,需要统计RK3566断联了多少次/是否断联过!

直接现在飞凌OK3588-C开发板上测试了。

飞凌丝印ETH1的地方,在Rockchip原厂的Buildroot【linux-6.1】系统下被识别为eth0了。

飞凌OK3588-C开发板跑Rockchip原厂的Buildroot【linux-6.1】系统时,适配ETH1接口的网卡。

当你把荣品RD-RK3588开发板重新适配一把,就相当于从头做了一个项目:【荣品RD-RK3588开发板】。

当然,开发板的功能都是好的,你免除了调试的过程,也就没有解决相关硬件出错的经验/机会了!

由于飞凌提供了Linux5.10.209内核的buildroot系统。想办法找到linux-5.10内核的buildroot,那就先直接使用Rockchip原厂的Buildroot【linux-5.10】来适配飞凌OK3588-C开发板。

【也许会快点-适配完成/搞定】

E:\OK3588-C_Linux5.10.209+Qt5.15.10_用户资料_R1

首先确认飞凌的OK3588-C_Linux5.10.209+Qt5.15.10,LCD0+HDMI0都可以显示,同时type C0和type C1接USB3.0的U盘也是可以用的!【正常识别USB3.0接口】

直接使用飞凌的DTS,出现了老毛病:LCDO+HDMI0又不显示了,但是type C0和type C1接USB3.0的U盘也是可以用的!【正常识别USB3.0接口】

有信心了!

既然这样,那就搬运飞凌的DTS代码块了!

Y:\new_disk_4t\wyb\RD-RK3588\RK3588_Linux5.10_V1.2.0_20230620\kernel\arch\arm64\boot\dts\rockchip21飞凌R1备份\OK3588-C-common.dtsi

Y:\new_disk_4t\wyb\RD-RK3588\RK3588_Linux5.10_V1.2.0_20230620\kernel\arch\arm64\boot\dts\rockchip\rk3588-evb7-v11.dtsi

1、EVB7V11默认只有一个TYPE C0,我们需要把type C1也适配好!

vbus5v0_typec: vbus5v0-typec {

compatible = "regulator-fixed";
regulator-name = "vbus5v0_typec";

regulator-min-microvolt = <5000000>;

regulator-max-microvolt = <5000000>;

enable-active-high;
gpio = <&gpio3 RK_PA6 GPIO_ACTIVE_HIGH>;
vin-supply = <&vcc5v0_usb>;

pinctrl-names = "default";

pinctrl-0 = <&typec5v_pwren>;

};

修改为:

vbus5v0_typec0: vbus5v0-typec0 {
compatible = "regulator-fixed";
regulator-name = "vbus5v0_typec0";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
enable-active-high;
gpio = <&gpio0 RK_PD0 GPIO_ACTIVE_HIGH>;
vin-supply = <&vcc5v0_sys>;
pinctrl-names = "default";
pinctrl-0 = <&typec5v_pwren0>;
};

vbus5v0_typec1: vbus5v0-typec1 {
compatible = "regulator-fixed";
regulator-name = "vbus5v0_typec1";
regulator-min-microvolt = <5000000>;
regulator-max-microvolt = <5000000>;
enable-active-high;
gpio = <&gpio0 RK_PD3 GPIO_ACTIVE_HIGH>;
vin-supply = <&vcc5v0_sys>;
pinctrl-names = "default";
pinctrl-0 = <&typec5v_pwren1>;
};

2、【必须拿掉,和vbus5v0_typec1冲突了,不然启动的时候不能进buildroot的界面!】
//&dsi0_panel {
// power-supply = <&vcc3v3_lcd_n>;
// reset-gpios = <&gpio0 RK_PD3 GPIO_ACTIVE_LOW>;
// pinctrl-names = "default";
// pinctrl-0 = <&lcd_rst_gpio>;
//};

3、拿掉CC芯片fusb311,使用fusb302

&i2c5 {

status = "okay";

pinctrl-names = "default";

pinctrl-0 = <&i2c5m2_xfer>;

// ft5x06_dsi1: ft5x06@38 {

// compatible = "edt,edt-ft5406", "edt,edt-ft5x06";

// reg = <0x38>;

// pinctrl-names = "ft5x06_defaults";

// pinctrl-0 = <&ft5x06_dsi2_gpio>;

//// interrupt-parent = <&gpio3>;

//// interrupts = <RK_PD3 IRQ_TYPE_EDGE_FALLING>;

// irq-gpio = <&gpio3 RK_PD3 GPIO_ACTIVE_HIGH>;

// touchscreen-size-x = <1024>;

// touchscreen-size-y = <600>;

// status = "okay";

// };

//

// gt9xx_dsi1: gt9xx@14 {

// compatible = "goodix,gt911";

// reg = <0x14>;

// pinctrl-names = "gt9xx_default";

// pinctrl-0 = <&gt911_dsi2_gpio>;

//// interrupt-parent = <&gpio3>;

//// interrupts = <RK_PD3 IRQ_TYPE_EDGE_FALLING>;

// irq-gpio = <&gpio3 RK_PD3 GPIO_ACTIVE_HIGH>;

// reset-gpio = <&gpio3 RK_PD2 GPIO_ACTIVE_HIGH>;

// touchscreen-size-x = <1024>;

// touchscreen-size-y = <600>;

// is-mutex;

// filter-reg = <0x38>;

// bus-reg = <0x05>;

// status = "okay";

// };

rtc: pcf8563@51 {

compatible = "nxp,pcf8563";

reg = <0x51>;

status = "okay";

};

rx8010:rx8010@32 {

compatible = "epson,rx8010";

reg = <0x32>;

status = "okay";

};

usbc1: fusb302@22 {
compatible = "fcs,fusb302";
reg = <0x22>;
interrupt-parent = <&gpio1>;
interrupts = <RK_PB3 IRQ_TYPE_LEVEL_LOW>;
pinctrl-names = "default";
pinctrl-0 = <&usbc1_int>;
vbus-supply = <&vbus5v0_typec1>;
status = "okay";

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

port@0 {
reg = <0>;
usbc1_role_sw: endpoint@0 {
remote-endpoint = <&dwc3_1_role_switch>;
};
};
};

usb_con1: connector {
compatible = "usb-c-connector";
label = "USB-C";
data-role = "dual";
power-role = "dual";
try-power-role = "sink";
op-sink-microwatt = <1000000>;
sink-pdos =
<PDO_FIXED(5000, 1000, PDO_FIXED_USB_COMM)>;
source-pdos =
<PDO_FIXED(5000, 3000, PDO_FIXED_USB_COMM)>;

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

altmode@0 {
reg = <0>;
svid = <0xff01>;
vdo = <0xffffffff>;
};
};

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

port@0 {
reg = <0>;
usbc1_orien_sw: endpoint {
remote-endpoint = <&usbdp_phy1_orientation_switch>;
};
};

port@1 {
reg = <1>;
dp1_altmode_mux: endpoint {
remote-endpoint = <&usbdp_phy1_dp_altmode_mux>;
};
};
};
};
};

};

&i2c6 {

status = "okay";

//usbc0: husb311@4e {
// compatible = "hynetek,husb311";
// reg = <0x4e>;
// interrupt-parent = <&gpio3>;
// interrupts = <RK_PB6 IRQ_TYPE_LEVEL_LOW>;
// pinctrl-names = "default";
// pinctrl-0 = <&usbc0_int>;
// vbus-supply = <&vbus5v0_typec>;
// status = "okay";
//
// ports {
// #address-cells = <1>;
// #size-cells = <0>;
//
// port@0 {
// reg = <0>;
// usbc0_role_sw: endpoint@0 {
// remote-endpoint = <&dwc3_0_role_switch>;
// };
// };
// };
//
// usb_con: connector {
// compatible = "usb-c-connector";
// label = "USB-C";
// data-role = "dual";
// power-role = "dual";
// try-power-role = "sink";
// op-sink-microwatt = <1000000>;
// sink-pdos =
// <PDO_FIXED(5000, 1000, PDO_FIXED_USB_COMM)>;
// source-pdos =
// <PDO_FIXED(5000, 3000, PDO_FIXED_USB_COMM)>;
//
// altmodes {
// #address-cells = <1>;
// #size-cells = <0>;
//
// altmode@0 {
// reg = <0>;
// svid = <0xff01>;
// vdo = <0xffffffff>;
// };
// };
//
// ports {
// #address-cells = <1>;
// #size-cells = <0>;
//
// port@0 {
// reg = <0>;
// usbc0_orien_sw: endpoint {
// remote-endpoint = <&usbdp_phy0_orientation_switch>;
// };
// };
//
// port@1 {
// reg = <1>;
// dp_altmode_mux: endpoint {
// remote-endpoint = <&usbdp_phy0_dp_altmode_mux>;
// };
// };
// };
// };
//};

hym8563: hym8563@51 {

compatible = "haoyu,hym8563";

reg = <0x51>;

#clock-cells = <0>;

clock-frequency = <32768>;

clock-output-names = "hym8563";

pinctrl-names = "default";

pinctrl-0 = <&hym8563_int>;

interrupt-parent = <&gpio0>;

interrupts = <RK_PB0 IRQ_TYPE_LEVEL_LOW>;

wakeup-source;

};

};

3、拿掉LCD的RESET,配置type C0和type C1

&pinctrl {

cam {

mipicsi0_pwr: mipicsi0-pwr {

rockchip,pins =

/* camera power en */

<1 RK_PD2 RK_FUNC_GPIO &pcfg_pull_none>;

};

mipicsi1_pwr: mipicsi1-pwr {

rockchip,pins =

/* camera power en */

<1 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;

};

mipidcphy0_pwr: mipidcphy0-pwr {

rockchip,pins =

/* camera power en */

<2 RK_PC4 RK_FUNC_GPIO &pcfg_pull_none>;

};

};

hdmi {

hdmirx_det: hdmirx-det {

rockchip,pins = <1 RK_PD5 RK_FUNC_GPIO &pcfg_pull_up>;

};

};

headphone {

hp_det: hp-det {

rockchip,pins = <1 RK_PC4 RK_FUNC_GPIO &pcfg_pull_none>;

};

};

hym8563 {

hym8563_int: hym8563-int {

rockchip,pins = <0 RK_PB0 RK_FUNC_GPIO &pcfg_pull_up>;

};

};

//lcd {

// lcd_rst_gpio: lcd-rst-gpio {

// rockchip,pins = <0 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;

// };

//};

leds {

work_leds_gpio: work-leds-gpio {

rockchip,pins = <1 RK_PC6 RK_FUNC_GPIO &pcfg_pull_down>;

};

};

sdio-pwrseq {

wifi_enable_h: wifi-enable-h {

rockchip,pins = <0 RK_PC4 RK_FUNC_GPIO &pcfg_pull_up>;

};

};

sdmmc {

sd_s0_pwr: sd-s0-pwr {

rockchip,pins = <0 RK_PB7 RK_FUNC_GPIO &pcfg_pull_up>;

};

};

touch {

touch_gpio: touch-gpio {

rockchip,pins =

<3 RK_PC1 RK_FUNC_GPIO &pcfg_pull_down>,

<3 RK_PC0 RK_FUNC_GPIO &pcfg_pull_up>;

};

};

usb {

vcc5v0_host_en: vcc5v0-host-en {

rockchip,pins = <4 RK_PB0 RK_FUNC_GPIO &pcfg_pull_none>;

};

};

usb-typec {
usbc0_int: usbc0-int {
rockchip,pins = <1 RK_PB0 RK_FUNC_GPIO &pcfg_pull_up>;
};

typec5v_pwren0: typec5v-pwren0 {
rockchip,pins = <0 RK_PD0 RK_FUNC_GPIO &pcfg_pull_none>;
};

usbc1_int: usbc1-int {
rockchip,pins = <1 RK_PB3 RK_FUNC_GPIO &pcfg_pull_up>;
};

typec5v_pwren1: typec5v-pwren1 {
rockchip,pins = <0 RK_PD3 RK_FUNC_GPIO &pcfg_pull_none>;
};
};

wireless-bluetooth {

uart9_gpios: uart9-gpios {

rockchip,pins = <4 RK_PC4 RK_FUNC_GPIO &pcfg_pull_none>;

};

bt_reset_gpio: bt-reset-gpio {

rockchip,pins = <0 RK_PC6 RK_FUNC_GPIO &pcfg_pull_none>;

};

bt_wake_gpio: bt-wake-gpio {

rockchip,pins = <0 RK_PC5 RK_FUNC_GPIO &pcfg_pull_none>;

};

bt_irq_gpio: bt-irq-gpio {

rockchip,pins = <0 RK_PA0 RK_FUNC_GPIO &pcfg_pull_none>;

};

};

wireless-wlan {

wifi_host_wake_irq: wifi-host-wake-irq {

rockchip,pins = <0 RK_PB2 RK_FUNC_GPIO &pcfg_pull_down>;

};

};

pcie {

pcie20x1_0_clkreqn_m1: pcie20x1-0-clkreqn-m1 {

rockchip,pins = <4 RK_PB4 RK_FUNC_GPIO &pcfg_output_low>;

};

};

};

4、打开type C1

&u2phy0_otg {

rockchip,typec-vbus-det;

};

&u2phy1_otg {

phy-supply = <&vcc5v0_host>;

};

&u2phy2_host {

phy-supply = <&vcc5v0_host>;

};

&u2phy3_host {

phy-supply = <&vcc5v0_host>;

};

//&usbdp_phy0 {
// orientation-switch;
// svid = <0xff01>;
// sbu1-dc-gpios = <&gpio4 RK_PA0 GPIO_ACTIVE_HIGH>;
// sbu2-dc-gpios = <&gpio4 RK_PA1 GPIO_ACTIVE_HIGH>;
//
// port {
// #address-cells = <1>;
// #size-cells = <0>;
// usbdp_phy0_orientation_switch: endpoint@0 {
// reg = <0>;
// remote-endpoint = <&usbc0_orien_sw>;
// };
//
// usbdp_phy0_dp_altmode_mux: endpoint@1 {
// reg = <1>;
// remote-endpoint = <&dp_altmode_mux>;
// };
// };
//};

&usbdp_phy1 {
status = "okay";
orientation-switch;
rockchip,dp-lane-mux = <2 3>;
svid = <0xff01>;
sbu1-dc-gpios = <&gpio4 RK_PA1 GPIO_ACTIVE_HIGH>;
sbu2-dc-gpios = <&gpio4 RK_PA2 GPIO_ACTIVE_HIGH>;

port {
#address-cells = <1>;
#size-cells = <0>;
usbdp_phy1_orientation_switch: endpoint@0 {
reg = <0>;
remote-endpoint = <&usbc1_orien_sw>;
};

usbdp_phy1_dp_altmode_mux: endpoint@1 {
reg = <1>;
remote-endpoint = <&dp1_altmode_mux>;
};
};
};

//&usbdrd_dwc3_0 {
// dr_mode = "otg";
// usb-role-switch;
// port {
// #address-cells = <1>;
// #size-cells = <0>;
// dwc3_0_role_switch: endpoint@0 {
// reg = <0>;
// remote-endpoint = <&usbc0_role_sw>;
// };
// };
//};

&usbhost3_0 {

status = "disabled";

};

&usbhost_dwc3_0 {

status = "disabled";

};

&usbdp_phy1_dp {

status = "okay";

};

&usbdp_phy1_u3 {

status = "okay";

};

&usbdrd3_1 {
status = "okay";
};

&usbdrd_dwc3_1 {
status = "okay";
dr_mode = "otg";
usb-role-switch;
port {
#address-cells = <1>;
#size-cells = <0>;
dwc3_1_role_switch: endpoint@0 {
reg = <0>;
remote-endpoint = <&usbc1_role_sw>;
};
};
};

&usbhost3_0 {
status = "okay";
};

&usbhost_dwc3_0 {
status = "okay";
};

&combphy2_psu {
status = "okay";
};

&work_led {

gpios = <&gpio1 RK_PC6 GPIO_ACTIVE_HIGH>;

pinctrl-names = "default";

pinctrl-0 = <&work_leds_gpio>;

};

5、【插拔USB3.0接口的U盘】测试LOG:

root@rk3588-buildroot:/#

root@rk3588-buildroot:/#

root@rk3588-buildroot:/#

root@rk3588-buildroot:/# lsusb

Bus 005 Device 001: ID 1d6b:0002

Bus 003 Device 001: ID 1d6b:0001

Bus 001 Device 001: ID 1d6b:0002

Bus 008 Device 001: ID 1d6b:0003

Bus 006 Device 001: ID 1d6b:0003

Bus 004 Device 001: ID 1d6b:0001

Bus 002 Device 001: ID 1d6b:0002

Bus 007 Device 001: ID 1d6b:0002

root@rk3588-buildroot:/#

root@rk3588-buildroot:/#

root@rk3588-buildroot:/# [ 44.714568] dwc3 fc400000.usb: request 0000000022457179 was not queued to ep0out

44.714710\] android_work: did not send uevent (0 0 0000000000000000) \[ 44.822692\] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode \[ 44.823204\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 44.823497\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 9 \[ 44.823627\] xhci-hcd xhci-hcd.15.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010 \[ 44.823657\] xhci-hcd xhci-hcd.15.auto: irq 151, io mem 0xfc400000 \[ 44.823764\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 44.823974\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 10 \[ 44.823989\] xhci-hcd xhci-hcd.15.auto: Host supports USB 3.0 SuperSpeed \[ 44.824089\] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 44.824099\] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 44.824108\] usb usb9: Product: xHCI Host Controller \[ 44.824116\] usb usb9: Manufacturer: Linux 5.10.198 xhci-hcd \[ 44.824124\] usb usb9: SerialNumber: xhci-hcd.15.auto \[ 44.824515\] hub 9-0:1.0: USB hub found \[ 44.824539\] hub 9-0:1.0: 1 port detected \[ 44.824837\] usb usb10: We don't know the algorithms for LPM for this host, disabling LPM. \[ 44.824908\] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 44.824917\] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 44.824926\] usb usb10: Product: xHCI Host Controller \[ 44.824934\] usb usb10: Manufacturer: Linux 5.10.198 xhci-hcd \[ 44.824942\] usb usb10: SerialNumber: xhci-hcd.15.auto \[ 44.825608\] hub 10-0:1.0: USB hub found \[ 44.825640\] hub 10-0:1.0: 1 port detected \[ 44.827465\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 44.827482\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 44.827683\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 44.827714\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 44.827725\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 44.827752\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 45.362450\] usb 10-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd \[ 45.392242\] usb 10-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 0.01 \[ 45.392264\] usb 10-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 \[ 45.392269\] usb 10-1: Product: DataTraveler 3.0 \[ 45.392274\] usb 10-1: Manufacturer: Kingston \[ 45.392278\] usb 10-1: SerialNumber: E0D55EA573CDF830C93D1F6C \[ 45.480758\] usb-storage 10-1:1.0: USB Mass Storage device detected \[ 45.482527\] scsi host1: usb-storage 10-1:1.0 \[ 45.489108\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 45.489202\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 45.489506\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 45.489565\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 45.489595\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 45.489653\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 46.496813\] scsi 1:0:0:0: Direct-Access Kingston DataTraveler 3.0 PQ: 0 ANSI: 6 \[ 46.500113\] sd 1:0:0:0: \[sda\] 120845300 512-byte logical blocks: (61.9 GB/57.6 GiB) \[ 46.500850\] sd 1:0:0:0: \[sda\] Write Protect is off \[ 46.501527\] sd 1:0:0:0: \[sda\] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA \[ 46.506660\] sda: sda1 \[ 46.508319\] sd 1:0:0:0: \[sda\] Attached SCSI removable disk \[ 46.510685\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 46.510735\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 46.510835\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 46.510858\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 46.510869\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 46.510892\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 46.625064\] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! \[ 46.627223\] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 010 Device 001: ID 1d6b:0003 Bus 001 Device 001: ID 1d6b:0002 Bus 010 Device 002: ID 0951:1666 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 009 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# ![](https://i-blog.csdnimg.cn/direct/c9b3fa486bc245b6abb3396ecb4910d3.png) root@rk3588-buildroot:/# \[ 92.983761\] xhci-hcd xhci-hcd.15.auto: remove, state 1 \[ 92.983805\] usb usb10: USB disconnect, device number 1 \[ 92.983816\] usb 10-1: USB disconnect, device number 2 \[ 93.085147\] xhci-hcd xhci-hcd.15.auto: USB bus 10 deregistered \[ 93.085419\] xhci-hcd xhci-hcd.15.auto: remove, state 4 \[ 93.085437\] usb usb9: USB disconnect, device number 1 \[ 93.086351\] xhci-hcd xhci-hcd.15.auto: USB bus 9 deregistered \[ 93.326244\] android_work: did not send uevent (0 0 0000000000000000) root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 106.464861\] dwc3 fc400000.usb: request 0000000021b1168c was not queued to ep0out \[ 106.464923\] android_work: did not send uevent (0 0 0000000000000000) \[ 106.572317\] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode \[ 106.572361\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 106.572819\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 9 \[ 106.572973\] xhci-hcd xhci-hcd.15.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010 \[ 106.573007\] xhci-hcd xhci-hcd.15.auto: irq 151, io mem 0xfc400000 \[ 106.573132\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 106.573307\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 10 \[ 106.573322\] xhci-hcd xhci-hcd.15.auto: Host supports USB 3.0 SuperSpeed \[ 106.573430\] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 106.573441\] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 106.573449\] usb usb9: Product: xHCI Host Controller \[ 106.573457\] usb usb9: Manufacturer: Linux 5.10.198 xhci-hcd \[ 106.573465\] usb usb9: SerialNumber: xhci-hcd.15.auto \[ 106.573869\] hub 9-0:1.0: USB hub found \[ 106.573895\] hub 9-0:1.0: 1 port detected \[ 106.574191\] usb usb10: We don't know the algorithms for LPM for this host, disabling LPM. \[ 106.574263\] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 106.574273\] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 106.574281\] usb usb10: Product: xHCI Host Controller \[ 106.574289\] usb usb10: Manufacturer: Linux 5.10.198 xhci-hcd \[ 106.574298\] usb usb10: SerialNumber: xhci-hcd.15.auto \[ 106.574697\] hub 10-0:1.0: USB hub found \[ 106.574720\] hub 10-0:1.0: 1 port detected \[ 106.576562\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 106.576574\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 106.576675\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 106.576697\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 106.576707\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 106.576732\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 107.109039\] usb 10-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd \[ 107.138799\] usb 10-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 0.01 \[ 107.138807\] usb 10-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 \[ 107.138809\] usb 10-1: Product: DataTraveler 3.0 \[ 107.138811\] usb 10-1: Manufacturer: Kingston \[ 107.138813\] usb 10-1: SerialNumber: E0D55EA573CDF830C93D1F6C \[ 107.226872\] usb-storage 10-1:1.0: USB Mass Storage device detected \[ 107.228276\] scsi host1: usb-storage 10-1:1.0 \[ 107.230656\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 107.230687\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 107.230835\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 107.230860\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 107.230871\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 107.230894\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 108.256951\] scsi 1:0:0:0: Direct-Access Kingston DataTraveler 3.0 PQ: 0 ANSI: 6 \[ 108.260146\] sd 1:0:0:0: \[sda\] 120845300 512-byte logical blocks: (61.9 GB/57.6 GiB) \[ 108.260727\] sd 1:0:0:0: \[sda\] Write Protect is off \[ 108.261318\] sd 1:0:0:0: \[sda\] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA \[ 108.266613\] sda: sda1 \[ 108.269764\] sd 1:0:0:0: \[sda\] Attached SCSI removable disk \[ 108.271485\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 108.271510\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 108.271602\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 108.271622\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 108.271631\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 108.271652\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 108.380628\] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! \[ 108.384109\] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 010 Device 001: ID 1d6b:0003 Bus 001 Device 001: ID 1d6b:0002 Bus 010 Device 002: ID 0951:1666 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 009 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# ![](https://i-blog.csdnimg.cn/direct/e4feb8235d0f4ec0acc3654c6eb44b59.png) 6、核对GPIO口的配置: root@rk3588-buildroot:/# pinmux-pins-buildroot:/# cat /sys/kernel/debug/pinctrl/pinctrl-rockchip-pinctrl/p Pinmux settings per pin Format: pin (name): mux_owner gpio_owner hog? pin 0 (gpio0-0): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 1 (gpio0-1): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 2 (gpio0-2): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 3 (gpio0-3): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 4 (gpio0-4): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-det pin 5 (gpio0-5): feb20000.spi (GPIO UNCLAIMED) function spi2 group spi2m2-pins pin 6 (gpio0-6): feb20000.spi (GPIO UNCLAIMED) function spi2 group spi2m2-pins pin 7 (gpio0-7): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 8 (gpio0-8): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 9 (gpio0-9): feb20000.spi (GPIO UNCLAIMED) function spi2 group spi2m2-cs0 pin 10 (gpio0-10): wireless-wlan (GPIO UNCLAIMED) function wireless-wlan group wifi-host-wake-irq pin 11 (gpio0-11): feb20000.spi (GPIO UNCLAIMED) function spi2 group spi2m2-pins pin 12 (gpio0-12): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 13 (gpio0-13): fiq-debugger (GPIO UNCLAIMED) function uart2 group uart2m0-xfer pin 14 (gpio0-14): fiq-debugger (GPIO UNCLAIMED) function uart2 group uart2m0-xfer pin 15 (gpio0-15): vcc-3v3-sd-s0-regulator gpio0:15 function sdmmc group sd-s0-pwr pin 16 (gpio0-16): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 17 (gpio0-17): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 18 (gpio0-18): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 19 (gpio0-19): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 20 (gpio0-20): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 21 (gpio0-21): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 22 (gpio0-22): febd0010.pwm (GPIO UNCLAIMED) function pwm5 group pwm5m1-pins pin 23 (gpio0-23): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 24 (gpio0-24): vbus5v0-typec0 gpio0:24 function usb-typec group typec5v-pwren0 pin 25 (gpio0-25): fd880000.i2c (GPIO UNCLAIMED) function i2c0 group i2c0m2-xfer pin 26 (gpio0-26): fd880000.i2c (GPIO UNCLAIMED) function i2c0 group i2c0m2-xfer pin 27 (gpio0-27): vbus5v0-typec1 gpio0:27 function usb-typec group typec5v-pwren1 pin 28 (gpio0-28): fea90000.i2c (GPIO UNCLAIMED) function i2c1 group i2c1m2-xfer pin 29 (gpio0-29): fea90000.i2c (GPIO UNCLAIMED) function i2c1 group i2c1m2-xfer pin 30 (gpio0-30): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 31 (gpio0-31): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 32 (gpio1-0): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 33 (gpio1-1): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 34 (gpio1-2): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 35 (gpio1-3): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 36 (gpio1-4): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 37 (gpio1-5): fde80000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim0-tx0-hpd pin 38 (gpio1-6): fdea0000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim0-tx1-hpd pin 39 (gpio1-7): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 40 (gpio1-8): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 41 (gpio1-9): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 42 (gpio1-10): vcc-mipidcphy0-regulator gpio1:42 function cam group mipidphy0-pwr pin 43 (gpio1-11): 5-0022 (GPIO UNCLAIMED) function usb-typec group usbc1-int pin 44 (gpio1-12): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 45 (gpio1-13): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 46 (gpio1-14): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 47 (gpio1-15): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 48 (gpio1-16): feab0000.i2c (GPIO UNCLAIMED) function i2c3 group i2c3m0-xfer pin 49 (gpio1-17): feab0000.i2c (GPIO UNCLAIMED) function i2c3 group i2c3m0-xfer pin 50 (gpio1-18): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 51 (gpio1-19): fe470000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-sclk pin 52 (gpio1-20): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 53 (gpio1-21): fe470000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-lrck pin 54 (gpio1-22): (MUX UNCLAIMED) gpio1:54 pin 55 (gpio1-23): fe470000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-sdo0 pin 56 (gpio1-24): fec90000.i2c (GPIO UNCLAIMED) function i2c7 group i2c7m0-xfer pin 57 (gpio1-25): fec90000.i2c (GPIO UNCLAIMED) function i2c7 group i2c7m0-xfer pin 58 (gpio1-26): vcc-mipicsi0-regulator gpio1:58 function cam group mipicsi0-pwr pin 59 (gpio1-27): vcc-mipicsi1-regulator gpio1:59 function cam group mipicsi1-pwr pin 60 (gpio1-28): fe470000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-sdi0 pin 61 (gpio1-29): fdee0000.hdmirx-controller gpio1:61 function hdmi group hdmirx-det pin 62 (gpio1-30): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 63 (gpio1-31): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 64 (gpio2-0): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 65 (gpio2-1): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 66 (gpio2-2): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 67 (gpio2-3): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 68 (gpio2-4): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 69 (gpio2-5): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 70 (gpio2-6): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 71 (gpio2-7): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 72 (gpio2-8): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 73 (gpio2-9): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 74 (gpio2-10): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 75 (gpio2-11): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 76 (gpio2-12): feac0000.i2c (GPIO UNCLAIMED) function i2c4 group i2c4m1-xfer pin 77 (gpio2-13): feac0000.i2c (GPIO UNCLAIMED) function i2c4 group i2c4m1-xfer pin 78 (gpio2-14): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 79 (gpio2-15): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 80 (gpio2-16): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 81 (gpio2-17): (MUX UNCLAIMED) gpio2:81 pin 82 (gpio2-18): febc0000.serial (GPIO UNCLAIMED) function uart9 group uart9m0-xfer pin 83 (gpio2-19): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 84 (gpio2-20): febc0000.serial (GPIO UNCLAIMED) function uart9 group uart9m0-xfer pin 85 (gpio2-21): (MUX UNCLAIMED) gpio2:85 pin 86 (gpio2-22): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 87 (gpio2-23): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 88 (gpio2-24): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 89 (gpio2-25): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 90 (gpio2-26): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 91 (gpio2-27): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 92 (gpio2-28): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 93 (gpio2-29): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 94 (gpio2-30): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 95 (gpio2-31): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 96 (gpio3-0): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-bus pin 97 (gpio3-1): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-bus pin 98 (gpio3-2): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-bus pin 99 (gpio3-3): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-bus pin 100 (gpio3-4): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-clk pin 101 (gpio3-5): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rgmii-clk pin 102 (gpio3-6): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 103 (gpio3-7): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rx-bus2 pin 104 (gpio3-8): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rx-bus2 pin 105 (gpio3-9): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-rx-bus2 pin 106 (gpio3-10): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 107 (gpio3-11): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-tx-bus2 pin 108 (gpio3-12): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-tx-bus2 pin 109 (gpio3-13): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-tx-bus2 pin 110 (gpio3-14): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 111 (gpio3-15): (MUX UNCLAIMED) gpio3:111 pin 112 (gpio3-16): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 113 (gpio3-17): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 114 (gpio3-18): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-miim pin 115 (gpio3-19): fe1c0000.ethernet (GPIO UNCLAIMED) function gmac1 group gmac1-miim pin 116 (gpio3-20): fdea0000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim2-tx1-cec pin 117 (gpio3-21): fdea0000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim1-tx1-sda pin 118 (gpio3-22): fdea0000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim1-tx1-scl pin 119 (gpio3-23): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 120 (gpio3-24): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 121 (gpio3-25): fdee0000.hdmirx-controller (GPIO UNCLAIMED) function hdmi group hdmim1-rx pin 122 (gpio3-26): fdee0000.hdmirx-controller (GPIO UNCLAIMED) function hdmi group hdmim1-rx pin 123 (gpio3-27): fdee0000.hdmirx-controller (GPIO UNCLAIMED) function hdmi group hdmim1-rx pin 124 (gpio3-28): fdee0000.hdmirx-controller (GPIO UNCLAIMED) function hdmi group hdmim1-rx pin 125 (gpio3-29): fde60000.dp (GPIO UNCLAIMED) function dp1 group dp1m0-pins pin 126 (gpio3-30): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 127 (gpio3-31): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 128 (gpio4-0): (MUX UNCLAIMED) gpio4:128 pin 129 (gpio4-1): (MUX UNCLAIMED) gpio4:129 pin 130 (gpio4-2): (MUX UNCLAIMED) gpio4:130 pin 131 (gpio4-3): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 132 (gpio4-4): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 133 (gpio4-5): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 134 (gpio4-6): fead0000.i2c (GPIO UNCLAIMED) function i2c5 group i2c5m2-xfer pin 135 (gpio4-7): fead0000.i2c (GPIO UNCLAIMED) function i2c5 group i2c5m2-xfer pin 136 (gpio4-8): vcc5v0-host gpio4:136 function usb group vcc5v0-host-en pin 137 (gpio4-9): (MUX UNCLAIMED) gpio4:137 pin 138 (gpio4-10): (MUX UNCLAIMED) gpio4:138 pin 139 (gpio4-11): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 140 (gpio4-12): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 141 (gpio4-13): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 142 (gpio4-14): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 143 (gpio4-15): fde80000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim0-tx0-scl pin 144 (gpio4-16): fde80000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim0-tx0-sda pin 145 (gpio4-17): fde80000.hdmi (GPIO UNCLAIMED) function hdmi group hdmim0-tx0-cec pin 146 (gpio4-18): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 147 (gpio4-19): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 148 (gpio4-20): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 149 (gpio4-21): febc0000.serial (GPIO UNCLAIMED) function uart9 group uart9m0-ctsn pin 150 (gpio4-22): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 151 (gpio4-23): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 152 (gpio4-24): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4 pin 153 (gpio4-25): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4 pin 154 (gpio4-26): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4 pin 155 (gpio4-27): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4 pin 156 (gpio4-28): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-cmd pin 157 (gpio4-29): fe2c0000.mmc (GPIO UNCLAIMED) function sdmmc group sdmmc-clk pin 158 (gpio4-30): (MUX UNCLAIMED) (GPIO UNCLAIMED) pin 159 (gpio4-31): (MUX UNCLAIMED) (GPIO UNCLAIMED) root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# cat /sys/kernel/debug/gpio gpiochip0: GPIOs 0-31, parent: platform/fd8a0000.gpio, gpio0: gpio-15 ( \|vcc-3v3-sd-s0-regula) out lo gpio-24 ( \|vbus5v0-typec0 ) out lo gpio-27 ( \|vbus5v0-typec1 ) out hi gpiochip1: GPIOs 32-63, parent: platform/fec20000.gpio, gpio1: gpio-42 ( \|vcc-mipidcphy0-regul) out lo gpio-54 ( \|work ) out lo gpio-58 ( \|vcc-mipicsi0-regulat) out lo gpio-59 ( \|vcc-mipicsi1-regulat) out lo gpio-61 ( \|hdmirx-det ) in hi ACTIVE LOW gpiochip2: GPIOs 64-95, parent: platform/fec30000.gpio, gpio2: gpio-81 ( \|vcc3v3-lcd0-n ) out lo gpio-85 ( \|vcc3v3-pcie30 ) out lo gpiochip3: GPIOs 96-127, parent: platform/fec40000.gpio, gpio3: gpio-111 ( \|snps,reset ) out hi ACTIVE LOW gpiochip4: GPIOs 128-159, parent: platform/fec50000.gpio, gpio4: gpio-128 ( \|ircut-open ) out lo gpio-129 ( \|sbu1-dc ) out lo gpio-130 ( \|sbu2-dc ) out hi gpio-136 ( \|vcc5v0-host ) out hi gpio-137 ( \|enable ) out hi gpio-138 ( \|enable ) out hi gpiochip5: GPIOs 509-511, parent: platform/rk806-pinctrl.2.auto, rk806-gpio, can sleep: root@rk3588-buildroot:/# ![](https://i-blog.csdnimg.cn/direct/78cc161a2c8d403a9729f5c8d67c20da.png) ![](https://i-blog.csdnimg.cn/direct/26fe44bf1e3d44f8b1a9c67f20108f30.png) ![](https://i-blog.csdnimg.cn/direct/90681df07b0c4a3fbc9404c6d118a048.jpeg) 7、 【插拔USB3.0接口的U盘】完整的LOG: \[BEGIN\] 2025/12/15 21:02:37 DDR d5483af87d cym 23/11/23-16:15:24,fwver: v1.15 LPDDR4X, 2112MHz channel\[0\] BW=16 Col=10 Bk=8 CS0 Row=16 CS=1 Die BW=16 Size=1024MB channel\[1\] BW=16 Col=10 Bk=8 CS0 Row=16 CS=1 Die BW=16 Size=1024MB channel\[2\] BW=16 Col=10 Bk=8 CS0 Row=16 CS=1 Die BW=16 Size=1024MB channel\[3\] BW=16 Col=10 Bk=8 CS0 Row=16 CS=1 Die BW=16 Size=1024MB Manufacturer ID:0x13 CH0 RX Vref:30.1%, TX Vref:24.8%,0.0% CH1 RX Vref:28.5%, TX Vref:23.8%,0.0% CH2 RX Vref:31.8%, TX Vref:22.8%,0.0% CH3 RX Vref:29.7%, TX Vref:22.8%,0.0% change to F1: 528MHz change to F2: 1068MHz change to F3: 1560MHz change to F0: 2112MHz out U-Boot SPL board init U-Boot SPL 2017.09-ge4e124926e-230922 #lxh (Sep 25 2023 - 10:58:38), fwver: v1.13 unknown raw ID 0 0 0 unrecognized JEDEC id bytes: 00, 00, 00 Trying to boot from MMC2 MMC: no card present mmc_init: -123, time 0 spl: mmc init failed with error: -123 Trying to boot from MMC1 SPL: A/B-slot: _a, successful: 0, tries-remain: 7 Trying fit image at 0x4000 sector ## Verified-boot: 0 ## Checking atf-1 0x00040000 ... sha256(2e8446f969...) + OK ## Checking uboot 0x00200000 ... sha256(fcf10633af...) + OK ## Checking fdt 0x00345490 ... sha256(a434b1c4fe...) + OK ## Checking atf-2 0xff100000 ... sha256(9f75e6ec37...) + OK ## Checking atf-3 0x000f0000 ... sha256(c80587de50...) + OK ## Checking optee 0x08400000 ... sha256(4b2d406bfc...) + OK Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000) Total: 79.446/211.305 ms INFO: Preloader serial: 2 NOTICE: BL31: v2.3():v2.3-662-g4acbe711b-dirty:finley.xiao, fwver: v1.44 NOTICE: BL31: Built : 16:44:24, Nov 7 2023 INFO: spec: 0x1 INFO: code: 0x88 INFO: ext 32k is not valid INFO: ddr: stride-en 4CH INFO: GICv3 without legacy support detected. INFO: ARM GICv3 driver initialized in EL3 INFO: valid_cpu_msk=0xff bcore0_rst = 0x0, bcore1_rst = 0x0 INFO: l3 cache partition cfg-0 INFO: system boots from cpu-hwid-0 INFO: idle_st=0x21fff, pd_st=0x11fff9, repair_st=0xfff70001 INFO: dfs DDR fsp_params\[0\].freq_mhz= 2112MHz INFO: dfs DDR fsp_params\[1\].freq_mhz= 528MHz INFO: dfs DDR fsp_params\[2\].freq_mhz= 1068MHz INFO: dfs DDR fsp_params\[3\].freq_mhz= 1560MHz INFO: BL31: Initialising Exception Handling Framework INFO: BL31: Initializing runtime services INFO: BL31: Initializing BL32 I/TC: I/TC: OP-TEE version: 3.13.0-752-g62aa10b78 #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #2 Mon Sep 25 10:04:34 CST 2023 aarch64, fwver: v1.15 I/TC: Primary CPU initializing I/TC: Primary CPU switching to normal world boot INFO: BL31: Preparing for EL3 exit to normal world INFO: Entry point address = 0x200000 INFO: SPSR = 0x3c9 U-Boot 2017.09 (Dec 15 2025 - 20:27:43 +0800) Model: Rockchip RK3588 Evaluation Board MPIDR: 0x81000000 PreSerial: 2, raw, 0xfeb50000 DRAM: 4 GiB Sysmem: init Relocation Offset: eda18000 Relocation fdt: eb9fa160 - eb9fecd0 CR: M/C/I Using default environment optee api revision: 2.0 mmc@fe2c0000: 1, mmc@fe2e0000: 0 Bootdev(atags): mmc 0 MMC0: HS400 Enhanced Strobe, 200Mhz PartType: EFI TEEC: Waring: Could not find security partition DM: v2 boot mode: None RESC: 'boot', blk@0x00019b95 resource: sha256+ FIT: no signed, no conf required DTB: rk-kernel.dtb HASH(c): OK I2c0 speed: 100000Hz vsel-gpios- not found! en-gpios- not found! vdd_cpu_big0_s0 800000 uV vsel-gpios- not found! en-gpios- not found! vdd_cpu_big1_s0 800000 uV I2c1 speed: 100000Hz vsel-gpios- not found! en-gpios- not found! vdd_npu_s0 800000 uV spi2: RK806: 2 ON=0x40, OFF=0x00 vdd_gpu_s0 750000 uV vdd_cpu_lit_s0 750000 uV vdd_log_s0 750000 uV vdd_vdenc_s0 init 750000 uV vdd_ddr_s0 850000 uV Device 'gpio@fd8a0000': seq 0 is in use by 'gpio@fd8a0000' Device 'gpio@fec20000': seq 1 is in use by 'gpio@fd8a0000' serdes_power_init failed to get serdes misc device get vp0 plane mask:0x5, primary id:2, cursor_plane:-1, from dts get vp1 plane mask:0xa, primary id:3, cursor_plane:-1, from dts get vp2 plane mask:0x140, primary id:8, cursor_plane:-1, from dts get vp3 plane mask:0x280, primary id:9, cursor_plane:-1, from dts Could not find baseparameter partition Model: Rockchip RK3588 EVB7 V11 Board MPIDR: 0x81000000 Minidump: init... Rockchip UBOOT DRM driver version: v1.0.1 vp0 have layer nr:2\[0 2 \], primary plane: 2 vp1 have layer nr:2\[1 3 \], primary plane: 3 vp2 have layer nr:2\[6 8 \], primary plane: 8 vp3 have layer nr:2\[7 9 \], primary plane: 9 Using display timing dts dsi@fde20000: detailed mode clock 45000 kHz, flags\[a

H: 1024 1064 1112 1160

V: 0600 0640 0644 0692

bus_format: 100e

VOP update mode to: 1024x600p56, type: MIPI0 for VP3

VP3 set crtc_clock to 44118KHz

VOP VP3 enable Esmart3[654x270->654x270@185x165] fmt[2] addr[0xedf04000]

final DSI-Link bandwidth: 294120 Kbps x 4

hdmi@fde80000 disconnected

i2c read err!

i2c read err!

i2c read err!

i2c read err!

i2c read err!

can't get edid block:0

failed to get edid

Could not find baseparameter partition

color_format:0

hdmi_select_link_config use tmds mode

mode:1920x1080 bus_format:0x100a

hdmi@fdea0000: detailed mode clock 148500 kHz, flags[5]

H: 1920 2008 2052 2200

V: 1080 1084 1089 1125

bus_format: 100a

VOP update mode to: 1920x1080p60, type: HDMI1 for VP1

dclk:148500,if_pixclk_div;2,if_dclk_div:4

VP1 set crtc_clock to 148500KHz

VOP VP1 enable Esmart1[654x270->654x270@633x405] fmt[2] addr[0xedf04000]

CEA mode used vic=16

mtmdsclock:148500000

hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000

hdptx phy pll locked!

dw_hdmi_setup HDMI mode

don't use dsc mode

dw hdmi qp use tmds mode

bus_width:0x16a8c8,bit_rate:1485000

hdptx phy lane locked!

CLK: (sync kernel. arm: enter 1008000 KHz, init 1008000 KHz, kernel 0N/A)

b0pll 24000 KHz

b1pll 24000 KHz

lpll 24000 KHz

v0pll 24000 KHz

aupll 786431 KHz

cpll 1500000 KHz

gpll 1188000 KHz

npll 850000 KHz

ppll 1100000 KHz

aclk_center_root 702000 KHz

pclk_center_root 100000 KHz

hclk_center_root 396000 KHz

aclk_center_low_root 500000 KHz

aclk_top_root 750000 KHz

pclk_top_root 100000 KHz

aclk_low_top_root 396000 KHz

Net: Device 'gpio@fec40000': seq 3 is in use by 'gpio@fec20000'

eth1: ethernet@fe1c0000

Hit key to stop autoboot('CTRL+C'): 0

ANDROID: reboot reason: "(none)"

Not AVB images, AVB skip

No valid android hdr

Android image load failed

Android boot failed, error -1.

Booting FIT Image at 0xe9486740 with size 0x02372a00

Fdt Ramdisk skip relocation

Loading kernel from FIT Image at e9486740 ...

Using 'conf' configuration

Verified-boot: 0

Trying 'kernel' kernel subimage

Description: unavailable

Type: Kernel Image

Compression: uncompressed

Data Start: 0xe94cc740

Data Size: 36882944 Bytes = 35.2 MiB

Architecture: AArch64

OS: Linux

Load Address: 0x00400000

Entry Point: 0x00400000

Hash algo: sha256

Hash value: f27dc12c05a08b3be36c82af97205fe3b85da864e272bf91dfb898f74e2e87ec

Verifying Hash Integrity ... sha256+ OK

Loading fdt from FIT Image at e9486740 ...

Using 'conf' configuration

Trying 'fdt' fdt subimage

Description: unavailable

Type: Flat Device Tree

Compression: uncompressed

Data Start: 0xe9486f40

Data Size: 284380 Bytes = 277.7 KiB

Architecture: AArch64

Load Address: 0x08300000

Hash algo: sha256

Hash value: 8b5b179b34e5989fba98bce6a107efa91a9d067e34343ed4ec8ea2eb039fc635

Verifying Hash Integrity ... sha256+ OK

Loading fdt from 0x08300000 to 0x08300000

Booting using the fdt blob at 0x08300000

Loading Kernel Image from 0xe94cc740 to 0x00400000 ... OK

kernel loaded at 0x00400000, end = 0x0272ca00

Using Device Tree in place at 0000000008300000, end 00000000083486db

WARNING: could not set reg FDT_ERR_BADOFFSET.

reserved-memory:

cma: addr=10000000 size=8000000

drm-logo@00000000: addr=edf00000 size=b8000

ramoops@110000: addr=110000 size=e0000

Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)

Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)

Adding bank: 0x1f0000000 - 0x200000000 (size: 0x10000000)

Total: 731.646/1030.333 ms

Starting kernel ...

1.035318\] Booting Linux on physical CPU 0x0000000000 \[0x412fd050

1.035336\] Linux version 5.10.198 (jinhualong@jinhualong-LEGION-REN7000K-26IRX) (aarch64-none-linux-gnu-gcc (GNU Toolchain for the A-profile Architecture 10.3-2021.07 (arm-10.29)) 10.3.1 20210621, GNU ld (GNU Toolchain for the A-profile Architecture 10.3-2021.07 (arm-10.29)) 2.36.1.20210621) #2 SMP Mon Dec 15 16:00:23 CST 2025 \[ 1.038942\] random: crng init done \[ 1.046999\] Machine model: Rockchip RK3588 EVB7 V11 Board \[ 1.083698\] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '') \[ 1.088333\] printk: bootconsole \[uart8250\] enabled \[ 1.091155\] efi: UEFI not found. \[ 1.097174\] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB \[ 1.098332\] Reserved memory: created CMA memory pool at 0x0000000010000000, size 128 MiB \[ 1.099073\] OF: reserved mem: initialized node cma, compatible id shared-dma-pool \[ 1.169983\] Zone ranges: \[ 1.170223\] DMA \[mem 0x0000000000200000-0x00000000ffffffff

1.170793\] DMA32 empty \[ 1.171059\] Normal \[mem 0x0000000100000000-0x00000001ffffffff

1.171626\] Movable zone start for each node \[ 1.172016\] Early memory node ranges \[ 1.172346\] node 0: \[mem 0x0000000000200000-0x00000000083fffff

1.172920\] node 0: \[mem 0x0000000009400000-0x00000000efffffff

1.173495\] node 0: \[mem 0x00000001f0000000-0x00000001ffffffff

1.174070\] Initmem setup node 0 \[mem 0x0000000000200000-0x00000001ffffffff

1.198557\] psci: probing for conduit method from DT. \[ 1.199027\] psci: PSCIv1.1 detected in firmware. \[ 1.199451\] psci: Using standard PSCI v0.2 function IDs \[ 1.199932\] psci: Trusted OS migration not required \[ 1.200381\] psci: SMC Calling Convention v1.2 \[ 1.201138\] percpu: Embedded 30 pages/cpu s83800 r8192 d30888 u122880 \[ 1.201901\] Detected VIPT I-cache on CPU0 \[ 1.202301\] CPU features: detected: GIC system register CPU interface \[ 1.202890\] CPU features: detected: Virtualization Host Extensions \[ 1.203460\] CPU features: detected: ARM errata 1165522, 1319367, or 1530923 \[ 1.204110\] alternatives: patching kernel code \[ 1.206068\] Built 1 zonelists, mobility grouping on. Total pages: 1027656 \[ 1.206703\] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal androidboot.verifiedbootstate=orange rw rootwait earlycon=uart8250,mmio32,0xfeb50000 console=ttyFIQ0 irqchip.gicv3_pseudo_nmi=0 root=PARTUUID=614e0000-0000 rcupdate.rcu_expedited=1 rcu_nocbs=all androidboot.fwver=ddr-v1.15-d5483af87d,spl-v1.13,bl31-v1.44,bl32-v1.15,uboot-12/15/2025 \[ 1.210401\] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes, linear) \[ 1.211323\] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) \[ 1.212033\] mem auto-init: stack:off, heap alloc:off, heap free:off \[ 1.218801\] software IO TLB: mapped \[mem 0x00000000e9f00000-0x00000000edf00000\] (64MB) \[ 1.249816\] Memory: 3859084K/4175872K available (18752K kernel code, 3506K rwdata, 6916K rodata, 6720K init, 590K bss, 185716K reserved, 131072K cma-reserved) \[ 1.251217\] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 \[ 1.251840\] ftrace: allocating 57356 entries in 225 pages \[ 1.323204\] ftrace: allocated 225 pages with 4 groups \[ 1.323883\] rcu: Hierarchical RCU implementation. \[ 1.324318\] rcu: RCU event tracing is enabled. \[ 1.324733\] rcu: RCU dyntick-idle grace-period acceleration is enabled. \[ 1.325346\] All grace periods are expedited (rcu_expedited). \[ 1.325872\] Rude variant of Tasks RCU enabled. \[ 1.326288\] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies. \[ 1.330771\] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 \[ 1.333772\] GICv3: GIC: Using split EOI/Deactivate mode \[ 1.334255\] GICv3: 480 SPIs implemented \[ 1.334606\] GICv3: 0 Extended SPIs implemented \[ 1.335034\] GICv3: Distributor has no Range Selector support \[ 1.335557\] GICv3: 16 PPIs implemented \[ 1.335941\] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000 \[ 1.336655\] ITS \[mem 0xfe640000-0xfe65ffff

1.337082\] ITS@0x00000000fe640000: allocated 8192 Devices @1f01f0000 (indirect, esz 8, psz 64K, shr 0) \[ 1.337961\] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @1f0200000 (flat, esz 2, psz 64K, shr 0) \[ 1.338910\] ITS: using cache flushing for cmd queue \[ 1.339380\] ITS \[mem 0xfe660000-0xfe67ffff

1.339801\] ITS@0x00000000fe660000: allocated 8192 Devices @1f0220000 (indirect, esz 8, psz 64K, shr 0) \[ 1.340677\] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @1f0230000 (flat, esz 2, psz 64K, shr 0) \[ 1.341625\] ITS: using cache flushing for cmd queue \[ 1.342290\] GICv3: using LPI property table @0x00000001f0240000 \[ 1.342950\] GIC: using cache flushing for LPI property table \[ 1.343473\] GICv3: CPU0: using allocated LPI pending table @0x00000001f0250000 \[ 1.344175\] rcu: Offload RCU callbacks from CPUs: 0-7. \[ 1.453282\] arch_timer: cp15 timer(s) running at 24.00MHz (phys). \[ 1.453829\] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns \[ 1.454792\] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns \[ 1.456708\] Console: colour dummy device 80x25 \[ 1.457131\] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000) \[ 1.458049\] pid_max: default: 32768 minimum: 301 \[ 1.458547\] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) \[ 1.459212\] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear) \[ 1.461079\] rcu: Hierarchical SRCU implementation. \[ 1.462220\] Platform MSI: msi-controller@fe640000 domain created \[ 1.462765\] Platform MSI: msi-controller@fe660000 domain created \[ 1.463644\] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created \[ 1.464392\] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created \[ 1.465314\] EFI services will not be available. \[ 1.465956\] smp: Bringing up secondary CPUs ... I/TC: Secondary CPU 1 initializing I/TC: Secondary CPU 1 switching to normal world boot I/TC: Secondary CPU 2 initializing I/TC: Secondary CPU 2 switching to normal world boot I/TC: Secondary CPU 3 initializing I/TC: Secondary CPU 3 switching to normal world boot I/TC: Secondary CPU 4 initializing I/TC: Secondary CPU 4 switching to normal world boot I/TC: Secondary CPU 5 initializing I/TC: Secondary CPU 5 switching to normal world boot I/TC: Secondary CPU 6 initializing I/TC: Secondary CPU 6 switching to normal world boot I/TC: Secondary CPU 7 initializing I/TC: Secondary CPU 7 switching to normal world boot \[ 1.467460\] Detected VIPT I-cache on CPU1 \[ 1.467483\] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000 \[ 1.467498\] GICv3: CPU1: using allocated LPI pending table @0x00000001f0260000 \[ 1.467537\] CPU1: Booted secondary processor 0x0000000100 \[0x412fd050

1.468692\] Detected VIPT I-cache on CPU2 \[ 1.468712\] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000 \[ 1.468726\] GICv3: CPU2: using allocated LPI pending table @0x00000001f0270000 \[ 1.468761\] CPU2: Booted secondary processor 0x0000000200 \[0x412fd050

1.469892\] Detected VIPT I-cache on CPU3 \[ 1.469909\] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000 \[ 1.469922\] GICv3: CPU3: using allocated LPI pending table @0x00000001f0280000 \[ 1.469954\] CPU3: Booted secondary processor 0x0000000300 \[0x412fd050

1.471135\] CPU features: detected: Spectre-v4 \[ 1.471137\] CPU features: detected: Spectre-BHB \[ 1.471139\] Detected PIPT I-cache on CPU4 \[ 1.471151\] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000 \[ 1.471158\] GICv3: CPU4: using allocated LPI pending table @0x00000001f0290000 \[ 1.471180\] CPU4: Booted secondary processor 0x0000000400 \[0x414fd0b0

1.472277\] Detected PIPT I-cache on CPU5 \[ 1.472289\] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000 \[ 1.472297\] GICv3: CPU5: using allocated LPI pending table @0x00000001f02a0000 \[ 1.472318\] CPU5: Booted secondary processor 0x0000000500 \[0x414fd0b0

1.473410\] Detected PIPT I-cache on CPU6 \[ 1.473421\] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000 \[ 1.473429\] GICv3: CPU6: using allocated LPI pending table @0x00000001f02b0000 \[ 1.473451\] CPU6: Booted secondary processor 0x0000000600 \[0x414fd0b0

1.474560\] Detected PIPT I-cache on CPU7 \[ 1.474571\] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000 \[ 1.474579\] GICv3: CPU7: using allocated LPI pending table @0x00000001f02c0000 \[ 1.474601\] CPU7: Booted secondary processor 0x0000000700 \[0x414fd0b0

1.474651\] smp: Brought up 1 node, 8 CPUs \[ 1.491191\] SMP: Total of 8 processors activated. \[ 1.491617\] CPU features: detected: Privileged Access Never \[ 1.492112\] CPU features: detected: LSE atomic instructions \[ 1.492607\] CPU features: detected: User Access Override \[ 1.493077\] CPU features: detected: 32-bit EL0 Support \[ 1.493533\] CPU features: detected: Common not Private translations \[ 1.494089\] CPU features: detected: RAS Extension Support \[ 1.494568\] CPU features: detected: Data cache clean to the PoU not required for I/D coherence \[ 1.495338\] CPU features: detected: CRC32 instructions \[ 1.495794\] CPU features: detected: Speculative Store Bypassing Safe (SSBS) \[ 1.496412\] CPU features: detected: RCpc load-acquire (LDAPR) \[ 1.521398\] CPU: All CPU(s) started at EL2 \[ 1.522958\] devtmpfs: initialized \[ 1.533247\] Registered cp15_barrier emulation handler \[ 1.533701\] Registered setend emulation handler \[ 1.534160\] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns \[ 1.535034\] futex hash table entries: 2048 (order: 5, 131072 bytes, linear) \[ 1.536570\] pinctrl core: initialized pinctrl subsystem \[ 1.537204\] DMI not present or invalid. \[ 1.537629\] NET: Registered protocol family 16 \[ 1.538587\] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocations \[ 1.539260\] DMA: preallocated 512 KiB GFP_KERNEL\|GFP_DMA pool for atomic allocations \[ 1.540326\] Registered FIQ tty driver \[ 1.540743\] thermal_sys: Registered thermal governor 'fair_share' \[ 1.540745\] thermal_sys: Registered thermal governor 'step_wise' \[ 1.541285\] thermal_sys: Registered thermal governor 'user_space' \[ 1.541818\] thermal_sys: Registered thermal governor 'power_allocator' \[ 1.542467\] thermal thermal_zone1: power_allocator: sustainable_power will be estimated \[ 1.543768\] thermal thermal_zone2: power_allocator: sustainable_power will be estimated \[ 1.544493\] thermal thermal_zone3: power_allocator: sustainable_power will be estimated \[ 1.545220\] thermal thermal_zone4: power_allocator: sustainable_power will be estimated \[ 1.545944\] thermal thermal_zone5: power_allocator: sustainable_power will be estimated \[ 1.546667\] thermal thermal_zone6: power_allocator: sustainable_power will be estimated \[ 1.547386\] cpuidle: using governor menu \[ 1.547810\] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. \[ 1.548492\] ASID allocator initialised with 65536 entries \[ 1.550130\] ramoops: dmesg-0 0x18000@0x0000000000110000 \[ 1.550592\] ramoops: dmesg-1 0x18000@0x0000000000128000 \[ 1.551063\] ramoops: console 0x80000@0x0000000000140000 \[ 1.551530\] ramoops: pmsg 0x30000@0x00000000001c0000 \[ 1.552183\] printk: console \[ramoops-1\] enabled \[ 1.552588\] pstore: Registered ramoops as persistent store backend \[ 1.553138\] ramoops: using 0xe0000@0x110000, ecc: 0 \[ 1.587238\] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000 \[ 1.587970\] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000 \[ 1.588666\] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000 \[ 1.589379\] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000 \[ 1.590096\] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000 \[ 1.590704\] rockchip-pinctrl pinctrl: probed pinctrl \[ 1.602307\] fiq_debugger fiq_debugger.0: IRQ fiq not found \[ 1.602803\] fiq_debugger fiq_debugger.0: IRQ wakeup not found \[ 1.603314\] fiq_debugger_probe: could not install nmi irq handler \[\[ 1.603889\] printk: console \[ttyFIQ0\] enabled 1.603889\] printk: console \[ttyFIQ0\] enabled \[ 1.604655\] printk: bootconsole \[uart8250\] disabled \[ 1.604655\] printk: bootconsole \[uart8250\] disabled \[ 1.605132\] Registered fiq debugger ttyFIQ0 \[ 1.605338\] vcc5v0_sys: supplied by vcc12v_dcin \[ 1.605414\] vcc5v0_usbdcin: supplied by vcc12v_dcin \[ 1.605486\] vcc5v0_usb: supplied by vcc5v0_usbdcin \[ 1.605557\] vcc_1v1_nldo_s3: supplied by vcc5v0_sys \[ 1.605689\] vbus5v0_typec0: supplied by vcc5v0_sys \[ 1.605787\] vbus5v0_typec1: supplied by vcc5v0_sys \[ 1.605858\] vcc3v3_pcie30: supplied by vcc12v_dcin \[ 1.605986\] vcc5v0_host: supplied by vcc5v0_usb \[ 1.606573\] iommu: Default domain type: Translated \[ 1.608915\] SCSI subsystem initialized \[ 1.608970\] usbcore: registered new interface driver usbfs \[ 1.608981\] usbcore: registered new interface driver hub \[ 1.608992\] usbcore: registered new device driver usb \[ 1.609018\] mc: Linux media interface: v0.10 \[ 1.609025\] videodev: Linux video capture interface: v2.00 \[ 1.609045\] pps_core: LinuxPPS API ver. 1 registered \[ 1.609048\] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti \ \[ 1.609053\] PTP clock support registered \[ 1.609065\] EDAC MC: Ver: 3.0.0 \[ 1.609297\] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled. \[ 1.609324\] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0 \[ 1.610152\] Advanced Linux Sound Architecture Driver Initialized. \[ 1.610282\] Bluetooth: Core ver 2.22 \[ 1.610291\] NET: Registered protocol family 31 \[ 1.610294\] Bluetooth: HCI device and connection manager initialized \[ 1.610298\] Bluetooth: HCI socket layer initialized \[ 1.610301\] Bluetooth: L2CAP socket layer initialized \[ 1.610306\] Bluetooth: SCO socket layer initialized \[ 1.611536\] rockchip-cpuinfo cpuinfo: SoC : 35881000 \[ 1.611541\] rockchip-cpuinfo cpuinfo: Serial : e2d90c92c48bbc30 \[ 1.611745\] clocksource: Switched to clocksource arch_sys_counter \[ 1.856282\] NET: Registered protocol family 2 \[ 1.856354\] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear) \[ 1.857427\] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, linear) \[ 1.857465\] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear) \[ 1.857632\] TCP bind hash table entries: 32768 (order: 7, 524288 bytes, linear) \[ 1.857958\] TCP: Hash tables configured (established 32768 bind 32768) \[ 1.857992\] UDP hash table entries: 2048 (order: 4, 65536 bytes, linear) \[ 1.858055\] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear) \[ 1.858152\] NET: Registered protocol family 1 \[ 1.858362\] RPC: Registered named UNIX socket transport module. \[ 1.858366\] RPC: Registered udp transport module. \[ 1.858368\] RPC: Registered tcp transport module. \[ 1.858371\] RPC: Registered tcp NFSv4.1 backchannel transport module. \[ 1.858679\] PCI: CLS 0 bytes, default 64 \[ 1.859397\] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property \[ 1.859790\] rockchip-thermal fec00000.tsadc: tsadc is probed successfully! \[ 1.860348\] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available \[ 1.862269\] Initialise system trusted keyrings \[ 1.862333\] workingset: timestamp_bits=62 max_order=20 bucket_order=0 \[ 1.863559\] squashfs: version 4.0 (2009/01/31) Phillip Lougher \[ 1.863738\] NFS: Registering the id_resolver key type \[ 1.863745\] Key type id_resolver registered \[ 1.863748\] Key type id_legacy registered \[ 1.863760\] ntfs: driver 2.1.32 \[Flags: R/O\]. \[ 1.863813\] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc. \[ 1.863893\] fuse: init (API version 7.32) \[ 1.863966\] SGI XFS with security attributes, no debug enabled \[ 1.884253\] NET: Registered protocol family 38 \[ 1.884258\] Key type asymmetric registered \[ 1.884262\] Asymmetric key parser 'x509' registered \[ 1.884273\] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242) \[ 1.884276\] io scheduler mq-deadline registered \[ 1.884279\] io scheduler kyber registered \[ 1.884625\] rockchip-csi2-dphy-hw fedc0000.csi2-dphy0-hw: csi2 dphy hw probe successfully! \[ 1.884680\] rockchip-csi2-dphy-hw fedc8000.csi2-dphy1-hw: csi2 dphy hw probe successfully! \[ 1.890933\] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success \[ 1.891487\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy init success \[ 1.893734\] rk-pcie fe150000.pcie: invalid prsnt-gpios property in node \[ 1.893923\] rk-pcie fe170000.pcie: invalid prsnt-gpios property in node \[ 1.893949\] rk-pcie fe170000.pcie: no vpcie3v3 regulator found \[ 1.893978\] pwm-backlight backlight: supply power not found, using dummy regulator \[ 1.894240\] iep: Module initialized. \[ 1.894263\] mpp_service mpp-srv: unknown mpp version for missing VCS info \[ 1.894266\] mpp_service mpp-srv: probe start \[ 1.894299\] rk-pcie fe170000.pcie: IRQ msi not found \[ 1.894309\] rk-pcie fe170000.pcie: use outband MSI support \[ 1.894317\] rk-pcie fe170000.pcie: Missing \*config\* reg space \[ 1.894330\] rk-pcie fe170000.pcie: host bridge /pcie@fe170000 ranges: \[ 1.894350\] rk-pcie fe170000.pcie: err 0x00f2000000..0x00f20fffff -\> 0x00f2000000 \[ 1.894365\] rk-pcie fe170000.pcie: IO 0x00f2100000..0x00f21fffff -\> 0x00f2100000 \[ 1.894380\] rk-pcie fe170000.pcie: MEM 0x00f2200000..0x00f2ffffff -\> 0x00f2200000 \[ 1.894392\] rk-pcie fe170000.pcie: MEM 0x0980000000..0x09bfffffff -\> 0x0980000000 \[ 1.894416\] rk-pcie fe170000.pcie: Missing \*config\* reg space \[ 1.894440\] rk-pcie fe170000.pcie: invalid resource \[ 1.895266\] mpp_vdpu1 fdb51000.avsd-plus: Adding to iommu group 1 \[ 1.895426\] mpp_vdpu1 fdb51000.avsd-plus: probe device \[ 1.895502\] mpp_vdpu1 fdb51000.avsd-plus: reset_group-\>rw_sem_on=0 \[ 1.895507\] mpp_vdpu1 fdb51000.avsd-plus: reset_group-\>rw_sem_on=0 \[ 1.895608\] mpp_vdpu1 fdb51000.avsd-plus: probing finish \[ 1.895840\] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1 \[ 1.895869\] mpp_vdpu2 fdb50400.vdpu: probe device \[ 1.895926\] mpp_vdpu2 fdb50400.vdpu: reset_group-\>rw_sem_on=0 \[ 1.895930\] mpp_vdpu2 fdb50400.vdpu: reset_group-\>rw_sem_on=0 \[ 1.896004\] mpp_vdpu2 fdb50400.vdpu: probing finish \[ 1.896116\] mpp_vepu2 jpege-ccu: probing start \[ 1.896120\] mpp_vepu2 jpege-ccu: probing finish \[ 1.896194\] mpp_vepu2 fdb50000.vepu: Adding to iommu group 1 \[ 1.896221\] mpp_vepu2 fdb50000.vepu: probing start \[ 1.896278\] mpp_vepu2 fdb50000.vepu: reset_group-\>rw_sem_on=0 \[ 1.896282\] mpp_vepu2 fdb50000.vepu: reset_group-\>rw_sem_on=0 \[ 1.896359\] mpp_vepu2 fdb50000.vepu: probing finish \[ 1.896414\] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5 \[ 1.896472\] mpp_vepu2 fdba0000.jpege-core: probing start \[ 1.896542\] mpp_vepu2 fdba0000.jpege-core: attach ccu success \[ 1.896622\] mpp_vepu2 fdba0000.jpege-core: probing finish \[ 1.896659\] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6 \[ 1.896728\] mpp_vepu2 fdba4000.jpege-core: probing start \[ 1.896794\] mpp_vepu2 fdba4000.jpege-core: attach ccu success \[ 1.896868\] mpp_vepu2 fdba4000.jpege-core: probing finish \[ 1.896905\] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7 \[ 1.896974\] mpp_vepu2 fdba8000.jpege-core: probing start \[ 1.897039\] mpp_vepu2 fdba8000.jpege-core: attach ccu success \[ 1.897113\] mpp_vepu2 fdba8000.jpege-core: probing finish \[ 1.897159\] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8 \[ 1.897226\] mpp_vepu2 fdbac000.jpege-core: probing start \[ 1.897291\] mpp_vepu2 fdbac000.jpege-core: attach ccu success \[ 1.897365\] mpp_vepu2 fdbac000.jpege-core: probing finish \[ 1.897542\] mpp-iep2 fdbb0000.iep: Adding to iommu group 9 \[ 1.897613\] mpp-iep2 fdbb0000.iep: probe device \[ 1.897695\] mpp-iep2 fdbb0000.iep: allocate roi buffer failed \[ 1.897771\] mpp-iep2 fdbb0000.iep: probing finish \[ 1.897901\] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4 \[ 1.898024\] mpp_jpgdec fdb90000.jpegd: probe device \[ 1.898175\] mpp_jpgdec fdb90000.jpegd: probing finish \[ 1.898438\] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start \[ 1.898479\] mpp_rkvdec2 fdc30000.rkvdec-ccu: ccu-mode: 1 \[ 1.898482\] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish \[ 1.898548\] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12 \[ 1.898724\] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start \[ 1.898803\] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found! \[ 1.898807\] rkvdec2_init:1022: No niu aclk reset resource define \[ 1.898810\] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found! \[ 1.898813\] rkvdec2_init:1025: No niu hclk reset resource define \[ 1.898828\] mpp_rkvdec2 fdc38100.rkvdec-core: no regulator, devfreq is disabled \[ 1.898872\] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001 \[ 1.898875\] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0 \[ 1.899012\] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000ff001000 \[ 1.899016\] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x00000000fff00000 \[ 1.899019\] mpp_rkvdec2 fdc38100.rkvdec-core: sram_size 491520 \[ 1.899022\] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576 \[ 1.899026\] mpp_rkvdec2 fdc38100.rkvdec-core: min_width 512 \[ 1.899030\] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_info_count 20 \[ 1.899033\] mpp_rkvdec2 fdc38100.rkvdec-core: \[136, 24576

1.899036\] mpp_rkvdec2 fdc38100.rkvdec-core: \[137, 49152

1.899039\] mpp_rkvdec2 fdc38100.rkvdec-core: \[141, 90112

1.899042\] mpp_rkvdec2 fdc38100.rkvdec-core: \[140, 49152

1.899045\] mpp_rkvdec2 fdc38100.rkvdec-core: \[139, 180224

1.899048\] mpp_rkvdec2 fdc38100.rkvdec-core: \[133, 49152

1.899051\] mpp_rkvdec2 fdc38100.rkvdec-core: \[134, 8192

1.899054\] mpp_rkvdec2 fdc38100.rkvdec-core: \[135, 4352

1.899057\] mpp_rkvdec2 fdc38100.rkvdec-core: \[138, 13056

1.899060\] mpp_rkvdec2 fdc38100.rkvdec-core: \[142, 291584

1.899081\] mpp_rkvdec2 fdc38100.rkvdec-core: probing finish \[ 1.899133\] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group 13 \[ 1.910113\] rk-pcie fe150000.pcie: IRQ msi not found \[ 1.910117\] rk-pcie fe150000.pcie: use outband MSI support \[ 1.910120\] rk-pcie fe150000.pcie: Missing \*config\* reg space \[ 1.910126\] rk-pcie fe150000.pcie: host bridge /pcie@fe150000 ranges: \[ 1.910135\] rk-pcie fe150000.pcie: err 0x00f0000000..0x00f00fffff -\> 0x00f0000000 \[ 1.910141\] rk-pcie fe150000.pcie: IO 0x00f0100000..0x00f01fffff -\> 0x00f0100000 \[ 1.910147\] rk-pcie fe150000.pcie: MEM 0x00f0200000..0x00f0ffffff -\> 0x00f0200000 \[ 1.910151\] rk-pcie fe150000.pcie: MEM 0x0900000000..0x093fffffff -\> 0x0900000000 \[ 1.910174\] rk-pcie fe150000.pcie: Missing \*config\* reg space \[ 1.910192\] mpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, probing start \[ 1.910194\] rk-pcie fe150000.pcie: invalid resource \[ 1.910272\] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found! \[ 1.910275\] rkvdec2_init:1022: No niu aclk reset resource define \[ 1.910279\] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_h is not found! \[ 1.910281\] rkvdec2_init:1025: No niu hclk reset resource define \[ 1.910294\] mpp_rkvdec2 fdc48100.rkvdec-core: no regulator, devfreq is disabled \[ 1.910325\] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002 \[ 1.910340\] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1 \[ 1.910492\] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000ff079000 \[ 1.910495\] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_iova 0x00000000ffe00000 \[ 1.910498\] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 487424 \[ 1.910501\] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576 \[ 1.910505\] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512 \[ 1.910508\] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_info_count 20 \[ 1.910512\] mpp_rkvdec2 fdc48100.rkvdec-core: \[136, 24576

1.910515\] mpp_rkvdec2 fdc48100.rkvdec-core: \[137, 49152

1.910518\] mpp_rkvdec2 fdc48100.rkvdec-core: \[141, 90112

1.910520\] mpp_rkvdec2 fdc48100.rkvdec-core: \[140, 49152

1.910523\] mpp_rkvdec2 fdc48100.rkvdec-core: \[139, 180224

1.910527\] mpp_rkvdec2 fdc48100.rkvdec-core: \[133, 49152

1.910529\] mpp_rkvdec2 fdc48100.rkvdec-core: \[134, 8192

1.910532\] mpp_rkvdec2 fdc48100.rkvdec-core: \[135, 4352

1.910535\] mpp_rkvdec2 fdc48100.rkvdec-core: \[138, 13056

1.910538\] mpp_rkvdec2 fdc48100.rkvdec-core: \[142, 291584

1.910557\] mpp_rkvdec2 fdc48100.rkvdec-core: probing finish \[ 1.910718\] mpp_rkvenc2 rkvenc-ccu: probing start \[ 1.910722\] mpp_rkvenc2 rkvenc-ccu: probing finish \[ 1.911121\] mpp_av1dec: Adding child /av1d@fdc70000 \[ 1.911285\] mpp_av1dec: register device av1d-master \[ 1.911298\] mpp_av1dec av1d-master: av1_iommu_of_xlate,784 \[ 1.911310\] av1_iommu_probe_device,736, consumer : av1d-master, supplier : fdca0000.iommu \[ 1.911316\] mpp_av1dec av1d-master: Adding to iommu group 17 \[ 1.911469\] mpp_av1dec av1d-master: probing start \[ 1.911631\] mpp_av1dec av1d-master: probing finish \[ 1.911651\] mpp_service mpp-srv: probe success \[ 1.918779\] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330 \[ 1.918785\] dma-pl330 fea10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16 \[ 1.919329\] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330 \[ 1.919334\] dma-pl330 fea30000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16 \[ 1.919887\] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330 \[ 1.919892\] dma-pl330 fed10000.dma-controller: DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16 \[ 1.920355\] rockchip-pvtm fda40000.pvtm: pvtm@0 probed \[ 1.920396\] rockchip-pvtm fda50000.pvtm: pvtm@1 probed \[ 1.920431\] rockchip-pvtm fda60000.pvtm: pvtm@2 probed \[ 1.920464\] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed \[ 1.920496\] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed \[ 1.920898\] rockchip-system-monitor rockchip-system-monitor: system monitor probe \[ 1.921479\] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled \[ 1.921852\] febc0000.serial: ttyS9 at MMIO 0xfebc0000 (irq = 105, base_baud = 1500000) is a 16550A \[ 1.923367\] rockchip-vop2 fdd90000.vop: Adding to iommu group 16 \[ 1.930192\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp0 assign plane mask: 0x5, primary plane phy id: 2 \[ 1.930201\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp1 assign plane mask: 0xa, primary plane phy id: 3 \[ 1.930208\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp2 assign plane mask: 0x140, primary plane phy id: 8 \[ 1.930214\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp3 assign plane mask: 0x280, primary plane phy id: 9 \[ 1.930382\] \[drm\] failed to init overlay plane Cluster0-win1 \[ 1.930406\] \[drm\] failed to init overlay plane Cluster1-win1 \[ 1.930429\] \[drm\] failed to init overlay plane Cluster2-win1 \[ 1.930451\] \[drm\] failed to init overlay plane Cluster3-win1 \[ 1.938187\] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc009360870) \[ 1.938571\] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver \[ 1.938905\] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936f400) \[ 1.939291\] dwhdmi-rockchip fdea0000.hdmi: registered ddc I2C bus driver \[ 1.939616\] rockchip-drm display-subsystem: bound fdea0000.hdmi (ops 0xffffffc00936f400) \[ 1.939652\] dw-mipi-dsi2 fde20000.dsi: \[drm:dw_mipi_dsi2_bind\] \*ERROR\* Failed to find panel or bridge: -517 \[ 1.944105\] panel-simple-dsi fde20000.dsi.0: supply power not found, using dummy regulator \[ 1.946127\] brd: module loaded \[ 1.948120\] loop: module loaded \[ 1.948232\] zram: Added device: zram0 \[ 1.948323\] lkdtm: No crash points registered, enable through debugfs \[ 1.948672\] system_heap: orders\[0\] = 6 \[ 1.948676\] system_heap: orders\[1\] = 4 \[ 1.948679\] system_heap: orders\[2\] = 0 \[ 1.949444\] ahci fe210000.sata: supply ahci not found, using dummy regulator \[ 1.949487\] ahci fe210000.sata: supply phy not found, using dummy regulator \[ 1.949529\] ahci fe210000.sata: supply target not found, using dummy regulator \[ 1.949581\] ahci fe210000.sata: forcing port_map 0x0 -\> 0x1 \[ 1.949599\] ahci fe210000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode \[ 1.949605\] ahci fe210000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst \[ 1.949613\] ahci fe210000.sata: port 0 can do FBS, forcing FBSCP \[ 1.950039\] scsi host0: ahci \[ 1.950129\] ata1: SATA max UDMA/133 mmio \[mem 0xfe210000-0xfe210fff\] port 0x100 irq 90 \[ 1.950989\] rockchip-spi feb20000.spi: no high_speed pinctrl state \[ 1.952044\] rk806 spi2.0: chip id: RK806,ver:0x2, 0x1 \[ 1.952169\] rk806 spi2.0: ON: 0x40 OFF:0x0 \[ 1.953611\] vdd_gpu_s0: supplied by vcc5v0_sys \[ 1.954570\] vdd_cpu_lit_s0: supplied by vcc5v0_sys \[ 1.955139\] vdd_log_s0: supplied by vcc5v0_sys \[ 1.955635\] vdd_vdenc_s0: supplied by vcc5v0_sys \[ 1.956178\] vdd_ddr_s0: supplied by vcc5v0_sys \[ 1.956491\] vdd2_ddr_s3: supplied by vcc5v0_sys \[ 1.956983\] vdd_2v0_pldo_s3: supplied by vcc5v0_sys \[ 1.957426\] vcc_3v3_s3: supplied by vcc5v0_sys \[ 1.957844\] vddq_ddr_s0: supplied by vcc5v0_sys \[ 1.958339\] vcc_1v8_s3: supplied by vcc5v0_sys \[ 1.958786\] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3 \[ 1.959274\] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3 \[ 1.959706\] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3 \[ 1.960138\] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3 \[ 1.960566\] vdd_0v75_s0: supplied by vcc_1v1_nldo_s3 \[ 1.961083\] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3 \[ 1.961641\] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3 \[ 1.962140\] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3 \[ 1.962633\] vcc_3v3_s0: supplied by vcc5v0_sys \[ 1.963060\] vccio_sd_s0: supplied by vcc5v0_sys \[ 1.963529\] pldo6_s3: supplied by vcc5v0_sys \[ 1.963722\] rk806 spi2.0: no sleep-setting state \[ 1.963727\] rk806 spi2.0: no reset-setting pinctrl state \[ 1.963731\] rk806 spi2.0: no dvs-setting pinctrl state \[ 1.964955\] rockchip-spi feb20000.spi: probed, poll=0, rsd=0, cs-inactive=0, ready=0 \[ 1.966234\] rk_gmac-dwmac fe1c0000.ethernet: IRQ eth_lpi not found \[ 1.966358\] rk_gmac-dwmac fe1c0000.ethernet: supply phy not found, using dummy regulator \[ 1.966398\] rk_gmac-dwmac fe1c0000.ethernet: clock input or output? (output). \[ 1.966403\] rk_gmac-dwmac fe1c0000.ethernet: TX delay(0x43). \[ 1.966407\] rk_gmac-dwmac fe1c0000.ethernet: Can not read property: rx_delay. \[ 1.966411\] rk_gmac-dwmac fe1c0000.ethernet: set rx_delay to 0xffffffff \[ 1.966419\] rk_gmac-dwmac fe1c0000.ethernet: integrated PHY? (no). \[ 1.966424\] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock mac_clk_rx \[ 1.966429\] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock mac_clk_tx \[ 1.966439\] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock clk_mac_speed \[ 1.966654\] rk_gmac-dwmac fe1c0000.ethernet: init for RGMII_RXID \[ 1.966750\] rk_gmac-dwmac fe1c0000.ethernet: User ID: 0x30, Synopsys ID: 0x51 \[ 1.966755\] rk_gmac-dwmac fe1c0000.ethernet: DWMAC4/5 \[ 1.966760\] rk_gmac-dwmac fe1c0000.ethernet: DMA HW capability register supported \[ 1.966764\] rk_gmac-dwmac fe1c0000.ethernet: RX Checksum Offload Engine supported \[ 1.966767\] rk_gmac-dwmac fe1c0000.ethernet: TX Checksum insertion supported \[ 1.966771\] rk_gmac-dwmac fe1c0000.ethernet: Wake-Up On Lan supported \[ 1.966793\] rk_gmac-dwmac fe1c0000.ethernet: TSO supported \[ 1.966797\] rk_gmac-dwmac fe1c0000.ethernet: Enable RX Mitigation via HW Watchdog Timer \[ 1.966801\] rk_gmac-dwmac fe1c0000.ethernet: Enabled Flow TC (entries=2) \[ 1.966805\] rk_gmac-dwmac fe1c0000.ethernet: TSO feature enabled \[ 1.966809\] rk_gmac-dwmac fe1c0000.ethernet: Using 32 bits DMA width \[ 2.098631\] mdio_bus stmmac-1: MDIO device at address 1 is missing. \[ 2.099376\] usbcore: registered new interface driver rtl8150 \[ 2.099392\] usbcore: registered new interface driver r8152 \[ 2.099553\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 2.113307\] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver \[ 2.113316\] ehci-pci: EHCI PCI platform driver \[ 2.113337\] ehci-platform: EHCI generic platform driver \[ 2.115525\] ehci-platform fc800000.usb: EHCI Host Controller \[ 2.115577\] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1 \[ 2.115624\] ehci-platform fc800000.usb: irq 20, io mem 0xfc800000 \[ 2.116189\] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0 \[ 2.125102\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 2.128416\] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00 \[ 2.128473\] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 2.128479\] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.128483\] usb usb1: Product: EHCI Host Controller \[ 2.128487\] usb usb1: Manufacturer: Linux 5.10.198 ehci_hcd \[ 2.128490\] usb usb1: SerialNumber: fc800000.usb \[ 2.128632\] hub 1-0:1.0: USB hub found \[ 2.128642\] hub 1-0:1.0: 1 port detected \[ 2.130894\] ehci-platform fc880000.usb: EHCI Host Controller \[ 2.130954\] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2 \[ 2.130996\] ehci-platform fc880000.usb: irq 22, io mem 0xfc880000 \[ 2.141749\] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1 \[ 2.141755\] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00 \[ 2.141798\] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 2.141803\] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.141807\] usb usb2: Product: EHCI Host Controller \[ 2.141811\] usb usb2: Manufacturer: Linux 5.10.198 ehci_hcd \[ 2.141814\] usb usb2: SerialNumber: fc880000.usb \[ 2.141937\] hub 2-0:1.0: USB hub found \[ 2.141948\] hub 2-0:1.0: 1 port detected \[ 2.142217\] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver \[ 2.142226\] ohci-platform: OHCI generic platform driver \[ 2.142333\] ohci-platform fc840000.usb: Generic Platform OHCI controller \[ 2.142380\] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3 \[ 2.142411\] ohci-platform fc840000.usb: irq 21, io mem 0xfc840000 \[ 2.151767\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 2.168415\] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1 \[ 2.178434\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 2.195080\] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0 \[ 2.202468\] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10 \[ 2.202475\] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.202479\] usb usb3: Product: Generic Platform OHCI controller \[ 2.202483\] usb usb3: Manufacturer: Linux 5.10.198 ohci_hcd \[ 2.202487\] usb usb3: SerialNumber: fc840000.usb \[ 2.202608\] hub 3-0:1.0: USB hub found \[ 2.202620\] hub 3-0:1.0: 1 port detected \[ 2.202793\] ohci-platform fc8c0000.usb: Generic Platform OHCI controller \[ 2.202841\] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4 \[ 2.202872\] ohci-platform fc8c0000.usb: irq 23, io mem 0xfc8c0000 \[ 2.205100\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 2.221748\] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0 \[ 2.261409\] ata1: SATA link down (SStatus 0 SControl 300) \[ 2.262467\] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10 \[ 2.262473\] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.262477\] usb usb4: Product: Generic Platform OHCI controller \[ 2.262481\] usb usb4: Manufacturer: Linux 5.10.198 ohci_hcd \[ 2.262484\] usb usb4: SerialNumber: fc8c0000.usb \[ 2.262602\] hub 4-0:1.0: USB hub found \[ 2.262612\] hub 4-0:1.0: 1 port detected \[ 2.263039\] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller \[ 2.263087\] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 5 \[ 2.263166\] xhci-hcd xhci-hcd.5.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000802002010010 \[ 2.263174\] xhci-hcd xhci-hcd.5.auto: irq 149, io mem 0xfc000000 \[ 2.263231\] xhci-hcd xhci-hcd.5.auto: xHCI Host Controller \[ 2.263272\] xhci-hcd xhci-hcd.5.auto: new USB bus registered, assigned bus number 6 \[ 2.263278\] xhci-hcd xhci-hcd.5.auto: Host supports USB 3.0 SuperSpeed \[ 2.263314\] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 2.263318\] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.263322\] usb usb5: Product: xHCI Host Controller \[ 2.263325\] usb usb5: Manufacturer: Linux 5.10.198 xhci-hcd \[ 2.263329\] usb usb5: SerialNumber: xhci-hcd.5.auto \[ 2.263445\] hub 5-0:1.0: USB hub found \[ 2.263456\] hub 5-0:1.0: 1 port detected \[ 2.263552\] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM. \[ 2.263578\] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 2.263582\] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.263586\] usb usb6: Product: xHCI Host Controller \[ 2.263590\] usb usb6: Manufacturer: Linux 5.10.198 xhci-hcd \[ 2.263593\] usb usb6: SerialNumber: xhci-hcd.5.auto \[ 2.263706\] hub 6-0:1.0: USB hub found \[ 2.263716\] hub 6-0:1.0: 1 port detected \[ 2.263844\] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller \[ 2.263890\] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 7 \[ 2.263949\] xhci-hcd xhci-hcd.6.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010 \[ 2.263966\] xhci-hcd xhci-hcd.6.auto: irq 150, io mem 0xfcd00000 \[ 2.264013\] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller \[ 2.264055\] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 8 \[ 2.264061\] xhci-hcd xhci-hcd.6.auto: Host supports USB 3.0 SuperSpeed \[ 2.264094\] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 2.264098\] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.264102\] usb usb7: Product: xHCI Host Controller \[ 2.264105\] usb usb7: Manufacturer: Linux 5.10.198 xhci-hcd \[ 2.264109\] usb usb7: SerialNumber: xhci-hcd.6.auto \[ 2.264225\] hub 7-0:1.0: USB hub found \[ 2.264234\] hub 7-0:1.0: 1 port detected \[ 2.264327\] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM. \[ 2.264354\] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 2.264358\] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 2.264361\] usb usb8: Product: xHCI Host Controller \[ 2.264365\] usb usb8: Manufacturer: Linux 5.10.198 xhci-hcd \[ 2.264369\] usb usb8: SerialNumber: xhci-hcd.6.auto \[ 2.264476\] hub 8-0:1.0: USB hub found \[ 2.264485\] hub 8-0:1.0: 1 port detected \[ 2.264602\] usbcore: registered new interface driver cdc_acm \[ 2.264606\] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters \[ 2.264708\] usbcore: registered new interface driver uas \[ 2.264751\] usbcore: registered new interface driver usb-storage \[ 2.264780\] usbcore: registered new interface driver usbserial_generic \[ 2.264788\] usbserial: USB Serial support registered for generic \[ 2.264801\] usbcore: registered new interface driver cp210x \[ 2.264808\] usbserial: USB Serial support registered for cp210x \[ 2.264834\] usbcore: registered new interface driver ftdi_sio \[ 2.264842\] usbserial: USB Serial support registered for FTDI USB Serial Device \[ 2.264911\] usbcore: registered new interface driver keyspan \[ 2.264918\] usbserial: USB Serial support registered for Keyspan - (without firmware) \[ 2.264925\] usbserial: USB Serial support registered for Keyspan 1 port adapter \[ 2.264932\] usbserial: USB Serial support registered for Keyspan 2 port adapter \[ 2.264939\] usbserial: USB Serial support registered for Keyspan 4 port adapter \[ 2.264954\] usbcore: registered new interface driver option \[ 2.264961\] usbserial: USB Serial support registered for GSM modem (1-port) \[ 2.265066\] usbcore: registered new interface driver oti6858 \[ 2.265081\] usbserial: USB Serial support registered for oti6858 \[ 2.265095\] usbcore: registered new interface driver pl2303 \[ 2.265102\] usbserial: USB Serial support registered for pl2303 \[ 2.265120\] usbcore: registered new interface driver qcserial \[ 2.265127\] usbserial: USB Serial support registered for Qualcomm USB modem \[ 2.265149\] usbcore: registered new interface driver sierra \[ 2.265155\] usbserial: USB Serial support registered for Sierra USB modem \[ 2.265502\] \<\<-GTP-INFO-\>\> GTP driver installing... \[ 2.265605\] usbcore: registered new interface driver usbtouchscreen \[ 2.266437\] input: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.3.auto/input/input0 \[ 2.266599\] i2c /dev entries driver \[ 2.269986\] vdd_cpu_big0_s0: supplied by vcc5v0_sys \[ 2.278374\] vdd_cpu_big1_s0: supplied by vcc5v0_sys \[ 2.287127\] vdd_npu_s0: supplied by vcc5v0_sys \[ 2.293542\] i2c i2c-4: 1 i2c clients have been registered at 0x68 \[ 2.306073\] rockchip-pinctrl pinctrl: pin gpio0-24 already requested by vbus5v0-typec0; cannot claim for fec80000.i2c \[ 2.306079\] rockchip-pinctrl pinctrl: pin-24 (fec80000.i2c) status -22 \[ 2.306084\] rockchip-pinctrl pinctrl: could not request pin 24 (gpio0-24) from group i2c6m0-xfer on device rockchip-pinctrl \[ 2.306088\] rk3x-i2c fec80000.i2c: Error applying setting, reverse things back \[ 2.306097\] rk3x-i2c: probe of fec80000.i2c failed with error -22 \[ 2.306841\] ircut cam_ircut: driver version: 00.01.00 \[ 2.306930\] ircut cam_ircut: failed get pulse-width,use dafult value 100 \[ 2.306976\] ircut cam_ircut: Failed to get ircut-close-gpios \[ 2.306988\] ircut cam_ircut: probe successful! \[ 2.307398\] rkcifhw fdce0000.rkcif: Adding to iommu group 15 \[ 2.308204\] rkcifhw fdce0000.rkcif: No reserved memory region assign to CIF \[ 2.308266\] rkcif rkcif-mipi-lvds2: Adding to iommu group 15 \[ 2.308275\] rkcif rkcif-mipi-lvds2: rkcif driver version: v00.02.00 \[ 2.308317\] rkcif rkcif-mipi-lvds2: attach to cif hw node \[ 2.308321\] rkcif rkcif-mipi-lvds2: rkcif wait line 0 \[ 2.308326\] : terminal subdev does not exist \[ 2.308330\] : terminal subdev does not exist \[ 2.308333\] : terminal subdev does not exist \[ 2.308336\] : terminal subdev does not exist \[ 2.308340\] : get_remote_sensor: video pad\[0\] is null \[ 2.308344\] : rkcif_update_sensor_info: stream\[0\] get remote sensor_sd failed! \[ 2.308348\] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0) \[ 2.308352\] : get_remote_sensor: video pad\[0\] is null \[ 2.308355\] : rkcif_update_sensor_info: stream\[0\] get remote sensor_sd failed! \[ 2.308358\] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0) \[ 2.308361\] : get_remote_sensor: video pad\[0\] is null \[ 2.308364\] : rkcif_update_sensor_info: stream\[0\] get remote sensor_sd failed! \[ 2.308368\] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0) \[ 2.308371\] : get_remote_sensor: video pad\[0\] is null \[ 2.308373\] : rkcif_update_sensor_info: stream\[0\] get remote sensor_sd failed! \[ 2.308377\] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0) \[ 2.308853\] rkcif rkcif-mipi-lvds2: No memory-region-thunderboot specified \[ 2.309472\] rockchip-mipi-csi2-hw fdd10000.mipi0-csi2-hw: enter mipi csi2 hw probe! \[ 2.309530\] rockchip-mipi-csi2-hw fdd10000.mipi0-csi2-hw: probe success, v4l2_dev:mipi0-csi2-hw! \[ 2.309556\] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-hw: enter mipi csi2 hw probe! \[ 2.309591\] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-hw: probe success, v4l2_dev:mipi1-csi2-hw! \[ 2.309612\] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: enter mipi csi2 hw probe! \[ 2.309648\] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: probe success, v4l2_dev:mipi2-csi2-hw! \[ 2.309669\] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: enter mipi csi2 hw probe! \[ 2.309702\] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: probe success, v4l2_dev:mipi3-csi2-hw! \[ 2.309722\] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: enter mipi csi2 hw probe! \[ 2.309755\] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: probe success, v4l2_dev:mipi4-csi2-hw! \[ 2.309776\] rockchip-mipi-csi2-hw fdd60000.mipi5-csi2-hw: enter mipi csi2 hw probe! \[ 2.309808\] rockchip-mipi-csi2-hw fdd60000.mipi5-csi2-hw: probe success, v4l2_dev:mipi5-csi2-hw! \[ 2.310144\] rockchip-mipi-csi2 mipi2-csi2: attach to csi2 hw node \[ 2.310161\] rkcif rkcif-mipi-lvds2: Entity type for entity rockchip-mipi-csi2 was not initialized! \[ 2.310166\] rockchip-mipi-csi2: Async registered subdev \[ 2.310171\] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds2! \[ 2.310829\] rkisp_hw fdcb0000.rkisp: Adding to iommu group 14 \[ 2.310913\] rkisp_hw fdcb0000.rkisp: is_thunderboot: 0 \[ 2.310918\] rkisp_hw fdcb0000.rkisp: Missing rockchip,grf property \[ 2.310931\] rkisp_hw fdcb0000.rkisp: max input:0x0@0fps \[ 2.310982\] rkisp_hw fdcb0000.rkisp: no find phandle sram \[ 2.311148\] rkisp rkisp0-vir0: rkisp driver version: v02.04.00 \[ 2.311201\] rkisp rkisp0-vir0: No memory-region-thunderboot specified \[ 2.311273\] rkisp rkisp0-vir0: Entity type for entity rkisp-isp-subdev was not initialized! \[ 2.314050\] rk_hdmirx fdee0000.hdmirx-controller: No reserved memory for HDMIRX, use default CMA \[ 2.314088\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_probe: cpu_aff:0x500, Bound_cpu:5, wdt_cfg_bound_cpu:6, phy_cpuid:5 \[ 2.314617\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_audio_interrupts_setup: 0 \[ 2.315285\] rk_hdmirx fdee0000.hdmirx-controller: rk_hdmirx_hdcp_register success \[ 2.315306\] rk_hdmirx fdee0000.hdmirx-controller: fdee0000.hdmirx-controller driver probe ok! \[ 2.315394\] usbcore: registered new interface driver uvcvideo \[ 2.315398\] USB Video Class driver (1.1.1) \[ 2.316021\] Bluetooth: HCI UART driver ver 2.3 \[ 2.316027\] Bluetooth: HCI UART protocol H4 registered \[ 2.316030\] Bluetooth: HCI UART protocol ATH3K registered \[ 2.316052\] usbcore: registered new interface driver bfusb \[ 2.316069\] usbcore: registered new interface driver btusb \[ 2.316819\] cpu cpu0: bin=0 \[ 2.317046\] cpu cpu0: leakage=10 \[ 2.318457\] cpu cpu0: pvtm=1439 \[ 2.318564\] cpu cpu0: pvtm-volt-sel=2 \[ 2.320414\] cpu cpu4: bin=0 \[ 2.320622\] cpu cpu4: leakage=8 \[ 2.327077\] cpu cpu4: pvtm=1664 \[ 2.330982\] cpu cpu4: pvtm-volt-sel=3 \[ 2.333594\] cpu cpu6: bin=0 \[ 2.333802\] cpu cpu6: leakage=8 \[ 2.340232\] cpu cpu6: pvtm=1668 \[ 2.344121\] cpu cpu6: pvtm-volt-sel=3 \[ 2.345863\] cpu cpu0: avs=0 \[ 2.346845\] cpu cpu4: avs=0 \[ 2.347664\] cpu cpu6: avs=0 \[ 2.347845\] cpu cpu0: EM: created perf domain \[ 2.347874\] cpu cpu0: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=1608000000 h_table=0 \[ 2.348391\] cpu cpu4: EM: created perf domain \[ 2.348424\] cpu cpu4: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0 \[ 2.356858\] cpu cpu6: EM: created perf domain \[ 2.357166\] cpu cpu6: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0 \[ 2.366802\] sdhci: Secure Digital Host Controller Interface driver \[ 2.366826\] sdhci: Copyright(c) Pierre Ossman \[ 2.366832\] Synopsys Designware Multimedia Card Interface Driver \[ 2.367488\] sdhci-pltfm: SDHCI platform and OF driver helper \[ 2.367779\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 2.367785\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 2.367877\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 2.367895\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 2.367902\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 2.367923\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 2.368049\] dwmmc_rockchip fe2c0000.mmc: No normal pinctrl state \[ 2.368059\] dwmmc_rockchip fe2c0000.mmc: No idle pinctrl state \[ 2.368204\] dwmmc_rockchip fe2c0000.mmc: IDMAC supports 32-bit address mode. \[ 2.368230\] dwmmc_rockchip fe2c0000.mmc: Using internal DMA controller. \[ 2.368240\] dwmmc_rockchip fe2c0000.mmc: Version ID is 270a \[ 2.368269\] dwmmc_rockchip fe2c0000.mmc: DW MMC controller at irq 91,32 bit host data width,256 deep fifo \[ 2.368805\] dwmmc_rockchip fe2c0000.mmc: Failed getting OCR mask: -22 \[ 2.368929\] dwmmc_rockchip fe2c0000.mmc: could not set regulator OCR (-22) \[ 2.368937\] dwmmc_rockchip fe2c0000.mmc: failed to enable vmmc regulator \[ 2.369234\] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active. \[ 2.369285\] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping .... \[ 2.369915\] cryptodev: driver 1.12 loaded. \[ 2.369945\] hid: raw HID events driver (C) Jiri Kosina \[ 2.370147\] usbcore: registered new interface driver usbhid \[ 2.370153\] usbhid: USB HID core driver \[ 2.373743\] optee: probing for conduit method. \[ 2.373762\] optee: revision 3.13 (62aa10b7) \[ 2.373883\] optee: dynamic shared memory is enabled \[ 2.374000\] optee: initialized driver \[ 2.374393\] usbcore: registered new interface driver snd-usb-audio \[ 2.375512\] ES8323 7-0011: i2c recv Failed \[ 2.378271\] rockchip-i2s-tdm fddf0000.i2s: CLK-ALWAYS-ON: mclk: 12288000, bclk: 3072000, fsync: 48000 \[ 2.379266\] rockchip-i2s-tdm fddf4000.i2s: CLK-ALWAYS-ON: mclk: 12288000, bclk: 3072000, fsync: 48000 \[ 2.381546\] debugfs: File 'Capture' in directory 'dapm' already present! \[ 2.381581\] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0) \[ 2.393681\] input: rockchip,hdmiin rockchip,hdmiin as /devices/platform/hdmiin-sound/sound/card0/input1 \[ 2.394983\] Initializing XFRM netlink socket \[ 2.395333\] NET: Registered protocol family 10 \[ 2.395926\] Segment Routing with IPv6 \[ 2.395973\] NET: Registered protocol family 17 \[ 2.395987\] NET: Registered protocol family 15 \[ 2.396124\] Bluetooth: RFCOMM socket layer initialized \[ 2.396137\] Bluetooth: RFCOMM ver 1.11 \[ 2.396147\] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 \[ 2.396155\] Bluetooth: HIDP socket layer initialized \[ 2.396182\] \[BT_RFKILL\]: Enter rfkill_rk_init \[ 2.396187\] \[WLAN_RFKILL\]: Enter rfkill_wlan_init \[ 2.396524\] \[WLAN_RFKILL\]: Enter rfkill_wlan_probe \[ 2.396549\] \[WLAN_RFKILL\]: can't find rockchip,grf property \[ 2.396556\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: wifi_chip_type = ap6398s \[ 2.396561\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: enable wifi power control. \[ 2.396567\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: wifi power controled by gpio. \[ 2.396582\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 20 flags = 0. \[ 2.396602\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 10, flags = 0. \[ 2.396609\] \[WLAN_RFKILL\]: wlan_platdata_parse_dt: The ref_wifi_clk not found ! \[ 2.396615\] \[WLAN_RFKILL\]: rfkill_wlan_probe: init gpio \[ 2.396621\] \[WLAN_RFKILL\]: rfkill_set_wifi_bt_power: 1 \[ 2.396627\] \[WLAN_RFKILL\]: Exit rfkill_wlan_probe \[ 2.396890\] Key type dns_resolver registered \[ 2.397724\] imx415 3-001a: driver version: 00.01.08 \[ 2.397741\] imx415 3-001a: Get hdr mode failed! no hdr default \[ 2.397756\] imx415 3-001a: detect imx415 lane 4 \[ 2.397780\] imx415 3-001a: Failed to get reset-gpios \[ 2.397795\] imx415 3-001a: Failed to get power-gpios \[ 2.397803\] imx415 3-001a: could not get default pinstate \[ 2.397809\] imx415 3-001a: could not get sleep pinstate \[ 2.398434\] mmc0: SDHCI controller on fe2e0000.mmc \[fe2e0000.mmc\] using ADMA \[ 2.399131\] imx415 3-001a: supply dvdd not found, using dummy regulator \[ 2.399217\] imx415 3-001a: supply dovdd not found, using dummy regulator \[ 2.434321\] mmc0: Host Software Queue enabled \[ 2.434335\] mmc0: new HS400 Enhanced strobe MMC card at address 0001 \[ 2.434637\] mmcblk0: mmc0:0001 A3A55B 28.9 GiB \[ 2.434734\] mmcblk0boot0: mmc0:0001 A3A55B partition 1 4.00 MiB \[ 2.434829\] mmcblk0boot1: mmc0:0001 A3A55B partition 2 4.00 MiB \[ 2.434939\] mmcblk0rpmb: mmc0:0001 A3A55B partition 3 16.0 MiB, chardev (236:0) \[ 2.436766\] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 \[ 2.468743\] imx415 3-001a: Unexpected sensor id(000000), ret(-5) \[ 2.469397\] Loading compiled-in X.509 certificates \[ 2.470136\] pstore: Using crash dump compression: deflate \[ 2.470445\] rga3_core0 fdb60000.rga: Adding to iommu group 2 \[ 2.470633\] rga: rga3_core0, irq = 36, match scheduler \[ 2.470979\] rga: rga3_core0 hardware loaded successfully, hw_version:3.0.76831. \[ 2.471025\] rga: rga3_core0 probe successfully \[ 2.471479\] rga3_core1 fdb70000.rga: Adding to iommu group 3 \[ 2.471648\] rga: rga3_core1, irq = 37, match scheduler \[ 2.472078\] rga: rga3_core1 hardware loaded successfully, hw_version:3.0.76831. \[ 2.472129\] rga: rga3_core1 probe successfully \[ 2.472545\] rga: rga2, irq = 38, match scheduler \[ 2.472987\] rga: rga2 hardware loaded successfully, hw_version:3.2.63318. \[ 2.473000\] rga: rga2 probe successfully \[ 2.473242\] rga_iommu: IOMMU binding successfully, default mapping core\[0x1

2.473423\] rga: Module initialized. v1.3.1 \[ 2.498482\] mali fb000000.gpu: Kernel DDK version g18p0-01eac0 \[ 2.498760\] pcie20_avdd0v85: supplied by vdd_0v85_s0 \[ 2.499291\] pcie20_avdd1v8: supplied by avcc_1v8_s0 \[ 2.499342\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 2.499352\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 2.499387\] mali fb000000.gpu: bin=0 \[ 2.499445\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 2.499475\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 2.499485\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 2.499506\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 2.499618\] mali fb000000.gpu: leakage=12 \[ 2.499669\] debugfs: Directory 'fb000000.gpu-mali' with parent 'vdd_gpu_s0' already present! \[ 2.499725\] pcie30_avdd0v75: supplied by avdd_0v75_s0 \[ 2.500217\] pcie30_avdd1v8: supplied by avcc_1v8_s0 \[ 2.500598\] vcc3v3_lcd0_n: supplied by vcc_1v8_s0 \[ 2.501078\] mali fb000000.gpu: pvtm=868 \[ 2.501312\] mali fb000000.gpu: pvtm-volt-sel=3 \[ 2.501348\] mpp_rkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10 \[ 2.501638\] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start \[ 2.502526\] mali fb000000.gpu: avs=0 \[ 2.502553\] W : \[File\] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; \[Line\] : 143; \[Func\] : kbase_platform_rk_init(); power-off-delay-ms not available. \[ 2.502713\] mpp_rkvenc2 fdbd0000.rkvenc-core: bin=0 \[ 2.502959\] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage=10 \[ 2.502970\] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage-volt-sel=0 \[ 2.503066\] mali fb000000.gpu: r0p0 status 5 not found in HW issues table; \[ 2.503075\] mali fb000000.gpu: falling back to closest match: r0p0 status 0 \[ 2.503081\] mali fb000000.gpu: Execution proceeding normally with fallback match \[ 2.503089\] mali fb000000.gpu: GPU identified as 0x7 arch 10.8.6 r0p0 status 0 \[ 2.503132\] mali fb000000.gpu: No priority control manager is configured \[ 2.503260\] mali fb000000.gpu: No memory group manager is configured \[ 2.503282\] mali fb000000.gpu: Protected memory allocator not available \[ 2.503617\] mpp_rkvenc2 fdbd0000.rkvenc-core: avs=0 \[ 2.503646\] mpp_rkvenc2 fdbd0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0 \[ 2.503997\] mali fb000000.gpu: Capping CSF_FIRMWARE_TIMEOUT to CSF_FIRMWARE_PING_TIMEOUT \[ 2.504194\] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0 \[ 2.504447\] mali fb000000.gpu: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=800000000 h_table=0 \[ 2.504552\] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish \[ 2.504740\] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11 \[ 2.505041\] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start \[ 2.507624\] vendor storage:20190527 ret = 0 \[ 2.512841\] mpp_rkvenc2 fdbe0000.rkvenc-core: bin=0 \[ 2.512979\] mali fb000000.gpu: Probed as mali0 \[ 2.513047\] mpp_rkvenc2 fdbe0000.rkvenc-core: leakage=10 \[ 2.513056\] mpp_rkvenc2 fdbe0000.rkvenc-core: leakage-volt-sel=0 \[ 2.513620\] mpp_rkvenc2 fdbe0000.rkvenc-core: avs=0 \[ 2.513636\] mpp_rkvenc2 fdbe0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0 \[ 2.533393\] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1 \[ 2.533662\] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish \[ 2.545140\] rockchip-dmc dmc: bin=0 \[ 2.545356\] rockchip-dmc dmc: leakage=30 \[ 2.545376\] rockchip-dmc dmc: leakage-volt-sel=0 \[ 2.545397\] rockchip-dmc dmc: soc version=0, speed=0 \[ 2.546483\] rockchip-dmc dmc: avs=0 \[ 2.546504\] rockchip-dmc dmc: current ATF version 0x100 \[ 2.546638\] rockchip-dmc dmc: normal_rate = 1560000000 \[ 2.546\[652\] rockchip-dmc dmc: reboot_rate = 2112000000 \[ 2.546663\] rockchip-dmc dmc: suspend_rate = 528000000 \[ 2.546674\] rockchip-dmc dmc: video_4k_rate = 1560000000 \[ 2.546685\] rockchip-dmc dmc: video_4k_10b_rate = 1560000000 \[ 2.546696\] rockchip-dmc dmc: video_svep_rate = 1560000000 \[ 2.546707\] rockchip-dmc dmc: boost_rate = 2112000000 \[ 2.546717\] rockchip-dmc dmc: fixed_rate(isp\|cif0\|cif1\|dualview) = 2112000000 \[ 2.546728\] rockchip-dmc dmc: performance_rate = 2112000000 \[ 2.546740\] rockchip-dmc dmc: hdmirx_rate = 2112000000 \[ 2.546750\] rockchip-dmc dmc: deep_suspend_rate = 2112000000 \[ 2.546765\] rockchip-dmc dmc: failed to get vop bandwidth to dmc rate \[ 2.546774\] rockchip-dmc dmc: failed to get vop pn to msch rl \[ 2.546944\] rockchip-dmc dmc: l=10000 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0 \[ 2.547744\] rockchip-dmc dmc: could not find power_model node ddr_m0\]E: waiting_vop_line_flag-1958: vop_post=0 unsupported! \[ 2.557929\] rockchip-csi2-dphy csi2-dphy0: csi2 dphy0 probe successfully! \[ 2.569622\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp0 assign plane mask: 0x5, primary plane phy id: 2 \[ 2.569700\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp1 assign plane mask: 0xa, primary plane phy id: 3 \[ 2.569723\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp2 assign plane mask: 0x140, primary plane phy id: 8 \[ 2.569744\] rockchip-vop2 fdd90000.vop: \[drm:vop2_bind\] vp3 assign plane mask: 0x280, primary plane phy id: 9 \[ 2.570288\] \[drm\] failed to init overlay plane Cluster0-win1 \[ 2.570358\] \[drm\] failed to init overlay plane Cluster1-win1 \[ 2.570422\] \[drm\] failed to init overlay plane Cluster2-win1 \[ 2.570486\] \[drm\] failed to init overlay plane Cluster3-win1 \[ 2.599155\] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc009360870) \[ 2.600460\] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver \[ 2.602189\] dw-hdmi-qp-hdcp dw-hdmi-qp-hdcp.10.auto: dw_hdcp_qp_hdcp_probe success \[ 2.602299\] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936f400) \[ 2.604247\] dwhdmi-rockchip fdea0000.hdmi: registered ddc I2C bus driver \[ 2.605727\] dw-hdmi-qp-hdcp dw-hdmi-qp-hdcp.13.auto: dw_hdcp_qp_hdcp_probe success \[ 2.605850\] rockchip-drm display-subsystem: bound fdea0000.hdmi (ops 0xffffffc00936f400) \[ 2.605966\] rockchip-drm display-subsystem: bound fde20000.dsi (ops 0xffffffc009371c18) \[ 2.606066\] rockchip-drm display-subsystem: bound fde50000.dp (ops 0xffffffc009371fa8) \[ 2.606148\] rockchip-drm display-subsystem: bound fde60000.dp (ops 0xffffffc009371fa8) \[ 2.608046\] rockchip-drm display-subsystem: route-hdmi0: failed to get logo,offset \[ 2.608700\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.609026\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.609389\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.609712\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.610047\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.610405\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.610415\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 2.610424\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ddr_m0\]E: waiting_vop_line_flag-1958: vop_post=0 unsupported! \[ 2.614598\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 2.614711\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 2.632929\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.633025\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.633396\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.633756\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.634112\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.634525\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.634894\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.635260\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 2.635274\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 2.635285\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 2.666687\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 2.677347\] rockchip-drm display-subsystem: \[drm\] fb0: rockchipdrmfb frame buffer device \[ 2.678939\] \[drm\] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0 \[ 2.679545\] input: adc-keys as /devices/platform/adc-keys/input/input2 \[ 2.682583\] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card1/input3 \[ 2.684912\] input: rockchip-hdmi1 rockchip-hdmi1 as /devices/platform/hdmi1-sound/sound/card2/input4 \[ 2.688773\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 2.688830\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 2.688978\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 2.689027\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 2.689047\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 2.689086\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 2.692487\] rkcif rkcif-mipi-lvds2: clear unready subdev num: 1 \[ 2.693343\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 2.693427\] rkcif-mipi-lvds2: Async subdev notifier completed \[ 2.693458\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 2.693470\] rkcif-mipi-lvds2: There is not terminal subdev, not synchronized with ISP \[ 2.693550\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 2.693569\] rkcif-mipi-lvds2: There is not terminal subdev, not synchronized with ISP \[ 2.696021\] RKNPU fdab0000.npu: Adding to iommu group 0 \[ 2.696307\] RKNPU fdab0000.npu: RKNPU: rknpu iommu is enabled, using iommu mode \[ 2.698040\] RKNPU fdab0000.npu: can't request region for resource \[mem 0xfdab0000-0xfdabffff

2.698072\] RKNPU fdab0000.npu: can't request region for resource \[mem 0xfdac0000-0xfdacffff

2.698095\] RKNPU fdab0000.npu: can't request region for resource \[mem 0xfdad0000-0xfdadffff

2.698769\] \[drm\] Initialized rknpu 0.9.3 20231121 for fdab0000.npu on minor 1 \[ 2.703100\] RKNPU fdab0000.npu: RKNPU: bin=0 \[ 2.703370\] RKNPU fdab0000.npu: leakage=7 \[ 2.703439\] debugfs: Directory 'fdab0000.npu-rknpu' with parent 'vdd_npu_s0' already present! \[ 2.711619\] RKNPU fdab0000.npu: pvtm=881 \[ 2.716902\] RKNPU fdab0000.npu: pvtm-volt-sel=3 \[ 2.718820\] RKNPU fdab0000.npu: avs=0 \[ 2.719118\] RKNPU fdab0000.npu: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=800000000 h_table=0 \[ 2.731375\] RKNPU fdab0000.npu: failed to find power_model node \[ 2.731435\] RKNPU fdab0000.npu: RKNPU: failed to initialize power model \[ 2.731450\] RKNPU fdab0000.npu: RKNPU: failed to get dynamic-coefficient \[ 2.733991\] cfg80211: Loading compiled-in X.509 certificates for regulatory database \[ 2.737947\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 2.738025\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 2.738224\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 2.738291\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 2.738321\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 2.738379\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 2.739772\] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' \[ 2.742396\] rockchip-pm rockchip-suspend: not set pwm-regulator-config \[ 2.743489\] rockchip-suspend not set sleep-mode-config for mem-lite \[ 2.743511\] rockchip-suspend not set wakeup-config for mem-lite \[ 2.743535\] rockchip-suspend not set sleep-mode-config for mem-ultra \[ 2.743551\] rockchip-suspend not set wakeup-config for mem-ultra \[ 2.747094\] I : \[File\] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; \[Line\] : 406; \[Func\] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '13:44:08', on 'Dec 11 2025'. \[ 2.748570\] Mali: \[ 2.748578\] Mali device driver loaded \[ 2.748619\] rkisp rkisp0-vir0: clear unready subdev num: 1 \[ 2.748997\] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2 \[ 2.749025\] cfg80211: failed to load regulatory.db \[ 2.749124\] rkisp0-vir0: Async subdev notifier completed \[ 2.749160\] ALSA device list: \[ 2.749178\] #0: rockchip,hdmiin \[ 2.749195\] #1: rockchip-hdmi0 \[ 2.749210\] #2: rockchip-hdmi1 \[ 2.751498\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 2.751529\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 2.751679\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 2.751731\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 2.751806\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 2.751860\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 2.765353\] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null) \[ 2.765387\] VFS: Mounted root (ext4 filesystem) on device 179:6. \[ 2.765892\] devtmpfs: mounted \[ 2.769411\] Freeing unused kernel memory: 6720K \[ 2.805417\] Run /sbin/init as init process \[ 2.848583\] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null) \[ 2.943557\] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: (null) \[ 2.968883\] EXT4-fs (mmcblk0p8): mounted filesystem with ordered data mode. Opts: (null) Start mounting all internal partitions in /etc/fstab Log saved to /var/log/mount-all.log Note: Will skip fsck, remove /.skip_fsck to enable \[2\]: Handling /dev/mmcblk0p8 /userdata ext4 defaults 2 \[0\]: Handling /dev/mmcblk0p6 / ext4 rw,noauto 1 \[1\]: Handling /dev/mmcblk0p7 /oem ext4 defaults 2 \[2\]: Already resized /dev/mmcblk0p8(ext4) \[1\]: Already resized /dev/mmcblk0p7(ext4) \[0\]: Already resized /dev/mmcblk0p6(ext4) Starting syslogd: OK Starting klogd: OK Running sysctl: OK Populating /dev using udev: \[ 3.098132\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.098381\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.098998\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.099306\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.099610\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.099916\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.099924\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 3.099931\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.104867\] udevd\[397\]: starting version 3.2.10 \[ 3.125314\] udevd\[401\]: starting eudev-3.2.10 \[ 3.131707\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 3.143400\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.143642\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.143868\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.144098\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.144323\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.144561\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.144569\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 3.144577\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.175423\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 3.178326\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.178711\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.178922\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.179039\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.179156\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.225873\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[1\] get remote terminal sensor failed! \[ 3.225879\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[2\] get remote terminal sensor failed! \[ 3.225886\] stream_cif_mipi_id1: update sensor info failed -19 \[ 3.225888\] rkcif_tools_id2: update sensor info failed -19 \[ 3.226533\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[2\] get remote terminal sensor failed! \[ 3.226538\] stream_cif_mipi_id2: update sensor info failed -19 \[ 3.227520\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[1\] get remote terminal sensor failed! \[ 3.227527\] rkcif_tools_id1: update sensor info failed -19 \[ 3.227804\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 3.227825\] rkcif_scale_ch0: update sensor info failed -19 \[ 3.228194\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 3.228201\] rkcif_tools_id0: update sensor info failed -19 \[ 3.229414\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[3\] get remote terminal sensor failed! \[ 3.229423\] rkcif_scale_ch3: update sensor info failed -19 \[ 3.229842\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[2\] get remote terminal sensor failed! \[ 3.229847\] rkcif_scale_ch2: update sensor info failed -19 \[ 3.230131\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[1\] get remote terminal sensor failed! \[ 3.230141\] rkcif_scale_ch1: update sensor info failed -19 \[ 3.230454\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[0\] get remote terminal sensor failed! \[ 3.230463\] stream_cif_mipi_id0: update sensor info failed -19 \[ 3.234387\] rkcif-mipi-lvds2: rkcif_update_sensor_info: stream\[3\] get remote terminal sensor failed! \[ 3.234394\] stream_cif_mipi_id3: update sensor info failed -19 done Starting irqbalance: OK \[ 3.281751\] dwhdmi-rockchip fdea0000.hdmi: i2c read time out! \[ 3.281764\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-11 \[ 3.281769\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid Initializing random number generator: OK Saving random seed: \[ 3.312501\] dw-dp fde60000.dp: aux failed to read dpcd: -110 OK Starting system message bus: \[ 3.327521\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.327961\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.328196\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.329148\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.329368\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! done Starting bluetoothd: OK Starting network: ln: failed to create symbolic link '': No such file or directory OK Failed to detect Wi-Fi/BT chip! Starting dhcpcd... dhcpcd-9.4.1 starting DHCPCD_ARGS: interface not found dhcpcd exited Starting ntpd: OK \[ 3.435208\] dwhdmi-rockchip fdea0000.hdmi: i2c read time out! \[ 3.435234\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-11 \[ 3.435248\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid starting weston... done. Starting dropbear sshd: OK Starting pulseaudio: OK \[ 3.466546\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 3.470151\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.470388\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.470500\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.470628\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.470847\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.471072\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.471080\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 3.471090\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid Starting dnsmasq: OK \[ 3.502561\] dw-dp fde60000.dp: aux failed to read dpcd: -110 Starting input-event-daemon: \[ 3.507149\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.507524\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.507733\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.507852\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.507967\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! done W: \[pulseaudio\] main.c: This program is not intended to be run as root (unless --system is specified). W: \[pulseaudio\] main.c: Compiled with DEPRECATED libsamplerate support! root@rk3588-buildroot:/# Date: 1970-01-01 UTC \[00:00:02.123\] weston 13.0.0 https://wayland.freedesktop.org Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/ Build: 13.0.0 \[00:00:02.124\] Command line: /usr/bin/weston \[00:00:02.124\] OS: Linux, 5.10.198, #2 SMP Mon Dec 15 16:00:23 CST 2025, aarch64 \[00:00:02.124\] Flight recorder: enabled \[00:00:02.124\] warning: XDG_RUNTIME_DIR "/var/run" is not configured correctly. Unix access mode must be 0700 (current mode is 0755), and must be owned by the user UID 0 (current owner is UID 0). Refer to your distribution on how to get it, or http://www.freedesktop.org/wiki/Specifications/basedir-spec on how to implement it. /etc/xdg/weston/weston.ini.d/02-desktop.ini: "shell/locking" from "false" to "true" \[00:00:02.126\] Using config file '/etc/xdg/weston/weston.ini' \[00:00:02.126\] Output repaint window is -1 ms maximum. \[00:00:02.127\] Loading module '/usr/lib/libweston-13/drm-backend.so' \[00:00:02.130\] initializing drm backend \[00:00:02.130\] Entering mirror mode. \[00:00:02.130\] Trying direct launcher... \[00:00:02.132\] using /dev/dri/card0 \[00:00:02.132\] DRM: does not support atomic modesetting \[00:00:02.132\] DRM: does not support GBM modifiers \[00:00:02.132\] DRM: does not support async page flipping \[00:00:02.132\] DRM: supports picture aspect ratio \[ 3.597349\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_audio_startup: device is no connected or audio is off \[ 3.597369\] hdmi-audio-codec hdmi-audio-codec.7.auto: ASoC: error at snd_soc_dai_startup on i2s-hifi: -19 \[ 3.608853\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_audio_startup: device is no connected or audio is off \[ 3.608891\] hdmi-audio-codec hdmi-audio-codec.7.auto: ASoC: error at snd_soc_dai_startup on i2s-hifi: -19 \[ 3.611860\] dwhdmi-rockchip fdea0000.hdmi: i2c read time out! \[ 3.611892\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-11 \[ 3.611902\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.620841\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_audio_startup: device is no connected or audio is off \[ 3.620872\] hdmi-audio-codec hdmi-audio-codec.7.auto: ASoC: error at snd_soc_dai_startup on i2s-hifi: -19 E: \[pulseaudio\] module-alsa-card.c: Failed to find a working profile. E: \[pulseaudio\] module.c: Failed to load module "module-alsa-card" (argument: "device_id="0" name="platform-hdmiin-sound" card_name="alsa_card.platform-hdmiin-sound" namereg_fail=false tsched=no fixed_latency_range=no ignore_dB=no deferred_volume=yes use_ucm=yes avoid_resampling=no card_properties="module-udev-detect.discovered=1""): initialization failed. E: \[pulseaudio\] module-rescue-streams.c: module-rescue-stream is obsolete and should no longer be loaded. Please remove it from your configuration. E: \[pulseaudio\] module-console-kit.c: GetSessionsForUnixUser() call failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files \[ 3.642577\] dw-dp fde60000.dp: aux failed to read dpcd: -110 E: \[pulseaudio\] module.c: Failed to load module "module-console-kit" (argument: ""): initialization failed. \[00:00:02.187\] Loading module '/usr/lib/libweston-13/gl-renderer.so' W: \[pulseaudio\] server-lookup.c: Unable to contact D-Bus: org.freedesktop.DBus.Error.NotSupported: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead W: \[pulseaudio\] main.c: Unable to contact D-Bus: org.freedesktop.DBus.Error.NotSupported: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead \[ 3.649357\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! arm_release_ver: g13p0-01eac0, rk_so_ver: 10 \[ 3.649941\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.650380\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.650610\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.650975\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.651085\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.651089\] dwhdmi-rockchip fdea0000.hdmi: get hdcp1.4 capable failed:-5 \[ 3.651093\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.661872\] mali fb000000.gpu: Loading Mali firmware 0x1010000 \[ 3.663515\] mali fb000000.gpu: Mali firmware git_sha: ee476db42870778306fa8d559a605a73f13e455c \[00:00:02.217\] EGL version: 1.4 Valhall-"g13p0-01eac0" \[00:00:02.217\] EGL vendor: ARM \[00:00:02.217\] EGL client APIs: OpenGL_ES \[00:00:02.217\] EGL features: EGL Wayland extension: yes context priority: yes buffer age: no partial update: yes swap buffers with damage: no configless context: yes surfaceless context: yes dmabuf support: modifiers \[ 3.682672\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 3.685051\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.685629\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.685877\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.686485\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[00:00:02.228\] GL version: OpenGL ES 3.2 v1.g13p0-01eac0.11addb9882ee8209dc0912af75110af7 \[ 3.686713\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[00:00:02.228\] GLSL version: OpenGL ES GLSL ES 3.20 \[ 3.686937\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[00:00:02.228\] GL vendor: ARM \[ 3.686945\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[00:00:02.228\] GL renderer: Mali-G610 \[ 3.686953\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.689887\] file system registered \[ 3.718702\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 3.720830\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.721053\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.727503\] read descriptors \[ 3.727519\] read strings \[00:00:02.311\] GL ES 3.2 - renderer features: read-back format: ARGB8888 glReadPixels supports y-flip: no wl_shm 10 bpc formats: yes wl_shm 16 bpc formats: no wl_shm half-float formats: yes internal R and RG formats: yes OES_EGL_image_external: yes wl_shm sub-image to texture: yes \[00:00:02.311\] Using GL renderer \[00:00:02.321\] event2 - adc-keys: is tagged by udev as: Keyboard \[00:00:02.321\] event2 - adc-keys: device is a keyboard \[00:00:02.322\] event0 - rk805 pwrkey: is tagged by udev as: Keyboard \[00:00:02.322\] event0 - rk805 pwrkey: device is a keyboard \[00:00:02.323\] event3 - rockchip-hdmi0 rockchip-hdmi0: is tagged by udev as: Switch \[00:00:02.324\] event3 - not using input device '/dev/input/event3' \[00:00:02.324\] event4 - rockchip-hdmi1 rockchip-hdmi1: is tagged by udev as: Switch \[00:00:02.325\] event4 - not using input device '/dev/input/event4' \[00:00:02.325\] event1 - rockchip,hdmiin rockchip,hdmiin: is tagged by udev as: Switch \[00:00:02.326\] event1 - not using input device '/dev/input/event1' \[00:00:02.358\] libinput: configuring device "adc-keys". \[00:00:02.358\] libinput: configuring device "rk805 pwrkey". \[00:00:02.359\] Registered plugin API 'weston_drm_output_api_v1' of size 40 \[00:00:02.359\] Color manager: no-op \[00:00:02.359\] Compositor capabilities: arbitrary surface rotation: yes screen capture uses y-flip: yes cursor planes: yes arbitrary resolutions: no view mask clipping: yes explicit sync: yes color operations: yes presentation clock: CLOCK_MONOTONIC, id 1 presentation clock resolution: 0.000000001 s \[00:00:02.359\] Loading module '/usr/lib/weston/desktop-shell.so' \[ 3.821977\] dwhdmi-rockchip fdea0000.hdmi: i2c read time out! \[ 3.822869\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.823338\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.823595\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 3.853814\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[00:00:02.395\] DRM: head 'HDMI-A-1' found, connector 208 is disconnected. \[ 3.854481\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.854828\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.855232\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.855584\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.855928\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 3.856304\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[00:00:02.398\] DRM: head 'HDMI-A-2' found, connector 224 is connected, EDID make 'unknown', model 'unknown', serial '' \[ 3.856752\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid Supported EOTF modes: SDR \[00:00:02.398\] DRM: head 'DSI-1' found, connector 238 is connected, EDID make 'unknown', model 'unknown', serial '' Supported EOTF modes: SDR \[00:00:02.399\] DRM: head 'DP-1' found, connector 240 is disconnected. \[ 3.891023\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[00:00:02.432\] DRM: head 'DP-2' found, connector 248 is disconnected. \[00:00:02.433\] launching '/usr/libexec/weston-keyboard' \[00:00:02.434\] launching '/usr/libexec/weston-desktop-shell' \[00:00:02.435\] HDMI-A-2 using at least 2 buffers \[00:00:02.436\] Output 'HDMI-A-2' attempts EOTF mode: SDR \[00:00:02.436\] Output 'HDMI-A-2' using color profile: stock sRGB color profile \[00:00:02.436\] Chosen EGL config details: id: 9 rgba: 8 8 8 0 buf: 24 dep: 0 stcl: 0 int: 0-1 type: win\|pbf\|swap_preserved vis_id: XRGB8888 (0x34325258) \[00:00:02.436\] Output HDMI-A-2 (crtc 93) video modes: 1920x1080@60.0 16:9, preferred, current, 148.5 MHz 1920x1080@50.0 16:9, 148.5 MHz \[ 3.898135\] android_work: did not send uevent (0 0 0000000000000000) 1280x720@60.0 16:9, 74.2 MHz 1280x720@50.0 16:9, 74.2 MHz 1920x1080@60.0, preferred, 148.5 MHz \[00:00:02.436\] associating input device event2 with output HDMI-A-2 (none by udev) \[00:00:02.436\] associating input device event0 with output HDMI-A-2 (none by udev) \[00:00:02.436\] Output HDMI-A-2 changed to mirror output \[00:00:02.436\] Output 'HDMI-A-2' enabled with head(s) HDMI-A-2 \[00:00:02.437\] DSI-1 using at least 2 buffers \[00:00:02.437\] Output 'DSI-1' attempts EOTF mode: SDR \[00:00:02.437\] Output 'DSI-1' using color profile: stock sRGB color profile \[00:00:02.437\] Chosen EGL config details: id: 9 rgba: 8 8 8 0 buf: 24 dep: 0 stcl: 0 int: 0-1 type: win\|pbf\|swap_preserved vis_id: XRGB8888 (0x34325258) \[00:00:02.437\] Output DSI-1 (crtc 137) video modes: 1024x600@56.1, preferred, current, 45.0 MHz \[00:00:02.437\] associating input device event2 with output DSI-1 (none by udev) \[00:00:02.437\] associating input device event0 with output DSI-1 (none by udev) \[00:00:02.437\] Output 'DSI-1' enabled with head(s) DSI-1 \[ 3.912729\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 3.962978\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp1 \[ 4.050989\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] Update mode to 1920x1080p60, type: 11(if:1000, flag:0x0) for vp1 dclk: 148500000 \[ 4.051060\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] dclk_out1 div: 0 dclk_core1 div: 2 \[ 4.051076\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] set dclk_vop1 to 148500000, get 148500000 \[ 4.051141\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000 \[ 4.051426\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy pll locked! \[ 4.051434\] dwhdmi-rockchip fdea0000.hdmi: final tmdsclk = 148500000 \[ 4.051469\] dwhdmi-rockchip fdea0000.hdmi: don't use dsc mode \[ 4.051476\] dwhdmi-rockchip fdea0000.hdmi: dw hdmi qp use tmds mode \[ 4.051485\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000 \[ 4.051685\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy lane locked! \[ 4.084551\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode could not load cursor 'dnd-move' could not load cursor 'dnd-move' could not load cursor 'dnd-copy' could not load cursor 'dnd-copy' could not load cursor 'dnd-none' could not load cursor 'dnd-none' xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8") could not create XKB compose table for locale 'en_US.UTF-8'. Disabiling compose \[ 4.506249\] rk_hdmirx fdee0000.hdmirx-controller: hdmirx_cancel_cpu_limit_freq freq qos nod add xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8") could not create XKB compose table for locale 'en_US.UTF-8'. Disabiling compose \[ 4.778651\] rk-pcie fe170000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=0 \[ 4.805224\] rk-pcie fe150000.pcie: PCIe Link Fail, LTSSM is 0x0, hw_retries=0 \[ 4.805303\] rk-pcie fe150000.pcie: failed to initialize host \[ 5.135218\] Freeing drm_logo memory: 736K \[ 7.101804\] rk_pcie_establish_link: 231 callbacks suppressed \[ 7.101808\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.128470\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.155144\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.181849\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.208617\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.235293\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.261961\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.288522\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.315233\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 7.341808\] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3 \[ 8.675139\] rk-pcie fe170000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=1 \[ 9.695423\] rk-pcie fe170000.pcie: failed to initialize host \[ 19.006840\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 19.161799\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.162267\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.162684\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.163100\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.163334\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.163564\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.163800\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.163812\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 19.163825\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 19.199016\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 19.199414\] dwhdmi-rockchip fde80000.hdmi: i2c read err! \[ 19.199458\] dwhdmi-rockchip fde80000.hdmi: use tmds mode \[ 19.199472\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 19.199540\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] Update mode to 1920x1080p60, type: 11(if:800, flag:0x0) for vp0 dclk: 148500000 \[ 19.199603\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] dclk_out0 div: 0 dclk_core0 div: 2 \[ 19.199626\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] set dclk_vop0 to 148500000, get 148500000 \[ 19.199674\] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000 \[ 19.199983\] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy pll locked! \[ 19.199994\] dwhdmi-rockchip fde80000.hdmi: final tmdsclk = 148500000 \[ 19.200039\] dwhdmi-rockchip fde80000.hdmi: don't use dsc mode \[ 19.200048\] dwhdmi-rockchip fde80000.hdmi: dw hdmi qp use tmds mode \[ 19.200061\] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000 \[ 19.200278\] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy lane locked! \[00:00:17.759\] DRM: head 'HDMI-A-1' updated, connector 208 is connected, EDID make 'GSM', model '27MP35', serial '' \[ 19.218566\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! Supported EOTF modes: SDR \[ 19.218887\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.219196\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.219421\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.219646\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.219870\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.220098\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 19.220108\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 19.220115\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 19.254830\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[00:00:17.796\] Detected a monitor change on head 'HDMI-A-2', not bothering to do anything about it. \[00:00:17.796\] Detected a monitor change on head 'DSI-1', not bothering to do anything about it. \[00:00:17.796\] HDMI-A-1 using at least 2 buffers \[00:00:17.796\] Output 'HDMI-A-1' attempts EOTF mode: SDR \[00:00:17.796\] Output 'HDMI-A-1' using color profile: stock sRGB color profile \[00:00:17.797\] Chosen EGL config details: id: 9 rgba: 8 8 8 0 buf: 24 dep: 0 stcl: 0 int: 0-1 type: win\|pbf\|swap_preserved vis_id: XRGB8888 (0x34325258) \[00:00:17.797\] Output HDMI-A-1 (crtc 71) video modes: 1920x1080@60.0, preferred, current, 148.5 MHz 1920x1080@60.0 16:9, 148.5 MHz 1920x1080i@60.0, 74.2 MHz 1920x1080i@60.0 16:9, 74.2 MHz 1920x1080@50.0 16:9, 148.5 MHz 1920x1080i@50.0 16:9, 74.2 MHz 1600x900@60.0, 108.0 MHz 1280x1024@60.0, 108.0 MHz 1152x864@75.0, 108.0 MHz 1280x720@60.0, 74.2 MHz 1280x720@60.0 16:9, 74.2 MHz 1280x720@50.0 16:9, 74.2 MHz 800x600@75.0, 49.5 MHz 720x576@50.0 16:9, 27.0 MHz 720x480@59.9, 27.0 MHz 720x480@59.9 16:9, 27.0 MHz \[00:00:17.797\] Output HDMI-A-1 changed to mirror output \[00:00:17.797\] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1 \[ 19.265994\] dwhdmi-rockchip fde80000.hdmi: use tmds mode \[ 19.283177\] dwhdmi-rockchip fde80000.hdmi: use tmds mode root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 28.691377\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 28.691646\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.692585\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.692933\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.693165\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.693396\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.693633\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.693645\] dwhdmi-rockchip fdea0000.hdmi: get hdcp2.x capable failed:-5 \[ 28.693659\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 28.728690\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[ 28.728877\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 28.779190\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp0 \[00:00:27.357\] DRM: head 'HDMI-A-1' updated, connector 208 is disconnected. \[ 28.816664\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.817756\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.819223\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.821993\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.822933\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.838950\] dwhdmi-rockchip fdea0000.hdmi: i2c read err! \[ 28.839379\] dwhdmi-rockchip fdea0000.hdmi: failed to get edid \[ 28.875001\] dw-dp fde60000.dp: aux failed to read dpcd: -110 \[00:00:27.417\] Output 'HDMI-A-1' no heads left, disabling. \[00:00:27.417\] Disabling output HDMI-A-1 \[00:00:27.418\] Detected a monitor change on head 'HDMI-A-2', not bothering to do anything about it. \[00:00:27.418\] Detected a monitor change on head 'DSI-1', not bothering to do anything about it. root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 33.509280\] vcc3v3_lcd0_n: disabling root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 44.714568\] dwc3 fc400000.usb: request 0000000022457179 was not queued to ep0out \[ 44.714710\] android_work: did not send uevent (0 0 0000000000000000) \[ 44.822692\] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode \[ 44.823204\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 44.823497\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 9 \[ 44.823627\] xhci-hcd xhci-hcd.15.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010 \[ 44.823657\] xhci-hcd xhci-hcd.15.auto: irq 151, io mem 0xfc400000 \[ 44.823764\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 44.823974\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 10 \[ 44.823989\] xhci-hcd xhci-hcd.15.auto: Host supports USB 3.0 SuperSpeed \[ 44.824089\] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 44.824099\] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 44.824108\] usb usb9: Product: xHCI Host Controller \[ 44.824116\] usb usb9: Manufacturer: Linux 5.10.198 xhci-hcd \[ 44.824124\] usb usb9: SerialNumber: xhci-hcd.15.auto \[ 44.824515\] hub 9-0:1.0: USB hub found \[ 44.824539\] hub 9-0:1.0: 1 port detected \[ 44.824837\] usb usb10: We don't know the algorithms for LPM for this host, disabling LPM. \[ 44.824908\] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 44.824917\] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 44.824926\] usb usb10: Product: xHCI Host Controller \[ 44.824934\] usb usb10: Manufacturer: Linux 5.10.198 xhci-hcd \[ 44.824942\] usb usb10: SerialNumber: xhci-hcd.15.auto \[ 44.825608\] hub 10-0:1.0: USB hub found \[ 44.825640\] hub 10-0:1.0: 1 port detected \[ 44.827465\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 44.827482\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 44.827683\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 44.827714\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 44.827725\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 44.827752\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 45.362450\] usb 10-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd \[ 45.392242\] usb 10-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 0.01 \[ 45.392264\] usb 10-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 \[ 45.392269\] usb 10-1: Product: DataTraveler 3.0 \[ 45.392274\] usb 10-1: Manufacturer: Kingston \[ 45.392278\] usb 10-1: SerialNumber: E0D55EA573CDF830C93D1F6C \[ 45.480758\] usb-storage 10-1:1.0: USB Mass Storage device detected \[ 45.482527\] scsi host1: usb-storage 10-1:1.0 \[ 45.489108\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 45.489202\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 45.489506\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 45.489565\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 45.489595\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 45.489653\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 46.496813\] scsi 1:0:0:0: Direct-Access Kingston DataTraveler 3.0 PQ: 0 ANSI: 6 \[ 46.500113\] sd 1:0:0:0: \[sda\] 120845300 512-byte logical blocks: (61.9 GB/57.6 GiB) \[ 46.500850\] sd 1:0:0:0: \[sda\] Write Protect is off \[ 46.501527\] sd 1:0:0:0: \[sda\] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA \[ 46.506660\] sda: sda1 \[ 46.508319\] sd 1:0:0:0: \[sda\] Attached SCSI removable disk \[ 46.510685\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 46.510735\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 46.510835\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 46.510858\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 46.510869\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 46.510892\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 46.625064\] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! \[ 46.627223\] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 010 Device 001: ID 1d6b:0003 Bus 001 Device 001: ID 1d6b:0002 Bus 010 Device 002: ID 0951:1666 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 009 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 92.983761\] xhci-hcd xhci-hcd.15.auto: remove, state 1 \[ 92.983805\] usb usb10: USB disconnect, device number 1 \[ 92.983816\] usb 10-1: USB disconnect, device number 2 \[ 93.085147\] xhci-hcd xhci-hcd.15.auto: USB bus 10 deregistered \[ 93.085419\] xhci-hcd xhci-hcd.15.auto: remove, state 4 \[ 93.085437\] usb usb9: USB disconnect, device number 1 \[ 93.086351\] xhci-hcd xhci-hcd.15.auto: USB bus 9 deregistered \[ 93.326244\] android_work: did not send uevent (0 0 0000000000000000) root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 001 Device 001: ID 1d6b:0002 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# \[ 106.464861\] dwc3 fc400000.usb: request 0000000021b1168c was not queued to ep0out \[ 106.464923\] android_work: did not send uevent (0 0 0000000000000000) \[ 106.572317\] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode \[ 106.572361\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 106.572819\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 9 \[ 106.572973\] xhci-hcd xhci-hcd.15.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010 \[ 106.573007\] xhci-hcd xhci-hcd.15.auto: irq 151, io mem 0xfc400000 \[ 106.573132\] xhci-hcd xhci-hcd.15.auto: xHCI Host Controller \[ 106.573307\] xhci-hcd xhci-hcd.15.auto: new USB bus registered, assigned bus number 10 \[ 106.573322\] xhci-hcd xhci-hcd.15.auto: Host supports USB 3.0 SuperSpeed \[ 106.573430\] usb usb9: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10 \[ 106.573441\] usb usb9: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 106.573449\] usb usb9: Product: xHCI Host Controller \[ 106.573457\] usb usb9: Manufacturer: Linux 5.10.198 xhci-hcd \[ 106.573465\] usb usb9: SerialNumber: xhci-hcd.15.auto \[ 106.573869\] hub 9-0:1.0: USB hub found \[ 106.573895\] hub 9-0:1.0: 1 port detected \[ 106.574191\] usb usb10: We don't know the algorithms for LPM for this host, disabling LPM. \[ 106.574263\] usb usb10: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10 \[ 106.574273\] usb usb10: New USB device strings: Mfr=3, Product=2, SerialNumber=1 \[ 106.574281\] usb usb10: Product: xHCI Host Controller \[ 106.574289\] usb usb10: Manufacturer: Linux 5.10.198 xhci-hcd \[ 106.574298\] usb usb10: SerialNumber: xhci-hcd.15.auto \[ 106.574697\] hub 10-0:1.0: USB hub found \[ 106.574720\] hub 10-0:1.0: 1 port detected \[ 106.576562\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 106.576574\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 106.576675\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 106.576697\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 106.576707\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 106.576732\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 107.109039\] usb 10-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd \[ 107.138799\] usb 10-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 0.01 \[ 107.138807\] usb 10-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3 \[ 107.138809\] usb 10-1: Product: DataTraveler 3.0 \[ 107.138811\] usb 10-1: Manufacturer: Kingston \[ 107.138813\] usb 10-1: SerialNumber: E0D55EA573CDF830C93D1F6C \[ 107.226872\] usb-storage 10-1:1.0: USB Mass Storage device detected \[ 107.228276\] scsi host1: usb-storage 10-1:1.0 \[ 107.230656\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 107.230687\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 107.230835\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 107.230860\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 107.230871\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 107.230894\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 108.256951\] scsi 1:0:0:0: Direct-Access Kingston DataTraveler 3.0 PQ: 0 ANSI: 6 \[ 108.260146\] sd 1:0:0:0: \[sda\] 120845300 512-byte logical blocks: (61.9 GB/57.6 GiB) \[ 108.260727\] sd 1:0:0:0: \[sda\] Write Protect is off \[ 108.261318\] sd 1:0:0:0: \[sda\] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA \[ 108.266613\] sda: sda1 \[ 108.269764\] sd 1:0:0:0: \[sda\] Attached SCSI removable disk \[ 108.271485\] dwmmc_rockchip fe2d0000.mmc: No normal pinctrl state \[ 108.271510\] dwmmc_rockchip fe2d0000.mmc: No idle pinctrl state \[ 108.271602\] dwmmc_rockchip fe2d0000.mmc: IDMAC supports 32-bit address mode. \[ 108.271622\] dwmmc_rockchip fe2d0000.mmc: Using internal DMA controller. \[ 108.271631\] dwmmc_rockchip fe2d0000.mmc: Version ID is 270a \[ 108.271652\] dwmmc_rockchip fe2d0000.mmc: DW MMC controller at irq 92,32 bit host data width,256 deep fifo \[ 108.380628\] FAT-fs (sda1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! \[ 108.384109\] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# lsusb Bus 005 Device 001: ID 1d6b:0002 Bus 003 Device 001: ID 1d6b:0001 Bus 010 Device 001: ID 1d6b:0003 Bus 001 Device 001: ID 1d6b:0002 Bus 010 Device 002: ID 0951:1666 Bus 008 Device 001: ID 1d6b:0003 Bus 006 Device 001: ID 1d6b:0003 Bus 004 Device 001: ID 1d6b:0001 Bus 002 Device 001: ID 1d6b:0002 Bus 009 Device 001: ID 1d6b:0002 Bus 007 Device 001: ID 1d6b:0002 root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# root@rk3588-buildroot:/# poweroff root@rk3588-buildroot:/# Stopping input-event-daemon: done stop auto-reboot finished Stopping dnsmasq: OK Stopping pulseaudio: E: \[pulseaudio\] main.c: Failed to kill daemon: No such process OK Stopping dropbear sshd: OK stoping weston... \[00:02:09.813\] caught signal 15 done. \[00:02:09.814\] event2 - adc-keys: device removed \[00:02:09.814\] event0 - rk805 pwrkey: device removed Stopping ntpd: OK Stopping dhcpcd... no /sbin/dhcpcd found; none killed killall: rkaiq_3A_server: no process killed Stopping network: OK Stopping bluetoothd: OK \[ 131.345128\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp3 Stopping Wi-Fi/BT... Stopping system message bus: done Saving random seed: OK Stopping irqbalance: OK \[ 131.431152\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp1 Stopping klogd: OK Stopping syslogd: OK \[ 131.471425\] ffs_data_put(): freeing umount: /var/log: target is busy. umount: /run: target is busy. \[ 131.494538\] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null) The system is going down NOW! Sent SIGTERM to all processes E: \[pulseaudio\] module-default-device-restore.c: Failed to save default sink: No such file or directory E: \[pulseaudio\] module-default-device-restore.c: Failed to save default source: No such file or directory E: \[pulseaudio\] core-util.c: Failed to create secure directory (/userdata/.pulse/.config/pulse): No such file or directory \[ 131.503359\] dwhdmi-rockchip fdea0000.hdmi: use tmds mode \[ 131.506657\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] Update mode to 1920x1080p60, type: 11(if:1000, flag:0x0) for vp1 dclk: 148500000 \[ 131.507264\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] dclk_out1 div: 0 dclk_core1 div: 2 \[ 131.507285\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] set dclk_vop1 to 148500000, get 148500000 \[ 131.540744\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] Update mode to 1024x600p56, type: 16(if:20, flag:0x0) for vp3 dclk: 44118000 \[ 131.540809\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] dclk_out3 div: 2 dclk_core3 div: 2 \[ 131.540825\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_enable\] set dclk_vop3 to 44118000, get 44117648 \[ 131.559068\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000 \[ 131.559366\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy pll locked! \[ 131.559379\] dwhdmi-rockchip fdea0000.hdmi: final tmdsclk = 148500000 \[ 131.559420\] dwhdmi-rockchip fdea0000.hdmi: don't use dsc mode \[ 131.559427\] dwhdmi-rockchip fdea0000.hdmi: dw hdmi qp use tmds mode \[ 131.559435\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000 \[ 131.559633\] rockchip-hdptx-phy-hdmi fed70000.hdmiphy: hdptx phy lane locked! \[ 131.593502\] dw-mipi-dsi2 fde20000.dsi: \[drm:dw_mipi_dsi2_encoder_atomic_enable\] final DSI-Link bandwidth: 294120 x 4 Kbps Sent SIGKILL to all processes Requesting system poweroff \[ 133.651625\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp1 \[ 133.674111\] rockchip-vop2 fdd90000.vop: \[drm:vop2_crtc_atomic_disable\] Crtc atomic disable vp3 \[ 133.739652\] mpp_rkvenc2 fdbe0000.rkvenc-core: shutdown device \[ 133.740159\] mpp_rkvenc2 fdbe0000.rkvenc-core: shutdown success \[ 133.740667\] mpp_rkvenc2 fdbd0000.rkvenc-core: shutdown device \[ 133.741174\] mpp_rkvenc2 fdbd0000.rkvenc-core: shutdown success \[ 133.747095\] rk860-regulator 1-0042: rk860..... reset \[ 133.748446\] rk860-regulator 1-0042: force rk860x_reset ok! \[ 133.748932\] rk860-regulator 0-0043: rk860..... reset \[ 133.750292\] rk860-regulator 0-0043: force rk860x_reset ok! \[ 133.750778\] rk860-regulator 0-0042: rk860..... reset \[ 133.752139\] rk860-regulator 0-0042: force rk860x_reset ok! \[ 133.784705\] xhci-hcd xhci-hcd.5.auto: Host halt failed, -110 \[ 133.785660\] mpp_av1dec av1d-master: shutdown device \[ 133.786091\] mpp_av1dec av1d-master: shutdown success \[ 133.786616\] \[WLAN_RFKILL\]: Enter rfkill_wlan_shutdown \[ 133.787055\] \[WLAN_RFKILL\]: rockchip_wifi_power: 0 \[ 133.787471\] \[BT_RFKILL\]: rfkill_get_bt_power_state: rfkill-bt driver has not Successful initialized \[ 133.788260\] wifi power off \[ 133.895099\] \[BT_RFKILL\]: rfkill_get_bt_power_state: rfkill-bt driver has not Successful initialized \[ 133.895889\] \[WLAN_RFKILL\]: wifi shut off power \[GPIO20-0

133.896360\] \[WLAN_RFKILL\]: rfkill_set_wifi_bt_power: 0 \[ 133.897214\] rockchip-i2s-tdm fddf8000.i2s: failed to clear 1 on slave mode \[ 133.898178\] xhci-hcd xhci-hcd.15.auto: remove, state 1 \[ 133.898634\] usb usb10: USB disconnect, device number 1 \[ 133.899085\] usb 10-1: USB disconnect, device number 0 \[ 134.098459\] usb 10-1: device not accepting address 2, error -108 \[ 134.196688\] xhci-hcd xhci-hcd.15.auto: USB bus 10 deregistered \[ 134.197388\] xhci-hcd xhci-hcd.15.auto: remove, state 4 \[ 134.197846\] usb usb9: USB disconnect, device number 1 \[ 134.198940\] xhci-hcd xhci-hcd.15.auto: USB bus 9 deregistered \[ 134.200464\] rkisp_hw fdcb0000.rkisp: rkisp_hw_shutdown \[ 134.200952\] mpp_rkvdec2 fdc48100.rkvdec-core: shutdown device \[ 134.201461\] mpp_rkvdec2 fdc48100.rkvdec-core: shutdown success \[ 134.202010\] mpp_rkvdec2 fdc38100.rkvdec-core: shutdown device \[ 134.202521\] mpp_rkvdec2 fdc38100.rkvdec-core: shutdown success \[ 134.203106\] mpp-iep2 fdbb0000.iep: shutdown device \[ 134.203529\] mpp-iep2 fdbb0000.iep: shutdown success \[ 134.203977\] mpp_vepu2 fdbac000.jpege-core: shutdown device \[ 134.204464\] mpp_vepu2 fdbac000.jpege-core: shutdown success \[ 134.204968\] mpp_vepu2 fdba8000.jpege-core: shutdown device \[ 134.205462\] mpp_vepu2 fdba8000.jpege-core: shutdown success \[ 134.205966\] mpp_vepu2 fdba4000.jpege-core: shutdown device \[ 134.206452\] mpp_vepu2 fdba4000.jpege-core: shutdown success \[ 134.206956\] mpp_vepu2 fdba0000.jpege-core: shutdown device \[ 134.207442\] mpp_vepu2 fdba0000.jpege-core: shutdown success \[ 134.207956\] mpp_jpgdec fdb90000.jpegd: shutdown device \[ 134.208416\] mpp_jpgdec fdb90000.jpegd: shutdown success \[ 134.208930\] mpp_vdpu1 fdb51000.avsd-plus: shutdown device \[ 134.209405\] mpp_vdpu1 fdb51000.avsd-plus: shutdown success \[ 134.209895\] mpp_vepu2 fdb50000.vepu: shutdown device \[ 134.210336\] mpp_vepu2 fdb50000.vepu: shutdown success \[ 134.210781\] mpp_vdpu2 fdb50400.vdpu: shutdown device \[ 134.211224\] mpp_vdpu2 fdb50400.vdpu: shutdown success \[ 134.211878\] xhci-hcd xhci-hcd.6.auto: remove, state 4 \[ 134.212325\] usb usb8: USB disconnect, device number 1 \[ 134.213165\] xhci-hcd xhci-hcd.6.auto: USB bus 8 deregistered \[ 134.213835\] xhci-hcd xhci-hcd.6.auto: remove, state 4 \[ 134.214282\] usb usb7: USB disconnect, device number 1 \[ 134.215264\] xhci-hcd xhci-hcd.6.auto: USB bus 7 deregistered \[ 134.216310\] xhci-hcd xhci-hcd.5.auto: remove, state 4 \[ 134.216759\] usb usb6: USB disconnect, device number 1 \[ 134.217581\] xhci-hcd xhci-hcd.5.auto: USB bus 6 deregistered \[ 134.218192\] xhci-hcd xhci-hcd.5.auto: remove, state 4 \[ 134.218651\] usb usb5: USB disconnect, device number 1 \[ 134.251468\] xhci-hcd xhci-hcd.5.auto: Host halt failed, -110 \[ 134.251965\] xhci-hcd xhci-hcd.5.auto: Host controller not halted, aborting reset. \[ 134.252814\] xhci-hcd xhci-hcd.5.auto: USB bus 5 deregistered \[ 134.254292\] reboot: Power down \[END\] 2025/12/15 21:04:58

相关推荐
tianyuanwo4 小时前
深度解析:Linux ISO引导配置与安装模式设计
linux·uefi·iso·isolinux.cfg·grub.cfg
金牌归来发现妻女流落街头4 小时前
【阻塞队列的等待唤醒机制】
java·开发语言·阻塞队列
毕设源码-朱学姐4 小时前
【开题答辩全过程】以 基于Java技术的羽毛球积分赛管理系统的设计与实现 为例,包含答辩的问题和答案
java·开发语言
2501_941982054 小时前
Go 进阶:发送文件/图片消息的流程与实现
开发语言·后端·golang
star learning white4 小时前
xm C语言12
服务器·c语言·前端
CoderCodingNo5 小时前
【GESP】C++一级真题 luogu-B4410 [GESP202509 一级] 金字塔
开发语言·c++
超级大福宝5 小时前
C++中1 << 31 - 1相当于INT_MAX吗?
c语言·c++
starvapour5 小时前
Ubuntu触发硬件级系统重启
linux·运维·ubuntu
芯联智造5 小时前
【stm32简单外设篇】- 高灵敏麦克风传感器模块 KY-037
c语言·stm32·单片机·嵌入式硬件