20230109测试ToyBrick的RK3588开发板运行Buildroot的V0.02版本(20220312)

2023-05-16

20230109测试ToyBrick的RK3588开发板运行Buildroot的V0.02版本(20220312)
2023/1/9 18:03

https://wiki.t-firefly.com/zh_CN/Firefly-Linux-Guide/manual_buildroot.html
1. Buildroot 使用手册
1.1. 桌面应用
官方发布的 Buildroot 固件,默认支持 Wayland 桌面环境和一些 Qt 应用,如下图:

 

 

_images/Buildroot_Desktop1.png1.1.1. multivideoplayer
多路视频播放器用于测试设备的多路视频播放能力、显示能力以及硬件解码能力。 

 

_images/buildroot_multi_video.png

1.1.2. qfm
qfm 是一个文件浏览应用

_images/buildroot_file_manage.png

1.1.3. qplayer
qplayer 是一个多功能播放器,可以播放视频、音频和浏览图片。

_images/buildroot_qplayer.png

1.1.4. qcamera
qcamera 是一款相机应用,可以进行拍摄和录像。

_images/buildroot_qcamera.png

设备连接摄像头的情况下启动 qcamera 将自动显示摄像头画面,右侧按钮:

Image Mode: 照相模式,点击可切换为 Video Mode 视频录制模式。

Capture: 捕捉图像,在 Video Mode 下会变为 Record 录制按钮。

Exit: 退出。

1.1.5. qsetting
qsetting 是系统设置工具,可以设置 WiFi ,蓝牙,恢复出厂以及固件升级。

 

_images/buildroot_setting.png

1.2. 用户和密码
用户:root

密码:firefly

1.3. 以太网配置
Buildroot的网络配置需要使用到 /etc/network/interfaces 配置文件,配置完成之后,运行/etc/init.d/S40network restart即可重启网络。手动调试可以直接使用 ifdown -a 和 ifup -a来重启网络。

1.3.1. 常用配置
配置文件举例:如下配置文件将eth0网卡设置为动态IP地址,将eth1设置为静态IP地址

注意:/etc/network/interfaces的文件格式要求比较严格,如果遇到Error: either "local" is duplicate, or "/24" is a garbage.,那么很有可能是配置文件中多了一个空格

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

auto eth1
iface eth1 inet static
address 168.168.110.137
netmask 255.255.0.0
broadcast 168.168.1.255
gateway  168.168.0.1
(1)inet static:定义静态IP地址。支持的选项有:

address address
        Address (dotted quad/netmask) required

netmask mask
        Netmask (dotted quad or number of bits) deprecated

broadcast broadcast_address
        Broadcast address (dotted quad, + or -) deprecated. Default value: "+"

metric metric
        Routing metric for default gateway (integer)

gateway address
        Default gateway (dotted quad)

pointopoint address
        Address of other end point (dotted quad). Note the spelling of "point-to".

hwaddress address
        Link local address or "random".

mtu size
        MTU size

scope  Address validity scope. Possible values: global, link, host
(2)inet dhcp:通过DHCP协议获取IP地址。支持的选项有:

hostname hostname
        Hostname to be requested (pump, dhcpcd, udhcpc)

metric metric
        Metric for added routes (dhclient)

leasehours leasehours
        Preferred lease time in hours (pump)

leasetime leasetime
        Preferred lease time in seconds (dhcpcd)

vendor vendor
        Vendor class identifier (dhcpcd)

client client
        Client identifier (dhcpcd)

hwaddress address
        Hardware address.
(3)inet manual:没有为接口定义IP地址。通常由作为桥接或聚合成员的接口,需要以混杂模式运行的接口( 例如,端口镜像或网络TAP )或在其上配置了VLAN设备的接口使用。这是保持接口不带IP地址的一种方法。支持的选项有:

hwaddress address
        Link local address or "random".

mtu size
        MTU size
1.3.2. 高级设置
/etc/network/interfaces支持设置在网卡关闭/启动时,运行Linux命令行指令。由于/etc/network/interfaces支持的功能相对有限,这在配置静态路由、默认路由等网络配置时将会非常有帮助。

支持的可选选项有:pre-up、up、post-up、pre-down、down、post-down,在这些选项之后,加上命令行即可。

pre-up    网卡启用前的动作
up    启用时候的动作
post-up    启用后的动作
pre-down    关闭前的动作
down    关闭时动作
post-down    关闭后动作
说明:$IFACE自适应对于相应的网卡节点
配置举例:给eth1网卡配置一条静态路由

auto eth1
iface eth1 inet static
address 192.168.3.1
netmask 255.255.255.0
broadcast 192.168.3.255
post-up ip route add 192.168.4.0/24 via 192.168.3.2 dev $IFACE
配置举例:创建一个网桥,将eth0,eth1绑定到网桥,将其作为LAN口

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet manual
pre-up ifconfig $IFACE up
post-down ifconfig $IFACE down

auto eth1
iface eth1 inet manual
pre-up ifconfig $IFACE up
post-down ifconfig $IFACE down

auto br0
iface br0 inet static
address 192.168.2.1
netmask 255.255.255.0
broadcast 192.168.2.255
pre-up brctl addbr $IFACE
pre-up brctl addif $IFACE eth0
pre-up brctl addif $IFACE eth1
bridge_ports eth0 eth1
post-down brctl delif $IFACE eth0
post-down brctl delif $IFACE eth1
post-down ifconfig $IFACE down
post-down brctl delbr $IFACE
1.4. WiFi 连接
1.4.1. 修改配置文件的方式
1.4.1.1. 方式1
通过 qsetting QT应用进行配置。

1.4.1.2. 方式2
修改如下文件:

vi /data/cfg/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
添加如下配置项

network={
ssid="WiFi-AP"        // WiFi 名字
psk="12345678"        // WiFi 密码
key_mgmt=WPA-PSK    // 加密方式
# key_mgmt=NONE        // 不加密
}
启动wpa_supplicant进程

wpa_supplicant -B -i wlan0 -c /data/cfg/wpa_supplicant.conf
1.4.2. 临时修改的方式
修改如下文件:

vi /data/cfg/wpa_supplicant.conf
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
启动wpa_supplicant进程:

wpa_supplicant -B -i wlan0 -c /data/cfg/wpa_supplicant.conf
1.4.2.1. 通过wpa_cli配置WiFi
常用命令:

wpa_cli -i wlan0 scan             // 搜索附近wifi网络
wpa_cli -i wlan0 scan_result      // 打印搜索wifi网络
wpa_cli -i wlan0 add_network      // 添加一个网络连接
如果要连接加密方式是[WPA-PSK-CCMP+TKIP][WPA2-PSK-CCMP+TKIP][ESS] (wpa加密),wifi名称是name,wifi密码是:psk。操作如下:

wpa_cli -i wlan0 set_network 0 ssid '"name"'
wpa_cli -i wlan0 set_network 0 psk '"psk"'
wpa_cli -i wlan0 set_network 0 key_mgmt WPA-PSK
wpa_cli -i wlan0 enable_network 0    //使能WiFi
如果要连接加密方式是[WEP][ESS] (wep加密),wifi名称是name,wifi密码是psk。操作如下:

wpa_cli -i wlan0 set_network 0 ssid '"name"'
wpa_cli -i wlan0 set_network 0 key_mgmt NONE
wpa_cli -i wlan0 set_network 0 wep_key0 '"psk"'
wpa_cli -i wlan0 enable_network 0
如果要连接加密方式是[ESS] (无加密),wifi名称是name。操作如下:

wpa_cli -i wlan0 set_network 0 ssid '"name"'
wpa_cli -i wlan0 set_network 0 key_mgmt NONE
wpa_cli -i wlan0 enable_network 0
使能保存WIFI连接信息

wpa_cli -i wlan0 set update_config 1
保存WIFI连接信息

wpa_cli -i wlan0 save_config
连接已有的连接

wpa_cli -i wlan0 list_network        // 列举所有保存的连接
wpa_cli -i wlan0 select_network 0     // 连接第1个保存的连接
wpa_cli -i wlan0 enable_network 0      // 使能第1个保存的连接
关闭WiFi

ifconfig wlan0 down

 

 

 

 

 

 

 

 

 

 

 


1.5. 音/视频播放
# 播放 wav
aplay test.wav
gstwavplay.sh test.wav

# 播放 mp3
mp3play.sh test.mp3
gstmp3play.sh test.mp3

# 播放 mp4
gstmp4play.sh test.mp4
gstvideoplay.sh test.mp4
1.6. SSH
官方发布的 SDK 默认已开启 ssh,用户为”root”,密码为”firefly”。如果不需要修改用户登录密码,可以跳过此章节。

1.6.1. 修改方法
使能SSH相关选项

openssh

BR2_PACKAGE_OPENSSH=y
配置登录的账户root和密码

BR2_TARGET_ENABLE_ROOT_LOGIN=y
BR2_TARGET_GENERIC_ROOT_PASSWD="firefly"
修改配置文件

修改板卡里/etc/ssh/sshd_config文件

PermitRootLogin yes
1.7. 外部存储设备
Buildroot 支持自动挂载外部存储设备:

U 盘挂载路径:/udisk

TF 卡挂载路径:/sdcard

1.8. 恢复出厂设置
注意:此出厂设置表示恢复为设备最后一次升级固件之后的初始状态。

1.8.1. 方法1
通过 qsetting QT 应用进行配置,点击 “Factory Reset” 功能选项进行操作。

1.8.2. 方法2
通过 update 命令

update
# 或者
update factory / update reset
1.9. 固件本地升级
Buildroot 支持从外部存储设备升级固件,以下是升级流程说明。关于如何编译 Buildroot 固件请用户参考相应板卡维基的编译 Buildroot 固件页面。

1.9.1. 制作升级固件
按照正常的固件编译流程,制作用于升级的固件。

升级固件不一定要全分区升级,可修改 package-file 文件,将不要升级的分区注释掉,或者改为RESERVED

(1)修改文件 tools/linux/Linux_Pack_Firmware/rockdev/package-file

例如,将 rootfs 的相对路径改为 RESERVED,这样就不会打包根文件系统,即不升级根文件系统分区。

# name          relative path
#
#hwdef          hwdef
package-file    package-file
bootloader      image/miniloaderall.bin
parameter       image/parameter.txt
trust           image/trust.img
uboot           image/uboot.img
misc            image/misc.img
boot            image/boot.img
recovery        image/recovery.img
rootfs          RESERVED
oem             image/oem.img
userdata:grow   image/userdata.img
backup          RESERVED
(2)编译固件

./build.sh updateimg
将制作好的升级固件拷贝到 U 盘、TF 卡或者设备的 /userdata/ 目录下,重命名为 update.img。

注意: 若将升级固件放至设备的 /userdata/ 目录,则不要打包 userdata.img,将 image/userdata.img 改为 RESERVED。

1.9.2. 升级过程
1.9.2.1. 方法1
通过 qsetting QT应用进行配置。点击 “Update” 功能选项进行操作。

1.9.2.2. 方法2
通过 update 命令。

# U 盘
update ota /udisk/update.img
# TF 卡
update ota /sdcard/update.img
# /userdata/
update ota /userdata/update.img
等待升级完成,升级成功后,设备会重新启动进入系统。

1.10. Weston 配置
我们可以通过配置 Weston 对显示进行一些自定义设置,下文对部分设置进行说明。

1.10.1. 状态栏设置
Weston 支持在 weston.ini 配置文件的 shell 段设置状态栏的背景色、位置,以及在 launcher 段设置快捷启动程序,如:

# /etc/xdg/weston/weston.ini

[shell]
# 颜色格式为 ARGB8888
panel-color=0xff002244
# top|bottom|left|right|none
panel-position=bottom

[launcher]
icon=/usr/share/weston/terminal.png
path=/usr/bin/weston-terminal

[launcher]
# 图标路径
icon=/usr/share/weston/icon_flower.png
# 快捷启动命令
path=/usr/bin/qsetting
1.10.2. 背景设置
Weston 支持在 weston.ini 配置文件的 shell 段设置背景图案、颜色,如:

# /etc/xdg/weston/weston.ini

[shell]
# 背景图案(壁纸)绝对路径
background-image=/usr/share/weston/background.png
# scale|scale-crop|tile
background-type=scale
# 颜色格式为 ARGB8888,未设置背景图案时生效
background-color=0xff002244
1.10.3. 待机及锁屏配置
Weston 的超时待机时长可以在启动参数中配置,也可以在 weston.ini 的 core 段配置,如:

# /etc/init.d/S50launcher
    start)
        ...
        # 0 为禁止待机,单位为秒
        weston --tty=2 -B=drm-backend.so --idle-time=0&
或者:

# /etc/xdg/weston/weston.ini

[core]
# 设置 5 秒未操作后进入待机状态
idle-time=5
1.10.4. 显示颜色格式配置
Buildroot SDK 内 Weston 目前默认显示格式为 ARGB8888,对于某些低性能平台,可以在 weston.ini 的 core 段配置为 RGB565,如:

# /etc/xdg/weston/weston.ini

[core]
# xrgb8888|rgb565|xrgb2101010
gbm-format=rgb565
也可以在 weston.ini 的 output 段单独配置每个屏幕的显示格式,如:

# /etc/xdg/weston/weston.ini

[output]
# output 的 name 可以查看 /sys/class/drm/card0-name
name=LVDS-1
# xrgb8888|rgb565|xrgb2101010
gbm-format=rgb565
1.10.5. 屏幕方向设置
Weston 的屏幕显示方向可以在 weston.ini 的 output 段配置,如:

# /etc/xdg/weston/weston.ini

[output]
name=LVDS-1
# normal|90|180|270|flipped|flipped-90|flipped-180|flipped-270
transform=180
如果需要动态配置屏幕方向,可以通过动态配置文件,如:

echo "output:all:rotate90" > /tmp/.weston_drm.conf # 所有屏幕旋转 90 度
echo "output:eDP-1:rotate180" > /tmp/.weston_drm.conf # eDP-1 旋转 180 度
1.10.6. 分辨率及缩放配置
Weston 的屏幕分辨率及缩放可以在 weston.ini 的 output 段配置,如:

# /etc/xdg/weston/weston.ini

[output]
name=HDMI-A-1
# 需为屏幕支持的有效分辨率
mode=1920x1080
# 需为整数倍数
scale=2
如果需要动态配置分辨率及缩放,可以通过动态配置文件,如:

echo "output:HDMI-A-1:mode=800x600" > /tmp/.weston_drm.conf # 修改 HDMI-A-1 分辨率为800x600
这种方式缩放时需要依赖 RGA 加速。

1.10.7. 冻结屏幕
在启动 Weston 时,开机 logo 到 UI 显示之间存在短暂切换黑屏。如需要防止黑屏,可以通过以下种动态配置文件方式短暂冻结 Weston 屏幕内容:

# /etc/init.d/S50launcher
    start)
        ...
        export WESTON_FREEZE_DISPLAY=/tmp/.weston_freeze # 设置特殊配置文件路径
        touch /tmp/.weston_freeze # 冻结显示
        weston --tty=2 -B=drm-backend.so --idle-time=0&
        ...
        sleep 1 && rm /tmp/.weston_freeze& # 1 秒后解冻
1.10.8. 多屏配置
Buildroot SDK 的 Weston 支持多屏同异显及热拔插等功能,不同显示器屏幕的区分根据 drm 的 name (通过 /sys/class/drm/card0-name 获取),相关配置通过环境变量设置,如:

# /etc/init.d/S50launcher

    start)
        ...
        export WESTON_DRM_PRIMARY=HDMI-A-1 # 指定主显为 HDMI-A-1
        export WESTON_DRM_MIRROR=1 # 使用镜像模式(多屏同显),不设置此环境变量即为异显
        export WESTON_DRM_KEEP_RATIO=1 # 镜像模式下缩放保持纵横比,不设置此变量即为强制全屏
        export WESTON_DRM_PREFER_EXTERNAL=1 # 外置显示器连接时自动关闭内置显示器
        export WESTON_DRM_PREFER_EXTERNAL_DUAL=1 # 外置显示器连接时默认以第一个外显为主显
        weston --tty=2 -B=drm-backend.so --idle-time=0&
镜像模式缩放显示内容时需要依赖 RGA 加速。

同时也支持在 weston.ini 的 output 段单独禁用指定屏幕:

# /etc/xdg/weston/weston.ini

[output]
name=LVDS-1
mode=off
# off|current|preferred|<WIDTHxHEIGHT@RATE>
1.10.9. 输入设备相关配置
Weston 服务默认需要至少一个输入设备,如无输入设备,则需要在 weston.ini 中的 core 段特殊设置:

# /etc/xdg/weston/weston.ini

[core]
require-input=false

参考资料:
百度搜索:buildroot BT 配对
https://blog.csdn.net/d_xueliang/article/details/73823790
buildroot使用详解


cn.bing.com
buildroot bt测试
https://blog.csdn.net/m0_38139533/article/details/116277646
rockchip buildroot wifibt


https://wiki.t-firefly.com/zh_CN/Firefly-Linux-Guide/manual_buildroot.html
1. Buildroot 使用手册


 

[BEGIN] 2023/1/9 11:15:01
console:/ # [  185.303102][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  208.278314][    C1] nf_conntrack: default automatic helper assignment has been turned off for security reasons and CT-based  firewall rule not found. Use the iptables CT target to attach helpers instead.
[  245.303146][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  289.434314][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 4, bssidx: 0
[  305.302343][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  365.303348][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  385.022033][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.022820][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.023058][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.023133][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.023190][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.023442][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.031347][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.039703][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  385.041291][  T942] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[  425.303202][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  430.850433][  T315] type=1400 audit(1673230360.929:81): avc: denied { open } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:bluetooth:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[  430.850472][  T315] type=1400 audit(1673230360.929:82): avc: denied { getattr } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:bluetooth:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[  430.850491][  T315] type=1400 audit(1673230360.929:83): avc: denied { map } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:bluetooth:s0 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1
[  430.851113][  T315] type=1107 audit(1673230360.929:84): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=sys.gmali.version pid=752 uid=1002 gid=1002 scontext=u:r:bluetooth:s0 tcontext=u:object_r:system_prop:s0 tclass=property_service permissive=1'
[  485.302596][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  503.107099][  T315] type=1400 audit(1673230433.186:85): avc: denied { open } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.gallery3d
[  503.107154][  T315] type=1400 audit(1673230433.186:86): avc: denied { getattr } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.gallery3d
[  503.107175][  T315] type=1400 audit(1673230433.186:87): avc: denied { map } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.gallery3d
[  503.108251][  T315] type=1400 audit(1673230433.189:88): avc: denied { write } for comm="RenderThread" name="property_service" dev="tmpfs" ino=307 scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:object_r:property_socket:s0 tclass=sock_file permissive=1 app=com.android.gallery3d
[  503.108279][  T315] type=1400 audit(1673230433.189:89): avc: denied { connectto } for comm="RenderThread" path="/dev/socket/property_service" scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:r:init:s0 tclass=unix_stream_socket permissive=1 app=com.android.gallery3d
[  503.108664][  T315] type=1107 audit(1673230433.189:90): uid=0 auid=4294967295 ses=4294967295 subj=u:r:init:s0 msg='avc: denied { set } for property=sys.gmali.version pid=2356 uid=10057 gid=10057 scontext=u:r:untrusted_app_29:s0:c57,c256,c512,c768 tcontext=u:object_r:system_prop:s0 tclass=property_service permissive=1'
[  545.303423][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  569.441207][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 5, bssidx: 0
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # [  605.303157][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  636.191508][   T15] usb 6-1: new SuperSpeed Gen 1 USB device number 2 using xhci-hcd
[  636.209506][   T15] usb 6-1: New USB device found, idVendor=0781, idProduct=5597, bcdDevice= 1.00
[  636.209562][   T15] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  636.209583][   T15] usb 6-1: Product: Cruzer Glide 3.0
[  636.209601][   T15] usb 6-1: Manufacturer: SanDisk
[  636.209620][   T15] usb 6-1: SerialNumber: 4C530001111012108423
[  636.212216][   T15] usb-storage 6-1:1.0: USB Mass Storage device detected
[  636.213683][   T15] scsi host1: usb-storage 6-1:1.0
[  637.232997][    T9] scsi 1:0:0:0: Direct-Access     SanDisk  Cruzer Glide 3.0 1.00 PQ: 0 ANSI: 6
[  637.236030][    T9] sd 1:0:0:0: Attached scsi generic sg0 type 0
[  637.236753][ T1944] sd 1:0:0:0: [sda] 30605312 512-byte logical blocks: (15.7 GB/14.6 GiB)
[  637.237997][ T1944] sd 1:0:0:0: [sda] Write Protect is off
[  637.238879][ T1944] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  637.266415][  T315] type=1400 audit(1673230567.346:91): avc: denied { create } for comm="kdevtmpfs" name="sda" scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  637.266822][  T315] type=1400 audit(1673230567.346:92): avc: denied { setattr } for comm="kdevtmpfs" name="sda" dev="devtmpfs" ino=219 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  637.273524][ T1944]  sda: sda1
[  637.287636][ T1944] sd 1:0:0:0: [sda] Attached SCSI removable disk
[  665.303360][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  669.709326][    T1] init: Untracked pid 2413 exited with status 0
[  669.710242][    T1] init: Untracked pid 2415 exited with status 0
[  669.740122][    T1] init: Untracked pid 2419 exited with status 0
[  669.740908][    T1] init: Untracked pid 2421 exited with status 0
[  669.796456][    T1] init: Untracked pid 2424 exited with status 0
[  669.798755][    T1] init: Untracked pid 2426 exited with status 0
[  669.834524][    T1] init: Untracked pid 2430 exited with status 0
[  669.835941][    T1] init: Untracked pid 2432 exited with status 0
[  669.907479][    T1] init: Untracked pid 2435 exited with status 0
[  669.910093][    T1] init: Untracked pid 2437 exited with status 0
[  673.498440][ T2405] xhci-hcd xhci-hcd.7.auto: Timeout while waiting for setup device command
[  678.831803][ T2405] xhci-hcd xhci-hcd.7.auto: Timeout while waiting for setup device command
[  679.038225][ T2405] usb 6-1: device not accepting address 2, error -62
[  684.381483][ T2405] xhci-hcd xhci-hcd.7.auto: Timeout while waiting for setup device command
[  689.711435][ T2405] xhci-hcd xhci-hcd.7.auto: Timeout while waiting for setup device command
[  689.921408][ T2405] usb 6-1: device not accepting address 2, error -62
[  690.124868][ T2405] usb 6-1: Device not responding to setup address.
[  690.335104][ T2405] usb 6-1: Device not responding to setup address.
[  690.544733][ T2405] usb 6-1: device not accepting address 2, error -71
[  690.751501][ T2405] usb 6-1: Device not responding to setup address.
[  690.958451][ T2405] usb 6-1: Device not responding to setup address.
[  691.164740][ T2405] usb 6-1: device not accepting address 2, error -71
[  691.178377][ T2019] usb 6-1: USB disconnect, device number 2
[  691.188086][ T2060] blk_update_request: I/O error, dev sda, sector 17440 op 0x1:(WRITE) flags 0x800 phys_seg 1 prio class 0
[  691.188138][ T2060] Buffer I/O error on dev sda1, logical block 164, lost async page write
[  691.188276][ T1964] blk_update_request: I/O error, dev sda, sector 31096 op 0x1:(WRITE) flags 0x800 phys_seg 1 prio class 0
[  691.188298][ T1964] Buffer I/O error on dev sda1, logical block 1871, lost async page write
[  691.188414][ T2548] blk_update_request: I/O error, dev sda, sector 31104 op 0x1:(WRITE) flags 0x100000 phys_seg 1 prio class 0
[  691.188435][ T2548] Buffer I/O error on dev sda1, logical block 1872, lost async page write
[  691.188764][ T2409] blk_update_request: I/O error, dev sda, sector 31112 op 0x1:(WRITE) flags 0x800 phys_seg 15 prio class 0
[  691.188782][ T2409] Buffer I/O error on dev sda1, logical block 1873, lost async page write
[  691.188802][ T2409] Buffer I/O error on dev sda1, logical block 1874, lost async page write
[  691.188818][ T2409] Buffer I/O error on dev sda1, logical block 1875, lost async page write
[  691.188834][ T2409] Buffer I/O error on dev sda1, logical block 1876, lost async page write
[  691.188849][ T2409] Buffer I/O error on dev sda1, logical block 1877, lost async page write
[  691.188865][ T2409] Buffer I/O error on dev sda1, logical block 1878, lost async page write
[  691.188880][ T2409] Buffer I/O error on dev sda1, logical block 1879, lost async page write
[  691.188979][ T2409] blk_update_request: I/O error, dev sda, sector 31232 op 0x1:(WRITE) flags 0x100000 phys_seg 1 prio class 0
[  691.189400][ T1964] blk_update_request: I/O error, dev sda, sector 31248 op 0x1:(WRITE) flags 0x4800 phys_seg 64 prio class 0
[  691.189711][ T2060] blk_update_request: I/O error, dev sda, sector 31240 op 0x1:(WRITE) flags 0x800 phys_seg 1 prio class 0
[  691.189824][ T1964] blk_update_request: I/O error, dev sda, sector 31760 op 0x1:(WRITE) flags 0x800 phys_seg 1 prio class 0
[  691.189939][ T2060] blk_update_request: I/O error, dev sda, sector 31768 op 0x1:(WRITE) flags 0x800 phys_seg 1 prio class 0
[  691.190172][ T2548] blk_update_request: I/O error, dev sda, sector 31776 op 0x1:(WRITE) flags 0x100000 phys_seg 16 prio class 0
[  691.212253][  T315] type=1400 audit(1673230621.292:93): avc: denied { getattr } for comm="kdevtmpfs" path="/sda1" dev="devtmpfs" ino=220 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  691.212446][  T315] type=1400 audit(1673230621.292:94): avc: denied { setattr } for comm="kdevtmpfs" name="sda1" dev="devtmpfs" ino=220 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  691.212747][  T315] type=1400 audit(1673230621.292:95): avc: denied { unlink } for comm="kdevtmpfs" name="sda1" dev="devtmpfs" ino=220 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  691.481472][ T2019] usb 6-1: Device not responding to setup address.
[  691.688160][ T2019] usb 6-1: Device not responding to setup address.
[  691.894742][ T2019] usb 6-1: device not accepting address 3, error -71
[  692.098189][ T2019] usb 6-1: Device not responding to setup address.
[  692.308166][ T2019] usb 6-1: Device not responding to setup address.
[  692.514720][ T2019] usb 6-1: device not accepting address 4, error -71
[  692.521563][ T2019] usb usb6-port1: attempt power cycle
[  694.094843][ T2019] usb 6-1: Device not responding to setup address.
[  694.301513][ T2019] usb 6-1: Device not responding to setup address.
[  694.508066][ T2019] usb 6-1: device not accepting address 6, error -71
[  694.704815][ T2019] usb 6-1: Device not responding to setup address.
[  694.911478][ T2019] usb 6-1: Device not responding to setup address.
[  695.118361][ T2019] usb 6-1: device not accepting address 7, error -71
[  695.124945][ T2019] usb usb6-port1: attempt power cycle
[  696.708262][  T197] usb 6-1: Device not responding to setup address.
[  696.918199][  T197] usb 6-1: Device not responding to setup address.
[  697.124738][  T197] usb 6-1: device not accepting address 9, error -71
[  697.324897][  T197] usb 6-1: Device not responding to setup address.
[  697.531602][  T197] usb 6-1: Device not responding to setup address.
[  697.738106][  T197] usb 6-1: device not accepting address 10, error -71
[  697.744986][  T197] usb usb6-port1: attempt power cycle
[  699.334845][ T2553] usb 6-1: Device not responding to setup address.
[  699.541504][ T2553] usb 6-1: Device not responding to setup address.
[  699.748069][ T2553] usb 6-1: device not accepting address 12, error -71
[  699.944786][ T2553] usb 6-1: Device not responding to setup address.
[  700.096688][  T315] type=1400 audit(1673230630.176:96): avc: denied { open } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.documentsui
[  700.096791][  T315] type=1400 audit(1673230630.176:97): avc: denied { getattr } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.documentsui
[  700.096857][  T315] type=1400 audit(1673230630.176:98): avc: denied { map } for comm="RenderThread" path="/dev/__properties__/u:object_r:vendor_default_prop:s0" dev="tmpfs" ino=279 scontext=u:r:platform_app:s0:c512,c768 tcontext=u:object_r:vendor_default_prop:s0 tclass=file permissive=1 app=com.android.documentsui
[  700.151460][ T2553] usb 6-1: Device not responding to setup address.
[  700.358076][ T2553] usb 6-1: device not accepting address 13, error -71
[  700.363323][ T2553] usb usb6-port1: attempt power cycle
[  701.981503][  T197] usb 6-1: Device not responding to setup address.
[  702.188161][  T197] usb 6-1: Device not responding to setup address.
[  702.394746][  T197] usb 6-1: device not accepting address 15, error -71
[  702.591507][  T197] usb 6-1: Device not responding to setup address.
[  702.798162][  T197] usb 6-1: Device not responding to setup address.
[  703.004744][  T197] usb 6-1: device not accepting address 16, error -71
[  703.011678][  T197] usb usb6-port1: attempt power cycle
[  704.581492][  T197] usb 6-1: Device not responding to setup address.
[  704.788141][  T197] usb 6-1: Device not responding to setup address.
[  704.994727][  T197] usb 6-1: device not accepting address 18, error -71
[  705.191477][  T197] usb 6-1: Device not responding to setup address.
[  705.401492][  T197] usb 6-1: Device not responding to setup address.
[  705.608085][  T197] usb 6-1: device not accepting address 19, error -71
[  705.613739][  T197] usb usb6-port1: attempt power cycle
[  707.224839][ T2553] usb 6-1: Device not responding to setup address.
[  707.431502][ T2553] usb 6-1: Device not responding to setup address.
[  707.638098][ T2553] usb 6-1: device not accepting address 21, error -71
[  707.834844][ T2553] usb 6-1: Device not responding to setup address.
[  708.041462][ T2553] usb 6-1: Device not responding to setup address.
[  708.248071][ T2553] usb 6-1: device not accepting address 22, error -71
[  708.254933][ T2553] usb usb6-port1: attempt power cycle
[  709.841523][ T2553] usb 6-1: Device not responding to setup address.
[  710.048198][ T2553] usb 6-1: Device not responding to setup address.
[  710.254750][ T2553] usb 6-1: device not accepting address 24, error -71
[  710.458156][ T2553] usb 6-1: Device not responding to setup address.
[  710.664838][ T2553] usb 6-1: Device not responding to setup address.
[  710.871406][ T2553] usb 6-1: device not accepting address 25, error -71
[  710.878306][ T2553] usb usb6-port1: attempt power cycle
[  712.491486][ T2553] usb 6-1: Device not responding to setup address.
[  712.698199][ T2553] usb 6-1: Device not responding to setup address.
[  712.904727][ T2553] usb 6-1: device not accepting address 27, error -71
[  713.101458][ T2553] usb 6-1: Device not responding to setup address.
[  713.308211][ T2553] usb 6-1: Device not responding to setup address.
[  713.514744][ T2553] usb 6-1: device not accepting address 28, error -71
[  713.521668][ T2553] usb usb6-port1: attempt power cycle
[  715.134849][ T2553] usb 6-1: Device not responding to setup address.
[  715.341452][ T2553] usb 6-1: Device not responding to setup address.
[  715.548067][ T2553] usb 6-1: device not accepting address 30, error -71
[  715.748136][ T2553] usb 6-1: Device not responding to setup address.
[  715.954977][ T2553] usb 6-1: Device not responding to setup address.
[  716.161405][ T2553] usb 6-1: device not accepting address 31, error -71
[  716.168331][ T2553] usb usb6-port1: attempt power cycle
[  717.784922][ T2553] usb 6-1: Device not responding to setup address.
[  717.991520][ T2553] usb 6-1: Device not responding to setup address.
[  718.198066][ T2553] usb 6-1: device not accepting address 33, error -71
[  718.394815][ T2553] usb 6-1: Device not responding to setup address.
[  718.601561][ T2553] usb 6-1: Device not responding to setup address.
[  718.811411][ T2553] usb 6-1: device not accepting address 34, error -71
[  718.816410][ T2553] usb usb6-port1: attempt power cycle
[  720.404822][  T197] usb 6-1: Device not responding to setup address.
[  720.611482][  T197] usb 6-1: Device not responding to setup address.
[  720.818052][  T197] usb 6-1: device not accepting address 36, error -71
[  721.011479][  T197] usb 6-1: Device not responding to setup address.
[  721.218240][  T197] usb 6-1: Device not responding to setup address.
[  721.424727][  T197] usb 6-1: device not accepting address 37, error -71
[  721.431319][  T197] usb usb6-port1: attempt power cycle
[  723.024833][  T197] usb 6-1: Device not responding to setup address.
[  723.231488][  T197] usb 6-1: Device not responding to setup address.
[  723.441400][  T197] usb 6-1: device not accepting address 39, error -71
[  723.641482][  T197] usb 6-1: Device not responding to setup address.
[  723.848168][  T197] usb 6-1: Device not responding to setup address.
[  724.054749][  T197] usb 6-1: device not accepting address 40, error -71
[  724.061681][  T197] usb usb6-port1: attempt power cycle
[  725.302738][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  725.674940][  T197] usb 6-1: Device not responding to setup address.
[  725.881476][  T197] usb 6-1: Device not responding to setup address.
[  726.088084][  T197] usb 6-1: device not accepting address 42, error -71
[  726.284811][  T197] usb 6-1: Device not responding to setup address.
[  726.491509][  T197] usb 6-1: Device not responding to setup address.
[  726.698069][  T197] usb 6-1: device not accepting address 43, error -71
[  726.704866][  T197] usb usb6-port1: attempt power cycle
[  728.288155][  T197] usb 6-1: Device not responding to setup address.
[  728.494840][  T197] usb 6-1: Device not responding to setup address.
[  728.701397][  T197] usb 6-1: device not accepting address 45, error -71
[  728.898161][  T197] usb 6-1: Device not responding to setup address.
[  729.104799][  T197] usb 6-1: Device not responding to setup address.
[  729.311387][  T197] usb 6-1: device not accepting address 46, error -71
[  729.318215][  T197] usb usb6-port1: attempt power cycle
[  730.901494][  T197] usb 6-1: Device not responding to setup address.
[  731.108133][  T197] usb 6-1: Device not responding to setup address.
[  731.314721][  T197] usb 6-1: device not accepting address 48, error -71
[  731.511474][  T197] usb 6-1: Device not responding to setup address.
[  731.718174][  T197] usb 6-1: Device not responding to setup address.
[  731.924739][  T197] usb 6-1: device not accepting address 49, error -71
[  731.931567][  T197] usb usb6-port1: attempt power cycle
[  733.544836][  T197] usb 6-1: Device not responding to setup address.
[  733.751487][  T197] usb 6-1: Device not responding to setup address.
[  733.958065][  T197] usb 6-1: device not accepting address 51, error -71
[  734.154828][  T197] usb 6-1: Device not responding to setup address.
[  734.361493][  T197] usb 6-1: Device not responding to setup address.
[  734.568097][  T197] usb 6-1: device not accepting address 52, error -71
[  734.575012][  T197] usb usb6-port1: attempt power cycle
[  736.161496][  T197] usb 6-1: Device not responding to setup address.
[  736.368150][  T197] usb 6-1: Device not responding to setup address.
[  736.574726][  T197] usb 6-1: device not accepting address 54, error -71
[  736.771485][  T197] usb 6-1: Device not responding to setup address.
[  736.978144][  T197] usb 6-1: Device not responding to setup address.
[  737.184726][  T197] usb 6-1: device not accepting address 55, error -71
[  737.191578][  T197] usb usb6-port1: attempt power cycle
[  738.781489][ T2019] usb 6-1: Device not responding to setup address.
[  738.988148][ T2019] usb 6-1: Device not responding to setup address.
[  739.194745][ T2019] usb 6-1: device not accepting address 57, error -71
[  739.391504][ T2019] usb 6-1: Device not responding to setup address.
[  739.598133][ T2019] usb 6-1: Device not responding to setup address.
[  739.804742][ T2019] usb 6-1: device not accepting address 58, error -71
[  739.811619][ T2019] usb usb6-port1: attempt power cycle
[  741.434826][ T2553] usb 6-1: Device not responding to setup address.
[  741.641495][ T2553] usb 6-1: Device not responding to setup address.
[  741.848059][ T2553] usb 6-1: device not accepting address 60, error -71
[  742.044804][ T2553] usb 6-1: Device not responding to setup address.
[  742.251468][ T2553] usb 6-1: Device not responding to setup address.
[  742.458151][ T2553] usb 6-1: device not accepting address 61, error -71
[  742.464990][ T2553] usb usb6-port1: attempt power cycle
[  744.078182][ T2553] usb 6-1: Device not responding to setup address.
[  744.284842][ T2553] usb 6-1: Device not responding to setup address.
[  744.491397][ T2553] usb 6-1: device not accepting address 63, error -71
[  744.688169][ T2553] usb 6-1: Device not responding to setup address.
[  744.894876][ T2553] usb 6-1: Device not responding to setup address.
[  745.101422][ T2553] usb 6-1: device not accepting address 64, error -71
[  745.108248][ T2553] usb usb6-port1: attempt power cycle
[  746.721514][  T197] usb 6-1: Device not responding to setup address.
[  746.928230][  T197] usb 6-1: Device not responding to setup address.
[  747.134736][  T197] usb 6-1: device not accepting address 66, error -71
[  747.331516][  T197] usb 6-1: Device not responding to setup address.
[  747.538222][  T197] usb 6-1: Device not responding to setup address.
[  747.744754][  T197] usb 6-1: device not accepting address 67, error -71
[  747.751610][  T197] usb usb6-port1: attempt power cycle
[  749.364793][ T2019] usb 6-1: Device not responding to setup address.
[  749.571482][ T2019] usb 6-1: Device not responding to setup address.
[  749.778071][ T2019] usb 6-1: device not accepting address 69, error -71
[  749.974897][ T2019] usb 6-1: Device not responding to setup address.
[  750.181489][ T2019] usb 6-1: Device not responding to setup address.
[  750.388111][ T2019] usb 6-1: device not accepting address 70, error -71
[  750.394889][ T2019] usb usb6-port1: attempt power cycle
[  752.008182][ T2553] usb 6-1: Device not responding to setup address.
[  752.214886][ T2553] usb 6-1: Device not responding to setup address.
[  752.421413][ T2553] usb 6-1: device not accepting address 72, error -71
[  752.618164][ T2553] usb 6-1: Device not responding to setup address.
[  752.824895][ T2553] usb 6-1: Device not responding to setup address.
[  753.031398][ T2553] usb 6-1: device not accepting address 73, error -71
[  753.038280][ T2553] usb usb6-port1: attempt power cycle
[  754.651494][ T2553] usb 6-1: Device not responding to setup address.
[  754.858208][ T2553] usb 6-1: Device not responding to setup address.
[  755.064746][ T2553] usb 6-1: device not accepting address 75, error -71
[  755.261487][ T2553] usb 6-1: Device not responding to setup address.
[  755.468232][ T2553] usb 6-1: Device not responding to setup address.
[  755.674748][ T2553] usb 6-1: device not accepting address 76, error -71
[  755.681587][ T2553] usb usb6-port1: attempt power cycle
[  757.294816][ T2553] usb 6-1: Device not responding to setup address.
[  757.501486][ T2553] usb 6-1: Device not responding to setup address.
[  757.708072][ T2553] usb 6-1: device not accepting address 78, error -71
[  757.904825][ T2553] usb 6-1: Device not responding to setup address.
[  758.111543][ T2553] usb 6-1: Device not responding to setup address.
[  758.318064][ T2553] usb 6-1: device not accepting address 79, error -71
[  758.324934][ T2553] usb usb6-port1: attempt power cycle
[  759.938154][ T2553] usb 6-1: Device not responding to setup address.
[  760.144804][ T2553] usb 6-1: Device not responding to setup address.
[  760.351409][ T2553] usb 6-1: device not accepting address 81, error -71
[  760.548175][ T2553] usb 6-1: Device not responding to setup address.
[  760.754894][ T2553] usb 6-1: Device not responding to setup address.
[  760.961406][ T2553] usb 6-1: device not accepting address 82, error -71
[  760.968262][ T2553] usb usb6-port1: attempt power cycle
[  762.581473][  T197] usb 6-1: Device not responding to setup address.
[  762.788304][  T197] usb 6-1: Device not responding to setup address.
[  762.994743][  T197] usb 6-1: device not accepting address 84, error -71
[  763.191505][  T197] usb 6-1: Device not responding to setup address.
[  763.398235][  T197] usb 6-1: Device not responding to setup address.
console:/ # [  763.604918][  T197] usb 6-1: device not accepting address 85, error -71
[  763.611545][  T197] usb usb6-port1: attempt power cycle
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # d[  765.224826][  T197] usb 6-1: Device not responding to setup address.
f[  765.431536][  T197] usb 6-1: Device not responding to setup address.
 [  765.638090][  T197] usb 6-1: device not accepting address 87, error -71
-[  765.834837][  T197] usb 6-1: Device not responding to setup address.
[  766.041486][  T197] usb 6-1: Device not responding to setup address.
[  766.248076][  T197] usb 6-1: device not accepting address 88, error -71
[  766.254928][  T197] usb usb6-port1: attempt power cycle
h
Filesystem            Size Used Avail Use% Mounted on
tmpfs                 3.7G 1.1M  3.7G   1% /dev
tmpfs                 3.7G    0  3.7G   0% /mnt
/dev/block/mmcblk0p11  11M 160K   11M   2% /metadata
/dev/block/dm-0       909M 907M  2.7M 100% /
/dev/block/dm-2       318M 317M  0.9M 100% /vendor
/dev/block/dm-4       648K 644K  4.0K 100% /odm
/dev/block/dm-1       147M 146M  452K 100% /system_ext
/dev/block/dm-3       3.5M 3.5M   12K 100% /vendor_dlkm
/dev/block/dm-5       232K  32K  200K  14% /odm_dlkm
/dev/block/dm-6       235M 234M  728K 100% /product
tmpfs                 3.7G 8.0K  3.7G   1% /apex
tmpfs                 3.7G 576K  3.7G   1% /linkerconfig
/dev/block/mmcblk0p10 356M 144K  356M   1% /cache
/dev/block/dm-7        24G  59M   24G   1% /data
tmpfs                 3.7G    0  3.7G   0% /data_mirror
/dev/fuse              24G  59M   24G   1% /mnt/user/0/emulated
console:/ # 
console:/ # [  767.868155][ T2553] usb 6-1: Device not responding to setup address.
console:/ # [  768.074813][ T2553] usb 6-1: Device not responding to setup address.
[  768.281395][ T2553] usb 6-1: device not accepting address 90, error -71
[  768.478135][ T2553] usb 6-1: Device not responding to setup address.
[  768.684796][ T2553] usb 6-1: Device not responding to setup address.
[  768.891409][ T2553] usb 6-1: device not accepting address 91, error -71
[  768.898293][ T2553] usb usb6-port1: attempt power cycle
[  770.511491][ T2553] usb 6-1: Device not responding to setup address.
[  770.718214][ T2553] usb 6-1: Device not responding to setup address.
[  770.924751][ T2553] usb 6-1: device not accepting address 93, error -71
[  771.121485][ T2553] usb 6-1: Device not responding to setup address.
[  771.328227][ T2553] usb 6-1: Device not responding to setup address.
[  771.534733][ T2553] usb 6-1: device not accepting address 94, error -71
[  771.541610][ T2553] usb usb6-port1: attempt power cycle
console:/ # 
console:/ # [  773.154833][ T2019] usb 6-1: Device not responding to setup address.
console:/ # [  773.361502][ T2019] usb 6-1: Device not responding to setup address.
[  773.568063][ T2019] usb 6-1: device not accepting address 96, error -71
[  773.764826][ T2019] usb 6-1: Device not responding to setup address.
[  773.971471][ T2019] usb 6-1: Device not responding to setup address.
console:/ # [  774.178084][ T2019] usb 6-1: device not accepting address 97, error -71
[  774.184958][ T2019] usb usb6-port1: attempt power cycle
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # df -h[  775.798160][ T2019] usb 6-1: Device not responding to setup address.
Filesystem            Size Used Avail Use% Mounted on
tmpfs                 3.7G 1.1M  3.7G   1% /dev
tmpfs                 3.7G    0  3.7G   0% /mnt
/dev/block/mmcblk0p11  11M 160K   11M   2% /metadata
/dev/block/dm-0       909M 907M  2.7M 100% /
/dev/block/dm-2       318M 317M  0.9M 100% /vendor
/dev/block/dm-4       648K 644K  4.0K 100% /odm
/dev/block/dm-1       147M 146M  452K 100% /system_ext
/dev/block/dm-3       3.5M 3.5M   12K 100% /vendor_dlkm
/dev/block/dm-5       232K  32K  200K  14% /odm_dlkm
/dev/block/dm-6       235M 234M  728K 100% /product
tmpfs                 3.7G 8.0K  3.7G   1% /apex
tmpfs                 3.7G 576K  3.7G   1% /linkerconfig
/dev/block/mmcblk0p10 356M 144K  356M   1% /cache
/dev/block/dm-7        24G  59M   24G   1% /data
tmpfs                 3.7G    0  3.7G   0% /data_mirror
/dev/fuse              24G  59M   24G   1% /mnt/user/0/emulated
console:/ # [  776.004847][ T2019] usb 6-1: Device not responding to setup address.
[  776.211426][ T2019] usb 6-1: device not accepting address 99, error -71
[  776.408175][ T2019] usb 6-1: Device not responding to setup address.
[  776.614894][ T2019] usb 6-1: Device not responding to setup address.
console:/ # 
console:/ # [  776.821399][ T2019] usb 6-1: device not accepting address 100, error -71
[  776.828274][ T2019] usb usb6-port1: attempt power cycle
console:/ # df -h                                                              
Filesystem            Size Used Avail Use% Mounted on
tmpfs                 3.7G 1.1M  3.7G   1% /dev
tmpfs                 3.7G    0  3.7G   0% /mnt
/dev/block/mmcblk0p11  11M 160K   11M   2% /metadata
/dev/block/dm-0       909M 907M  2.7M 100% /
/dev/block/dm-2       318M 317M  0.9M 100% /vendor
/dev/block/dm-4       648K 644K  4.0K 100% /odm
/dev/block/dm-1       147M 146M  452K 100% /system_ext
/dev/block/dm-3       3.5M 3.5M   12K 100% /vendor_dlkm
/dev/block/dm-5       232K  32K  200K  14% /odm_dlkm
/dev/block/dm-6       235M 234M  728K 100% /product
tmpfs                 3.7G 8.0K  3.7G   1% /apex
tmpfs                 3.7G 576K  3.7G   1% /linkerconfig
/dev/block/mmcblk0p10 356M 144K  356M   1% /cache
/dev/block/dm-7        24G  59M   24G   1% /data
tmpfs                 3.7G    0  3.7G   0% /data_mirror
/dev/fuse              24G  59M   24G   1% /mnt/user/0/emulated
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # [  778.441483][ T2019] usb 6-1: Device not responding to setup address.
console:/ # df -h[  778.648189][ T2019] usb 6-1: Device not responding to setup address.
Filesystem            Size Used Avail Use% Mounted on
tmpfs                 3.7G 1.1M  3.7G   1% /dev
tmpfs                 3.7G    0  3.7G   0% /mnt
/dev/block/mmcblk0p11  11M 160K   11M   2% /metadata
/dev/block/dm-0       909M 907M  2.7M 100% /
/dev/block/dm-2       318M 317M  0.9M 100% /vendor
/dev/block/dm-4       648K 644K  4.0K 100% /odm
/dev/block/dm-1       147M 146M  452K 100% /system_ext
/dev/block/dm-3       3.5M 3.5M   12K 100% /vendor_dlkm
/dev/block/dm-5       232K  32K  200K  14% /odm_dlkm
/dev/block/dm-6       235M 234M  728K 100% /product
tmpfs  [               3.7G 8.0K  3.7G   1% /apex
tmpfs                  3.7G 576K  3.7G   1% /l nkerconfig
/dev/block/mmcblk70p10 356M 144K  356M   1% /ca7che
/dev/block/dm-7        284G  59M   24G   1% /data
tm.8pfs                 3.7G    540  3.7G   0% /data_mirror
715/dev/fuse              24G  5]9M   24G   1% /mnt/user/0/em[ulated
 T2019] usb 6-1: device not accepting address 102, error -71
console:/ # [  779.051486][ T2019] usb 6-1: Device not responding to setup address.
[  779.258144][ T2019] usb 6-1: Device not responding to setup address.
console:/ # [  779.464732][ T2019] usb 6-1: device not accepting address 103, error -71
[  779.471631][ T2019] usb usb6-port1: attempt power cycle
console:/ # [  781.084821][ T2553] usb 6-1: Device not responding to setup address.
console:/ # [  781.291564][ T2553] usb 6-1: Device not responding to setup address.
console:/ # [  781.498069][ T2553] usb 6-1: device not accepting address 105, error -71
[  781.694833][ T2553] usb 6-1: Device not responding to setup address.
[  781.901548][ T2553] usb 6-1: Device not responding to setup address.
[  782.108069][ T2553] usb 6-1: device not accepting address 106, error -71
[  782.114927][ T2553] usb usb6-port1: attempt power cycle
mount
tmpfs on /dev type tmpfs (rw,seclabel,nosuid,relatime,mode=755)
devpts on /dev/pts type devpts (rw,seclabel,relatime,mode=600,ptmxmode=000)
proc on /proc type proc (rw,relatime,gid=3009,hidepid=invisible)
sysfs on /sys type sysfs (rw,seclabel,relatime)
selinuxfs on /sys/fs/selinux type selinuxfs (rw,relatime)
tmpfs on /mnt type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
/dev/block/mmcblk0p11 on /metadata type ext4 (rw,sync,seclabel,nosuid,nodev,noatime,discard)
/dev/block/dm-0 on / type ext4 (ro,seclabel,nodev,relatime)
/dev/block/dm-2 on /vendor type ext4 (ro,seclabel,relatime)
/dev/block/dm-4 on /odm type ext4 (ro,seclabel,relatime)
/dev/block/dm-1 on /system_ext type ext4 (ro,seclabel,relatime)
/dev/block/dm-3 on /vendor_dlkm type ext4 (ro,seclabel,relatime)
/dev/block/dm-5 on /odm_dlkm type ext4 (ro,seclabel,relatime)
/dev/block/dm-6 on /product type ext4 (ro,seclabel,relatime)
tmpfs on /apex type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tmpfs on /linkerconfig type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tmpfs on /mnt/installer type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
tmpfs on /mnt/androidwritable type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
/dev/block/dm-0 on /apex/com.android.adbd type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.appsearch type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.art type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.conscrypt type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.extservices type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.i18n type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.ipsec type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.media type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.media.swcodec type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.mediaprovider type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.neuralnetworks type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.os.statsd type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.permission type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.resolv type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.runtime type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.scheduling type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.sdkext type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.tethering type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.tzdata type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.vndk.v31 type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.wifi type ext4 (ro,seclabel,relatime)
none on /dev/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
none on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime)
none on /dev/cpuctl type cgroup (rw,nosuid,nodev,noexec,relatime,cpu)
none on /dev/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset,noprefix,release_agent=/sbin/cpuset_release_agent)
none on /dev/memcg type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
tmpfs on /linkerconfig type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tracefs on /sys/kernel/tracing type tracefs (rw,seclabel,relatime,mode=755)
debugfs on /sys/kernel/debug type debugfs (rw,seclabel,relatime,mode=755)
none on /config type configfs (rw,nosuid,nodev,noexec,relatime)
binder on /dev/binderfs type binder (rw,relatime,max=1048576,stats=global)
none on /sys/fs/fuse/connections type fusectl (rw,relatime)
none on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime)
pstore on /sys/fs/pstore type pstore (rw,seclabel,nosuid,nodev,noexec,relatime)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,seclabel,relatime,mode=755)
/dev/block/mmcblk0p10 on /cache type ext4 (rw,seclabel,nosuid,nodev,noatime,nodiratime,discard,noauto_da_alloc)
tmpfs on /storage type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
/dev/block/dm-7 on /data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data/user/0 type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
tmpfs on /data_mirror type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=700,gid=1000)
/dev/block/dm-7 on /data_mirror/data_ce/null type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/data_ce/null/0 type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/data_de/null type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/cur_profiles type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/ref_profiles type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
adb on /dev/usb-ffs/adb type functionfs (rw,relatime)
mtp on /dev/usb-ffs/mtp type functionfs (rw,relatime)
ptp on /dev/usb-ffs/ptp type functionfs (rw,relatime)
/dev/fuse on /mnt/user/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /mnt/installer/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /mnt/androidwritable/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /storage/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/block/dm-7 on /mnt/pass_through/0/emulated type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/user/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /storage/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/androidwritable/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/installer/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/user/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /storage/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/androidwritable/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/installer/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
console:/ # [  783.728158][ T2553] usb 6-1: Device not responding to setup address.
console:/ # [  783.934821][ T2553] usb 6-1: Device not responding to setup address.
console:/ # [  784.141395][ T2553] usb 6-1: device not accepting address 108, error -71
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # [  784.338153][ T2553] usb 6-1: Device not responding to setup address.
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # [  784.544815][ T2553] usb 6-1: Device not responding to setup address.
console:/ # 
console:/ # [  784.751397][ T2553] usb 6-1: device not accepting address 109, error -71
[  784.758322][ T2553] usb usb6-port1: attempt power cycle
[  785.303248][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
console:/ # 
console:/ # 
console:/ # mount                                                              
tmpfs on /dev type tmpfs (rw,seclabel,nosuid,relatime,mode=755)
devpts on /dev/pts type devpts (rw,seclabel,relatime,mode=600,ptmxmode=000)
proc on /proc type proc (rw,relatime,gid=3009,hidepid=invisible)
sysfs on /sys type sysfs (rw,seclabel,relatime)
selinuxfs on /sys/fs/selinux type selinuxfs (rw,relatime)
tmpfs on /mnt type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
/dev/block/mmcblk0p11 on /metadata type ext4 (rw,sync,seclabel,nosuid,nodev,noatime,discard)
/dev/block/dm-0 on / type ext4 (ro,seclabel,nodev,relatime)
/dev/block/dm-2 on /vendor type ext4 (ro,seclabel,relatime)
/dev/block/dm-4 on /odm type ext4 (ro,seclabel,relatime)
/dev/block/dm-1 on /system_ext type ext4 (ro,seclabel,relatime)
/dev/block/dm-3 on /vendor_dlkm type ext4 (ro,seclabel,relatime)
/dev/block/dm-5 on /odm_dlkm type ext4 (ro,seclabel,relatime)
/dev/block/dm-6 on /product type ext4 (ro,seclabel,relatime)
tmpfs on /apex type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tmpfs on /linkerconfig type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tmpfs on /mnt/installer type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
tmpfs on /m[nt/androidwritable type tmpfs (rw,seclabel,nosuid,nodev,noe  xec,relatime,mode=755,gid=1000)
/dev/block/dm-0 on /apex/com.android.adbd type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/com.android.ap8psearch type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 o6n /apex/com.android.art type .ext4 (ro,seclabel,relatime)
3/dev/block/dm-0 on /apex/com.7android.conscrypt type ext4 (1ro,seclabel,relatime)
/dev/b4lock/dm-0 on /apex/com.android.extservices type ext4 (ro,se5clabel,relatime)
/dev/block3]/dm-0 on /apex/com.android.i1[8n type ext4 (ro,seclabel,re Tlatime)
/dev/block/dm-0 on /2apex/com.android.ipsec type 5ext4 (ro,seclabel,relatime)
5/dev/block/dm-0 on /apex/com.android.media type ext4 (ro,se3clabel,relatime)
/dev/block/]dm-0 on /apex/com.android.med ia.swcodec type ext4 (ro,secluabel,relatime)
/dev/block/dm-0 on /apex/com.android.mediapsrovider type ext4 (ro,seclabebl,relatime)
/dev/block/dm-0  on /apex/com.android.neuraln6etworks type ext4 (ro,seclabe-l,relatime)
/dev/block/dm-01 on /apex/com.android.os.stat:sd type ext4 (ro,seclabel,rel atime)
/dev/block/dm-0 on /Dapex/com.android.permission type ext4 (ro,seclabel,relatimee)
/dev/block/dm-0 on /apex/vcom.android.resolv type ext4 (ro,seclabel,relatime)
/dev/bilock/dm-0 on /apex/com.android.runtime type ext4 (ro,seclacbel,relatime)
/dev/block/dm-e0 on /apex/com.android.sched uling type ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on n/apex/com.android.sdkext typote ext4 (ro,seclabel,relatime)
/dev/block/dm-0 on /apex/co m.android.tethering type ext4r (ro,seclabel,relatime)
espo/dev/block/dm-0 on /apex/com.android.tzdata type ext4 (ro,sneclabel,relatime)
/dev/blocdk/dm-0 on /apex/com.android.vndk.v31 type ext4 (ro,seclabeli,relatime)
/dev/block/dm-0 ngon /apex/com.andr to setup addoid.wifi type ext4 (ro,seclabrel,relatime)
none on /dev/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio)
none on /sys/fs/cgroup type cgrosup2 (rw,nosuid,nodev,noexec,relatime)
none on /dev/cpuctls type cgroup (rw,nosuid,nodev.,noexec,relatime,cpu)
none on /dev/cpuset type cgroup (rw,nosuid,nodev,noexec,relatime,cpuset,noprefix,release_agent=/sbin/cpuset_release_agent)
none on /dev/memcg type cgroup (rw,nosuid,nodev,noexec,relatime,memory)
tmpfs on /linkerconfig type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755)
tracefs on /sys/kernel/tracing type tracefs (rw,seclabel,relatime,mode=755)
debugfs on /sys/kernel/debug type debugfs (rw,seclabel,relatime,mode=755)
none on /config type configfs (rw,nosuid,nodev,noexec,relatime)
binder on /dev/binderfs type binder (rw,relatime,max=1048576,stats=global)
none on /sys/fs/fuse/connections type fusectl (rw,relatime)
none on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime)
pstore on /sys/fs/pstore type pstore (rw,seclabel,nosuid,nodev,noexec,relatime)
tracefs on /sys/kernel/debug/tracing type tracefs (rw,seclabel,relatime,mode=755)
/dev/block/mmcblk0p10 on /cache type ext4 (rw,seclabel,nosuid,nodev,noatime,nodiratime,discard,noauto_da_alloc)
tmpfs on /storage type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=755,gid=1000)
/dev/block/dm-7 on /data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data/user/0 type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
tmpfs on /data_mirror type tmpfs (rw,seclabel,nosuid,nodev,noexec,relatime,mode=700,gid=1000)
/dev/block/dm-7 on /data_mirror/data_ce/null type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/data_ce/null/0 type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/data_de/null type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/cur_profiles type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /data_mirror/ref_profiles type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
adb on /dev/usb-ffs/adb type functionfs (rw,relatime)
mtp on /dev/usb-ffs/mtp type functionfs (rw,relatime)
ptp on /dev/usb-ffs/ptp type functionfs (rw,relatime)
/dev/fuse on /mnt/user/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /mnt/installer/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /mnt/androidwritable/0/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/fuse on /storage/emulated type fuse (rw,lazytime,nosuid,nodev,noexec,noatime,user_id=0,group_id=0,allow_other)
/dev/block/dm-7 on /mnt/pass_through/0/emulated type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/user/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /storage/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/androidwritable/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/installer/0/emulated/0/Android/data type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/user/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /storage/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/androidwritable/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
/dev/block/dm-7 on /mnt/installer/0/emulated/0/Android/obb type f2fs (rw,lazytime,seclabel,nosuid,nodev,noatime,background_gc=on,discard,no_heap,user_xattr,inline_xattr,acl,inline_data,inline_dentry,flush_merge,extent_cache,mode=adaptive,active_logs=6,reserve_root=32768,resuid=0,resgid=1065,alloc_mode=default,checkpoint_merge,fsync_mode=posix)
console:/ # [  786.578197][ T2553] usb 6-1: Device not responding to setup address.
[  786.784723][ T2553] usb 6-1: device not accepting address 111, error -71
[  786.981486][ T2553] usb 6-1: Device not responding to setup address.
[  787.188232][ T2553] usb 6-1: Device not responding to setup address.
[  787.394734][ T2553] usb 6-1: device not accepting address 112, error -71
[  787.401587][ T2553] usb usb6-port1: attempt power cycle
[  789.014823][ T2019] usb 6-1: Device not responding to setup address.
[  789.221551][ T2019] usb 6-1: Device not responding to setup address.
[  789.428081][ T2019] usb 6-1: device not accepting address 114, error -71
[  789.624801][ T2019] usb 6-1: Device not responding to setup address.
[  789.831493][ T2019] usb 6-1: Device not responding to setup address.
[  790.038068][ T2019] usb 6-1: device not accepting address 115, error -71
[  790.044924][ T2019] usb usb6-port1: attempt power cycle
[  791.658179][ T2019] usb 6-1: Device not responding to setup address.
[  791.864834][ T2019] usb 6-1: Device not responding to setup address.
[  792.071393][ T2019] usb 6-1: device not accepting address 117, error -71
[  792.268140][ T2019] usb 6-1: Device not responding to setup address.
[  792.474900][ T2019] usb 6-1: Device not responding to setup address.
[  792.681384][ T2019] usb 6-1: device not accepting address 118, error -71
[  792.688251][ T2019] usb usb6-port1: attempt power cycle
[  794.301473][  T197] usb 6-1: Device not responding to setup address.
[  794.508155][  T197] usb 6-1: Device not responding to setup address.
[  794.714730][  T197] usb 6-1: device not accepting address 120, error -71
[  794.911484][  T197] usb 6-1: Device not responding to setup address.
[  795.118135][  T197] usb 6-1: Device not responding to setup address.
[  795.324738][  T197] usb 6-1: device not accepting address 121, error -71
[  795.331650][  T197] usb usb6-port1: attempt power cycle
[  796.944833][ T2553] usb 6-1: Device not responding to setup address.
[  797.151552][ T2553] usb 6-1: Device not responding to setup address.
[  797.358076][ T2553] usb 6-1: device not accepting address 123, error -71
[  797.554823][ T2553] usb 6-1: Device not responding to setup address.
[  797.761483][ T2553] usb 6-1: Device not responding to setup address.
[  797.968080][ T2553] usb 6-1: device not accepting address 124, error -71
[  797.974916][ T2553] usb usb6-port1: attempt power cycle
[  799.588147][ T2019] usb 6-1: Device not responding to setup address.
[  799.794816][ T2019] usb 6-1: Device not responding to setup address.
[  800.001399][ T2019] usb 6-1: device not accepting address 126, error -71
[  800.198153][ T2019] usb 6-1: Device not responding to setup address.
[  800.404889][ T2019] usb 6-1: Device not responding to setup address.
[  800.611405][ T2019] usb 6-1: device not accepting address 127, error -71
[  800.618241][ T2019] usb usb6-port1: attempt power cycle
[  802.231488][ T2553] usb 6-1: Device not responding to setup address.
[  802.438223][ T2553] usb 6-1: Device not responding to setup address.
[  802.644731][ T2553] usb 6-1: device not accepting address 3, error -71
[  802.841494][ T2553] usb 6-1: Device not responding to setup address.
[  803.048198][ T2553] usb 6-1: Device not responding to setup address.
[  803.254738][ T2553] usb 6-1: device not accepting address 4, error -71
[  803.261587][ T2553] usb usb6-port1: attempt power cycle
[  804.874803][ T2553] usb 6-1: Device not responding to setup address.
[  805.081487][ T2553] usb 6-1: Device not responding to setup address.
[  805.288058][ T2553] usb 6-1: device not accepting address 6, error -71
[  805.484801][ T2553] usb 6-1: Device not responding to setup address.
[  805.691490][ T2553] usb 6-1: Device not responding to setup address.
[  805.898067][ T2553] usb 6-1: device not accepting address 7, error -71
[  805.904944][ T2553] usb usb6-port1: attempt power cycle
[  807.518151][ T2553] usb 6-1: Device not responding to setup address.
[  807.724881][ T2553] usb 6-1: Device not responding to setup address.
[  807.931395][ T2553] usb 6-1: device not accepting address 9, error -71
[  808.128156][ T2553] usb 6-1: Device not responding to setup address.
[  808.334882][ T2553] usb 6-1: Device not responding to setup address.
[  808.541390][ T2553] usb 6-1: device not accepting address 10, error -71
[  808.548248][ T2553] usb usb6-port1: attempt power cycle
[  810.161600][  T197] usb 6-1: Device not responding to setup address.
[  810.368147][  T197] usb 6-1: Device not responding to setup address.
[  810.574736][  T197] usb 6-1: device not accepting address 12, error -71
[  810.771476][  T197] usb 6-1: Device not responding to setup address.
[  810.978204][  T197] usb 6-1: Device not responding to setup address.
[  811.184727][  T197] usb 6-1: device not accepting address 13, error -71
[  811.191677][  T197] usb usb6-port1: attempt power cycle
[  812.804952][ T2553] usb 6-1: Device not responding to setup address.
[  813.011511][ T2553] usb 6-1: Device not responding to setup address.
[  813.218050][ T2553] usb 6-1: device not accepting address 15, error -71
[  813.414815][ T2553] usb 6-1: Device not responding to setup address.
[  813.621561][ T2553] usb 6-1: Device not responding to setup address.
[  813.828045][ T2553] usb 6-1: device not accepting address 16, error -71
[  813.835032][ T2553] usb usb6-port1: attempt power cycle
[  815.448158][ T2553] usb 6-1: Device not responding to setup address.
[  815.654812][ T2553] usb 6-1: Device not responding to setup address.
[  815.861387][ T2553] usb 6-1: device not accepting address 18, error -71
[  816.058132][ T2553] usb 6-1: Device not responding to setup address.
[  816.264801][ T2553] usb 6-1: Device not responding to setup address.
[  816.471406][ T2553] usb 6-1: device not accepting address 19, error -71
[  816.478300][ T2553] usb usb6-port1: attempt power cycle
[  818.091467][  T197] usb 6-1: Device not responding to setup address.
[  818.298229][  T197] usb 6-1: Device not responding to setup address.
[  818.504729][  T197] usb 6-1: device not accepting address 21, error -71
[  818.701459][  T197] usb 6-1: Device not responding to setup address.
[  818.908227][  T197] usb 6-1: Device not responding to setup address.
[  819.114701][  T197] usb 6-1: device not accepting address 22, error -71
[  819.121577][  T197] usb usb6-port1: attempt power cycle
[  820.734886][  T197] usb 6-1: Device not responding to setup address.
[  820.941460][  T197] usb 6-1: Device not responding to setup address.
[  821.148062][  T197] usb 6-1: device not accepting address 24, error -71
[  821.344806][  T197] usb 6-1: Device not responding to setup address.
[  821.551462][  T197] usb 6-1: Device not responding to setup address.
[  821.758054][  T197] usb 6-1: device not accepting address 25, error -71
[  821.764909][  T197] usb usb6-port1: attempt power cycle
[  823.378135][  T197] usb 6-1: Device not responding to setup address.
[  823.584872][  T197] usb 6-1: Device not responding to setup address.
[  823.791390][  T197] usb 6-1: device not accepting address 27, error -71
[  823.988129][  T197] usb 6-1: Device not responding to setup address.
[  824.194825][  T197] usb 6-1: Device not responding to setup address.
[  824.401399][  T197] usb 6-1: device not accepting address 28, error -71
[  824.408248][  T197] usb usb6-port1: attempt power cycle
[  826.021479][  T197] usb 6-1: Device not responding to setup address.
[  826.228225][  T197] usb 6-1: Device not responding to setup address.
[  826.434716][  T197] usb 6-1: device not accepting address 30, error -71
[  826.631474][  T197] usb 6-1: Device not responding to setup address.
[  826.838196][  T197] usb 6-1: Device not responding to setup address.
[  827.044725][  T197] usb 6-1: device not accepting address 31, error -71
[  827.051626][  T197] usb usb6-port1: attempt power cycle
[  828.664815][  T197] usb 6-1: Device not responding to setup address.
[  828.871572][  T197] usb 6-1: Device not responding to setup address.
[  829.078073][  T197] usb 6-1: device not accepting address 33, error -71
[  829.274814][  T197] usb 6-1: Device not responding to setup address.
[  829.481539][  T197] usb 6-1: Device not responding to setup address.
[  829.688047][  T197] usb 6-1: device not accepting address 34, error -71
[  829.694908][  T197] usb usb6-port1: attempt power cycle
[  831.308134][ T2553] usb 6-1: Device not responding to setup address.
[  831.514867][ T2553] usb 6-1: Device not responding to setup address.
[  831.721384][ T2553] usb 6-1: device not accepting address 36, error -71
[  831.918149][ T2553] usb 6-1: Device not responding to setup address.
[  832.124920][ T2553] usb 6-1: Device not responding to setup address.
[  832.331424][ T2553] usb 6-1: device not accepting address 37, error -71
[  832.338255][ T2553] usb usb6-port1: attempt power cycle
[  833.951491][ T2553] usb 6-1: Device not responding to setup address.
[  834.158216][ T2553] usb 6-1: Device not responding to setup address.
[  834.364715][ T2553] usb 6-1: device not accepting address 39, error -71
[  834.561459][ T2553] usb 6-1: Device not responding to setup address.
[  834.768197][ T2553] usb 6-1: Device not responding to setup address.
[  834.974725][ T2553] usb 6-1: device not accepting address 40, error -71
[  834.981589][ T2553] usb usb6-port1: attempt power cycle
[  836.594793][  T197] usb 6-1: Device not responding to setup address.
[  836.801482][  T197] usb 6-1: Device not responding to setup address.
[  837.008052][  T197] usb 6-1: device not accepting address 42, error -71
[  837.204808][  T197] usb 6-1: Device not responding to setup address.
[  837.411461][  T197] usb 6-1: Device not responding to setup address.
[  837.618042][  T197] usb 6-1: device not accepting address 43, error -71
[  837.624951][  T197] usb usb6-port1: attempt power cycle
[  839.238133][  T197] usb 6-1: Device not responding to setup address.
[  839.444869][  T197] usb 6-1: Device not responding to setup address.
[  839.651390][  T197] usb 6-1: device not accepting address 45, error -71
[  839.848131][  T197] usb 6-1: Device not responding to setup address.
[  840.054875][  T197] usb 6-1: Device not responding to setup address.
[  840.261396][  T197] usb 6-1: device not accepting address 46, error -71
[  840.268236][  T197] usb usb6-port1: attempt power cycle
[  841.881480][  T197] usb 6-1: Device not responding to setup address.
[  842.088135][  T197] usb 6-1: Device not responding to setup address.
[  842.294716][  T197] usb 6-1: device not accepting address 48, error -71
[  842.491476][  T197] usb 6-1: Device not responding to setup address.
[  842.698189][  T197] usb 6-1: Device not responding to setup address.
[  842.904717][  T197] usb 6-1: device not accepting address 49, error -71
[  842.911578][  T197] usb usb6-port1: attempt power cycle
[  844.524819][  T197] usb 6-1: Device not responding to setup address.
[  844.731531][  T197] usb 6-1: Device not responding to setup address.
[  844.938226][  T197] usb 6-1: device not accepting address 51, error -71
[  845.134796][  T197] usb 6-1: Device not responding to setup address.
[  845.303042][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  845.341468][  T197] usb 6-1: Device not responding to setup address.
[  845.548053][  T197] usb 6-1: device not accepting address 52, error -71
[  845.554931][  T197] usb usb6-port1: attempt power cycle
[  847.168151][  T197] usb 6-1: Device not responding to setup address.
[  847.374901][  T197] usb 6-1: Device not responding to setup address.
[  847.581401][  T197] usb 6-1: device not accepting address 54, error -71
[  847.778145][  T197] usb 6-1: Device not responding to setup address.
[  847.984875][  T197] usb 6-1: Device not responding to setup address.
[  848.191392][  T197] usb 6-1: device not accepting address 55, error -71
[  848.198286][  T197] usb usb6-port1: attempt power cycle
[  849.448269][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 6, bssidx: 0
[  849.811495][  T197] usb 6-1: Device not responding to setup address.
[  850.018232][  T197] usb 6-1: Device not responding to setup address.
[  850.224721][  T197] usb 6-1: device not accepting address 57, error -71
[  850.421462][  T197] usb 6-1: Device not responding to setup address.
[  850.628223][  T197] usb 6-1: Device not responding to setup address.
[  850.834726][  T197] usb 6-1: device not accepting address 58, error -71
[  850.841566][  T197] usb usb6-port1: attempt power cycle
[  852.454811][ T2019] usb 6-1: Device not responding to setup address.
[  852.661533][ T2019] usb 6-1: Device not responding to setup address.
[  852.868046][ T2019] usb 6-1: device not accepting address 60, error -71
[  853.064805][ T2019] usb 6-1: Device not responding to setup address.
[  853.271551][ T2019] usb 6-1: Device not responding to setup address.
[  853.478046][ T2019] usb 6-1: device not accepting address 61, error -71
[  853.484905][ T2019] usb usb6-port1: attempt power cycle
[  855.098141][ T2019] usb 6-1: Device not responding to setup address.
[  855.304879][ T2019] usb 6-1: Device not responding to setup address.
[  855.511390][ T2019] usb 6-1: device not accepting address 63, error -71
[  855.708128][ T2019] usb 6-1: Device not responding to setup address.
[  855.914863][ T2019] usb 6-1: Device not responding to setup address.
[  856.121375][ T2019] usb 6-1: device not accepting address 64, error -71
[  856.128239][ T2019] usb usb6-port1: attempt power cycle
[  857.741468][ T2019] usb 6-1: Device not responding to setup address.
[  857.948124][ T2019] usb 6-1: Device not responding to setup address.
[  858.154719][ T2019] usb 6-1: device not accepting address 66, error -71
[  858.351467][ T2019] usb 6-1: Device not responding to setup address.
[  858.558156][ T2019] usb 6-1: Device not responding to setup address.
[  858.764705][ T2019] usb 6-1: device not accepting address 67, error -71
[  858.771638][ T2019] usb usb6-port1: attempt power cycle
[  860.384782][ T2019] usb 6-1: Device not responding to setup address.
[  860.591547][ T2019] usb 6-1: Device not responding to setup address.
[  860.798056][ T2019] usb 6-1: device not accepting address 69, error -71
[  860.994819][ T2019] usb 6-1: Device not responding to setup address.
[  861.201562][ T2019] usb 6-1: Device not responding to setup address.
[  861.408052][ T2019] usb 6-1: device not accepting address 70, error -71
[  861.414914][ T2019] usb usb6-port1: attempt power cycle
[  863.028123][ T2019] usb 6-1: Device not responding to setup address.
[  863.234778][ T2019] usb 6-1: Device not responding to setup address.
[  863.441360][ T2019] usb 6-1: device not accepting address 72, error -71
[  863.638136][ T2019] usb 6-1: Device not responding to setup address.
[  863.844827][ T2019] usb 6-1: Device not responding to setup address.
[  864.051381][ T2019] usb 6-1: device not accepting address 73, error -71
[  864.058271][ T2019] usb usb6-port1: attempt power cycle
[  865.671472][  T197] usb 6-1: Device not responding to setup address.
[  865.878199][  T197] usb 6-1: Device not responding to setup address.
[  866.084707][  T197] usb 6-1: device not accepting address 75, error -71
[  866.281483][  T197] usb 6-1: Device not responding to setup address.
[  866.488219][  T197] usb 6-1: Device not responding to setup address.
[  866.694717][  T197] usb 6-1: device not accepting address 76, error -71
[  866.701588][  T197] usb usb6-port1: attempt power cycle
[  868.314797][  T197] usb 6-1: Device not responding to setup address.
[  868.521536][  T197] usb 6-1: Device not responding to setup address.
[  868.728054][  T197] usb 6-1: device not accepting address 78, error -71
[  868.924798][  T197] usb 6-1: Device not responding to setup address.
[  869.131539][  T197] usb 6-1: Device not responding to setup address.
[  869.338046][  T197] usb 6-1: device not accepting address 79, error -71
[  869.344919][  T197] usb usb6-port1: attempt power cycle
[  870.958152][ T2553] usb 6-1: Device not responding to setup address.
[  871.164801][ T2553] usb 6-1: Device not responding to setup address.
[  871.371374][ T2553] usb 6-1: device not accepting address 81, error -71
[  871.568126][ T2553] usb 6-1: Device not responding to setup address.
[  871.774796][ T2553] usb 6-1: Device not responding to setup address.
[  871.981383][ T2553] usb 6-1: device not accepting address 82, error -71
[  871.988293][ T2553] usb usb6-port1: attempt power cycle
[  873.601468][ T2553] usb 6-1: Device not responding to setup address.
[  873.808190][ T2553] usb 6-1: Device not responding to setup address.
[  874.014707][ T2553] usb 6-1: device not accepting address 84, error -71
[  874.211465][ T2553] usb 6-1: Device not responding to setup address.
[  874.418197][ T2553] usb 6-1: Device not responding to setup address.
[  874.624728][ T2553] usb 6-1: device not accepting address 85, error -71
[  874.631561][ T2553] usb usb6-port1: attempt power cycle
[  876.244790][ T2553] usb 6-1: Device not responding to setup address.
[  876.451460][ T2553] usb 6-1: Device not responding to setup address.
[  876.658050][ T2553] usb 6-1: device not accepting address 87, error -71
[  876.854802][ T2553] usb 6-1: Device not responding to setup address.
[  877.061543][ T2553] usb 6-1: Device not responding to setup address.
[  877.268033][ T2553] usb 6-1: device not accepting address 88, error -71
[  877.274915][ T2553] usb usb6-port1: attempt power cycle
[  883.058126][  T197] usb 6-1: new SuperSpeed Gen 1 USB device number 90 using xhci-hcd
[  883.076336][  T197] usb 6-1: New USB device found, idVendor=0951, idProduct=1666, bcdDevice= 1.10
[  883.076395][  T197] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[  883.076416][  T197] usb 6-1: Product: DataTraveler 3.0
[  883.076434][  T197] usb 6-1: Manufacturer: Kingston
[  883.076452][  T197] usb 6-1: SerialNumber: B42E99B07ADCE4A01999056C
[  883.078805][  T197] usb-storage 6-1:1.0: USB Mass Storage device detected
[  883.079918][  T197] scsi host1: usb-storage 6-1:1.0
[  884.085853][    T7] scsi 1:0:0:0: Direct-Access     Kingston DataTraveler 3.0 PMAP PQ: 0 ANSI: 6
[  884.087846][    T7] sd 1:0:0:0: Attached scsi generic sg0 type 0
[  884.088424][    T9] sd 1:0:0:0: [sda] 242417664 512-byte logical blocks: (124 GB/116 GiB)
[  884.088718][    T9] sd 1:0:0:0: [sda] Write Protect is off
[  884.089016][    T9] sd 1:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[  884.112862][  T315] type=1400 audit(1673230814.192:99): avc: denied { create } for comm="kdevtmpfs" name="sda" scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  884.113456][  T315] type=1400 audit(1673230814.192:100): avc: denied { setattr } for comm="kdevtmpfs" name="sda" dev="devtmpfs" ino=225 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[  884.153009][    T9]  sda: sda1
[  884.163519][    T9] sd 1:0:0:0: [sda] Attached SCSI removable disk
[  905.303302][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[  965.303285][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1025.302575][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1085.302628][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1119.388305][  T197] usb 6-1: USB disconnect, device number 90
[ 1119.396045][  T315] type=1400 audit(1673231049.476:101): avc: denied { getattr } for comm="kdevtmpfs" path="/sda1" dev="devtmpfs" ino=226 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[ 1119.396417][  T315] type=1400 audit(1673231049.476:102): avc: denied { setattr } for comm="kdevtmpfs" name="sda1" dev="devtmpfs" ino=226 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[ 1119.396577][  T315] type=1400 audit(1673231049.476:103): avc: denied { unlink } for comm="kdevtmpfs" name="sda1" dev="devtmpfs" ino=226 scontext=u:r:kernel:s0 tcontext=u:object_r:device:s0 tclass=blk_file permissive=1
[ 1119.727987][ T2553] usb 5-1: new high-speed USB device number 2 using xhci-hcd
[ 1129.455759][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 7, bssidx: 0
[ 1145.301973][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1205.301671][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1265.303335][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1325.303065][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1385.302562][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1409.460726][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 8, bssidx: 0
[ 1445.303056][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1505.303065][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1565.303015][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1625.303021][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1685.303015][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1689.466132][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 9, bssidx: 0
[ 1745.301870][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1801.284448][  T315] type=1400 audit(1673231731.362:104): avc: denied { read } for comm="Binder:323_1" name="wakeup4" dev="sysfs" ino=26270 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[ 1801.284927][  T315] type=1400 audit(1673231731.362:105): avc: denied { open } for comm="Binder:323_1" path="/sys/devices/platform/fdbac000.jpege-core/wakeup/wakeup4" dev="sysfs" ino=26270 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=dir permissive=1
[ 1801.285144][  T315] type=1400 audit(1673231731.362:106): avc: denied { read } for comm="Binder:323_1" name="event_count" dev="sysfs" ino=26277 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 1801.285288][  T315] type=1400 audit(1673231731.362:107): avc: denied { open } for comm="Binder:323_1" path="/sys/devices/platform/fdbac000.jpege-core/wakeup/wakeup4/event_count" dev="sysfs" ino=26277 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 1801.285504][  T315] type=1400 audit(1673231731.362:108): avc: denied { getattr } for comm="Binder:323_1" path="/sys/devices/platform/fdbac000.jpege-core/wakeup/wakeup4/event_count" dev="sysfs" ino=26277 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs:s0 tclass=file permissive=1
[ 1801.286348][  T315] type=1400 audit(1673231731.366:109): avc: denied { read } for comm="Binder:323_1" name="wakeup18" dev="sysfs" ino=39673 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_power:s0 tclass=dir permissive=1
[ 1801.286562][  T315] type=1400 audit(1673231731.366:110): avc: denied { open } for comm="Binder:323_1" path="/sys/devices/virtual/power_supply/test_ac/wakeup18" dev="sysfs" ino=39673 scontext=u:r:system_suspend:s0 tcontext=u:object_r:sysfs_power:s0 tclass=dir permissive=1
[ 1805.301744][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1865.301738][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1925.301733][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 1969.490483][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 10, bssidx: 0
[ 1985.301617][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2045.301717][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2105.301575][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2165.302945][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2225.302835][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2249.508403][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 11, bssidx: 0
[ 2285.302790][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2345.302847][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2405.302847][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2465.302886][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2525.302913][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2529.521084][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 12, bssidx: 0
[ 2585.302234][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2645.302881][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2705.302890][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2765.302874][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2809.532864][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 13, bssidx: 0
[ 2825.301725][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2885.301605][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 2945.301629][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3005.301641][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3065.301616][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3089.545173][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 14, bssidx: 0
[ 3125.301610][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3185.301604][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3245.301587][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3305.301598][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3365.301568][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3369.558046][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 15, bssidx: 0
[ 3425.301549][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3485.301607][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3545.301595][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3605.301598][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3615.085844][ T1065] [dhd] dhd_set_suspend: Remove extra suspend setting 
[ 3615.086322][ T1065] [dhd] dhd_enable_packet_filter: enter, value = 0
[ 3615.091133][ T1065] [dhd] dhd_set_suspend lpas, UNSUPPORTED
[ 3649.569642][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 16, bssidx: 0
[ 3665.301593][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3725.301554][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3785.301548][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3845.301576][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3905.301543][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 3929.580469][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 17, bssidx: 0
[ 3965.301546][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4025.301512][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4085.301555][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4145.301532][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # [ 4205.301509][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4209.587686][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 18, bssidx: 0
[ 4265.301535][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4325.301500][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4385.301498][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4445.301450][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au
[ 4489.585109][  T520] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 19, bssidx: 0
[ 4505.301485][  T434] healthd: battery l=50 v=3 t=2.6 h=2 st=3 c=-1600 fc=100 chg=au

console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # 
console:/ # DDR Version V1.06 20220224
LPDDR4X, 2112MHz
channel[0] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[1] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[2] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
channel[3] BW=16 Col=10 Bk=8 CS0 Row=16 CS1 Row=16 CS=2 Die BW=16 Size=2048MB
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-gbdb740d4da-220216 #cjh (Feb 24 2022 - 03:15:33)
Failed to set cpub01
Failed to set cpub23
unknown raw ID phN
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
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 ... sha256(b9fbbdc81e...) + OK
## Checking uboot 0x00200000 ... sha256(ebbad552b5...) + OK
## Checking fdt 0x00322948 ... sha256(c07f4a4d71...) + OK
## Checking atf-2 0x000f0000 ... sha256(5654dd95de...) + OK
## Checking atf-3 0xff100000 ... sha256(1ac8ccba7f...) + OK
## Checking atf-4 0xff009000 ... sha256(2301cf73be...) + OK
## Checking optee 0x08400000 ... sha256(603cfbd25d...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)
Total: 86.31 ms

INFO:    Preloader serial: 2
NOTICE:  BL31: v2.3():v2.3-328-g4370827cd:derrick.huang
NOTICE:  BL31: Built : 10:25:22, Mar 22 2022
INFO:    GICv3 without legacy support detected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    system boots from cpu-hwid-0
INFO:    idle_st=0x21fff, pd_st=0x11fff9
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
INFO:    hdmirx_handler: dma not on, ret
I/TC: 
I/TC: OP-TEE version: 3.13.0-639-g8e053a881-dev #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #2 Mon Mar 14 09:09:01 CST 2022 aarch64
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-dirty #rootroot (Jan 08 2023 - 20:52:47 +0800)

Model: Rockchip RK3588 Evaluation Board
PreSerial: 2, raw, 0xfeb50000
DRAM:  7.7 GiB
Sysmem: init
Relocation Offset: edb54000
Relocation fdt: eb9fa628 - eb9fece0
CR: M/C/I
Using default environment

mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdev(atags): mmc 0
MMC0: HS200, 200Mhz
PartType: EFI
DM: v2
boot mode: recovery (misc)
boot mode: None
Android 12.0, Build 2022.2, v2
Found DTB in boot part
DTB: rk-kernel.dtb
HASH(c): OK
ANDROID: fdt overlay OK
Pre-reloc: vcc_mipicsi1
I2c0 speed: 100000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big0_s0 987500 uV
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big1_s0 987500 uV
I2c2 speed: 400000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_npu_s0 812500 uV
spi2: RK806: 2
vdd_gpu_s0 750000 uV
vdd_cpu_lit_s0 750000 uV
vdd_vdenc_s0 init 750000 uV
Model: Rockchip RK3588 TOYBRICK LP4 X10 Board
download key pressed... entering download mode...
RKUSB: LUN 0, dev 0, hwpart 0, sector 0x0, count 0x3a4a000
|DDR Version V1.04 20220118
LPDDR4X, 2112MHz
channel[0] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[1] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[2] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[3] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
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-g6bd5597c98-211214 #zzz (Jan 05 2022 - 16:10:44)
unknown raw ID phN
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
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 ... sha256(6e9bf31386...) + OK
## Checking uboot 0x00200000 ... sha256(0c1c50adc8...) + OK
## Checking fdt 0x00306248 ... sha256(a5e6b35d32...) + OK
## Checking atf-2 0x000f0000 ... sha256(a923fc5850...) + OK
## Checking atf-3 0xff100000 ... sha256(e0510e813f...) + OK
## Checking atf-4 0xff009000 ... sha256(d55aac40fb...) + OK
## Checking optee 0x08400000 ... sha256(9289764f93...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)
Total: 155.93 ms

INFO:    Preloader serial: 2
NOTICE:  BL31: v2.3():v2.3-264-gf8de35126:derrick.huang
NOTICE:  BL31: Built : 16:08:45, Jan 15 2022
INFO:    GICv3 without legacy support detected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    idle_st=0x21fff, pd_st=0x11fff9
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:    Using opteed sec cpu_context!
INFO:    boot cpu mask: 0
INFO:    BL31: Initializing runtime services
INFO:    BL31: Initializing BL32
I/TC: 
I/TC: OP-TEE version: 3.13.0-628-g3f0f0b052 #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #4 Fri Jan 14 09:33:37 CST 2022 aarch64
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 (Jan 08 2023 - 20:30:35 +0800)

Model: Rockchip RK3588 Evaluation Board
PreSerial: 2, raw, 0xfeb50000
DRAM:  7.7 GiB
Sysmem: init
Relocation Offset: edb71000
Relocation fdt: eb9f9f30 - eb9fece8
CR: M/C/I
Using default environment

mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdev(atags): mmc 0
MMC0: HS400, 200Mhz
PartType: EFI
DM: v2
boot mode: recovery (misc)
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
Pre-reloc: vcc_mipicsi1
I2c0 speed: 100000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big0_s0 987500 uV
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big1_s0 987500 uV
I2c2 speed: 400000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_npu_s0 812500 uV
spi2: RK806: 2
vdd_gpu_s0 750000 uV
vdd_cpu_lit_s0 750000 uV
vdd_vdenc_s0 init 750000 uV
Model: Rockchip RK3588 TOYBRICK X10 Board
CLK: (uboot. arm: enter 1200000 KHz, init 1200000 KHz, kernel 0N/A)
  b0pll 1200000 KHz
  b1pll 1200000 KHz
  lpll 1200000 KHz
  v0pll 24000 KHz
  aupll 786215 KHz
  cpll 1500000 KHz
  gpll 1188000 KHz
  npll 850000 KHz
  ppll 100000 KHz
  aclk_center_root 702000 KHz
  pclk_center_root 200000 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:   eth0: ethernet@fe1b0000
Hit key to stop autoboot('CTRL+C'):  0 
ANDROID: reboot reason: "recovery"
optee api revision: 2.0
TEEC: Waring: Could not find security partition
Not AVB images, AVB skip
No valid android hdr
Android image load failed
Android boot failed, error -1.
## Booting FIT Image at 0xe93c5d00 with size 0x02433200
Fdt Ramdisk skip relocation
## Loading kernel from FIT Image at e93c5d00 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0xe93ea700
     Data Size:    30789640 Bytes = 29.4 MiB
     Architecture: AArch64
     OS:           Linux
     Load Address: 0x00400000
     Entry Point:  0x00400000
     Hash algo:    sha256
     Hash value:   e15d3e2bf5f691c9a5d6ae190aa259c7257fdfb1d5248ca7877b2af0278a7129
   Verifying Hash Integrity ... sha256+ OK
## Loading ramdisk from FIT Image at e93c5d00 ...
   Using 'conf' configuration
   Trying 'ramdisk' ramdisk subimage
     Description:  unavailable
     Type:         RAMDisk Image
     Compression:  uncompressed
     Data Start:   0xeb147900
     Data Size:    7017655 Bytes = 6.7 MiB
     Architecture: AArch64
     OS:           Linux
     Load Address: 0x0a200000
     Entry Point:  unavailable
     Hash algo:    sha256
     Hash value:   402bc33b648385597e98099c237a7a04059c33dce77db515a49676ade8263a41
   Verifying Hash Integrity ... sha256+ OK
   Loading ramdisk from 0xeb147900 to 0x0a200000
## Loading fdt from FIT Image at e93c5d00 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0xe93c6500
     Data Size:    147736 Bytes = 144.3 KiB
     Architecture: AArch64
     Load Address: 0x0a100000
     Hash algo:    sha256
     Hash value:   0122f1f8c0dd96d4c32abfe4bcc06a935c02c9b8311d6089d12948bf2873bac9
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x0a100000 to 0x0a100000
   Booting using the fdt blob at 0x0a100000
   Loading Kernel Image from 0xe93ea700 to 0x00400000 ... OK
   kernel loaded at 0x00400000, end = 0x0215d008
  'reserved-memory' cma: addr=10000000 size=8000000
   Using Device Tree in place at 000000000a100000, end 000000000a127117
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)
Adding bank: 0x100000000 - 0x200000000 (size: 0x100000000)
Total: 544.9 ms

Starting kernel ...

[    0.659753] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.659775] Linux version 5.10.66 (rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3) (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) #1 SMP Sun Jan 8 20:43:06 CST 2023
[    0.669818] Machine model: Rockchip RK3588 TOYBRICK X10 Board
[    0.669891] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
[    0.674214] printk: bootconsole [uart8250] enabled
[    0.679769] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB
[    0.680842] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[    0.681994] Reserved memory: created CMA memory pool at 0x0000000010000000, size 128 MiB
[    0.682737] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
[    0.826446] Zone ranges:
[    0.826690]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    0.827263]   DMA32    empty
[    0.827533]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[    0.828103] Movable zone start for each node
[    0.828495] Early memory node ranges
[    0.828826]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    0.829402]   node   0: [mem 0x0000000009400000-0x00000000efffffff]
[    0.829981]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.830559] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    0.874255] psci: probing for conduit method from DT.
[    0.874729] psci: PSCIv1.1 detected in firmware.
[    0.875154] psci: Using standard PSCI v0.2 function IDs
[    0.875637] psci: Trusted OS migration not required
[    0.876087] psci: SMC Calling Convention v1.2
[    0.876888] percpu: Embedded 30 pages/cpu s84968 r8192 d29720 u122880
[    0.877678] Detected VIPT I-cache on CPU0
[    0.878094] CPU features: detected: GIC system register CPU interface
[    0.878687] CPU features: detected: Virtualization Host Extensions
[    0.879261] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.879906] alternatives: patching kernel code
[    0.880623] Built 1 zonelists, mobility grouping on.  Total pages: 1995336
[    0.881262] 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
[    0.884618] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.885808] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.886529] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.894430] software IO TLB: mapped [mem 0x00000000ec000000-0x00000000f0000000] (64MB)
[    0.975375] Memory: 7716460K/8108032K available (14782K kernel code, 3252K rwdata, 5672K rodata, 6336K init, 521K bss, 260500K reserved, 131072K cma-reserved)
[    0.976824] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.977462] ftrace: allocating 56153 entries in 220 pages
[    1.077172] ftrace: allocated 220 pages with 5 groups
[    1.077949] rcu: Hierarchical RCU implementation.
[    1.078387] rcu:     RCU event tracing is enabled.
[    1.078805]     Rude variant of Tasks RCU enabled.
[    1.079223] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    1.085324] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    1.087930] GICv3: GIC: Using split EOI/Deactivate mode
[    1.088415] GICv3: 480 SPIs implemented
[    1.088769] GICv3: 0 Extended SPIs implemented
[    1.089207] GICv3: Distributor has no Range Selector support
[    1.089734] GICv3: 16 PPIs implemented
[    1.090124] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
[    1.090885] ITS [mem 0xfe640000-0xfe65ffff]
[    1.091328] ITS@0x00000000fe640000: allocated 8192 Devices @1001e0000 (indirect, esz 8, psz 64K, shr 0)
[    1.092215] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @1001f0000 (flat, esz 2, psz 64K, shr 0)
[    1.093167] ITS: using cache flushing for cmd queue
[    1.093651] ITS [mem 0xfe660000-0xfe67ffff]
[    1.094086] ITS@0x00000000fe660000: allocated 8192 Devices @100210000 (indirect, esz 8, psz 64K, shr 0)
[    1.094971] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @100220000 (flat, esz 2, psz 64K, shr 0)
[    1.095923] ITS: using cache flushing for cmd queue
[    1.096551] GICv3: using LPI property table @0x0000000100230000
[    1.097241] GIC: using cache flushing for LPI property table
[    1.097767] GICv3: CPU0: using allocated LPI pending table @0x0000000100240000
[    1.098605] random: get_random_bytes called from start_kernel+0x3dc/0x5d0 with crng_init=0
[    1.236622] rockchip_cpuclk_pre_rate_change: limiting alt-divider 36254 to 31
[    1.241418] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    1.241999] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    1.243014] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    1.245306] Console: colour dummy device 80x25
[    1.245761] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    1.246730] pid_max: default: 32768 minimum: 301
[    1.247366] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.248101] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.251059] rcu: Hierarchical SRCU implementation.
[    1.252661] Platform MSI: msi-controller@fe640000 domain created
[    1.253252] Platform MSI: msi-controller@fe660000 domain created
[    1.254220] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created
[    1.255016] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created
[    1.256433] 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.258274] Detected VIPT I-cache on CPU1
[    1.258320] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
[    1.258344] GICv3: CPU1: using allocated LPI pending table @0x0000000100250000
[    1.258395] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    1.259905] Detected VIPT I-cache on CPU2
[    1.259946] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000
[    1.259970] GICv3: CPU2: using allocated LPI pending table @0x0000000100260000
[    1.260018] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    1.261485] Detected VIPT I-cache on CPU3
[    1.261524] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000
[    1.261547] GICv3: CPU3: using allocated LPI pending table @0x0000000100270000
[    1.261591] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    1.263060] CPU features: detected: Spectre-v4
[    1.263064] Detected PIPT I-cache on CPU4
[    1.263080] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000
[    1.263090] GICv3: CPU4: using allocated LPI pending table @0x0000000100280000
[    1.263115] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]
[    1.264512] Detected PIPT I-cache on CPU5
[    1.264528] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000
[    1.264539] GICv3: CPU5: using allocated LPI pending table @0x0000000100290000
[    1.264565] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
[    1.265995] Detected PIPT I-cache on CPU6
[    1.266011] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
[    1.266021] GICv3: CPU6: using allocated LPI pending table @0x00000001002a0000
[    1.266047] CPU6: Booted secondary processor 0x0000000600 [0x414fd0b0]
[    1.267429] Detected PIPT I-cache on CPU7
[    1.267445] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000
[    1.267456] GICv3: CPU7: using allocated LPI pending table @0x00000001002b0000
[    1.267482] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[    1.267569] smp: Brought up 1 node, 8 CPUs
[    1.284599] SMP: Total of 8 processors activated.
[    1.285044] CPU features: detected: Privileged Access Never
[    1.285570] CPU features: detected: User Access Override
[    1.286072] CPU features: detected: 32-bit EL0 Support
[    1.286548] CPU features: detected: Common not Private translations
[    1.287138] CPU features: detected: RAS Extension Support
[    1.287659] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    1.288468] CPU features: detected: CRC32 instructions
[    1.288952] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    1.289609] CPU features: detected: RCpc load-acquire (LDAPR)
[    1.290259] CPU: All CPU(s) started at EL2
[    1.292452] devtmpfs: initialized
[    1.302627] Registered cp15_barrier emulation handler
[    1.303099] Registered setend emulation handler
[    1.303606] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    1.304503] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    1.306477] pinctrl core: initialized pinctrl subsystem
[    1.307367] NET: Registered protocol family 16
[    1.308654] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    1.309411] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.311453] thermal_sys: Registered thermal governor 'fair_share'
[    1.311456] thermal_sys: Registered thermal governor 'step_wise'
[    1.312281] cpuidle: using governor menu
[    1.313195] Registered FIQ tty driver
[    1.313704] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    1.314463] ASID allocator initialised with 65536 entries
[    1.317384] printk: console [ramoops-1] enabled
[    1.317802] pstore: Registered ramoops as persistent store backend
[    1.318381] ramoops: using 0xf0000@0x110000, ecc: 0
[    1.360477] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
[    1.361307] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[    1.362114] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[    1.362929] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
[    1.363784] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
[    1.364412] rockchip-pinctrl pinctrl: probed pinctrl
[    1.377074] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    1.377586] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    1.378116] fiq_debugger_probe: could not install nmi irq handler
[[    1.378732] printk: console [ttyFIQ0] enabled
    1.378732] printk: console [ttyFIQ0] enabled
[    1.379513] printk: bootconsole [uart8250] disabled
[    1.379513] printk: bootconsole [uart8250] disabled
[    1.380032] Registered fiq debugger ttyFIQ0
[    1.380358] vcc5v0_sys: supplied by vcc12v_dcin
[    1.380489] vcc5v0_usbdcin: supplied by vcc12v_dcin
[    1.380653] vcc5v0_usb: supplied by vcc5v0_usbdcin
[    1.380793] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[    1.381025] vbus5v0_typec: supplied by vcc5v0_usb
[    1.381161] vcc3v3_pcie30: supplied by vcc12v_dcin
[    1.381269] vcc5v0_host: supplied by vcc5v0_usb
[    1.381625] debugfs: Directory 'vcc_mipicsi1' with parent 'regulator' already present!
[    1.381635] debugfs: Directory 'vcc_mipicsi1' with parent 'vcc_mipicsi1' already present!
[    1.381895] iommu: Default domain type: Translated 
[    1.381972] rk_iommu fdab9000.iommu: version = 2
[    1.382361] rk_iommu fdb50800.iommu: version = 2
[    1.382588] rk_iommu fdb60f00.iommu: version = 2
[    1.382768] rk_iommu fdb70f00.iommu: version = 2
[    1.382922] rk_iommu fdb90480.iommu: version = 2
[    1.383099] rk_iommu fdba0800.iommu: version = 2
[    1.383272] rk_iommu fdba4800.iommu: version = 2
[    1.383443] rk_iommu fdba8800.iommu: version = 2
[    1.383616] rk_iommu fdbac800.iommu: version = 2
[    1.383793] rk_iommu fdbb0800.iommu: version = 2
[    1.383965] rk_iommu fdbdf000.iommu: version = 2
[    1.384195] rk_iommu fdbef000.iommu: version = 2
[    1.384436] rk_iommu fdc38700.iommu: version = 2
[    1.384682] rk_iommu fdc48700.iommu: version = 2
[    1.384828] rk_iommu fdd97e00.iommu: version = 2
[    1.385148] SCSI subsystem initialized
[    1.385234] usbcore: registered new interface driver usbfs
[    1.385253] usbcore: registered new interface driver hub
[    1.385269] usbcore: registered new device driver usb
[    1.385305] mc: Linux media interface: v0.10
[    1.385318] videodev: Linux video capture interface: v2.00
[    1.385348] pps_core: LinuxPPS API ver. 1 registered
[    1.385352] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.385370] PTP clock support registered
[    1.385633] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    1.385672] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    1.386770] Advanced Linux Sound Architecture Driver Initialized.
[    1.386973] Bluetooth: Core ver 2.22
[    1.386987] NET: Registered protocol family 31
[    1.386991] Bluetooth: HCI device and connection manager initialized
[    1.386998] Bluetooth: HCI socket layer initialized
[    1.387003] Bluetooth: L2CAP socket layer initialized
[    1.387011] Bluetooth: SCO socket layer initialized
[    1.388231] rockchip-cpuinfo cpuinfo: SoC        : 35880000
[    1.388237] rockchip-cpuinfo cpuinfo: Serial        : d2849f234f75f93a
[    1.388585] clocksource: Switched to clocksource arch_sys_counter
[    1.701826] NET: Registered protocol family 2
[    1.701980] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.703911] tcp_listen_portaddr_hash hash table entries: 4096 (order: 5, 163840 bytes, linear)
[    1.704011] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.704353] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.705159] TCP: Hash tables configured (established 65536 bind 65536)
[    1.705215] UDP hash table entries: 4096 (order: 6, 393216 bytes, linear)
[    1.705384] UDP-Lite hash table entries: 4096 (order: 6, 393216 bytes, linear)
[    1.705605] NET: Registered protocol family 1
[    1.705984] RPC: Registered named UNIX socket transport module.
[    1.705989] RPC: Registered udp transport module.
[    1.705992] RPC: Registered tcp transport module.
[    1.705995] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.706488] PCI: CLS 0 bytes, default 64
[    1.706810] Trying to unpack rootfs image as initramfs...
[    1.881560] Freeing initrd memory: 6852K
[    1.882463] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.886044] Initialise system trusted keyrings
[    1.886171] workingset: timestamp_bits=62 max_order=21 bucket_order=0
[    1.888429] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.888786] NFS: Registering the id_resolver key type
[    1.888798] Key type id_resolver registered
[    1.888803] Key type id_legacy registered
[    1.888818] ntfs: driver 2.1.32 [Flags: R/O].
[    1.888881] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    1.888950] fuse: init (API version 7.32)
[    1.889110] SGI XFS with security attributes, no debug enabled
[    1.910892] NET: Registered protocol family 38
[    1.910901] Key type asymmetric registered
[    1.910905] Asymmetric key parser 'x509' registered
[    1.910923] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    1.910928] io scheduler mq-deadline registered
[    1.910932] io scheduler kyber registered
[    1.920057] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
[    1.922583] rk-pcie fe180000.pcie: no vpcie3v3 regulator found
[    1.922922] rk-pcie fe170000.pcie: no vpcie3v3 regulator found
[    1.923006] rk-pcie fe180000.pcie: missing legacy IRQ resource
[    1.923035] rk-pcie fe180000.pcie: Missing *config* reg space
[    1.923061] rk-pcie fe180000.pcie: host bridge /pcie@fe180000 ranges:
[    1.923083] pwm-backlight backlight: supply power not found, using dummy regulator
[    1.923106] rk-pcie fe180000.pcie:      err 0x00f3000000..0x00f30fffff -> 0x00f3000000
[    1.923109] rk-pcie fe170000.pcie: missing legacy IRQ resource
[    1.923115] rk-pcie fe170000.pcie: Missing *config* reg space
[    1.923127] rk-pcie fe170000.pcie: host bridge /pcie@fe170000 ranges:
[    1.923145] rk-pcie fe170000.pcie:      err 0x00f2000000..0x00f20fffff -> 0x00f2000000
[    1.923152] rk-pcie fe180000.pcie:       IO 0x00f3100000..0x00f31fffff -> 0x00f3100000
[    1.923162] rk-pcie fe170000.pcie:       IO 0x00f2100000..0x00f21fffff -> 0x00f2100000
[    1.923174] rk-pcie fe170000.pcie:      MEM 0x00f2200000..0x00f2ffffff -> 0x00f2200000
[    1.923181] rk-pcie fe180000.pcie:      MEM 0x00f3200000..0x00f3ffffff -> 0x00f3200000
[    1.923189] rk-pcie fe170000.pcie:      MEM 0x0980000000..0x09bfffffff -> 0x0980000000
[    1.923199] rk-pcie fe180000.pcie:      MEM 0x09c0000000..0x09ffffffff -> 0x09c0000000
[    1.923214] rk-pcie fe170000.pcie: Missing *config* reg space
[    1.923241] rk-pcie fe170000.pcie: invalid resource
[    1.923248] rk-pcie fe180000.pcie: Missing *config* reg space
[    1.923260] mpp_service mpp-srv: 
[    1.923266] mpp_service mpp-srv: probe start
[    1.923294] rk-pcie fe180000.pcie: invalid resource
[    1.925311] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
[    1.925544] mpp_vdpu2 fdb50400.vdpu: probe device
[    1.925803] mpp_vdpu2 fdb50400.vdpu: probing finish
[    1.925982] mpp_vepu2 jpege-ccu: probing start
[    1.925989] mpp_vepu2 jpege-ccu: probing finish
[    1.926100] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
[    1.926219] mpp_vepu2 fdba0000.jpege-core: probing start
[    1.926335] mpp_vepu2 fdba0000.jpege-core: attach ccu success
[    1.926469] mpp_vepu2 fdba0000.jpege-core: probing finish
[    1.926540] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[    1.926654] mpp_vepu2 fdba4000.jpege-core: probing start
[    1.926776] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[    1.926906] mpp_vepu2 fdba4000.jpege-core: probing finish
[    1.926972] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
[    1.927089] mpp_vepu2 fdba8000.jpege-core: probing start
[    1.927209] mpp_vepu2 fdba8000.jpege-core: attach ccu success
[    1.927345] mpp_vepu2 fdba8000.jpege-core: probing finish
[    1.927412] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8
[    1.927534] mpp_vepu2 fdbac000.jpege-core: probing start
[    1.927664] mpp_vepu2 fdbac000.jpege-core: attach ccu success
[    1.927790] mpp_vepu2 fdbac000.jpege-core: probing finish
[    1.928036] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[    1.928129] mpp-iep2 fdbb0000.iep: probe device
[    1.928297] mpp-iep2 fdbb0000.iep: allocate roi buffer failed
[    1.928429] mpp-iep2 fdbb0000.iep: probing finish
[    1.928615] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
[    1.928774] mpp_jpgdec fdb90000.jpegd: probe device
[    1.929011] mpp_jpgdec fdb90000.jpegd: probing finish
[    1.929328] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
[    1.929389] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
[    1.929480] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12
[    1.929717] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
[    1.929847] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[    1.92929911] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
[    1.929915] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
[    1.929986] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000fd600000
[    1.929991] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x0000000010000000
[    1.929995] mpp_rkvdec2 fdc38100.rkvdec-core: sram_size 524288
[    1.929999] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576
[    1.930004] mpp_rkvdec2 fdc38100.rkvdec-core: min_width 512
[    1.930033] mpp_rkvdec2 fdc38100.rkvdec-core: probing finish
[    1.930112] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group 13
[    1.930324] mpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, probing start
[    1.930450] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[    1.930455] rkvdec2_init:687: No niu aclk reset resource define
[    1.930460] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_h is not found!
[    1.930464] rkvdec2_init:690: No niu hclk reset resource define
[    1.930501] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[    1.930525] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[    1.930592] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000fd680000
[    1.930596] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_iova 0x0000000010100000
[    1.930600] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 524288
[    1.930604] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576
[    1.930609] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512
[    1.930639] mpp_rkvdec2 fdc48100.rkvdec-core: probing finish
[    1.930817] mpp_rkvenc2 rkvenc-ccu: probing start
[    1.930824] mpp_rkvenc2 rkvenc-ccu: probing finish
[    1.930943] mpp_rkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10
[    1.931113] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start
[    1.931131] mpp_rkvenc2 fdbd0000.rkvenc-core: link mode task capacity 8
[    1.931279] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[    1.931417] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[    1.931487] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[    1.931690] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start
[    1.931708] mpp_rkvenc2 fdbe0000.rkvenc-core: link mode task capacity 8
[    1.931872] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
[    1.932051] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[    1.932177] mpp_service mpp-srv: probe success
[    1.939268] rk-pcie fe150000.pcie: missing legacy IRQ resource
[    1.939295] rk-pcie fe150000.pcie: Missing *config* reg space
[    1.939320] rk-pcie fe150000.pcie: host bridge /pcie@fe150000 ranges:
[    1.939364] rk-pcie fe150000.pcie:      err 0x00f0000000..0x00f00fffff -> 0x00f0000000
[    1.939394] rk-pcie fe150000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[    1.939425] rk-pcie fe150000.pcie:      MEM 0x00f0200000..0x00f0ffffff -> 0x00f0200000
[    1.939448] rk-pcie fe150000.pcie:      MEM 0x0900000000..0x093fffffff -> 0x0900000000
[    1.939493] rk-pcie fe150000.pcie: Missing *config* reg space
[    1.939538] rk-pcie fe150000.pcie: invalid resource
[    1.940054] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.940062] dma-pl330 fea10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.940820] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.940827] dma-pl330 fea30000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.941590] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.941597] dma-pl330 fed10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.942567] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[    1.942621] rockchip-pvtm fda50000.pvtm: pvtm@1 probed
[    1.942666] rockchip-pvtm fda60000.pvtm: pvtm@2 probed
[    1.942712] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[    1.942760] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed
[    1.943315] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    1.944027] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    1.944466] febb0000.serial: ttyS8 at MMIO 0xfebb0000 (irq = 80, base_baud = 1500000) is a 16550A
[    1.945502] random: fast init done
[    1.945605] random: crng init done
[    1.946376] rockchip-vop2 fdd90000.vop: Adding to iommu group 14
[    1.952061] rockchip-vop2 fdd90000.vop: failed to get hdmi1_phy_pll: -517
[    1.952092] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[    1.952099] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[    1.952116] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[    1.952123] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[    1.952278] [drm] unsupported AFBC format[3231564e]
[    1.952308] [drm] failed to init overlay plane Cluster0-win1
[    1.952340] [drm] failed to init overlay plane Cluster1-win1
[    1.952370] [drm] failed to init overlay plane Cluster2-win1
[    1.952399] [drm] failed to init overlay plane Cluster3-win1
[    1.961286] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc010f6ce48)
[    1.962056] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[    1.962163] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc010f74b40)
[    1.962318] rockchip-drm display-subsystem: bound fde50000.dp (ops 0xffffffc010f76d00)
[    1.962842] rockchip-drm display-subsystem: failed to parse loader memory
[    2.073266] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    2.073780] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[    2.078782] brd: module loaded
[    2.081691] loop: module loaded
[    2.081881] zram: Added device: zram0
[    2.082020] lkdtm: No crash points registered, enable through debugfs
[    2.082164] system_heap: orders[0] = 6
[    2.082168] system_heap: orders[1] = 4
[    2.082171] system_heap: orders[2] = 0
[    2.083350] ahci fe210000.sata: supply ahci not found, using dummy regulator
[    2.083416] ahci fe210000.sata: supply phy not found, using dummy regulator
[    2.083474] ahci fe210000.sata: supply target not found, using dummy regulator
[    2.083546] ahci fe210000.sata: forcing port_map 0x0 -> 0x1
[    2.083567] ahci fe210000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[    2.083574] ahci fe210000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst 
[    2.083583] ahci fe210000.sata: port 0 can do FBS, forcing FBSCP
[    2.084334] scsi host0: ahci
[    2.084466] ata1: SATA max UDMA/133 mmio [mem 0xfe210000-0xfe210fff] port 0x100 irq 69
[    2.085328] rockchip-spi feb20000.spi: no high_speed pinctrl state
[    2.086559] rk806 spi2.0: chip id: RK806,ver:0x2, 0x0
[    2.086782] rk806 spi2.0: ON: 0x40 OFF:0x80
[    2.089955] vdd_gpu_s0: supplied by vcc5v0_sys
[    2.091000] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[    2.091848] vdd_log_s0: supplied by vcc5v0_sys
[    2.092786] vdd_vdenc_s0: supplied by vcc5v0_sys
[    2.093825] vdd_ddr_s0: supplied by vcc5v0_sys
[    2.094506] vdd2_ddr_s3: supplied by vcc5v0_sys
[    2.095541] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[    2.096287] vcc_3v3_s3: supplied by vcc5v0_sys
[    2.097073] vddq_ddr_s0: supplied by vcc5v0_sys
[    2.098144] vcc_1v8_s3: supplied by vcc5v0_sys
[    2.099221] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3
[    2.100296] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[    2.101154] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[    2.102047] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[    2.103205] nldo5_s0: supplied by vcc_1v1_nldo_s3
[    2.103840] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.104919] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.105839] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[    2.106698] vcc_3v3_s0: supplied by vcc5v0_sys
[    2.107551] vccio_sd_s0: supplied by vcc5v0_sys
[    2.108440] pldo6_s3: supplied by vcc5v0_sys
[    2.109331] rk806 spi2.0: no sleep-setting state
[    2.109356] rk806 spi2.0: no reset-setting pinctrl state
[    2.109369] rk806 spi2.0: no dvs-setting pinctrl state
[    2.113434] libphy: Fixed MDIO Bus: probed
[    2.116415] rk_gmac-dwmac fe1b0000.ethernet: IRQ eth_lpi not found
[    2.116948] rk_gmac-dwmac fe1b0000.ethernet: no regulator found
[    2.116967] rk_gmac-dwmac fe1b0000.ethernet: clock input or output? (output).
[    2.116983] rk_gmac-dwmac fe1b0000.ethernet: TX delay(0x43).
[    2.117012] rk_gmac-dwmac fe1b0000.ethernet: Can not read property: rx_delay.
[    2.117026] rk_gmac-dwmac fe1b0000.ethernet: set rx_delay to 0xffffffff
[    2.117080] rk_gmac-dwmac fe1b0000.ethernet: integrated PHY? (no).
[    2.117100] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_rx
[    2.117118] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_tx
[    2.117170] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock clk_mac_speed
[    2.117425] rk_gmac-dwmac fe1b0000.ethernet: init for RGMII_RXID
[    2.117644] rk_gmac-dwmac fe1b0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    2.117665] rk_gmac-dwmac fe1b0000.ethernet:     DWMAC4/5
[    2.117682] rk_gmac-dwmac fe1b0000.ethernet: DMA HW capability register supported
[    2.117695] rk_gmac-dwmac fe1b0000.ethernet: RX Checksum Offload Engine supported
[    2.117708] rk_gmac-dwmac fe1b0000.ethernet: TX Checksum insertion supported
[    2.117720] rk_gmac-dwmac fe1b0000.ethernet: Wake-Up On Lan supported
[    2.117799] rk_gmac-dwmac fe1b0000.ethernet: TSO supported
[    2.117814] rk_gmac-dwmac fe1b0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    2.117830] rk_gmac-dwmac fe1b0000.ethernet: Enabled Flow TC (entries=2)
[    2.117844] rk_gmac-dwmac fe1b0000.ethernet: TSO feature enabled
[    2.117856] rk_gmac-dwmac fe1b0000.ethernet: SPH feature enabled
[    2.117869] rk_gmac-dwmac fe1b0000.ethernet: Using 32 bits DMA width
[    2.129697] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.146415] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    2.155255] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.171967] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    2.181921] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.181977] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    2.182016] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11 for vp0 dclk: 148500000
[    2.182185] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] dclk_out0 div: 0 dclk_core0 div: 2
[    2.182199] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000
[    2.182490] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy pll locked!
[    2.182497] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] set dclk_vop0 to 148500000, get 148500000
[    2.182518] dwhdmi-rockchip fde80000.hdmi: final tmdsclk = 148500000
[    2.182524] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000
[    2.182707] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy lane locked!
[    2.182730] dwhdmi-rockchip fde80000.hdmi: don't use dsc mode
[    2.185291] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[    2.185490] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[    2.185512] pci_bus 0003:30: root bus resource [bus 30-3f]
[    2.185529] pci_bus 0003:30: root bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[    2.185546] pci_bus 0003:30: root bus resource [io  0x0000-0xfffff] (bus address [0xf3100000-0xf31fffff])
[    2.185561] pci_bus 0003:30: root bus resource [mem 0xf3200000-0xf3ffffff]
[    2.185576] pci_bus 0003:30: root bus resource [mem 0x9c0000000-0x9ffffffff pref]
[    2.185631] pci 0003:30:00.0: [1d87:3588] type 01 class 0x060400
[    2.185670] pci 0003:30:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    2.185761] pci 0003:30:00.0: supports D1 D2
[    2.185776] pci 0003:30:00.0: PME# supported from D0 D1 D3hot
[    2.196454] pci 0003:30:00.0: Primary bus is hard wired to 0
[    2.196481] pci 0003:30:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[    2.196767] pci 0003:31:00.0: [10ec:8168] type 00 class 0x020000
[    2.196854] pci 0003:31:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[    2.196869] pci 0003:31:00.0: reg 0x10: [io  size 0x0100]
[    2.196969] pci 0003:31:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    2.197039] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    2.197521] pci 0003:31:00.0: supports D1 D2
[    2.197536] pci 0003:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.198622] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1
[    2.208586] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.215634] pci_bus 0003:31: busn_res: [bus 31-3f] end is updated to 31
[    2.215686] pci 0003:30:00.0: BAR 8: assigned [mem 0xf3200000-0xf32fffff]
[    2.215706] pci 0003:30:00.0: BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[    2.215724] pci 0003:30:00.0: BAR 7: assigned [io  0x1000-0x1fff]
[    2.215746] pci 0003:31:00.0: BAR 4: assigned [mem 0xf3200000-0xf3203fff 64bit]
[    2.215809] pci 0003:31:00.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[    2.215868] pci 0003:31:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.215897] pci 0003:30:00.0: PCI bridge to [bus 31]
[    2.215912] pci 0003:30:00.0:   bridge window [io  0x1000-0x1fff]
[    2.215929] pci 0003:30:00.0:   bridge window [mem 0xf3200000-0xf32fffff]
[    2.219516] pcieport 0003:30:00.0: PME: Signaling with IRQ 120
[    2.219819] r8168 Gigabit Ethernet driver 8.049.02-NAPI loaded
[    2.219877] r8168 0003:31:00.0: enabling device (0000 -> 0003)
[    2.225290] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1
[    2.235254] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.236182] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[    2.236212] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Random ether addr 9a:95:8e:80:b1:a9
[    2.236814] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    2.238938] r8168  Copyright (C) 2021 Realtek NIC software team <nicfae@realtek.com> 
[    2.238938]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>. 
[    2.238938]  This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>. 
[    2.248621] libphy: stmmac: probed
[    2.251957] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    2.254498] usbcore: registered new interface driver rtl8150
[    2.254572] usbcore: registered new interface driver r8152
[    2.269648] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.269706] ehci-pci: EHCI PCI platform driver
[    2.269774] ehci-platform: EHCI generic platform driver
[    2.272496] ehci-platform fc800000.usb: EHCI Host Controller
[    2.272719] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1
[    2.272872] ehci-platform fc800000.usb: irq 19, io mem 0xfc800000
[    2.285294] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[    2.285571] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.285590] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.285605] usb usb1: Product: EHCI Host Controller
[    2.285618] usb usb1: Manufacturer: Linux 5.10.66 ehci_hcd
[    2.285631] usb usb1: SerialNumber: fc800000.usb
[    2.286206] hub 1-0:1.0: USB hub found
[    2.286261] hub 1-0:1.0: 1 port detected
[    2.289370] ehci-platform fc880000.usb: EHCI Host Controller
[    2.289582] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[    2.289714] ehci-platform fc880000.usb: irq 21, io mem 0xfc880000
[    2.301950] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[    2.302205] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.302224] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.302237] usb usb2: Product: EHCI Host Controller
[    2.302251] usb usb2: Manufacturer: Linux 5.10.66 ehci_hcd
[    2.302263] usb usb2: SerialNumber: fc880000.usb
[    2.302806] hub 2-0:1.0: USB hub found
[    2.302860] hub 2-0:1.0: 1 port detected
[    2.303849] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.303878] ohci-platform: OHCI generic platform driver
[    2.304258] ohci-platform fc840000.usb: Generic Platform OHCI controller
[    2.304490] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[    2.304607] ohci-platform fc840000.usb: irq 20, io mem 0xfc840000
[    2.362829] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.362854] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.362869] usb usb3: Product: Generic Platform OHCI controller
[    2.362882] usb usb3: Manufacturer: Linux 5.10.66 ohci_hcd
[    2.362895] usb usb3: SerialNumber: fc840000.usb
[    2.363448] hub 3-0:1.0: USB hub found
[    2.363503] hub 3-0:1.0: 1 port detected
[    2.364262] ohci-platform fc8c0000.usb: Generic Platform OHCI controller
[    2.364476] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[    2.364598] ohci-platform fc8c0000.usb: irq 22, io mem 0xfc8c0000
[    2.388588] dwhdmi-rockchip fde80000.hdmi: dw hdmi qp use tmds mode
[    2.401428] ata1: SATA link down (SStatus 0 SControl 300)
[    2.422833] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.422859] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.422873] usb usb4: Product: Generic Platform OHCI controller
[    2.422887] usb usb4: Manufacturer: Linux 5.10.66 ohci_hcd
[    2.422900] usb usb4: SerialNumber: fc8c0000.usb
[    2.423454] hub 4-0:1.0: USB hub found
[    2.423509] hub 4-0:1.0: 1 port detected
[    2.425968] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode
[    2.425994] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[    2.426214] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 5
[    2.426403] xhci-hcd xhci-hcd.6.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002010010
[    2.426471] xhci-hcd xhci-hcd.6.auto: irq 123, io mem 0xfc400000
[    2.426857] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.426875] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.426888] usb usb5: Product: xHCI Host Controller
[    2.426902] usb usb5: Manufacturer: Linux 5.10.66 xhci-hcd
[    2.426914] usb usb5: SerialNumber: xhci-hcd.6.auto
[    2.427463] hub 5-0:1.0: USB hub found
[    2.427525] hub 5-0:1.0: 1 port detected
[    2.427955] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[    2.428162] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 6
[    2.428190] xhci-hcd xhci-hcd.6.auto: Host supports USB 3.0 SuperSpeed
[    2.428288] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.428468] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.428486] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.428500] usb usb6: Product: xHCI Host Controller
[    2.428513] usb usb6: Manufacturer: Linux 5.10.66 xhci-hcd
[    2.428526] usb usb6: SerialNumber: xhci-hcd.6.auto
[    2.429134] hub 6-0:1.0: USB hub found
[    2.429189] hub 6-0:1.0: 1 port detected
[    2.429773] usbcore: registered new interface driver cdc_acm
[    2.429789] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.430026] usbcore: registered new interface driver uas
[    2.430212] usbcore: registered new interface driver usb-storage
[    2.430324] usbcore: registered new interface driver usbserial_generic
[    2.430363] usbserial: USB Serial support registered for generic
[    2.430423] usbcore: registered new interface driver cp210x
[    2.430458] usbserial: USB Serial support registered for cp210x
[    2.430576] usbcore: registered new interface driver ftdi_sio
[    2.430612] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.430907] usbcore: registered new interface driver keyspan
[    2.430943] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    2.430977] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    2.431010] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    2.431044] usbserial: USB Serial support registered for Keyspan 4 port adapter
[    2.431111] usbcore: registered new interface driver option
[    2.431145] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.431575] usbcore: registered new interface driver oti6858
[    2.431613] usbserial: USB Serial support registered for oti6858
[    2.431682] usbcore: registered new interface driver pl2303
[    2.431718] usbserial: USB Serial support registered for pl2303
[    2.431798] usbcore: registered new interface driver qcserial
[    2.431834] usbserial: USB Serial support registered for Qualcomm USB modem
[    2.431977] usbcore: registered new interface driver sierra
[    2.432026] usbserial: USB Serial support registered for Sierra USB modem
[    2.433404] usbcore: registered new interface driver usbtouchscreen
[    2.435484] input: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.4.auto/input/input0
[    2.436207] i2c /dev entries driver
[    2.440374] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[    2.449117] vdd_cpu_big1_s0: supplied by vcc5v0_sys
[    2.455885] vdd_npu_s0: supplied by vcc5v0_sys
[    2.467066] rtc-hym8563 2-0051: rtc information is valid
[    2.469572] rtc-hym8563 2-0051: registered as rtc0
[    2.469872] rtc-hym8563 2-0051: setting system clock to 2023-01-09T03:22:09 UTC (1673234529)
[    2.478898] usbcore: registered new interface driver uvcvideo
[    2.478919] USB Video Class driver (1.1.1)
[    2.482588] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property
[    2.483818] rockchip-thermal fec00000.tsadc: tsadc is probed successfully!
[    2.484850] Bluetooth: HCI UART driver ver 2.3
[    2.484873] Bluetooth: HCI UART protocol H4 registered
[    2.484886] Bluetooth: HCI UART protocol ATH3K registered
[    2.484970] usbcore: registered new interface driver bfusb
[    2.485049] usbcore: registered new interface driver btusb
[    2.485373] cpu cpu0: Failed to get cpu_leakage
[    2.485907] cpu cpu4: Failed to get cpu_leakage
[    2.487324] cpu cpu6: Failed to get cpu_leakage
[    2.490492] cpu cpu0: avs=0
[    2.492522] cpu cpu4: avs=0
[    2.494529] cpu cpu6: avs=0
[    2.495070] cpu cpu0: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.495669] cpu cpu4: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.504972] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    2.505683] cpu cpu6: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.519248] sdhci: Secure Digital Host Controller Interface driver
[    2.519257] sdhci: Copyright(c) Pierre Ossman
[    2.519262] Synopsys Designware Multimedia Card Interface Driver
[    2.519620] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.520537] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[    2.520593] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.520950] hid: raw HID events driver (C) Jiri Kosina
[    2.521232] usbcore: registered new interface driver usbhid
[    2.521245] usbhid: USB HID core driver
[    2.527514] usbcore: registered new interface driver snd-usb-audio
[    2.538401] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card0/input1
[    2.539506] input: headset-keys as /devices/platform/es8388-sound/input/input2
[    2.549422] ES8323 7-0011: ASoC: error at soc_component_write_no_lock on ES8323.7-0011: -5
[    2.551788] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[    2.584110] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.585008] mmcblk0: mmc0:0001 TX2932 29.1 GiB 
[    2.585122] mmcblk0boot0: mmc0:0001 TX2932 partition 1 4.00 MiB
[    2.585231] mmcblk0boot1: mmc0:0001 TX2932 partition 2 4.00 MiB
[    2.585313] mmcblk0rpmb: mmc0:0001 TX2932 partition 3 4.00 MiB, chardev (237:0)
[    2.586968]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    2.597754] input: rockchip,es8388 Headset as /devices/platform/es8388-sound/sound/card1/input3
[    2.599377] Initializing XFRM netlink socket
[    2.600014] NET: Registered protocol family 10
[    2.601359] Segment Routing with IPv6
[    2.601482] NET: Registered protocol family 17
[    2.601512] NET: Registered protocol family 15
[    2.601679] Bluetooth: RFCOMM socket layer initialized
[    2.601734] Bluetooth: RFCOMM ver 1.11
[    2.601756] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.601775] Bluetooth: HIDP socket layer initialized
[    2.601849] [BT_RFKILL]: Enter rfkill_rk_init
[    2.601863] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    2.602676] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    2.602730] [WLAN_RFKILL]: can't find rockchip,grf property
[    2.602746] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6255
[    2.602760] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    2.602774] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    2.602819] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 105 flags = 0.
[    2.602876] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 103, flags = 0.
[    2.602896] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    2.602909] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    2.602923] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.602938] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    2.603972] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 100.
[    2.604024] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 102.
[    2.604055] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 97.
[    2.604087] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 96.
[    2.604495] [BT_RFKILL]: Request irq for bt wakeup host
[    2.604612] [BT_RFKILL]: ** disable irq
[    2.604761] [BT_RFKILL]: bt_default device registered.
[    2.604905] Key type dns_resolver registered
[    2.606916] Loading compiled-in X.509 certificates
[    2.608240] pstore: Using crash dump compression: deflate
[    2.608442] rga3_core0 fdb60000.rga: Adding to iommu group 2
[    2.608627] rga: rga3_core0_irq, irq = 32, match scheduler
[    2.608972] rga: Driver loaded successfully rga[3] ver:3.0.76831
[    2.609013] rga: probe successfully
[    2.609792] rga3_core1 fdb70000.rga: Adding to iommu group 3
[    2.610121] rga: rga3_core1_irq, irq = 33, match scheduler
[    2.610623] rga: Driver loaded successfully rga[3] ver:3.0.76831
[    2.610662] rga: probe successfully
[    2.611389] rga: rga2_irq, irq = 34, match scheduler
[    2.611861] rga: Driver loaded successfully rga[3] ver:3.2.63318
[    2.611887] rga: probe successfully
[    2.612631] rga: Module initialized. v1.2.0
[    2.630960] vendor storage:20190527 ret = 0
[    2.659798] mali fb000000.gpu: Kernel DDK version g10p0-01eac0
[    2.660505] mali fb000000.gpu: Failed to get gpu_leakage
[    2.660787] vcc_3v3_sd_s0: supplied by vcc_3v3_s3
[    2.661632] pcie20_avdd0v85: supplied by vdd_0v85_s0
[    2.661691] mali fb000000.gpu: avs=0
[    2.662351] pcie20_avdd1v8: supplied by avcc_1v8_s0
[    2.663012] pcie30_avdd0v75: supplied by avdd_0v75_s0
[    2.663417] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 132; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[    2.663603] pcie30_avdd1v8: supplied by avcc_1v8_s0
[    2.663830] mali fb000000.gpu: r0p0 status 5 is unknown; treating as r0p0 status 0
[    2.663856] mali fb000000.gpu: GPU identified as 0x7 arch 10.8.6 r0p0 status 0
[    2.664003] mali fb000000.gpu: No priority control manager is configured
[    2.664024] mali fb000000.gpu: No memory group manager is configured
[    2.664070] mali fb000000.gpu: Protected memory allocator not available
[    2.664218] vcc3v3_lcd0_n: supplied by vcc_1v8_s0
[    2.665388] mali fb000000.gpu: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.666302] input: adc-keys as /devices/platform/adc-keys/input/input4
[    2.666557] mali fb000000.gpu: Couldn't find power_model DT node matching 'arm,mali-simple-power-model'
[    2.666575] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.static-coefficient = 1*[0]
[    2.666780] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.dynamic-coefficient = 1*[0]
[    2.666982] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.ts = 4*[0]
[    2.667189] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.thermal-zone = ''
[    2.671313] mali fb000000.gpu: Using configured power model mali-lodx-power-model, and fallback mali-simple-power-model
[    2.671804] mali fb000000.gpu: Probed as mali0
[    2.681603] RKNPU fdab0000.npu: Adding to iommu group 0
[    2.682062] RKNPU fdab0000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[    2.682509] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdab0000-0xfdabffff]
[    2.682525] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdac0000-0xfdacffff]
[    2.682535] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdad0000-0xfdadffff]
[    2.682812] [drm] Initialized rknpu 0.6.4 20211227 for fdab0000.npu on minor 1
[    2.683639] RKNPU fdab0000.npu: Failed to get npu_leakage
[    2.684130] RKNPU fdab0000.npu: avs=0
[    2.684213] RKNPU fdab0000.npu: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.686629] RKNPU fdab0000.npu: failed to find power_model node
[    2.686635] RKNPU fdab0000.npu: RKNPU: failed to initialize power model
[    2.686639] RKNPU fdab0000.npu: RKNPU: failed to get dynamic-coefficient
[    2.686861] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.692053] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.693186] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.693218] cfg80211: failed to load regulatory.db
[    2.693823] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[    2.695510] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 405; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '20:47:44', on 'Jan  8 2023'.
[    2.696168] Mali: 
[    2.696174] Mali device driver loaded
[    2.696198] ALSA device list:
[    2.696211]   #0: rockchip-hdmi0
[    2.696224]   #1: rockchip,es8388
[    2.696236]   #2: rockchip,hdmiin
[    2.698602] rk-pcie fe170000.pcie: PCIe Link up, LTSSM is 0x30011
[    2.698687] rk-pcie fe170000.pcie: PCI host bridge to bus 0002:20
[    2.698696] pci_bus 0002:20: root bus resource [bus 20-2f]
[    2.698703] pci_bus 0002:20: root bus resource [??? 0xf2000000-0xf20fffff flags 0x0]
[    2.698710] pci_bus 0002:20: root bus resource [io  0x100000-0x1fffff] (bus address [0xf2100000-0xf21fffff])
[    2.698715] pci_bus 0002:20: root bus resource [mem 0xf2200000-0xf2ffffff]
[    2.698721] pci_bus 0002:20: root bus resource [mem 0x980000000-0x9bfffffff pref]
[    2.698746] pci 0002:20:00.0: [1d87:3588] type 01 class 0x060400
[    2.698765] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    2.698812] pci 0002:20:00.0: supports D1 D2
[    2.698818] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[    2.703945] Freeing unused kernel memory: 6336K
[    2.705353] pci 0002:20:00.0: Primary bus is hard wired to 0
[    2.705388] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[    2.705829] pci 0002:21:00.0: [14e4:449d] type 00 class 0x028000
[    2.705969] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit]
[    2.706057] pci 0002:21:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]
[    2.706776] pci 0002:21:00.0: supports D1 D2
[    2.706802] pci 0002:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.733159] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[    2.733243] pci 0002:20:00.0: BAR 8: assigned [mem 0xf2200000-0xf27fffff]
[    2.733279] pci 0002:20:00.0: BAR 6: assigned [mem 0xf2800000-0xf280ffff pref]
[    2.733320] pci 0002:21:00.0: BAR 2: assigned [mem 0xf2400000-0xf27fffff 64bit]
[    2.733402] pci 0002:21:00.0: BAR 0: assigned [mem 0xf2200000-0xf220ffff 64bit]
[    2.733478] pci 0002:20:00.0: PCI bridge to [bus 21]
[    2.733507] pci 0002:20:00.0:   bridge window [mem 0xf2200000-0xf27fffff]
[    2.739496] pcieport 0002:20:00.0: PME: Signaling with IRQ 137
[    2.745548] Run /init as init process
Starting syslogd: OK
Starting klogd: OK
Running sysctl: OK
Populating /dev using udev: [    2.805382] udevd[253]: starting version 3.2.7
[    2.806811] udevd[253]: specified group 'kvm' unknown
[    2.810459] udevd[254]: starting eudev-3.2.7
[    2.861940] usb 4-1: new full-speed USB device number 2 using ohci-platform
[    2.921648] r8168 0003:31:00.0 enP3p49s0: renamed from eth0
[    3.090700] usb 4-1: New USB device found, idVendor=222a, idProduct=0001, bcdDevice= 0.00
[    3.090750] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    3.090770] usb 4-1: Product: ILITEK-TP
[    3.090789] usb 4-1: Manufacturer: ILITEK
[    3.090807] usb 4-1: SerialNumber: V06.00.00.00
[    3.106352] input: ILITEK ILITEK-TP as /devices/platform/fc8c0000.usb/usb4/4-1/4-1:1.0/0003:222A:0001.0001/input/input5
[    3.107410] hid-multitouch 0003:222A:0001.0001: input,hidraw0: USB HID v1.10 Device [ILITEK ILITEK-TP] on usb-fc8c0000.usb-1/input0
[    3.129310] input: ILITEK ILITEK-TP Mouse as /devices/platform/fc8c0000.usb/usb4/4-1/4-1:1.1/0003:222A:0001.0002/input/input6
[    3.130688] hid-generic 0003:222A:0001.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [ILITEK ILITEK-TP] on usb-fc8c0000.usb-1/input1
done
Initializing random number generator... done.
Starting network: OK
Debug: configfs_init
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/uac1.gs0': No such file or directory
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/uac2.gs0': No such file or directory
[    3.536224] file system registered
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/mtp.gs0': No such file or directory
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/rndis.gs0': No such file or directory
[    3.549421] Mass Storage Function, version: 2009/09/11
[    3.549449] LUN: removable file: (no medium)
mkdir: can't create directory '/sys/kernel/config/usb_gadget/rockchip/functions/hid.usb0': No such file or directory
[    3.573924] read descriptors
[    3.574056] read strings
[    4.216158] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    4.295665] udevd[254]: specified group 'kvm' unknown
Starting input-event-daemon: input-event-daemon: Start parsing /etc/input-event-daemon.conf...
input-event-daemon: Adding device: /dev/input/event0...
input-event-daemon: Adding device: /dev/input/event1...
input-event-daemon: Adding device: /dev/input/event2...
input-event-daemon: Adding device: /dev/input/event3...
input-event-daemon: Adding device: /dev/input/event4...
input-event-daemon: Adding device: /dev/input/event5...
input-event-daemon: Adding device: /dev/input/event6...
input-event-daemon: Start listening on 7 devices...
done
[root@RK3588:/]# [    4.852004] rk-pcie fe150000.pcie: PCIe Link Fail
[    4.852065] rk-pcie fe150000.pcie: failed to initialize host
[    7.545406] android_work: sent uevent USB_STATE=CONNECTED
[    7.627188] android_work: sent uevent USB_STATE=CONFIGURED
[   21.058646] EXT4-fs (mmcblk0p8): mounting ext2 file system using the ext4 subsystem
[   21.062801] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: 
[   23.271082] rk860-regulator 2-0042: rk860..... reset
[   23.271740] rk860-regulator 2-0042: force rk860x_reset ok!
[   23.272234] rk860-regulator 0-0043: rk860..... reset
[   23.273442] rk860-regulator 0-0043: force rk860x_reset ok!
[   23.273926] rk860-regulator 0-0042: rk860..... reset
[   23.275127] rk860-regulator 0-0042: force rk860x_reset ok!
[   23.280336] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
[   23.781134] rockchip-vop2 fdd90000.vop: [drm:vop2_disable_all_planes_for_crtc] *ERROR* wait win close timeout
[   23.835248] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_disable] wait for vp0 dsp_hold timeout
[   23.836254] [WLAN_RFKILL]: Enter rfkill_wlan_shutdown
[   23.836695] [WLAN_RFKILL]: rockchip_wifi_power: 0
[   23.837111] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[   23.837617] wifi power off
[   23.941914] [WLAN_RFKILL]: wifi shut off power [GPIO105-0]
[   23.942398] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 0
[   23.942939] xhci-hcd xhci-hcd.6.auto: remove, state 4
[   23.943383] usb usb6: USB disconnect, device number 1
[   23.944061] xhci-hcd xhci-hcd.6.auto: USB bus 6 deregistered
[   23.944621] xhci-hcd xhci-hcd.6.auto: remove, state 4
[   23.945062] usb usb5: USB disconnect, device number 1
[   23.945807] xhci-hcd xhci-hcd.6.auto: USB bus 5 deregistered
[   23.946726] mpp_rkvdec2 fdc48100.rkvdec-core: shutdown device
[   23.947245] mpp_rkvdec2 fdc38100.rkvdec-core: shutdown device
[   23.947761] mpp_rkvenc2 fdbe0000.rkvenc-core: shutdown device
[   23.948267] mpp_rkvenc2 fdbe0000.rkvenc-core: shutdown success
[   23.948814] mpp_rkvenc2 fdbd0000.rkvenc-core: shutdown device
[   23.949324] mpp_rkvenc2 fdbd0000.rkvenc-core: shutdown success
[   23.949843] mpp-iep2 fdbb0000.iep: shutdown device
[   23.950268] mpp_vepu2 fdbac000.jpege-core: shutdown device
[   23.950752] mpp_vepu2 fdbac000.jpege-core: shutdown success
[   23.951243] mpp_vepu2 fdba8000.jpege-core: shutdown device
[   23.951727] mpp_vepu2 fdba8000.jpege-core: shutdown success
[   23.952225] mpp_vepu2 fdba4000.jpege-core: shutdown device
[   23.952708] mpp_vepu2 fdba4000.jpege-core: shutdown success
[   23.953200] mpp_vepu2 fdba0000.jpege-core: shutdown device
[   23.953684] mpp_vepu2 fdba0000.jpege-core: shutdown success
[   23.954175] mpp_jpgdec fdb90000.jpegd: shutdown device
[   23.954648] mpp_vdpu2 fdb50400.vdpu: shutdown device
[   23.955371] android_work: sent uevent USB_STATE=DISCONNECTED
[   23.956021] mpp_rkvenc2 rkvenc-ccu: shutdown success
[   23.956465] mpp_vepu2 jpege-ccu: shutdown success
[   23.958325] reboot: Restarting system
DDR Version V1.04 20220118
LPDDR4X, 2112MHz
channel[0] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[1] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[2] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
channel[3] BW=16 Col=10 Bk=8 CS0 Row=16/0 CS1 Row=16/0 CS=2 Die BW=16 Size=2048MB
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-g6bd5597c98-211214 #zzz (Jan 05 2022 - 16:10:44)
unknown raw ID phN
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
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 ... sha256(6e9bf31386...) + OK
## Checking uboot 0x00200000 ... sha256(0c1c50adc8...) + OK
## Checking fdt 0x00306248 ... sha256(a5e6b35d32...) + OK
## Checking atf-2 0x000f0000 ... sha256(a923fc5850...) + OK
## Checking atf-3 0xff100000 ... sha256(e0510e813f...) + OK
## Checking atf-4 0xff009000 ... sha256(d55aac40fb...) + OK
## Checking optee 0x08400000 ... sha256(9289764f93...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)
Total: 155.951 ms

INFO:    Preloader serial: 2
NOTICE:  BL31: v2.3():v2.3-264-gf8de35126:derrick.huang
NOTICE:  BL31: Built : 16:08:45, Jan 15 2022
INFO:    GICv3 without legacy support detected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    idle_st=0x21fff, pd_st=0x11fff9
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:    Using opteed sec cpu_context!
INFO:    boot cpu mask: 0
INFO:    BL31: Initializing runtime services
INFO:    BL31: Initializing BL32
I/TC: 
I/TC: OP-TEE version: 3.13.0-628-g3f0f0b052 #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #4 Fri Jan 14 09:33:37 CST 2022 aarch64
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 (Jan 08 2023 - 20:30:35 +0800)

Model: Rockchip RK3588 Evaluation Board
PreSerial: 2, raw, 0xfeb50000
DRAM:  7.7 GiB
Sysmem: init
Relocation Offset: edb71000
Relocation fdt: eb9f9f30 - eb9fece8
CR: M/C/I
Using default environment

mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdev(atags): mmc 0
MMC0: HS400, 200Mhz
PartType: EFI
DM: v2
boot mode: None
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
Pre-reloc: vcc_mipicsi1
I2c0 speed: 100000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big0_s0 800000 uV
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_cpu_big1_s0 800000 uV
I2c2 speed: 400000Hz
vsel-gpios- not found! Error: -2
en-gpios- not found! Error: -2
vdd_npu_s0 800000 uV
spi2: RK806: 2
vdd_gpu_s0 750000 uV
vdd_cpu_lit_s0 750000 uV
vdd_vdenc_s0 init 750000 uV
Model: Rockchip RK3588 TOYBRICK X10 Board
CLK: (uboot. arm: enter 1200000 KHz, init 1200000 KHz, kernel 0N/A)
  b0pll 1200000 KHz
  b1pll 1200000 KHz
  lpll 1200000 KHz
  v0pll 24000 KHz
  aupll 786215 KHz
  cpll 1500000 KHz
  gpll 1188000 KHz
  npll 850000 KHz
  ppll 100000 KHz
  aclk_center_root 702000 KHz
  pclk_center_root 200000 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:   eth0: ethernet@fe1b0000
Hit key to stop autoboot('CTRL+C'):  0 
ANDROID: reboot reason: "(none)"
optee api revision: 2.0
TEEC: Waring: Could not find security partition
Not AVB images, AVB skip
No valid android hdr
Android image load failed
Android boot failed, error -1.
## Booting FIT Image at 0xe9a77300 with size 0x01d81c00
Fdt Ramdisk skip relocation
## Loading kernel from FIT Image at e9a77300 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0xe9a9bd00
     Data Size:    30789640 Bytes = 29.4 MiB
     Architecture: AArch64
     OS:           Linux
     Load Address: 0x00400000
     Entry Point:  0x00400000
     Hash algo:    sha256
     Hash value:   e15d3e2bf5f691c9a5d6ae190aa259c7257fdfb1d5248ca7877b2af0278a7129
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at e9a77300 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0xe9a77b00
     Data Size:    147736 Bytes = 144.3 KiB
     Architecture: AArch64
     Load Address: 0x0a100000
     Hash algo:    sha256
     Hash value:   0122f1f8c0dd96d4c32abfe4bcc06a935c02c9b8311d6089d12948bf2873bac9
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x0a100000 to 0x0a100000
   Booting using the fdt blob at 0x0a100000
   Loading Kernel Image from 0xe9a9bd00 to 0x00400000 ... OK
   kernel loaded at 0x00400000, end = 0x0215d008
  'reserved-memory' cma: addr=10000000 size=8000000
   Using Device Tree in place at 000000000a100000, end 000000000a127117
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)
Adding bank: 0x100000000 - 0x200000000 (size: 0x100000000)
Total: 490.993 ms

Starting kernel ...

[    0.607182] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.607204] Linux version 5.10.66 (rootroot@rootroot-HP-ZHAN-66-Pro-A-14-G3) (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) #1 SMP Sun Jan 8 20:43:06 CST 2023
[    0.617237] Machine model: Rockchip RK3588 TOYBRICK X10 Board
[    0.617310] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
[    0.621634] printk: bootconsole [uart8250] enabled
[    0.627185] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-logo@00000000': base 0x0000000000000000, size 0 MiB
[    0.628258] OF: fdt: Reserved memory: failed to reserve memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[    0.629411] Reserved memory: created CMA memory pool at 0x0000000010000000, size 128 MiB
[    0.630153] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
[    0.773723] Zone ranges:
[    0.773969]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    0.774544]   DMA32    empty
[    0.774813]   Normal   [mem 0x0000000100000000-0x00000001ffffffff]
[    0.775384] Movable zone start for each node
[    0.775777] Early memory node ranges
[    0.776108]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    0.776685]   node   0: [mem 0x0000000009400000-0x00000000efffffff]
[    0.777264]   node   0: [mem 0x0000000100000000-0x00000001ffffffff]
[    0.777844] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    0.821549] psci: probing for conduit method from DT.
[    0.822022] psci: PSCIv1.1 detected in firmware.
[    0.822447] psci: Using standard PSCI v0.2 function IDs
[    0.822931] psci: Trusted OS migration not required
[    0.823381] psci: SMC Calling Convention v1.2
[    0.824175] percpu: Embedded 30 pages/cpu s84968 r8192 d29720 u122880
[    0.824964] Detected VIPT I-cache on CPU0
[    0.825378] CPU features: detected: GIC system register CPU interface
[    0.825970] CPU features: detected: Virtualization Host Extensions
[    0.826543] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    0.827190] alternatives: patching kernel code
[    0.827905] Built 1 zonelists, mobility grouping on.  Total pages: 1995336
[    0.828543] 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
[    0.831903] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.833091] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.833812] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.841716] software IO TLB: mapped [mem 0x00000000ec000000-0x00000000f0000000] (64MB)
[    0.920613] Memory: 7723320K/8108032K available (14782K kernel code, 3252K rwdata, 5672K rodata, 6336K init, 521K bss, 253640K reserved, 131072K cma-reserved)
[    0.922061] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[    0.922696] ftrace: allocating 56153 entries in 220 pages
[    1.022501] ftrace: allocated 220 pages with 5 groups
[    1.023276] rcu: Hierarchical RCU implementation.
[    1.023715] rcu:     RCU event tracing is enabled.
[    1.024133]     Rude variant of Tasks RCU enabled.
[    1.024552] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    1.030640] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    1.033247] GICv3: GIC: Using split EOI/Deactivate mode
[    1.033734] GICv3: 480 SPIs implemented
[    1.034089] GICv3: 0 Extended SPIs implemented
[    1.034527] GICv3: Distributor has no Range Selector support
[    1.035053] GICv3: 16 PPIs implemented
[    1.035442] GICv3: CPU0: found redistributor 0 region 0:0x00000000fe680000
[    1.036204] ITS [mem 0xfe640000-0xfe65ffff]
[    1.036646] ITS@0x00000000fe640000: allocated 8192 Devices @1001e0000 (indirect, esz 8, psz 64K, shr 0)
[    1.037534] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @1001f0000 (flat, esz 2, psz 64K, shr 0)
[    1.038487] ITS: using cache flushing for cmd queue
[    1.038971] ITS [mem 0xfe660000-0xfe67ffff]
[    1.039405] ITS@0x00000000fe660000: allocated 8192 Devices @100210000 (indirect, esz 8, psz 64K, shr 0)
[    1.040289] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @100220000 (flat, esz 2, psz 64K, shr 0)
[    1.041242] ITS: using cache flushing for cmd queue
[    1.041852] GICv3: using LPI property table @0x0000000100230000
[    1.042544] GIC: using cache flushing for LPI property table
[    1.043070] GICv3: CPU0: using allocated LPI pending table @0x0000000100240000
[    1.043910] random: get_random_bytes called from start_kernel+0x3dc/0x5d0 with crng_init=0
[    1.181846] rockchip_cpuclk_pre_rate_change: limiting alt-divider 36254 to 31
[    1.186640] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    1.187218] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    1.188224] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    1.190505] Console: colour dummy device 80x25
[    1.190956] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    1.191922] pid_max: default: 32768 minimum: 301
[    1.192556] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.193288] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.196239] rcu: Hierarchical SRCU implementation.
[    1.197830] Platform MSI: msi-controller@fe640000 domain created
[    1.198416] Platform MSI: msi-controller@fe660000 domain created
[    1.199372] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe640000 domain created
[    1.200178] PCI/MSI: /interrupt-controller@fe600000/msi-controller@fe660000 domain created
[    1.201587] 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.203421] Detected VIPT I-cache on CPU1
[    1.203468] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
[    1.203493] GICv3: CPU1: using allocated LPI pending table @0x0000000100250000
[    1.203544] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    1.205057] Detected VIPT I-cache on CPU2
[    1.205098] GICv3: CPU2: found redistributor 200 region 0:0x00000000fe6c0000
[    1.205122] GICv3: CPU2: using allocated LPI pending table @0x0000000100260000
[    1.205169] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    1.206637] Detected VIPT I-cache on CPU3
[    1.206676] GICv3: CPU3: found redistributor 300 region 0:0x00000000fe6e0000
[    1.206699] GICv3: CPU3: using allocated LPI pending table @0x0000000100270000
[    1.206746] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    1.208216] CPU features: detected: Spectre-v4
[    1.208220] Detected PIPT I-cache on CPU4
[    1.208236] GICv3: CPU4: found redistributor 400 region 0:0x00000000fe700000
[    1.208246] GICv3: CPU4: using allocated LPI pending table @0x0000000100280000
[    1.208272] CPU4: Booted secondary processor 0x0000000400 [0x414fd0b0]
[    1.209672] Detected PIPT I-cache on CPU5
[    1.209689] GICv3: CPU5: found redistributor 500 region 0:0x00000000fe720000
[    1.209699] GICv3: CPU5: using allocated LPI pending table @0x0000000100290000
[    1.209726] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
[    1.211156] Detected PIPT I-cache on CPU6
[    1.211173] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
[    1.211183] GICv3: CPU6: using allocated LPI pending table @0x00000001002a0000
[    1.211209] CPU6: Booted secondary processor 0x0000000600 [0x414fd0b0]
[    1.212594] Detected PIPT I-cache on CPU7
[    1.212610] GICv3: CPU7: found redistributor 700 region 0:0x00000000fe760000
[    1.212621] GICv3: CPU7: using allocated LPI pending table @0x00000001002b0000
[    1.212647] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[    1.212734] smp: Brought up 1 node, 8 CPUs
[    1.229686] SMP: Total of 8 processors activated.
[    1.230129] CPU features: detected: Privileged Access Never
[    1.230649] CPU features: detected: User Access Override
[    1.231146] CPU features: detected: 32-bit EL0 Support
[    1.231628] CPU features: detected: Common not Private translations
[    1.232212] CPU features: detected: RAS Extension Support
[    1.232727] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    1.233531] CPU features: detected: CRC32 instructions
[    1.234011] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    1.234663] CPU features: detected: RCpc load-acquire (LDAPR)
[    1.235312] CPU: All CPU(s) started at EL2
[    1.237486] devtmpfs: initialized
[    1.247659] Registered cp15_barrier emulation handler
[    1.248130] Registered setend emulation handler
[    1.248633] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    1.249531] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    1.251449] pinctrl core: initialized pinctrl subsystem
[    1.252339] NET: Registered protocol family 16
[    1.253625] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    1.254380] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.256489] thermal_sys: Registered thermal governor 'fair_share'
[    1.256492] thermal_sys: Registered thermal governor 'step_wise'
[    1.257321] cpuidle: using governor menu
[    1.258236] Registered FIQ tty driver
[    1.258750] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    1.259511] ASID allocator initialised with 65536 entries
[    1.261610] printk: console [ramoops-1] enabled
[    1.262028] pstore: Registered ramoops as persistent store backend
[    1.262595] ramoops: using 0xf0000@0x110000, ecc: 0
[    1.304676] rockchip-gpio fd8a0000.gpio: probed /pinctrl/gpio@fd8a0000
[    1.305500] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[    1.306297] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[    1.307122] rockchip-gpio fec40000.gpio: probed /pinctrl/gpio@fec40000
[    1.307976] rockchip-gpio fec50000.gpio: probed /pinctrl/gpio@fec50000
[    1.308604] rockchip-pinctrl pinctrl: probed pinctrl
[    1.321250] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    1.321761] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    1.322291] fiq_debugger_probe: could not install nmi irq handler
[[    1.322896] printk: console [ttyFIQ0] enabled
    1.322896] printk: console [ttyFIQ0] enabled
[    1.323684] printk: bootconsole [uart8250] disabled
[    1.323684] printk: bootconsole [uart8250] disabled
[    1.324204] Registered fiq debugger ttyFIQ0
[    1.324531] vcc5v0_sys: supplied by vcc12v_dcin
[    1.324662] vcc5v0_usbdcin: supplied by vcc12v_dcin
[    1.324828] vcc5v0_usb: supplied by vcc5v0_usbdcin
[    1.324968] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[    1.325197] vbus5v0_typec: supplied by vcc5v0_usb
[    1.325334] vcc3v3_pcie30: supplied by vcc12v_dcin
[    1.325441] vcc5v0_host: supplied by vcc5v0_usb
[    1.325800] debugfs: Directory 'vcc_mipicsi1' with parent 'regulator' already present!
[    1.325810] debugfs: Directory 'vcc_mipicsi1' with parent 'vcc_mipicsi1' already present!
[    1.326064] iommu: Default domain type: Translated 
[    1.326140] rk_iommu fdab9000.iommu: version = 2
[    1.326508] rk_iommu fdb50800.iommu: version = 2
[    1.326736] rk_iommu fdb60f00.iommu: version = 2
[    1.326918] rk_iommu fdb70f00.iommu: version = 2
[    1.327099] rk_iommu fdb90480.iommu: version = 2
[    1.327281] rk_iommu fdba0800.iommu: version = 2
[    1.327457] rk_iommu fdba4800.iommu: version = 2
[    1.327633] rk_iommu fdba8800.iommu: version = 2
[    1.327807] rk_iommu fdbac800.iommu: version = 2
[    1.327982] rk_iommu fdbb0800.iommu: version = 2
[    1.328155] rk_iommu fdbdf000.iommu: version = 2
[    1.328384] rk_iommu fdbef000.iommu: version = 2
[    1.328625] rk_iommu fdc38700.iommu: version = 2
[    1.328873] rk_iommu fdc48700.iommu: version = 2
[    1.329018] rk_iommu fdd97e00.iommu: version = 2
[    1.329335] SCSI subsystem initialized
[    1.329423] usbcore: registered new interface driver usbfs
[    1.329441] usbcore: registered new interface driver hub
[    1.329458] usbcore: registered new device driver usb
[    1.329494] mc: Linux media interface: v0.10
[    1.329506] videodev: Linux video capture interface: v2.00
[    1.329536] pps_core: LinuxPPS API ver. 1 registered
[    1.329541] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    1.329548] PTP clock support registered
[    1.329810] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    1.329846] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    1.330957] Advanced Linux Sound Architecture Driver Initialized.
[    1.331160] Bluetooth: Core ver 2.22
[    1.331175] NET: Registered protocol family 31
[    1.331179] Bluetooth: HCI device and connection manager initialized
[    1.331185] Bluetooth: HCI socket layer initialized
[    1.331190] Bluetooth: L2CAP socket layer initialized
[    1.331198] Bluetooth: SCO socket layer initialized
[    1.332418] rockchip-cpuinfo cpuinfo: SoC        : 35880000
[    1.332424] rockchip-cpuinfo cpuinfo: Serial        : d2849f234f75f93a
[    1.332774] clocksource: Switched to clocksource arch_sys_counter
[    1.645712] NET: Registered protocol family 2
[    1.645856] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.647809] tcp_listen_portaddr_hash hash table entries: 4096 (order: 5, 163840 bytes, linear)
[    1.647912] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    1.648253] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[    1.649058] TCP: Hash tables configured (established 65536 bind 65536)
[    1.649115] UDP hash table entries: 4096 (order: 6, 393216 bytes, linear)
[    1.649269] UDP-Lite hash table entries: 4096 (order: 6, 393216 bytes, linear)
[    1.649501] NET: Registered protocol family 1
[    1.649884] RPC: Registered named UNIX socket transport module.
[    1.649890] RPC: Registered udp transport module.
[    1.649893] RPC: Registered tcp transport module.
[    1.649897] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.650387] PCI: CLS 0 bytes, default 64
[    1.651490] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    1.654642] Initialise system trusted keyrings
[    1.654765] workingset: timestamp_bits=62 max_order=21 bucket_order=0
[    1.657032] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.657365] NFS: Registering the id_resolver key type
[    1.657376] Key type id_resolver registered
[    1.657381] Key type id_legacy registered
[    1.657397] ntfs: driver 2.1.32 [Flags: R/O].
[    1.657460] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    1.657530] fuse: init (API version 7.32)
[    1.657657] SGI XFS with security attributes, no debug enabled
[    1.678657] NET: Registered protocol family 38
[    1.678666] Key type asymmetric registered
[    1.678670] Asymmetric key parser 'x509' registered
[    1.678687] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    1.678692] io scheduler mq-deadline registered
[    1.678695] io scheduler kyber registered
[    1.687756] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy init success
[    1.690173] rk-pcie fe180000.pcie: no vpcie3v3 regulator found
[    1.690323] rk-pcie fe180000.pcie: missing legacy IRQ resource
[    1.690332] rk-pcie fe180000.pcie: Missing *config* reg space
[    1.690343] rk-pcie fe180000.pcie: host bridge /pcie@fe180000 ranges:
[    1.690368] rk-pcie fe180000.pcie:      err 0x00f3000000..0x00f30fffff -> 0x00f3000000
[    1.690376] rk-pcie fe180000.pcie:       IO 0x00f3100000..0x00f31fffff -> 0x00f3100000
[    1.690386] rk-pcie fe180000.pcie:      MEM 0x00f3200000..0x00f3ffffff -> 0x00f3200000
[    1.690392] rk-pcie fe180000.pcie:      MEM 0x09c0000000..0x09ffffffff -> 0x09c0000000
[    1.690418] rk-pcie fe180000.pcie: Missing *config* reg space
[    1.690444] rk-pcie fe180000.pcie: invalid resource
[    1.690645] rk-pcie fe170000.pcie: no vpcie3v3 regulator found
[    1.690676] pwm-backlight backlight: supply power not found, using dummy regulator
[    1.690922] mpp_service mpp-srv: 
[    1.690928] mpp_service mpp-srv: probe start
[    1.691014] rk-pcie fe170000.pcie: missing legacy IRQ resource
[    1.691040] rk-pcie fe170000.pcie: Missing *config* reg space
[    1.691064] rk-pcie fe170000.pcie: host bridge /pcie@fe170000 ranges:
[    1.691101] rk-pcie fe170000.pcie:      err 0x00f2000000..0x00f20fffff -> 0x00f2000000
[    1.691130] rk-pcie fe170000.pcie:       IO 0x00f2100000..0x00f21fffff -> 0x00f2100000
[    1.691161] rk-pcie fe170000.pcie:      MEM 0x00f2200000..0x00f2ffffff -> 0x00f2200000
[    1.691184] rk-pcie fe170000.pcie:      MEM 0x0980000000..0x09bfffffff -> 0x0980000000
[    1.691228] rk-pcie fe170000.pcie: Missing *config* reg space
[    1.691272] rk-pcie fe170000.pcie: invalid resource
[    1.692950] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
[    1.693181] mpp_vdpu2 fdb50400.vdpu: probe device
[    1.693381] mpp_vdpu2 fdb50400.vdpu: probing finish
[    1.693559] mpp_vepu2 jpege-ccu: probing start
[    1.693566] mpp_vepu2 jpege-ccu: probing finish
[    1.693677] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
[    1.693797] mpp_vepu2 fdba0000.jpege-core: probing start
[    1.693911] mpp_vepu2 fdba0000.jpege-core: attach ccu success
[    1.693995] mpp_vepu2 fdba0000.jpege-core: probing finish
[    1.694063] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[    1.694177] mpp_vepu2 fdba4000.jpege-core: probing start
[    1.694300] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[    1.694402] mpp_vepu2 fdba4000.jpege-core: probing finish
[    1.694470] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
[    1.694585] mpp_vepu2 fdba8000.jpege-core: probing start
[    1.694706] mpp_vepu2 fdba8000.jpege-core: attach ccu success
[    1.694784] mpp_vepu2 fdba8000.jpege-core: probing finish
[    1.694850] mpp_vepu2 fdbac000.jpege-core: Adding to iommu group 8
[    1.694970] mpp_vepu2 fdbac000.jpege-core: probing start
[    1.695092] mpp_vepu2 fdbac000.jpege-core: attach ccu success
[    1.695164] mpp_vepu2 fdbac000.jpege-core: probing finish
[    1.695407] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[    1.695498] mpp-iep2 fdbb0000.iep: probe device
[    1.695637] mpp-iep2 fdbb0000.iep: allocate roi buffer failed
[    1.695701] mpp-iep2 fdbb0000.iep: probing finish
[    1.695927] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
[    1.696085] mpp_jpgdec fdb90000.jpegd: probe device
[    1.696289] mpp_jpgdec fdb90000.jpegd: probing finish
[    1.696607] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
[    1.696670] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
[    1.696760] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu group 12
[    1.696996] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
[    1.697125] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[    1.697130] rkvdec2_init:687: No niu aclk reset resource define
[    1.697135] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found!
[    1.697139] rkvdec2_init:690: No niu hclk reset resource define
[    1.697187] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
[    1.697192] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
[    1.697264] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000fd600000
[    1.697269] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x0000000010000000
[    1.697273] mpp_rkvdec2 fdc38100.rkvdec-core: sram_size 524288
[    1.697277] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576
[    1.697283] mpp_rkvdec2 fdc38100.rkvdec-core: min_width 512
[    1.697312] mpp_rkvdec2 fdc38100.rkvdec-core: probing finish
[    1.697390] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group 13
[    1.697599] mpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, probing start
[    1.697723] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[    1.697728] rkvdec2_init:687: No niu aclk reset resource define
[    1.697732] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_h is not found!
[    1.697736] rkvdec2_init:690: No niu hclk reset resource define
[    1.697773] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[    1.697798] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[    1.697864] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000fd680000
[    1.697869] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_iova 0x0000000010100000
[    1.697873] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 524288
[    1.697877] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576
[    1.697882] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512
[    1.697911] mpp_rkvdec2 fdc48100.rkvdec-core: probing finish
[    1.698087] mpp_rkvenc2 rkvenc-ccu: probing start
[    1.698093] mpp_rkvenc2 rkvenc-ccu: probing finish
[    1.698211] mpp_rkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10
[    1.698382] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start
[    1.698399] mpp_rkvenc2 fdbd0000.rkvenc-core: link mode task capacity 8
[    1.698547] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[    1.698625] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[    1.698693] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[    1.698902] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start
[    1.698919] mpp_rkvenc2 fdbe0000.rkvenc-core: link mode task capacity 8
[    1.699085] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
[    1.699164] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[    1.699292] mpp_service mpp-srv: probe success
[    1.706957] rk-pcie fe150000.pcie: missing legacy IRQ resource
[    1.706984] rk-pcie fe150000.pcie: Missing *config* reg space
[    1.707010] rk-pcie fe150000.pcie: host bridge /pcie@fe150000 ranges:
[    1.707048] rk-pcie fe150000.pcie:      err 0x00f0000000..0x00f00fffff -> 0x00f0000000
[    1.707077] rk-pcie fe150000.pcie:       IO 0x00f0100000..0x00f01fffff -> 0x00f0100000
[    1.707108] rk-pcie fe150000.pcie:      MEM 0x00f0200000..0x00f0ffffff -> 0x00f0200000
[    1.707111] dma-pl330 fea10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.707118] dma-pl330 fea10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.707146] rk-pcie fe150000.pcie:      MEM 0x0900000000..0x093fffffff -> 0x0900000000
[    1.707195] rk-pcie fe150000.pcie: Missing *config* reg space
[    1.707247] rk-pcie fe150000.pcie: invalid resource
[    1.707875] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.707883] dma-pl330 fea30000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.708636] dma-pl330 fed10000.dma-controller: Loaded driver for PL330 DMAC-241330
[    1.708643] dma-pl330 fed10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.709616] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[    1.709670] rockchip-pvtm fda50000.pvtm: pvtm@1 probed
[    1.709717] rockchip-pvtm fda60000.pvtm: pvtm@2 probed
[    1.709763] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[    1.709807] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed
[    1.710365] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    1.711043] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    1.711479] febb0000.serial: ttyS8 at MMIO 0xfebb0000 (irq = 80, base_baud = 1500000) is a 16550A
[    1.712380] random: fast init done
[    1.712430] random: crng init done
[    1.713488] rockchip-vop2 fdd90000.vop: Adding to iommu group 14
[    1.719102] rockchip-vop2 fdd90000.vop: failed to get hdmi1_phy_pll: -517
[    1.719133] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[    1.719140] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[    1.719158] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[    1.719165] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[    1.719322] [drm] unsupported AFBC format[3231564e]
[    1.719352] [drm] failed to init overlay plane Cluster0-win1
[    1.719384] [drm] failed to init overlay plane Cluster1-win1
[    1.719413] [drm] failed to init overlay plane Cluster2-win1
[    1.719456] [drm] failed to init overlay plane Cluster3-win1
[    1.728158] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc010f6ce48)
[    1.728705] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[    1.728810] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc010f74b40)
[    1.728965] rockchip-drm display-subsystem: bound fde50000.dp (ops 0xffffffc010f76d00)
[    1.729372] rockchip-drm display-subsystem: failed to parse loader memory
[    1.839697] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    1.840154] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[    1.845237] brd: module loaded
[    1.847889] loop: module loaded
[    1.848055] zram: Added device: zram0
[    1.848176] lkdtm: No crash points registered, enable through debugfs
[    1.848275] system_heap: orders[0] = 6
[    1.848280] system_heap: orders[1] = 4
[    1.848283] system_heap: orders[2] = 0
[    1.849171] ahci fe210000.sata: supply ahci not found, using dummy regulator
[    1.849239] ahci fe210000.sata: supply phy not found, using dummy regulator
[    1.849298] ahci fe210000.sata: supply target not found, using dummy regulator
[    1.849363] ahci fe210000.sata: forcing port_map 0x0 -> 0x1
[    1.849384] ahci fe210000.sata: AHCI 0001.0300 32 slots 1 ports 6 Gbps 0x1 impl platform mode
[    1.849391] ahci fe210000.sata: flags: ncq sntf pm led clo only pmp fbs pio slum part ccc apst 
[    1.849399] ahci fe210000.sata: port 0 can do FBS, forcing FBSCP
[    1.850000] scsi host0: ahci
[    1.850133] ata1: SATA max UDMA/133 mmio [mem 0xfe210000-0xfe210fff] port 0x100 irq 69
[    1.851038] rockchip-spi feb20000.spi: no high_speed pinctrl state
[    1.852200] rk806 spi2.0: chip id: RK806,ver:0x2, 0x0
[    1.852332] rk806 spi2.0: ON: 0x40 OFF:0x80
[    1.854130] vdd_gpu_s0: supplied by vcc5v0_sys
[    1.854604] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[    1.854929] vdd_log_s0: supplied by vcc5v0_sys
[    1.855334] vdd_vdenc_s0: supplied by vcc5v0_sys
[    1.855826] vdd_ddr_s0: supplied by vcc5v0_sys
[    1.856081] vdd2_ddr_s3: supplied by vcc5v0_sys
[    1.856531] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[    1.857244] vcc_3v3_s3: supplied by vcc5v0_sys
[    1.858027] vddq_ddr_s0: supplied by vcc5v0_sys
[    1.859139] vcc_1v8_s3: supplied by vcc5v0_sys
[    1.860130] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3
[    1.861138] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[    1.861966] avdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[    1.862824] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[    1.863961] nldo5_s0: supplied by vcc_1v1_nldo_s3
[    1.864616] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    1.865673] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    1.866547] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[    1.867384] vcc_3v3_s0: supplied by vcc5v0_sys
[    1.868219] vccio_sd_s0: supplied by vcc5v0_sys
[    1.869095] pldo6_s3: supplied by vcc5v0_sys
[    1.869984] rk806 spi2.0: no sleep-setting state
[    1.870015] rk806 spi2.0: no reset-setting pinctrl state
[    1.870029] rk806 spi2.0: no dvs-setting pinctrl state
[    1.873996] libphy: Fixed MDIO Bus: probed
[    1.876912] rk_gmac-dwmac fe1b0000.ethernet: IRQ eth_lpi not found
[    1.877432] rk_gmac-dwmac fe1b0000.ethernet: no regulator found
[    1.877450] rk_gmac-dwmac fe1b0000.ethernet: clock input or output? (output).
[    1.877466] rk_gmac-dwmac fe1b0000.ethernet: TX delay(0x43).
[    1.877481] rk_gmac-dwmac fe1b0000.ethernet: Can not read property: rx_delay.
[    1.877494] rk_gmac-dwmac fe1b0000.ethernet: set rx_delay to 0xffffffff
[    1.877547] rk_gmac-dwmac fe1b0000.ethernet: integrated PHY? (no).
[    1.877567] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_rx
[    1.877584] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock mac_clk_tx
[    1.877628] rk_gmac-dwmac fe1b0000.ethernet: cannot get clock clk_mac_speed
[    1.877917] rk_gmac-dwmac fe1b0000.ethernet: init for RGMII_RXID
[    1.878125] rk_gmac-dwmac fe1b0000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    1.878145] rk_gmac-dwmac fe1b0000.ethernet:     DWMAC4/5
[    1.878161] rk_gmac-dwmac fe1b0000.ethernet: DMA HW capability register supported
[    1.878174] rk_gmac-dwmac fe1b0000.ethernet: RX Checksum Offload Engine supported
[    1.878187] rk_gmac-dwmac fe1b0000.ethernet: TX Checksum insertion supported
[    1.878200] rk_gmac-dwmac fe1b0000.ethernet: Wake-Up On Lan supported
[    1.878279] rk_gmac-dwmac fe1b0000.ethernet: TSO supported
[    1.878294] rk_gmac-dwmac fe1b0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    1.878310] rk_gmac-dwmac fe1b0000.ethernet: Enabled Flow TC (entries=2)
[    1.878322] rk_gmac-dwmac fe1b0000.ethernet: TSO feature enabled
[    1.878335] rk_gmac-dwmac fe1b0000.ethernet: SPH feature enabled
[    1.878349] rk_gmac-dwmac fe1b0000.ethernet: Using 32 bits DMA width
[    1.897276] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    1.913941] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    1.922808] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    1.939475] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    1.947711] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    1.947753] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11 for vp0 dclk: 148500000
[    1.947924] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] dclk_out0 div: 0 dclk_core0 div: 2
[    1.947938] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000
[    1.948271] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy pll locked!
[    1.948279] rockchip-vop2 fdd90000.vop: [drm:vop2_crtc_atomic_enable] set dclk_vop0 to 148500000, get 148500000
[    1.948299] dwhdmi-rockchip fde80000.hdmi: final tmdsclk = 148500000
[    1.948306] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: bus_width:0x16a8c8,bit_rate:1485000
[    1.948488] rockchip-hdptx-phy-hdmi fed60000.hdmiphy: hdptx phy lane locked!
[    1.948510] dwhdmi-rockchip fde80000.hdmi: don't use dsc mode
[    1.949475] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    1.952791] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[    1.952857] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[    1.952864] pci_bus 0003:30: root bus resource [bus 30-3f]
[    1.952869] pci_bus 0003:30: root bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[    1.952876] pci_bus 0003:30: root bus resource [io  0x0000-0xfffff] (bus address [0xf3100000-0xf31fffff])
[    1.952880] pci_bus 0003:30: root bus resource [mem 0xf3200000-0xf3ffffff]
[    1.952885] pci_bus 0003:30: root bus resource [mem 0x9c0000000-0x9ffffffff pref]
[    1.952910] pci 0003:30:00.0: [1d87:3588] type 01 class 0x060400
[    1.952928] pci 0003:30:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    1.952973] pci 0003:30:00.0: supports D1 D2
[    1.952977] pci 0003:30:00.0: PME# supported from D0 D1 D3hot
[    1.956234] pci 0003:30:00.0: Primary bus is hard wired to 0
[    1.956240] pci 0003:30:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[    1.956398] pci 0003:31:00.0: [10ec:8168] type 00 class 0x020000
[    1.956463] pci 0003:31:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[    1.956469] pci 0003:31:00.0: reg 0x10: [io  size 0x0100]
[    1.956549] pci 0003:31:00.0: reg 0x18: [mem 0x00000000-0x00000fff 64bit]
[    1.956602] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    1.957016] pci 0003:31:00.0: supports D1 D2
[    1.957021] pci 0003:31:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    1.966127] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1
[    1.969236] pci_bus 0003:31: busn_res: [bus 31-3f] end is updated to 31
[    1.969255] pci 0003:30:00.0: BAR 8: assigned [mem 0xf3200000-0xf32fffff]
[    1.969262] pci 0003:30:00.0: BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[    1.969268] pci 0003:30:00.0: BAR 7: assigned [io  0x1000-0x1fff]
[    1.969275] pci 0003:31:00.0: BAR 4: assigned [mem 0xf3200000-0xf3203fff 64bit]
[    1.969319] pci 0003:31:00.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[    1.969361] pci 0003:31:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    1.969378] pci 0003:30:00.0: PCI bridge to [bus 31]
[    1.969383] pci 0003:30:00.0:   bridge window [io  0x1000-0x1fff]
[    1.969389] pci 0003:30:00.0:   bridge window [mem 0xf3200000-0xf32fffff]
[    1.970600] pcieport 0003:30:00.0: PME: Signaling with IRQ 120
[    1.970717] r8168 Gigabit Ethernet driver 8.049.02-NAPI loaded
[    1.970744] r8168 0003:31:00.0: enabling device (0000 -> 0003)
[    1.976140] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    1.986940] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[    1.986950] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Random ether addr b6:6b:fd:06:56:6a
[    1.987237] r8168: This product is covered by one or more of the following patents: US6,570,884, US6,115,776, and US6,327,625.
[    1.989283] r8168  Copyright (C) 2021 Realtek NIC software team <nicfae@realtek.com> 
[    1.989283]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>. 
[    1.989283]  This is free software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>. 
[    1.992802] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x1
[    2.002805] rk-pcie fe170000.pcie: PCIe Linking... LTSSM is 0x3
[    2.009462] libphy: stmmac: probed
[    2.013378] usbcore: registered new interface driver rtl8150
[    2.013462] usbcore: registered new interface driver r8152
[    2.019467] rk-pcie fe150000.pcie: PCIe Linking... LTSSM is 0x0
[    2.028853] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.028891] ehci-pci: EHCI PCI platform driver
[    2.028960] ehci-platform: EHCI generic platform driver
[    2.031735] ehci-platform fc800000.usb: EHCI Host Controller
[    2.031974] ehci-platform fc800000.usb: new USB bus registered, assigned bus number 1
[    2.032105] ehci-platform fc800000.usb: irq 19, io mem 0xfc800000
[    2.042818] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[    2.043114] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.043132] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.043146] usb usb1: Product: EHCI Host Controller
[    2.043160] usb usb1: Manufacturer: Linux 5.10.66 ehci_hcd
[    2.043172] usb usb1: SerialNumber: fc800000.usb
[    2.043757] hub 1-0:1.0: USB hub found
[    2.043818] hub 1-0:1.0: 1 port detected
[    2.046938] ehci-platform fc880000.usb: EHCI Host Controller
[    2.047170] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[    2.047311] ehci-platform fc880000.usb: irq 21, io mem 0xfc880000
[    2.059487] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[    2.059749] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.059768] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.059782] usb usb2: Product: EHCI Host Controller
[    2.059796] usb usb2: Manufacturer: Linux 5.10.66 ehci_hcd
[    2.059809] usb usb2: SerialNumber: fc880000.usb
[    2.060412] hub 2-0:1.0: USB hub found
[    2.060471] hub 2-0:1.0: 1 port detected
[    2.061454] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.061484] ohci-platform: OHCI generic platform driver
[    2.061866] ohci-platform fc840000.usb: Generic Platform OHCI controller
[    2.062088] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[    2.062216] ohci-platform fc840000.usb: irq 20, io mem 0xfc840000
[    2.120352] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.120380] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.120395] usb usb3: Product: Generic Platform OHCI controller
[    2.120408] usb usb3: Manufacturer: Linux 5.10.66 ohci_hcd
[    2.120421] usb usb3: SerialNumber: fc840000.usb
[    2.120976] hub 3-0:1.0: USB hub found
[    2.121037] hub 3-0:1.0: 1 port detected
[    2.121813] ohci-platform fc8c0000.usb: Generic Platform OHCI controller
[    2.122035] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[    2.122169] ohci-platform fc8c0000.usb: irq 22, io mem 0xfc8c0000
[    2.152775] dwhdmi-rockchip fde80000.hdmi: dw hdmi qp use tmds mode
[    2.162647] ata1: SATA link down (SStatus 0 SControl 300)
[    2.180362] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.180393] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.180408] usb usb4: Product: Generic Platform OHCI controller
[    2.180421] usb usb4: Manufacturer: Linux 5.10.66 ohci_hcd
[    2.180434] usb usb4: SerialNumber: fc8c0000.usb
[    2.180986] hub 4-0:1.0: USB hub found
[    2.181040] hub 4-0:1.0: 1 port detected
[    2.183531] phy phy-fd5d4000.syscon:usb2-phy@4000.3: illegal mode
[    2.183557] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[    2.183781] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 5
[    2.183965] xhci-hcd xhci-hcd.6.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000000002010010
[    2.184024] xhci-hcd xhci-hcd.6.auto: irq 123, io mem 0xfc400000
[    2.184419] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.184437] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.184451] usb usb5: Product: xHCI Host Controller
[    2.184464] usb usb5: Manufacturer: Linux 5.10.66 xhci-hcd
[    2.184478] usb usb5: SerialNumber: xhci-hcd.6.auto
[    2.185033] hub 5-0:1.0: USB hub found
[    2.185087] hub 5-0:1.0: 1 port detected
[    2.185523] xhci-hcd xhci-hcd.6.auto: xHCI Host Controller
[    2.185723] xhci-hcd xhci-hcd.6.auto: new USB bus registered, assigned bus number 6
[    2.185750] xhci-hcd xhci-hcd.6.auto: Host supports USB 3.0 SuperSpeed
[    2.185849] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.186018] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.186035] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.186050] usb usb6: Product: xHCI Host Controller
[    2.186063] usb usb6: Manufacturer: Linux 5.10.66 xhci-hcd
[    2.186076] usb usb6: SerialNumber: xhci-hcd.6.auto
[    2.186666] hub 6-0:1.0: USB hub found
[    2.186725] hub 6-0:1.0: 1 port detected
[    2.187304] usbcore: registered new interface driver cdc_acm
[    2.187319] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.187537] usbcore: registered new interface driver uas
[    2.187715] usbcore: registered new interface driver usb-storage
[    2.187834] usbcore: registered new interface driver usbserial_generic
[    2.187871] usbserial: USB Serial support registered for generic
[    2.187931] usbcore: registered new interface driver cp210x
[    2.187964] usbserial: USB Serial support registered for cp210x
[    2.188076] usbcore: registered new interface driver ftdi_sio
[    2.188111] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.188405] usbcore: registered new interface driver keyspan
[    2.188448] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    2.188482] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    2.188516] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    2.188557] usbserial: USB Serial support registered for Keyspan 4 port adapter
[    2.188626] usbcore: registered new interface driver option
[    2.188660] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.189082] usbcore: registered new interface driver oti6858
[    2.189119] usbserial: USB Serial support registered for oti6858
[    2.189180] usbcore: registered new interface driver pl2303
[    2.189223] usbserial: USB Serial support registered for pl2303
[    2.189304] usbcore: registered new interface driver qcserial
[    2.189339] usbserial: USB Serial support registered for Qualcomm USB modem
[    2.189472] usbcore: registered new interface driver sierra
[    2.189512] usbserial: USB Serial support registered for Sierra USB modem
[    2.190887] usbcore: registered new interface driver usbtouchscreen
[    2.192868] input: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.4.auto/input/input0
[    2.193623] i2c /dev entries driver
[    2.198456] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[    2.207929] vdd_cpu_big1_s0: supplied by vcc5v0_sys
[    2.216565] vdd_npu_s0: supplied by vcc5v0_sys
[    2.227738] rtc-hym8563 2-0051: rtc information is valid
[    2.230593] rtc-hym8563 2-0051: registered as rtc0
[    2.230940] rtc-hym8563 2-0051: setting system clock to 2023-01-09T03:22:34 UTC (1673234554)
[    2.236421] usbcore: registered new interface driver uvcvideo
[    2.236433] USB Video Class driver (1.1.1)
[    2.237493] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property
[    2.237972] rockchip-thermal fec00000.tsadc: tsadc is probed successfully!
[    2.238311] Bluetooth: HCI UART driver ver 2.3
[    2.238317] Bluetooth: HCI UART protocol H4 registered
[    2.238321] Bluetooth: HCI UART protocol ATH3K registered
[    2.238347] usbcore: registered new interface driver bfusb
[    2.238370] usbcore: registered new interface driver btusb
[    2.238455] cpu cpu0: Failed to get cpu_leakage
[    2.238633] cpu cpu4: Failed to get cpu_leakage
[    2.239675] cpu cpu6: Failed to get cpu_leakage
[    2.241220] cpu cpu0: avs=0
[    2.241778] cpu cpu4: avs=0
[    2.242328] cpu cpu6: avs=0
[    2.242498] cpu cpu0: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.242759] cpu cpu4: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.252606] cpu cpu6: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.265104] sdhci: Secure Digital Host Controller Interface driver
[    2.265115] sdhci: Copyright(c) Pierre Ossman
[    2.265120] Synopsys Designware Multimedia Card Interface Driver
[    2.265470] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.266382] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[    2.266411] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.266793] hid: raw HID events driver (C) Jiri Kosina
[    2.266948] usbcore: registered new interface driver usbhid
[    2.266953] usbhid: USB HID core driver
[    2.272181] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    2.273611] usbcore: registered new interface driver snd-usb-audio
[    2.284039] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card0/input1
[    2.284600] input: headset-keys as /devices/platform/es8388-sound/input/input2
[    2.294137] ES8323 7-0011: ASoC: error at soc_component_write_no_lock on ES8323.7-0011: -5
[    2.297424] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[    2.329747] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    2.330819] mmcblk0: mmc0:0001 TX2932 29.1 GiB 
[    2.331253] mmcblk0boot0: mmc0:0001 TX2932 partition 1 4.00 MiB
[    2.331642] mmcblk0boot1: mmc0:0001 TX2932 partition 2 4.00 MiB
[    2.331958] mmcblk0rpmb: mmc0:0001 TX2932 partition 3 4.00 MiB, chardev (237:0)
[    2.334209]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    2.345378] input: rockchip,es8388 Headset as /devices/platform/es8388-sound/sound/card1/input3
[    2.347651] Initializing XFRM netlink socket
[    2.348593] NET: Registered protocol family 10
[    2.350347] Segment Routing with IPv6
[    2.350467] NET: Registered protocol family 17
[    2.350498] NET: Registered protocol family 15
[    2.350641] Bluetooth: RFCOMM socket layer initialized
[    2.350672] Bluetooth: RFCOMM ver 1.11
[    2.350694] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.350712] Bluetooth: HIDP socket layer initialized
[    2.350790] [BT_RFKILL]: Enter rfkill_rk_init
[    2.350803] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    2.351565] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    2.351619] [WLAN_RFKILL]: can't find rockchip,grf property
[    2.351635] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6255
[    2.351649] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    2.351663] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    2.351707] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 105 flags = 0.
[    2.351763] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 103, flags = 0.
[    2.351790] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    2.351803] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    2.351818] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.351831] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    2.352897] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 100.
[    2.352950] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 102.
[    2.352982] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 97.
[    2.353012] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 96.
[    2.353416] [BT_RFKILL]: Request irq for bt wakeup host
[    2.353535] [BT_RFKILL]: ** disable irq
[    2.353694] [BT_RFKILL]: bt_default device registered.
[    2.353831] Key type dns_resolver registered
[    2.355069] Loading compiled-in X.509 certificates
[    2.356479] pstore: Using crash dump compression: deflate
[    2.356987] rga3_core0 fdb60000.rga: Adding to iommu group 2
[    2.357341] rga: rga3_core0_irq, irq = 32, match scheduler
[    2.357666] rga: Driver loaded successfully rga[3] ver:3.0.76831
[    2.357696] rga: probe successfully
[    2.358156] rga3_core1 fdb70000.rga: Adding to iommu group 3
[    2.358386] rga: rga3_core1_irq, irq = 33, match scheduler
[    2.358661] rga: Driver loaded successfully rga[3] ver:3.0.76831
[    2.358684] rga: probe successfully
[    2.359080] rga: rga2_irq, irq = 34, match scheduler
[    2.359350] rga: Driver loaded successfully rga[3] ver:3.2.63318
[    2.359365] rga: probe successfully
[    2.360478] rga: Module initialized. v1.2.0
[    2.372051] vendor storage:20190527 ret = 0
[    2.395003] mali fb000000.gpu: Kernel DDK version g10p0-01eac0
[    2.395755] mali fb000000.gpu: Failed to get gpu_leakage
[    2.395981] vcc_3v3_sd_s0: supplied by vcc_3v3_s3
[    2.396804] pcie20_avdd0v85: supplied by vdd_0v85_s0
[    2.397272] mali fb000000.gpu: avs=0
[    2.397824] pcie20_avdd1v8: supplied by avcc_1v8_s0
[    2.398748] pcie30_avdd0v75: supplied by avdd_0v75_s0
[    2.399163] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 132; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[    2.399710] pcie30_avdd1v8: supplied by avcc_1v8_s0
[    2.399818] mali fb000000.gpu: r0p0 status 5 is unknown; treating as r0p0 status 0
[    2.399864] mali fb000000.gpu: GPU identified as 0x7 arch 10.8.6 r0p0 status 0
[    2.400096] mali fb000000.gpu: No priority control manager is configured
[    2.400125] mali fb000000.gpu: No memory group manager is configured
[    2.400192] mali fb000000.gpu: Protected memory allocator not available
[    2.400787] vcc3v3_lcd0_n: supplied by vcc_1v8_s0
[    2.402026] mali fb000000.gpu: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.403625] mali fb000000.gpu: Couldn't find power_model DT node matching 'arm,mali-simple-power-model'
[    2.403673] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.static-coefficient = 1*[0]
[    2.404190] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.dynamic-coefficient = 1*[0]
[    2.404734] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.ts = 4*[0]
[    2.405240] mali fb000000.gpu: Error -22, no DT entry: mali-simple-power-model.thermal-zone = ''
[    2.408846] input: adc-keys as /devices/platform/adc-keys/input/input4
[    2.412731] mali fb000000.gpu: Using configured power model mali-lodx-power-model, and fallback mali-simple-power-model
[    2.413989] mali fb000000.gpu: Probed as mali0
[    2.419556] RKNPU fdab0000.npu: Adding to iommu group 0
[    2.419813] RKNPU fdab0000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[    2.420277] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdab0000-0xfdabffff]
[    2.420294] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdac0000-0xfdacffff]
[    2.420306] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdad0000-0xfdadffff]
[    2.420496] [drm] Initialized rknpu 0.6.4 20211227 for fdab0000.npu on minor 1
[    2.421409] RKNPU fdab0000.npu: Failed to get npu_leakage
[    2.421948] RKNPU fdab0000.npu: avs=0
[    2.422042] RKNPU fdab0000.npu: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    2.424504] RKNPU fdab0000.npu: failed to find power_model node
[    2.424510] RKNPU fdab0000.npu: RKNPU: failed to initialize power model
[    2.424515] RKNPU fdab0000.npu: RKNPU: failed to get dynamic-coefficient
[    2.424768] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.427092] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.428004] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.428018] cfg80211: failed to load regulatory.db
[    2.428454] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[    2.429528] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 405; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '20:47:44', on 'Jan  8 2023'.
[    2.429957] Mali: 
[    2.429961] Mali device driver loaded
[    2.429977] ALSA device list:
[    2.429986]   #0: rockchip-hdmi0
[    2.429993]   #1: rockchip,es8388
[    2.430001]   #2: rockchip,hdmiin
[    2.435626] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    2.435659] VFS: Mounted root (ext4 filesystem) on device 179:6.
[    2.436890] devtmpfs: mounted
[    2.439667] Freeing unused kernel memory: 6336K
[    2.459460] rk-pcie fe170000.pcie: PCIe Link up, LTSSM is 0x30011
[    2.459560] Run /sbin/init as init process
[    2.459639] rk-pcie fe170000.pcie: PCI host bridge to bus 0002:20
[    2.459652] pci_bus 0002:20: root bus resource [bus 20-2f]
[    2.459663] pci_bus 0002:20: root bus resource [??? 0xf2000000-0xf20fffff flags 0x0]
[    2.459673] pci_bus 0002:20: root bus resource [io  0x100000-0x1fffff] (bus address [0xf2100000-0xf21fffff])
[    2.459682] pci_bus 0002:20: root bus resource [mem 0xf2200000-0xf2ffffff]
[    2.459691] pci_bus 0002:20: root bus resource [mem 0x980000000-0x9bfffffff pref]
[    2.459730] pci 0002:20:00.0: [1d87:3588] type 01 class 0x060400
[    2.459756] pci 0002:20:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    2.459820] pci 0002:20:00.0: supports D1 D2
[    2.459829] pci 0002:20:00.0: PME# supported from D0 D1 D3hot
[    2.466161] pci 0002:20:00.0: Primary bus is hard wired to 0
[    2.466173] pci 0002:20:00.0: bridge configuration invalid ([bus 01-ff]), reconfiguring
[    2.466388] pci 0002:21:00.0: [14e4:449d] type 00 class 0x028000
[    2.466480] pci 0002:21:00.0: reg 0x10: [mem 0x00000000-0x0000ffff 64bit]
[    2.466536] pci 0002:21:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]
[    2.467047] pci 0002:21:00.0: supports D1 D2
[    2.467056] pci 0002:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    2.480863] pci_bus 0002:21: busn_res: [bus 21-2f] end is updated to 21
[    2.480899] pci 0002:20:00.0: BAR 8: assigned [mem 0xf2200000-0xf27fffff]
[    2.480910] pci 0002:20:00.0: BAR 6: assigned [mem 0xf2800000-0xf280ffff pref]
[    2.480921] pci 0002:21:00.0: BAR 2: assigned [mem 0xf2400000-0xf27fffff 64bit]
[    2.480966] pci 0002:21:00.0: BAR 0: assigned [mem 0xf2200000-0xf220ffff 64bit]
[    2.481009] pci 0002:20:00.0: PCI bridge to [bus 21]
[    2.481018] pci 0002:20:00.0:   bridge window [mem 0xf2200000-0xf27fffff]
[    2.482928] pcieport 0002:20:00.0: PME: Signaling with IRQ 137
[    2.502815] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
Starting syslogd: OK
Starting klogd: OK
Running sysctl: OK
/usr/bin/modetest
[    2.619492] usb 4-1: new full-speed USB device number 2 using ohci-platform
[    2.694071] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    2.821414] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    2.841544] usb 4-1: New USB device found, idVendor=222a, idProduct=0001, bcdDevice= 0.00
[    2.841573] usb 4-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.841586] usb 4-1: Product: ILITEK-TP
[    2.841597] usb 4-1: Manufacturer: ILITEK
[    2.841608] usb 4-1: SerialNumber: V06.00.00.00
[    2.854786] input: ILITEK ILITEK-TP as /devices/platform/fc8c0000.usb/usb4/4-1/4-1:1.0/0003:222A:0001.0001/input/input5
[    2.855421] hid-multitouch 0003:222A:0001.0001: input,hidraw0: USB HID v1.10 Device [ILITEK ILITEK-TP] on usb-fc8c0000.usb-1/input0
[    2.876570] input: ILITEK ILITEK-TP Mouse as /devices/platform/fc8c0000.usb/usb4/4-1/4-1:1.1/0003:222A:0001.0002/input/input6
[    2.877376] hid-generic 0003:222A:0001.0002: input,hiddev96,hidraw1: USB HID v1.10 Mouse [ILITEK ILITEK-TP] on usb-fc8c0000.usb-1/input1
[    2.955834] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.087294] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.222691] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.351440] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.490208] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.621512] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.753380] dwhdmi-rockchip fde80000.hdmi: use tmds mode
Populating /dev using udev: [    3.780361] udevd[270]: starting version 3.2.7
[    3.782953] udevd[270]: specified group 'kvm' unknown
[    3.792918] udevd[271]: starting eudev-3.2.7
[    3.883548] r8168 0003:31:00.0 enP3p49s0: renamed from eth0
done
Initializing random number generator... done.
Will now mount all partitions in /etc/fstab
Note: Create /.skip_fsck to skip fsck
 - The check might take a while if didn't shutdown properly!
Handling rootfs: /dev/mmcblk0p6 / ext2 rw,noauto 1
Checking /dev/mmcblk0p6(ext2)
[    4.240373] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
e2fsck 1.43.9 (8-Feb-2018)
/dev/mmcblk0p6: clean, 7638/49152 files, 125860/193269 blocks
Resizing /dev/mmcblk0p6(ext2)
[    4.261335] udevd[271]: specified group 'kvm' unknown
[    4.273881] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
resize2fs 1.43.9 (8-Feb-2018)
[    4.288431] EXT4-fs (mmcblk0p6): resizing filesystem from 193269 to 3670016 blocks
[    4.312381] EXT4-fs (mmcblk0p6): resized filesystem to 3670016
Filesystem at /dev/mmcblk0p6 is mounted on /tmp/tmp.WADUNMjgfG; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 1
The filesystem on /dev/mmcblk0p6 is now 3670016 (4k) blocks long.

tune2fs 1.43.9 (8-Feb-2018)
Handling misc: /dev/mmcblk0p2 /misc emmc defaults 0
Unsupported file system emmc for /dev/mmcblk0p2
Handling oem: /dev/mmcblk0p7 /oem ext2 defaults 2
Checking /dev/mmcblk0p7(ext2)
e2fsck 1.43.9 (8-Feb-2018)
/dev/mmcblk0p7: clean, 18/23296 files, 15325/131072 blocks
Resizing /dev/mmcblk0p7(ext2)
[    4.558646] EXT4-fs (mmcblk0p7): mounting ext2 file system using the ext4 subsystem
[    4.562482] EXT4-fs (mmcblk0p7): mounted filesystem without journal. Opts: (null)
[    4.562525] ext2 filesystem being mounted at /tmp/tmp.EzwcC81ieo supports timestamps until 2038 (0x7fffffff)
resize2fs 1.43.9 (8-Feb-2018)
The filesystem is already 131072 (1k) blocks long.  Nothing to do!

tune2fs 1.43.9 (8-Feb-2018)
Mounting /dev/mmcblk0p7(ext2) on /oem 
[    4.580825] EXT4-fs (mmcblk0p7): mounting ext2 file system using the ext4 subsystem
[    4.582218] EXT4-fs (mmcblk0p7): mounted filesystem without journal. Opts: (null)
[    4.582250] ext2 filesystem being mounted at /oem supports timestamps until 2038 (0x7fffffff)
Handling userdata: /dev/mmcblk0p8 /userdata ext2 defaults 2
[    4.646135] rk-pcie fe150000.pcie: PCIe Link Fail
[    4.646162] rk-pcie fe150000.pcie: failed to initialize host
Checking /dev/mmcblk0p8(ext2)
e2fsck 1.43.9 (8-Feb-2018)
/dev/mmcblk0p8 was not cleanly unmounted, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
Free blocks count wrong (15058995, counted=15058988).
Fix? yes

Free inodes count wrong (956917, counted=956914).
Fix? yes


/dev/mmcblk0p8: ***** FILE SYSTEM WAS MODIFIED *****
/dev/mmcblk0p8: 14/956928 files (0.0% non-contiguous), 247732/15306720 blocks
Resizing /dev/mmcblk0p8(ext2)
[    8.629850] EXT4-fs (mmcblk0p8): mounting ext2 file system using the ext4 subsystem
[    8.643575] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: (null)
resize2fs 1.43.9 (8-Feb-2018)
The filesystem is already 15306720 (1k) blocks long.  Nothing to do!tune2fs 1.43.9 (8-Feb-2018)
Mounting /dev/mmcblk0p8(ext2) on /userdata 
[    8.677097] EXT4-fs (mmcblk0p8): mounting ext2 file system using the ext4 subsystem
[    8.686524] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: (null)
Log saved to /tmp/mountall.log
Starting system message bus: done
/etc/init.d/S36load_wifi_modules: line 6: can't create /sys/class/rfkill/rfkill1/state: nonexistent directory
wpa_supplicant.conf init
wpa_supplicant.conf init
[    8.831811] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.10.361.11 (wlan=r892223-20210630-1)
[    8.831811] drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd compiled on Jan  8 2023 at 20:47:17
[    8.831811] 
[    8.831845] [dhd] ======== dhd_wlan_init_plat_data ========
[    8.831854] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[    8.831916] [dhd] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=138, oob_irq_flags=0x411
[    8.831926] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[    8.831933] [dhd] dhd_wifi_platform_load: Enter
[    8.832084] [dhd] dhdpcie_pci_probe : no mutex held. set lock
[    8.832096] [dhd] PCI_PROBE:  bus 21, slot 0,vendor 14E4, device 449D(good PCI location)
[    8.832106] [dhd] dhdpcie_init: found adapter info 'DHD generic adapter'
[    8.832189] pcieh 0002:21:00.0: enabling device (0000 -> 0002)
[    8.832591] [dhd] Disable CTO
[    8.833576] [dhd] ******** Perform FLR ********
[    8.909616] [dhd] read_config: reg=0x88 read val=0xb080
[    8.909770] [dhd] read_config: reg=0x88 read val=0xb080
[    8.909889] [dhd] read_config: reg=0x88 read val=0xb080
[    8.909985] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910053] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910121] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910190] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910258] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910326] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910394] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910462] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910530] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910598] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910666] [dhd] read_config: reg=0x88 read val=0xb080
[    8.910733] [dhd] read_config: reg=0x88 read val=0x8080
[    8.911161] [dhd] ******** FLR Succedeed ********
[    8.911480] [dhd] DHD: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[    8.911488] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x0
[    8.911538] [dhd] dhd_conf_set_chiprev : devid=0x449d, chip=0xaae8, chiprev=2, svid=0x14e4, ssid=0xaae8
[    8.913760] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 1025
[    8.913807] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 4097
[    8.914045] [dhd] dhd_pktid_map_init:2458: pktid_audit init succeeded 36865
[    8.915272] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    8.915284] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    8.915292] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    8.915693] [dhd] dhd_attach(): thread:dhd_watchdog_thread:2a6 started
[    8.915710] [dhd] dhd_deferred_work_init: work queue initialized
[    8.915719] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[    8.915736] [dhd] dhd_cpumasks_init CPU masks primary(big)=0x0 secondary(little)=0xfe
[    8.917048] [dhd] dhd_get_memdump_info: MEMDUMP ENABLED = 3
[    8.917062] [dhd] dhdpcie_bus_attach: making DHD_BUS_DOWN
[    8.917074] [dhd] dhdpcie_init: rc_dev from dev->bus->self (1d87:3588) is 000000009ed245f9
[    8.917214] [dhd] dhdpcie_init: rc_ep_aspm_cap: 1 rc_ep_l1ss_cap: 1
[    8.917247] [dhd] dhdpcie_request_irq: INTx enabled
[    8.917293] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[    8.917307] [dhd] Dongle Host Driver, version 101.10.361.11 (wlan=r892223-20210630-1)
[    8.917307] drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd compiled on Jan  8 2023 at 20:47:17
[    8.917307] 
[    8.917753] [dhd] Register interface [wlan0]  MAC: 00:90:4c:11:a0:1b
[    8.917753] 
[    8.917813] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 3 -> mode 0
[    8.917836] [dhd][wlan0] wl_android_wifi_off : in g_wifi_on=1, on_failure=1
[    8.917843] [dhd] dhd_rtt_deinit: ENTER
[    8.917851] [dhd] dhd_rtt_deinit: EXIT, err = 0
[    8.917858] [dhd] dhd_bus_devreset: == Power OFF ==
[    8.917876] [dhd] dhdpcie_oob_intr_unregister: irq is not registered
[    8.917884] [dhd] dhd_dpc_kill: tasklet disabled
[    8.928779] [dhd] dhd_bus_devreset:  WLAN OFF Done
[    8.928822] [dhd] wifi_platform_set_power = 0, delay: 0 msec
[    8.928859] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[    8.928876] [WLAN_RFKILL]: rockchip_wifi_power: 0
[    8.928886] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    8.928894] wifi power off
[    9.032892] [WLAN_RFKILL]: wifi shut off power [GPIO105-0]
[    9.032984] [dhd][wlan0] wl_android_wifi_off : out
[    9.033001] [dhd] dhdpcie_pci_probe : the lock is released.
[    9.033193] [dhd] _dhd_module_init: Exit err=0
Starting network: [    9.055756] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    9.055913] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
OK
Starting dhcpcd...
dev: loaded udev
[    9.084452] [dhd] WEXT-ERROR) wl_iw_get_essid : Error getting the SSID -36
no interfaces have a carrier
 orked to background, child pid 716[   
 9.169885] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    9.171956] enP3p49s0: 0xffffffc0127bd000, b6:6b:fd:06:56:6a, IRQ 121
Starting ntpd: OK
Starting dropbear sshd: [    9.225268] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    9.225371] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    9.252833] rk_gmac-dwmac fe1b0000.ethernet eth1: PHY [stmmac-0:01] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[    9.255661] dwmac4: Master AXI performs any burst length
[    9.255696] rk_gmac-dwmac fe1b0000.ethernet eth1: No Safety Features support found
[    9.255716] rk_gmac-dwmac fe1b0000.ethernet eth1: IEEE 1588-2008 Advanced Timestamp supported
[    9.255940] rk_gmac-dwmac fe1b0000.ethernet eth1: registered PTP clock
[    9.256712] rk_gmac-dwmac fe1b0000.ethernet eth1: configuring for phy/rgmii-rxid link mode
[    9.283279] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[    9.283434] [dhd][wlan0] dhd_open : Enter
[    9.283450] [dhd] Dongle Host Driver, version 101.10.361.11 (wlan=r892223-20210630-1)
[    9.283450] drivers/net/wireless/rockchip_wlan/rkwifi/bcmdhd compiled on Jan  8 2023 at 20:47:17
[    9.283450] 
[    9.283463] [dhd] dhd_open : no mutex held. set lock
[    9.283477] [dhd] dhd_open: ######### called for ifidx=0 #########
[    9.283496] [dhd][wlan0] wl_android_wifi_on : in g_wifi_on=0
[    9.283509] [dhd] wifi_platform_set_power = 1, delay: 200 msec
[    9.283522] [dhd] ======== PULL WL_REG_ON(-1) HIGH! ========
[    9.283533] [WLAN_RFKILL]: rockchip_wifi_power: 1
[    9.283546] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    9.389557] [WLAN_RFKILL]: wifi turn on power [GPIO105-1]
[    9.696570] [dhd] dhd_bus_devreset: == Power ON ==
[    9.696650] [dhd] dhd_bus_devreset: dhdpcie_bus_start_host_dev OK
[    9.697353] [dhd] Disable CTO
[    9.698366] [dhd] DHD: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[    9.698420] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[    9.698466] [dhd] dhdpcie_request_irq: INTx enabled
[    9.698595] [dhd] dhd_bus_download_firmware: firmware path=/vendor/etc/firmware/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    9.698628] [dhd] dhdpcie_dump_resource: BAR0(VA): 0x000000000c4b1662, BAR0(PA): 0x00000000f2200000, SIZE: 32768
[    9.698653] [dhd] dhdpcie_dump_resource: BAR1(VA): 0x000000007f5308c2, BAR1(PA): 0x00000000f2400000, SIZE: 4194304
[    9.700294] [dhd] dhd_conf_read_config : Ignore config file /vendor/etc/firmware/config.txt
[    9.700349] [dhd] dhd_conf_set_path_params : Final fw_path=/vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    9.700370] [dhd] dhd_conf_set_path_params : Final nv_path=/vendor/etc/firmware/nvram_AP6275P.txt
[    9.700390] [dhd] dhd_conf_set_path_params : Final clm_path=/vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob
[    9.700411] [dhd] dhd_conf_set_path_params : Final conf_path=/vendor/etc/firmware/config.txt
[    9.700535] [dhd] dhdpcie_download_code_file: dhd_tcm_test_enable 0
[    9.700557] [dhd] dhdpcie_download_code_file: download firmware /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    9.700702] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (857142 bytes) open success
[    9.788470] [dhd] dhd_os_open_image1: /vendor/etc/firmware/nvram_AP6275P.txt (7335 bytes) open success
[    9.788942] [dhd] dhdpcie_download_nvram: dhd_get_download_buffer len 7335
[    9.788947] [dhd] NVRAM version:  AP6275P_NVRAM_V1.1_20200702 
[    9.788986] [dhd] dhdpcie_download_nvram: process_nvram_vars len 5860
[    9.806996] [dhd] dhdpcie_bus_write_vars: Download, Upload and compare of NVRAM succeeded.
[    9.807213] [dhd] dhd_bus_aer_config: Configure AER registers for EP
[    9.807244] [dhd] dhd_bus_aer_config: Configure AER registers for RC
[    9.887513] [dhd] ### Total time ARM OOR to Readshared pass took 80350 usec ###
[    9.887545] [dhd] dhdpcie_readshared: PCIe shared addr (0x001f8974) read took 80000 usec before dongle is ready
[    9.887903] [dhd] H2D DMA WR INDX : array size 172 = 4 * 43
[    9.887931] [dhd] D2H DMA RD INDX : array size 16 = 4 * 4
[    9.887954] [dhd] D2H DMA WR INDX : array size 16 = 4 * 4
[    9.887977] [dhd] H2D DMA RD INDX : array size 172 = 4 * 43
[    9.887993] [dhd] dhdpcie_readshared: max H2D queues 40
[    9.888005] [dhd] FW supports debug buf dest ? N 
[    9.888050] [dhd] dhd_bus_init: Enabling bus->intr_enabled
[    9.888066] [dhd] dhdpcie_oob_intr_register OOB irq=138 flags=0x1
[    9.888147] [dhd] dhdpcie_oob_intr_register: enable_irq_wake
[    9.888165] [dhd] dhd_bus_start: Initializing 43 h2drings
[    9.888235] [dhd] dhd_prot_init:3925: h2d_max_txpost = 512
[    9.888252] [dhd] dhd_prot_init:3940: MAX_RXBUFPOST = 511
[    9.888266] [dhd] ENABLING DW:0
[    9.888277] [dhd] IDMA inited
[    9.888289] [dhd] IFRM not enabled in FW !!
[    9.888301] [dhd] DAR not enabled in FW !!
[    9.888312] [dhd] Enable hostcap: EXTD TXS in txcpl
[    9.888385] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 
[    9.888411] [dhd] dhd_bus_hostready : Read PCICMD Reg: 0x00100006
[    9.888442] [dhd] dhd_bus_dump_dar_registers: dar_clk_ctrl(0xa08:0x10b0040) dar_pwr_ctrl(0xa0c:0x30000) dar_intstat(0xa10:0x0)
[    9.888460] [dhd] dhd_bus_dump_dar_registers: dar_errlog(0xa60:0x0) dar_erraddr(0xa64:0x0) dar_pcie_mbint(0xa68:0x0)
[    9.888478] [dhd] dhd_bus_hostready: Ring Hostready:1
[    9.888490] [dhd] Attach flowrings pool for 40 rings
[    9.898620] [dhd] iDMA enabled PCIEControl = 00000001
[    9.901126] [dhd] dhd_send_d2h_ringcreate ringid: 3 idx: 46 max_h2d: 43
[    9.901484] [dhd] dhd_prot_process_d2h_ring_create_complete ring create Response status = 0 ring 3, id 0xfffc
[    9.901566] [dhd] info buffer post after ring create
[    9.903344] [dhd] wlc_ver_major 12, wlc_ver_minor 1
[    9.903377] [dhd] dhd_get_memdump_info: MEMDUMP ENABLED = 3
[    9.903917] [dhd] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendor 0x14e4, chipnum 0xaae8
[    9.904442] [dhd] dhd_sync_with_dongle: RxBuf Post : 2048
[    9.909405] [dhd] dhd_preinit_ioctls: preinit_status IOVAR not supported, use legacy preinit
[    9.909479] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[    9.911316] [dhd] dhd_legacy_preinit_ioctls: hostwake_oob enabled
[    9.912562] [dhd] dhd_legacy_preinit_ioctls: use firmware generated mac_address 10:2c:6b:fd:7e:ac
[    9.912711] [dhd] dhd_os_open_image1: /vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob (29225 bytes) open success
[    9.914072] [dhd] dhd_check_current_clm_data: ----- This FW is not included CLM data -----
[    9.943128] [dhd] dhd_check_current_clm_data: ----- This FW is included CLM data -----
[    9.946521] [dhd] Firmware up: op_mode=0x0005, MAC=10:2c:6b:fd:7e:ac
[    9.953126] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 26 ret: 0
[    9.958196] [dhd] arp_enable:1 arp_ol:0
[    9.963400] [dhd]   Driver: 101.10.361.11 (wlan=r892223-20210630-1)
[    9.963400]   Firmware: wl0: Aug  3 2021 17:38:16 version 18.35.387.23.57 (gdc961cae) FWID 01-ea656a70
[    9.963400]   CLM: 9.9.8_SS (2021-05-10 15:05:58) 
[    9.963997] [dhd] dhd_pno_init: Support Android Location Service
[    9.964019] [dhd] dhd_rtt_init ENTRY
[    9.964639] [dhd] rtt_do_get_ioctl: failed to send getbuf proxd iovar (CMD ID : 1), status=-23
[    9.964660] [dhd] dhd_rtt_init : FTM is not supported
[    9.964679] [dhd] dhd_rtt_init EXIT, err = 0
[    9.974336] [dhd] [INIT] logset:8 is preserve/chatty
[    9.975672] [dhd] [INIT] logset:10 is preserve/chatty
[    9.986403] [dhd] dhd_ecounter_autoconfig Ecounter autoconfig in FW not supported
[   10.016358] [dhd] dhd_conf_set_country : set country CN, revision 0
[   10.016421] [dhd] dhd_rx_frame: net device is NOT registered. drop event packet
[   10.021060] [dhd] dhd_conf_set_country : Country code: CN (CN/0)
[   10.028553] [dhd] dhd_bus_devreset: WLAN Power On Done
[   10.028591] [dhd][wlan0] wl_android_wifi_on : Success
[   10.053952] [dhd] dhd_rx_frame: net device is NOT registered. drop event packet
[   10.080286] [dhd] dhd_open : the lock is released.
[   10.080327] [dhd][wlan0] dhd_open : Exit ret=0
[   10.080348] [dhd][wlan0] dhd_pri_open : tx queue started
[   10.081090] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
[   10.082510] [dhd] CFG80211-ERROR) wl_cfg80211_netdev_notifier_call : wdev null. Do nothing
OK

nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=24
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=25
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=26
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=27
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=28
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=29
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=30
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=31
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=32
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=33
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=34
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=35
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=36
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=37
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=38
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=39
nl80211: Supported vendor event: vendor_id=0x1a11 subcmd=40
nl80211: Supported vendor event: vendor_id=0x1018 subcmd=41
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: Enable multi-channel concurrent (driver advertised support)
nl80211: use P2P_DEVICE support
nl80211: interface p2p-dev-wlan0 in phy phy0
nl80211: Set mode ifindex 0 iftype 10 (P2P_DEVICE)
nl80211: Failed to set interface 0 to mode 10: -22 (Invalid argument)
nl80211: Subscribe to mgmt frames with non-AP handle 0xaf95790
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=040a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=040b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=040c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=040d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=090a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=090b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=090c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=090d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=0409506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=7f506f9a09
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=06
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=0a07
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=0a11
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=1101
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=1102
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=0505
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0xaf95790 match=0500
nl80211: Use (wlan0) to initialize P2P Device rfkill
rfkill: initial event: idx=1 type=1 op=0 soft=0 hard=0
nl80211: Start P2P Device p2p-dev-wlan0 (0x3): Success
Add interface p2p-dev-wlan0 to existing radio phy0
nl80211: Regulatory information - country=00
nl80211: 2402-2472 @ 40 MHz 20 mBm
nl80211: 2457-2482 @ 20 MHz 20 mBm (no IR)
nl80211: 2474-2494 @ 20 MHz 20 mBm (no OFDM) (no IR)
nl80211: 5170-5250 @ 80 MHz 20 mBm (no IR)
nl80211: 5250-5330 @ 80 MHz 20 mBm (DFS) (no IR)
nl80211: 5490-5730 @ 160 MHz 20 mBm (DFS) (no IR)
nl80211: 5735-5835 @ 80 MHz 20 mBm (no IR)

nl80211: Supported vendor event: vendor_id=0x1018 subcmd=41
nl80211: Use separate P2P group interface (driver advertised support)
nl80211: Enable multi-channel concurrent (driver advertised support)
nl80211: use P2P_DEVICE support
nl80211: interface wlan0 in phy phy0
nl80211: Set mode ifindex 4 iftype 2 (STATION)
nl80211: Subscribe to mgmt frames with non-AP handle 0x33f44ef0
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x33f44ef0 match=040a
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x33f44ef0 match=040b
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x33f44ef0 match=040c
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x33f44ef0 match=040d
nl80211: Register frame type=0xd0 (WLAN_FC_STYPE_ACTION) nl_handle=0x33f44ef0 match=090a


OK
refresh
[  170.202962] [dhd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 39 for peer 90:76:9f:27:b1:09 prio 2 ifindex 0 items 512
[  170.203228] [dhd] dhd_prot_flow_ring_create_response_process: Flow Create Response status = 0 Flow 39
refresh
[  170.207796] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 15, bssidx: 0
RK_wifi_scan fail!

[root@RK3588:/]# 
[root@RK3588:/]# 
[root@RK3588:/]# ifconfigrefresh
refresh
[  180.203579] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 16, bssidx: 0
RK_wifi_scan fail!

enP3p49s0 Link encap:Ethernet  HWaddr B6:6B:FD:06:56:6A  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:121 Base address:0xd000 

eth1      Link encap:Ethernet  HWaddr 10:DC:B6:90:AB:30  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:103 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:302 errors:0 dropped:0 overruns:0 frame:0
          TX packets:302 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:22096 (21.5 KiB)  TX bytes:22096 (21.5 KiB)

wlan0     Link encap:Ethernet  HWaddr 10:2C:6B:FD:7E:AC  
          inet addr:192.168.186.231  Bcast:192.168.186.255  Mask:255.255.255.0
          inet6 addr: fe80::85cb:4dcd:3944:16b4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:21 errors:0 dropped:0 overruns:0 frame:0
          TX packets:25 errors:0 dropped:20 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2901 (2.8 KiB)  TX bytes:2959 (2.8 KiB)

[root@RK3588:/]# [  188.665463] adbd (1235): /proc/1235/oom_adj is deprecated, please use /proc/1235/oom_score_adj instead.
refresh
refresh
[  190.202238] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 17, bssidx: 0
RK_wifi_scan fail!
refresh
[  200.197494] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 18, bssrefresh
idx: 0
RK_wifi_scan fail!
refresh
refresh
[  210.184670] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 19, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  220.180169] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 20, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  230.174542] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 21, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  240.169595] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 22, bssidx: 0
RK_wifi_scan fail!
refresh
[  250.167961] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 23, bssrefresh
idx: 0
RK_wifi_scan fail!
refresh
refresh
[  260.160220] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 24, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  270.154954] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 25, bssidx: 0
RK_wifi_scan fail!

[root@RK3588:/]# 
[root@RK3588:/]# 
[root@RK3588:/]# ifconfig
enP3p49s0 Link encap:Ethernet  HWaddr B6:6B:FD:06:56:6A  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:121 Base address:0xd000 

eth1      Link encap:Ethernet  HWaddr 10:DC:B6:90:AB:30  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:103 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:302 errors:0 dropped:0 overruns:0 frame:0
          TX packets:302 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:22096 (21.5 KiB)  TX bytes:22096 (21.5 KiB)

wlan0     Link encap:Ethernet  HWaddr 10:2C:6B:FD:7E:AC  
          inet addr:192.168.186.231  Bcast:192.168.186.255  Mask:255.255.255.0
          inet6 addr: fe80::85cb:4dcd:3944:16b4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:90 errors:0 dropped:0 overruns:0 frame:0
          TX packets:56 errors:0 dropped:20 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:6702 (6.5 KiB)  TX bytes:5365 (5.2 KiB)

[root@RK3588:/]# 
[root@RK3588:/]# ping www.refresh
refresh
[  280.149337] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 26, bssidx: 0
RK_wifi_scan fail!
baidu.com^C
[root@RK3588:/]# 
[root@RK3588:/]# 
[root@RK3588:/]# ping www.baidu.comrefresh
refresh
[  290.144971] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 27, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  300.139879] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 28, bssidx: 0
RK_wifi_scan fail!

PING www.a.shifen.com (163.177.151.109) 56(84) bytes of data.
64 bytes from 163.177.151.109: icmp_seq=1 ttl=55 time=12.8 ms
64 bytes from 163.177.151.109: icmp_seq=2 ttl=55 time=14.6 ms
64 bytes from 163.177.151.109: icmp_seq=3 ttl=55 time=12.9 ms
64 bytes from 163.177.151.109: icmp_seq=4 ttl=55 time=14.9 ms
refresh
refresh
[  310.141810] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 29, bssidx: 0
RK_wifi_scan fail!
64 bytes from 163.177.151.109: icmp_seq=5 ttl=55 time=87.0 ms
64 bytes from 163.177.151.109: icmp_seq=6 ttl=55 time=105 ms
64 bytes from 163.177.151.109: icmp_seq=7 ttl=55 time=10.7 ms
64 bytes from 163.177.151.109: icmp_seq=8 ttl=55 time=12.4 ms
^C
--- www.a.shifen.com ping statistics ---
8 packets transmitted, 8 received, 0% packet loss, time 7007ms
rtt min/avg/max/mdev = 10.685/33.825/105.339/36.304 ms
[root@RK3588:/]# refresh
[  320.136471] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 30, bssrefresh
idx: 0
RK_wifi_scan fail!
refresh
refresh
[  330.131558] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 31, bssidx: 0
RK_wifi_scan fail!
refresh
refresh
[  340.132289] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 32, bssidx: 0
RK_wifi_scan fail!

[root@RK3588:/]# 
[root@RK3588:/]# ifconfig
enP3p49s0 Link encap:Ethernet  HWaddr B6:6B:FD:06:56:6A  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:121 Base address:0xd000 

eth1      Link encap:Ethernet  HWaddr 10:DC:B6:90:AB:30  
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)
          Interrupt:103 

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:302 errors:0 dropped:0 overruns:0 frame:0
          TX packets:302 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:22096 (21.5 KiB)  TX bytes:22096 (21.5 KiB)

wlan0     Link encap:Ethernet  HWaddr 10:2C:6B:FD:7E:AC  
          inet addr:192.168.186.231  Bcast:192.168.186.255  Mask:255.255.255.0
          inet6 addr: fe80::85cb:4dcd:3944:16b4/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:162 errors:0 dropped:0 overruns:0 frame:0
          TX packets:109 errors:0 dropped:20 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:11167 (10.9 KiB)  TX bytes:9909 (9.6 KiB)

[root@RK3588:/]# 
[root@RK3588:/]# 
[root@RK3588:/]# refresh
refresh
[  350.132373] [dhd][wlan0] wl_run_escan : LEGACY_SCAN sync ID: 33, bssidx: 0
RK_wifi_scan fail![root@RK3588:/]# 
[root@RK3588:/]# 

[END] 2023/1/9 13:34:02
 

本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系:hwhale#tublm.com(使用前将#替换为@)

20230109测试ToyBrick的RK3588开发板运行Buildroot的V0.02版本(20220312) 的相关文章

随机推荐