20250408在荣品的PRO-RK3566开发板使用Rockchip原厂的buildroot系统时自动挂载eth0

root@rk3566-buildroot:/etc/network# vi interfaces
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# cat interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp


20250408在荣品的PRO-RK3566开发板使用Rockchip原厂的buildroot系统时自动挂载eth0
2025/4/8 18:25


缘起:荣品的PRO-RK3566开发板,刷机/使用Rockchip原厂的buildroot系统之后,发现以太网卡eth0不会自动打开。


rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ find . -name interfaces
./buildroot/output/rockchip_rk3566/host/aarch64-buildroot-linux-gnu/sysroot/usr/include/gstreamer-1.0/gst/interfaces
./buildroot/output/rockchip_rk3566/build/gst1-plugins-bad-1.22.9/gst-libs/gst/interfaces
./buildroot/output/rockchip_rk3566/build/gst1-plugins-bad-1.22.9/build/gst-libs/gst/interfaces
./buildroot/output/rockchip_rk3566/target/etc/network/interfaces
./buildroot/output/rockchip_rk3566_recovery/target/etc/network/interfaces

./yocto/poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/qemuall/interfaces
./yocto/poky/meta/recipes-core/init-ifupdown/init-ifupdown-1.0/interfaces
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ cat ./buildroot/output/rockchip_rk3566/target/etc/network/interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

source-directory /etc/network/interfaces.d
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ cat ./buildroot/output/rockchip_rk3566_recovery/target/etc/network/interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ 


 


参考资料:
https://www.forlinx.com/jishu/980.html
RK3568 WiFi 设置静态 ip 开机自动连接及设置WiFi 自启脚本

一、WiFi设置静态ip开机自动连接
1、ifconfig命令查看wifi 网卡
通过命令可得知mlan0 是无线网卡

操作步骤1

2、修改/etc/wpa_supplicant.conf
操作步骤2
ctrl_interface=/var/run/wpa_supplicant 
ctrl_interface_group=0 
update_config=1 是否允许wpa_supplicant 更新(覆盖)配置 以network 为单位,用于描述一个热点信息。 
ssid=”路由器热点名称” 
scan_ssid=1 连接隐藏的wifi 时需要指定该值为1 
psk=”路由器热点密码” 
key_mgmt=WPA-PSK 表示采用WPA/WPA2 加密方式 priority=1 连接优先级,数字越大优先级越高 

3、修改/etc/network/interfaces
操作步骤3

注意:address 和gateway 需要根据客户路由器分配的IP 地址修改。可以使用手机连接路由器查看路由器分配的IP 地址网段。 

pre-up 网卡启用前的动作 
up 启用时候的动作 
post-up 启用后的动作 
pre-down 关闭前的动作 down 关闭时动作 
post-down 关闭后动作 
wpa_supplicant 执行配置wifi 工具
-B 在后台运行守护进程
-Dwext 驱动程序名称
-imlan0 接口名称
-c /etc/wpa_supplicant.conf 配置文件

4、查看网络设备ip a
查看网络设备ip


root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ifconfig
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:36 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2200 (2.1 KiB)  TX bytes:2200 (2.1 KiB)

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ifconfig -a
eth0      Link encap:Ethernet  HWaddr 62:C5:4D:F3:DB:64  
          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:48 

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:36 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2200 (2.1 KiB)  TX bytes:2200 (2.1 KiB)

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ifconfig ^C
root@rk3566-buildroot:/# cd /etc/   
root@rk3566-buildroot:/etc# 
root@rk3566-buildroot:/etc# ll
total 376
drwxr-xr-x 25 root root   4096 Aug  4 16:10  ./
drwxr-xr-x 21 root root   4096 Aug  4 17:02  ../
drwxr-xr-x  3 root root   4096 Apr  7  2025  alsa/
-rw-r--r--  1 root root   2319 Apr  7  2025  bash.bashrc
-rw-r--r--  1 root root    535 Apr  7  2025  bindresvport.blacklist
drwxr-xr-x  3 root root   4096 Apr  7  2025  chromium/
-rw-r--r--  1 root root    371 Apr  7  2025  chrony.conf
drwxr-xr-x  3 root root   4096 Apr  7  2025  dbus-1/
-rw-r--r--  1 root root   1429 Apr  7  2025  dhcpcd.conf
-rw-r-xr-x  1 root root    101 Apr  7  2025  dnsmasq.conf*
drwxr-xr-x  2 root root   4096 Aug  4 16:10  dropbear/
drwxr-xr-x  3 root root   4096 Apr  7  2025  fonts/
-rw-r--r--  1 root root    660 Apr  7  2025  fstab
-rw-r--r--  1 root root    694 Apr  7  2025  fuse.conf
drwxr-xr-x  2 root root   4096 Oct 22  2024  generate_logs.d/
-rw-r--r--  1 root root    439 Apr  7  2025  group
-rw-r--r--  1 root root 128729 Apr  7  2025  hostapd.conf
-rw-r--r--  1 root root     17 Apr  7  2025  hostname
-rw-r--r--  1 root root     47 Apr  7  2025  hosts
drwxr-xr-x  2 root root   4096 Apr  7  2025  init.d/
-rw-r--r--  1 root root   1302 Apr  7  2025  inittab
-rw-r--r--  1 root root    215 Apr  3  2024  input-event-daemon.conf
drwxr-xr-x  2 root root   4096 Oct 22  2024  input-event-daemon.conf.d/
-rw-r--r--  1 root root   1180 Apr  7  2025  inputrc
drwxr-xr-x  2 root root   4096 Apr  7  2025  iqfiles/
drwxr-xr-x  2 root root   4096 Apr  3  2024  irqbalance.d/
-rw-r--r--  1 root root     35 Apr  7  2025  issue
-rw-r--r--  1 root root  27425 Apr  7  2025  ld.so.cache
drwxr-xr-x  2 root root   4096 Apr  7  2025  libinput/
drwxr-xr-x  2 root root   4096 Apr  7  2025  libnl/
-rw-r--r--  1 root root    782 Apr  7  2025  mke2fs.conf
lrwxrwxrwx  1 root root     19 Apr  3  2024  mtab -> ../proc/self/mounts
-rw-r--r--  1 root root    767 Apr  7  2025  netconfig
drwxr-xr-x  7 root root   4096 Apr  3  2024  network/
-rw-r--r--  1 root root    230 Apr  7  2025  nsswitch.conf
-rw-r--r--  1 root root    224 Apr  7  2025  os-release
-rw-r--r--  1 root root    544 Apr  7  2025  passwd
drwxr-xr-x  5 root root   4096 Apr  7  2025  pm/
-rw-r--r--  1 root root    549 Apr  7  2025  profile
-rwxr-xr-x  1 root root    459 Apr  3  2024 'profile - 副本'*
drwxr-xr-x  2 root root   4096 Apr  7  2025  profile.d/
-rw-r--r--  1 root root   2744 Apr  3  2024  protocols
drwxr-xr-x  2 root root   4096 Apr  7  2025  pulse/
drwxr-xr-x  2 root root   4096 Apr  7  2025  rc_keymaps/
-rw-r--r--  1 root root   7692 Apr  7  2025  rc_maps.cfg
lrwxrwxrwx  1 root root     18 Apr  3  2024  resolv.conf -> ../tmp/resolv.conf
-rw-r--r--  1 root root  10873 Apr  3  2024  services
-rw-------  1 root root    256 Apr  7  2025  shadow
-rw-r--r--  1 root root     27 Apr  7  2025  shells
drwxr-xr-x  5 root root   4096 Apr  7  2025  ssl/
drwxr-xr-x  9 root root   4096 Apr  7  2025  terminfo/
drwxr-xr-x  3 root root   4096 Apr  7  2025  udev/
drwxr-xr-x  2 root root   4096 Apr  7  2025  usbdevice.d/
drwxr-xr-x  4 root root   4096 Apr  7  2025  usbmount/
-rw-r-xr-x  1 root root    125 Apr  7  2025  wpa_supplicant.conf*
drwxr-xr-x  4 root root   4096 Apr  3  2024  xdg/
root@rk3566-buildroot:/etc# cd sysconfig
sh: cd: sysconfig: No such file or directory
root@rk3566-buildroot:/etc# ll
total 376
drwxr-xr-x 25 root root   4096 Aug  4 16:10  ./
drwxr-xr-x 21 root root   4096 Aug  4 17:02  ../
drwxr-xr-x  3 root root   4096 Apr  7  2025  alsa/
-rw-r--r--  1 root root   2319 Apr  7  2025  bash.bashrc
-rw-r--r--  1 root root    535 Apr  7  2025  bindresvport.blacklist
drwxr-xr-x  3 root root   4096 Apr  7  2025  chromium/
-rw-r--r--  1 root root    371 Apr  7  2025  chrony.conf
drwxr-xr-x  3 root root   4096 Apr  7  2025  dbus-1/
-rw-r--r--  1 root root   1429 Apr  7  2025  dhcpcd.conf
-rw-r-xr-x  1 root root    101 Apr  7  2025  dnsmasq.conf*
drwxr-xr-x  2 root root   4096 Aug  4 16:10  dropbear/
drwxr-xr-x  3 root root   4096 Apr  7  2025  fonts/
-rw-r--r--  1 root root    660 Apr  7  2025  fstab
-rw-r--r--  1 root root    694 Apr  7  2025  fuse.conf
drwxr-xr-x  2 root root   4096 Oct 22  2024  generate_logs.d/
-rw-r--r--  1 root root    439 Apr  7  2025  group
-rw-r--r--  1 root root 128729 Apr  7  2025  hostapd.conf
-rw-r--r--  1 root root     17 Apr  7  2025  hostname
-rw-r--r--  1 root root     47 Apr  7  2025  hosts
drwxr-xr-x  2 root root   4096 Apr  7  2025  init.d/
-rw-r--r--  1 root root   1302 Apr  7  2025  inittab
-rw-r--r--  1 root root    215 Apr  3  2024  input-event-daemon.conf
drwxr-xr-x  2 root root   4096 Oct 22  2024  input-event-daemon.conf.d/
-rw-r--r--  1 root root   1180 Apr  7  2025  inputrc
drwxr-xr-x  2 root root   4096 Apr  7  2025  iqfiles/
drwxr-xr-x  2 root root   4096 Apr  3  2024  irqbalance.d/
-rw-r--r--  1 root root     35 Apr  7  2025  issue
-rw-r--r--  1 root root  27425 Apr  7  2025  ld.so.cache
drwxr-xr-x  2 root root   4096 Apr  7  2025  libinput/
drwxr-xr-x  2 root root   4096 Apr  7  2025  libnl/
-rw-r--r--  1 root root    782 Apr  7  2025  mke2fs.conf
lrwxrwxrwx  1 root root     19 Apr  3  2024  mtab -> ../proc/self/mounts
-rw-r--r--  1 root root    767 Apr  7  2025  netconfig
drwxr-xr-x  7 root root   4096 Apr  3  2024  network/
-rw-r--r--  1 root root    230 Apr  7  2025  nsswitch.conf
-rw-r--r--  1 root root    224 Apr  7  2025  os-release
-rw-r--r--  1 root root    544 Apr  7  2025  passwd
drwxr-xr-x  5 root root   4096 Apr  7  2025  pm/
-rw-r--r--  1 root root    549 Apr  7  2025  profile
-rwxr-xr-x  1 root root    459 Apr  3  2024 'profile - 副本'*
drwxr-xr-x  2 root root   4096 Apr  7  2025  profile.d/
-rw-r--r--  1 root root   2744 Apr  3  2024  protocols
drwxr-xr-x  2 root root   4096 Apr  7  2025  pulse/
drwxr-xr-x  2 root root   4096 Apr  7  2025  rc_keymaps/
-rw-r--r--  1 root root   7692 Apr  7  2025  rc_maps.cfg
lrwxrwxrwx  1 root root     18 Apr  3  2024  resolv.conf -> ../tmp/resolv.conf
-rw-r--r--  1 root root  10873 Apr  3  2024  services
-rw-------  1 root root    256 Apr  7  2025  shadow
-rw-r--r--  1 root root     27 Apr  7  2025  shells
drwxr-xr-x  5 root root   4096 Apr  7  2025  ssl/
drwxr-xr-x  9 root root   4096 Apr  7  2025  terminfo/
drwxr-xr-x  3 root root   4096 Apr  7  2025  udev/
drwxr-xr-x  2 root root   4096 Apr  7  2025  usbdevice.d/
drwxr-xr-x  4 root root   4096 Apr  7  2025  usbmount/
-rw-r-xr-x  1 root root    125 Apr  7  2025  wpa_supplicant.conf*
drwxr-xr-x  4 root root   4096 Apr  3  2024  xdg/
root@rk3566-buildroot:/etc# cd network/
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# ll
total 36
drwxr-xr-x  7 root root 4096 Apr  3  2024 ./
drwxr-xr-x 25 root root 4096 Aug  4 16:10 ../
drwxr-xr-x  2 root root 4096 Apr  3  2024 if-down.d/
drwxr-xr-x  2 root root 4096 Apr  3  2024 if-post-down.d/
drwxr-xr-x  2 root root 4096 Oct 22  2024 if-pre-up.d/
drwxr-xr-x  2 root root 4096 Apr  3  2024 if-up.d/
-rw-r--r--  1 root root  121 Apr  7  2025 interfaces
drwxr-xr-x  2 root root 4096 Apr  3  2024 interfaces.d/
-rwxr-xr-x  1 root root  846 Apr  7  2025 nfs_check*
root@rk3566-buildroot:/etc/network# cat interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

source-directory /etc/network/interfaces.d
root@rk3566-buildroot:/etc/network#
 
root@rk3566-buildroot:/etc/network# vi interfaces
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# cat interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

source-directory /etc/network/interfaces.d

auto eth0
iface eth0 inet dhcp


root@rk3566-buildroot:/etc/network# vi interfaces
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# cat interfaces
# interface file auto-generated by buildroot

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp


root@rk3566-buildroot:/etc/network# sync
root@rk3566-buildroot:/etc/network# sync
root@rk3566-buildroot:/etc/network# reboot


iperf2打流:
rootroot@rootroot-X99-Turbo:~$ 
rootroot@rootroot-X99-Turbo:~$ iperf -c 192.168.3.144 -i 1 -t 10
------------------------------------------------------------
Client connecting to 192.168.3.144, TCP port 5001
TCP window size:  536 KByte (default)
------------------------------------------------------------
[  3] local 192.168.3.208 port 46390 connected with 192.168.3.144 port 5001
[ ID] Interval       Transfer     Bandwidth
[  3]  0.0- 1.0 sec   114 MBytes   952 Mbits/sec
[  3]  1.0- 2.0 sec   112 MBytes   941 Mbits/sec
[  3]  2.0- 3.0 sec   112 MBytes   936 Mbits/sec
[  3]  3.0- 4.0 sec   112 MBytes   940 Mbits/sec
[  3]  4.0- 5.0 sec   112 MBytes   937 Mbits/sec
[  3]  5.0- 6.0 sec   111 MBytes   933 Mbits/sec
[  3]  6.0- 7.0 sec   112 MBytes   936 Mbits/sec
[  3]  7.0- 8.0 sec   112 MBytes   941 Mbits/sec
[  3]  8.0- 9.0 sec   110 MBytes   927 Mbits/sec
[  3]  9.0-10.0 sec   112 MBytes   943 Mbits/sec
[  3]  0.0-10.0 sec  1.09 GBytes   938 Mbits/sec
rootroot@rootroot-X99-Turbo:~$ 


串口DEBUG终端完整的LOG:

[BEGIN] 2025/4/8 19:03:47
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# reboot
root@rk3566-buildroot:/# Stopping input-event-daemon: done
fstrim: Stopping fstrim process (651)...
stop auto-reboot finished
Stopping dnsmasq: OK
Stopping pulseaudio: E: [pulseaudio] main.c: Failed to kill daemon: No such process
OK
Stopping dropbear sshd: OK
stoping weston... Date: 2025-04-08 UTC
[11:03:49.036] caught signal 15
done.
[11:03:49.038] event5  - adc-keys: device removed
Stopping chrony: OK
[11:03:49.068] event6  - Logitech USB Optical Mouse: device removed
Stopping dhcpcd...
no /sbin/dhcpcd found; none killed
[11:03:49.082] event2  - rk805 pwrkey: device removed
[11:03:49.095] event0  - hdmi_cec_key: device removed
[11:03:49.115] event1  - fe6e0030.pwm: device removed
Stopping network: [11:03:49.128] event4  - bt-powerkey: device removed
[ 2229.475585] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
[ 2229.512868] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800, flag:0x0) for vp0 dclk: 148500000
/etc/xdg/weston/weston.ini.d/02-desktop.ini: "shell/locking" from "false" to "true"
arm_release_ver: g13p0-01eac0, rk_so_ver: 10
[ 2229.683959] dwc3 fcc00000.dwc3: request 000000002627973a was not queued to ep0out
[ 2229.684152] android_work: sent uevent USB_STATE=DISCONNECTED
[ 2229.774417] rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
OK
Stopping bluetoothd: OK
Stopping Wi-Fi/BT...Done
Stopping system message bus: done
Saving random seed: OK
Stopping irqbalance: OK
Stopping klogd: OK
Stopping syslogd: OK
log-guardian: Stopping log-guardian (295)...
[ 2230.056020] ffs_data_put(): freeing
umount: /var/log: target is busy.
[ 2230.101217] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
The system is going down NOW!
Sent SIGTERM to all processes
Terminated
Terminated
E: [pulseaudio] core-util.c: Failed to create secure directory (/userdata/.pulse/.config/pulse): No such file or directory
Sent SIGKILL to all processes
Requesting system reboot
[ 2232.114518] rk808 0-0020: reboot: not restore POWER_EN
[ 2232.147889] mpp_rkvdec2 fdf80200.rkvdec: shutdown device
[ 2232.148373] mpp_rkvdec2 fdf80200.rkvdec: shutdown success
[ 2232.148871] mpp_rkvenc fdf40000.rkvenc: shutdown device
[ 2232.149334] mpp_rkvenc fdf40000.rkvenc: shutdown success
[ 2232.151385] Set signal voltage to initial state
[ 2232.161400] fan53555-regulator 0-001c: fan53555..... reset
[ 2232.162849] fan53555-regulator 0-001c: reset: force fan53555_reset ok!
[ 2232.163952] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
[ 2232.197589] [WLAN_RFKILL]: Enter rfkill_wlan_shutdown
[ 2232.198048] [WLAN_RFKILL]: rockchip_wifi_power: 0
[ 2232.198475] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 2232.198992] wifi power off
[ 2232.303940] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 2232.304466] [WLAN_RFKILL]: wifi shut off power [GPIO73-0]
[ 2232.304950] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 0
[ 2232.306191] rkisp_hw fdff0000.rkisp: rkisp_hw_shutdown
[ 2232.306810] mpp-iep2 fdef0000.iep: shutdown device
[ 2232.307270] mpp-iep2 fdef0000.iep: shutdown success
[ 2232.307752] mpp_vepu2 fdee0000.vepu: shutdown device
[ 2232.308205] mpp_vepu2 fdee0000.vepu: shutdown success
[ 2232.308693] mpp_jpgdec fded0000.jpegd: shutdown device
[ 2232.309158] mpp_jpgdec fded0000.jpegd: shutdown success
[ 2232.309662] mpp_vdpu2 fdea0400.vdpu: shutdown device
[ 2232.310114] mpp_vdpu2 fdea0400.vdpu: shutdown success
[ 2232.310904] xhci-hcd xhci-hcd.4.auto: remove, state 4
[ 2232.311371] usb usb6: USB disconnect, device number 1
[ 2232.312706] xhci-hcd xhci-hcd.4.auto: USB bus 6 deregistered
[ 2232.313582] xhci-hcd xhci-hcd.4.auto: remove, state 4
[ 2232.314097] usb usb5: USB disconnect, device number 1
[ 2232.315615] xhci-hcd xhci-hcd.4.auto: USB bus 5 deregistered
[ 2232.334485] reboot: Restarting system
DDR 2d653b3476 typ 24/01/20-15:04:19,fwver: v1.21
ln
LP4/4x derate en, other dram:1x trefi
SRX
ddrconfig:0
LPDDR4, 324MHz
BW=32 Col=10 Bk=8 CS0 Row=16 CS=1 Die BW=16 Size=2048MB
tdqss: cs0 dqs0: 0ps, dqs1: -96ps, dqs2: -72ps, dqs3: -120ps, 

change to: 324MHz
PHY drv:clk:38,ca:38,DQ:30,odt:0
vrefinner:41%, vrefout:41%
dram drv:40,odt:0
clk skew:0x62
rx vref: 49.9%
tx vref: 38.0%

change to: 528MHz
PHY drv:clk:38,ca:38,DQ:30,odt:0
vrefinner:41%, vrefout:41%
dram drv:40,odt:0
clk skew:0x58
rx vref: 45.9%
tx vref: 38.0%

change to: 780MHz
PHY drv:clk:38,ca:38,DQ:30,odt:60
vrefinner:16%, vrefout:41%
dram drv:40,odt:0
clk skew:0x58
rx vref: 17.4%
tx vref: 38.0%

change to: 1056MHz(final freq)
PHY drv:clk:38,ca:38,DQ:30,odt:60
vrefinner:16%, vrefout:29%
dram drv:40,odt:80
vref_ca:00000068
clk skew:0x3c
rx vref: 17.4%
tx vref: 30.0%
cs 0:
the read training result:
DQS0:0x33, DQS1:0x36, DQS2:0x34, DQS3:0x34, 
min  : 0x7  0x5  0x4  0x5  0x3  0x1  0x3  0x3 , 0x5  0x7  0x9  0x6  0x1  0x4  0x5  0x7 ,
       0x8  0x7  0x5  0x4  0x1  0x4  0x3  0x4 , 0x7  0x3  0x6  0x4  0x1  0x2  0x5  0x3 ,
mid  :0x22 0x1f 0x1f 0x21 0x1e 0x1d 0x1e 0x1f ,0x20 0x22 0x24 0x22 0x1d 0x21 0x22 0x22 ,
      0x24 0x24 0x21 0x20 0x1e 0x20 0x20 0x20 ,0x23 0x1e 0x21 0x20 0x1d 0x1e 0x20 0x1e ,
max  :0x3e 0x39 0x3b 0x3d 0x3a 0x3a 0x39 0x3b ,0x3c 0x3e 0x40 0x3f 0x39 0x3e 0x3f 0x3e ,
      0x40 0x41 0x3e 0x3d 0x3b 0x3c 0x3d 0x3d ,0x3f 0x39 0x3c 0x3c 0x3a 0x3a 0x3c 0x39 ,
range:0x37 0x34 0x37 0x38 0x37 0x39 0x36 0x38 ,0x37 0x37 0x37 0x39 0x38 0x3a 0x3a 0x37 ,
      0x38 0x3a 0x39 0x39 0x3a 0x38 0x3a 0x39 ,0x38 0x36 0x36 0x38 0x39 0x38 0x37 0x36 ,
the write training result:
DQS0:0x3c, DQS1:0x30, DQS2:0x33, DQS3:0x2c, 
min  :0x57 0x56 0x54 0x56 0x53 0x51 0x53 0x54 0x53 ,0x48 0x49 0x4e 0x4a 0x47 0x48 0x49 0x4a 0x47 ,
      0x4d 0x4d 0x4c 0x4a 0x48 0x49 0x49 0x4b 0x4a ,0x47 0x44 0x44 0x44 0x42 0x43 0x44 0x42 0x3e ,
mid  :0x72 0x71 0x6f 0x71 0x6e 0x6d 0x6e 0x70 0x6e ,0x63 0x64 0x69 0x65 0x61 0x63 0x65 0x66 0x62 ,
      0x69 0x69 0x67 0x66 0x63 0x63 0x65 0x66 0x65 ,0x61 0x5d 0x5d 0x5e 0x5c 0x5c 0x60 0x5c 0x5b ,
max  :0x8d 0x8c 0x8b 0x8d 0x89 0x89 0x89 0x8c 0x8a ,0x7f 0x7f 0x84 0x81 0x7b 0x7f 0x81 0x82 0x7e ,
      0x86 0x86 0x82 0x83 0x7e 0x7e 0x81 0x81 0x80 ,0x7c 0x76 0x77 0x78 0x77 0x76 0x7c 0x77 0x78 ,
range:0x36 0x36 0x37 0x37 0x36 0x38 0x36 0x38 0x37 ,0x37 0x36 0x36 0x37 0x34 0x37 0x38 0x38 0x37 ,
      0x39 0x39 0x36 0x39 0x36 0x35 0x38 0x36 0x36 ,0x35 0x32 0x33 0x34 0x35 0x33 0x38 0x35 0x3a ,
CA Training result:
cs:0 min  :0x4f 0x45 0x45 0x3b 0x46 0x3c 0x47 ,0x4e 0x40 0x43 0x39 0x40 0x36 0x40 ,
cs:0 mid  :0x88 0x89 0x7f 0x7e 0x80 0x7d 0x71 ,0x86 0x84 0x7c 0x7c 0x7b 0x7a 0x6a ,
cs:0 max  :0xc2 0xce 0xb9 0xc1 0xba 0xbf 0x9b ,0xbf 0xc8 0xb6 0xbf 0xb7 0xbe 0x95 ,
cs:0 range:0x73 0x89 0x74 0x86 0x74 0x83 0x54 ,0x71 0x88 0x73 0x86 0x77 0x88 0x55 ,
out
U-Boot SPL board init
U-Boot SPL 2017.09-g606f72bd97a-240527 #lxh (May 30 2024 - 16:08:15), fwver: v1.14
unknown raw ID 0 0 0
unrecognized JEDEC id bytes: 00, 00, 00
Trying to boot from MMC2
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
No misc partition
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
spl: partition error
Trying fit image at 0x4000 sector
Not fit magic
Trying fit image at 0x5000 sector
Not fit magic
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
part_get_info_efi: *** ERROR: Invalid GPT ***
GUID Partition Table Header signature is wrong: 0xX != 0xX
part_get_info_efi: *** ERROR: Invalid Backup GPT ***
Trying to boot from MMC1
SPL: A/B-slot: _a, successful: 0, tries-remain: 7
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 (gzip @0x00240000) ... sha256(e34df6bcda...) + sha256(b5946ac63d...) + OK
## Checking uboot 0x00a00000 (gzip @0x00c00000) ... sha256(913b612090...) + sha256(366ba5f672...) + OK
## Checking fdt 0x00b4e850 ... sha256(a474c6bb61...) + OK
## Checking atf-2 0xfdcc1000 ... sha256(b8dca786b4...) + OK
## Checking atf-3 0x0006b000 ... sha256(2f91089eb7...) + OK
## Checking atf-4 0xfdcce000 ... sha256(86ef885748...) + OK
## Checking atf-5 0xfdcd0000 ... sha256(0b2b146c60...) + OK
## Checking atf-6 0x00069000 ... sha256(a9a1e63bef...) + OK
## Checking optee 0x08400000 (gzip @0x08600000) ... sha256(12a488e7a4...) + sha256(28fba8b7d7...) + OK
Jumping to U-Boot(0x00a00000) via ARM Trusted Firmware(0x00040000)
Total: 196.216/275.241 ms

INFO:    Preloader serial: 2
NOTICE:  BL31: v2.3():v2.3-645-g8cea6ab0b:cl, fwver: v1.44
NOTICE:  BL31: Built : 16:36:43, Sep 19 2023
INFO:    GICv3 without legacy support detected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    pmu v1 is valid 220114
INFO:    l3 cache partition cfg-0
INFO:    dfs DDR fsp_param[0].freq_mhz= 1056MHz
INFO:    dfs DDR fsp_param[1].freq_mhz= 324MHz
INFO:    dfs DDR fsp_param[2].freq_mhz= 528MHz
INFO:    dfs DDR fsp_param[3].freq_mhz= 780MHz
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-791-g185dc3c92 #hisping.lin (gcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Architecture 10.2-2020.11 (arm-10.16))) #2 Tue Apr 16 10:47:32 CST 2024 aarch64, fwver: v2.12 
I/TC: OP-TEE memory: TEEOS 0x200000 TA 0xc00000 SHM 0x200000
I/TC: Primary CPU initializing
I/TC: CRYPTO_CRYPTO_VERSION_NEW no support. Skip all algo mode check.
I/TC: Primary CPU switching to normal world boot
INFO:    BL31: Preparing for EL3 exit to normal world
INFO:    Entry point address = 0xa00000
INFO:    SPSR = 0x3c9
usb dr_mode not found
usb dr_mode not found


U-Boot 2017.09-231221-dirty #rootroot (Apr 07 2025 - 16:28:44 +0800)

Model: Rockchip RK3568 Evaluation Board
MPIDR: 0x0
PreSerial: 2, raw, 0xfe660000
DRAM:  2 GiB
Sysmem: init
Relocation Offset: 7d211000
Relocation fdt: 7b9f8528 - 7b9fecd8
CR: M/C/I
usb dr_mode not found
usb dr_mode not found
Using default environment

optee api revision: 2.0
dwmmc@fe2b0000: 1, dwmmc@fe2c0000: 2, sdhci@fe310000: 0
GUID Partition Table Header signature is wrong: 0x3C008FF03C008FE != 0x5452415020494645
switch to partitions #0, OK
mmc1 is current device
switch to partitions #0, OK
mmc0(part 0) is current device
Bootdev(scan): mmc 0
MMC0: HS200, 200Mhz
PartType: EFI
TEEC: Waring: Could not find security partition
DM: v1
boot mode: normal
RESC: 'boot', blk@0x00019a95
resource: sha256+
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
usb dr_mode not found
usb dr_mode not found
I2c0 speed: 100000Hz
PMIC:  RK8090 (on=0x40, off=0x00)
vdd_logic init 900000 uV
vdd_gpu init 900000 uV
vdd_npu init 900000 uV
io-domain: OK
INFO:    ddr dmc_fsp already initialized in loader.
Could not find baseparameter partition
Model: Rockchip RK3566 EVB2 LP4X V10 Board
Rockchip UBOOT DRM driver version: v1.0.1
Assign plane mask automatically
VOP have 1 active VP
vp0 have layer nr:6[0 2 4 1 3 5 ], primary plane: 4
vp1 have layer nr:0[], primary plane: 0
vp2 have layer nr:0[], primary plane: 0
xfer: num: 2, addr: 0x50
xfer: num: 2, addr: 0x50
Monitor has basic audio support
Could not find baseparameter partition
hdmi@fe0a0000:  detailed mode clock 148500 kHz, flags[5]
    H: 1920 2008 2052 2200
    V: 1080 1084 1089 1125
bus_format: 2025
VOP update mode to: 1920x1080p60, type: HDMI0 for VP0
VP0 set crtc_clock to 148500KHz
VOP VP0 enable Smart0[654x270->654x270@633x405] fmt[0] addr[0x7df00000]
CEA mode used vic=16
final pixclk = 148500000 tmdsclk = 148500000
PHY powered down in 0 iterations
PHY PLL locked 1 iterations
PHY powered down in 0 iterations
PHY PLL locked 1 iterations
sink has audio support
hdmi_set_clk_regenerator: fs=48000Hz ftdms=148.500MHz N=6144 cts=148500
CLK: (sync kernel. arm: enter 816000 KHz, init 816000 KHz, kernel 0N/A)
  apll 1104000 KHz
  dpll 528000 KHz
  gpll 1188000 KHz
  cpll 1000000 KHz
  npll 1200000 KHz
  vpll 24000 KHz
  hpll 148500 KHz
  ppll 200000 KHz
  armclk 1104000 KHz
  aclk_bus 150000 KHz
  pclk_bus 100000 KHz
  aclk_top_high 500000 KHz
  aclk_top_low 400000 KHz
  hclk_top 150000 KHz
  pclk_top 100000 KHz
  aclk_perimid 300000 KHz
  hclk_perimid 150000 KHz
  pclk_pmu 100000 KHz
Net:   eth1: ethernet@fe010000
Hit key to stop autoboot('CTRL+C'):  0 
ANDROID: reboot reason: "(none)"
Not AVB images, AVB skip
No valid android hdr
Android image load failed
Android boot failed, error -1.
## Booting FIT Image at 0x794a4b00 with size 0x02352a00
Fdt Ramdisk skip relocation
## Loading kernel from FIT Image at 794a4b00 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compression:  uncompressed
     Data Start:   0x794ceb00
     Data Size:    36866560 Bytes = 35.2 MiB
     Architecture: AArch64
     OS:           Linux
     Load Address: 0x00280000
     Entry Point:  0x00280000
     Hash algo:    sha256
     Hash value:   d82de3c3849b63a494d08c8d9c39f5c31b4652f07dda9de1d160807b85834e4d
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at 794a4b00 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
     Data Start:   0x794a5300
     Data Size:    169709 Bytes = 165.7 KiB
     Architecture: AArch64
     Load Address: 0x08300000
     Hash algo:    sha256
     Hash value:   bcba43ee816535b57ba596a314ad330c1d6eef43cde3f27403731f0ca08638f9
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x08300000 to 0x08300000
   Booting using the fdt blob at 0x08300000
   Loading Kernel Image from 0x794ceb00 to 0x00280000 ... OK
   kernel loaded at 0x00280000, end = 0x025a8a00
   Using Device Tree in place at 0000000008300000, end 000000000832c6ec
vp0, plane_mask:0x3f, primary-id:4, curser-id:0
vp1, plane_mask:0x0, primary-id:0, curser-id:-1
vp2, plane_mask:0x0, primary-id:0, curser-id:-1
## reserved-memory:
  drm-logo@00000000: addr=7df00000 size=15a000
  drm-cubic-lut@00000000: addr=7ff00000 size=8000
  ramoops@110000: addr=110000 size=f0000
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0x80000000 (size: 0x76c00000)
board seed: Pseudo
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
No RNG device, ret=-12
== DO RELOCATE == Kernel from 0x00280000 to 0x00200000
Total: 964.555/1012.743 ms

Starting kernel ...

[    1.018031] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    1.018056] Linux version 5.10.209 (rootroot@rootroot-X99-Turbo) (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 Mon Apr 7 16:29:11 CST 2025
[    1.019846] random: crng init done
[    1.023763] Machine model: Rockchip RK3566 EVB2 LP4X V10 Board
[    1.057377] earlycon: uart8250 at MMIO32 0x00000000fe660000 (options '')
[    1.062046] printk: bootconsole [uart8250] enabled
[    1.063637] efi: UEFI not found.
[    1.098834] Zone ranges:
[    1.099090]   DMA      [mem 0x0000000000200000-0x000000007fffffff]
[    1.099678]   DMA32    empty
[    1.099951]   Normal   empty
[    1.100223] Movable zone start for each node
[    1.100624] Early memory node ranges
[    1.100962]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    1.101551]   node   0: [mem 0x0000000009400000-0x000000007fffffff]
[    1.102142] Initmem setup node 0 [mem 0x0000000000200000-0x000000007fffffff]
[    1.118386] cma: Reserved 16 MiB at 0x000000007e800000
[    1.118956] psci: probing for conduit method from DT.
[    1.119445] psci: PSCIv1.1 detected in firmware.
[    1.119880] psci: Using standard PSCI v0.2 function IDs
[    1.120376] psci: Trusted OS migration not required
[    1.120838] psci: SMC Calling Convention v1.2
[    1.121633] percpu: Embedded 30 pages/cpu s83800 r8192 d30888 u122880
[    1.122348] Detected VIPT I-cache on CPU0
[    1.122765] CPU features: detected: GIC system register CPU interface
[    1.123370] CPU features: detected: Virtualization Host Extensions
[    1.123957] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    1.124631] alternatives: patching kernel code
[    1.126898] Built 1 zonelists, mobility grouping on.  Total pages: 511496
[    1.127542] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal  androidboot.verifiedbootstate=orange rw rootwait earlycon=uart8250,mmio32,0xfe660000 console=ttyFIQ0 root=PARTUUID=614e0000-0000 androidboot.fwver=ddr-v1.21-2d653b3476,spl-v1.14,bl31-v1.44,bl32-v2.12,uboot-31221-dirt-04/07/2025
[    1.131026] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.132010] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.132740] mem auto-init: stack:off, heap alloc:off, heap free:off
[    1.158431] Memory: 1982960K/2078720K available (18752K kernel code, 3490K rwdata, 6932K rodata, 6720K init, 590K bss, 79376K reserved, 16384K cma-reserved)
[    1.159870] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    1.160519] ftrace: allocating 57309 entries in 224 pages
[    1.233082] ftrace: allocated 224 pages with 3 groups
[    1.233891] rcu: Hierarchical RCU implementation.
[    1.234342] rcu:     RCU event tracing is enabled.
[    1.234770] rcu:     RCU dyntick-idle grace-period acceleration is enabled.
[    1.235400] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    1.236015]     Rude variant of Tasks RCU enabled.
[    1.236443] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    1.237155] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.242096] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    1.244192] GICv3: GIC: Using split EOI/Deactivate mode
[    1.244697] GICv3: 320 SPIs implemented
[    1.245060] GICv3: 0 Extended SPIs implemented
[    1.245512] GICv3: Distributor has no Range Selector support
[    1.246052] GICv3: 16 PPIs implemented
[    1.246804] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    1.247570] ITS [mem 0xfd440000-0xfd45ffff]
[    1.248031] ITS@0x00000000fd440000: allocated 8192 Devices @29d0000 (indirect, esz 8, psz 64K, shr 0)
[    1.248931] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @29e0000 (flat, esz 2, psz 64K, shr 0)
[    1.249894] ITS: using cache flushing for cmd queue
[    1.250701] GICv3: using LPI property table @0x00000000029f0000
[    1.251373] GIC: using cache flushing for LPI property table
[    1.251912] GICv3: CPU0: using allocated LPI pending table @0x0000000002a00000
[    1.252663] rcu:     Offload RCU callbacks from CPUs: (none).
[    1.281284] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    1.281874] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    1.282896] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    1.284668] Console: colour dummy device 80x25
[    1.285132] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    1.286105] pid_max: default: 32768 minimum: 301
[    1.286659] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.287364] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.289396] rcu: Hierarchical SRCU implementation.
[    1.290533] Platform MSI: interrupt-controller@fd440000 domain created
[    1.291618] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created
[    1.292748] EFI services will not be available.
[    1.293480] 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
[    1.295135] Detected VIPT I-cache on CPU1
[    1.295167] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    1.295190] GICv3: CPU1: using allocated LPI pending table @0x0000000002a10000
[    1.295243] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    1.296512] Detected VIPT I-cache on CPU2
[    1.296537] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    1.296555] GICv3: CPU2: using allocated LPI pending table @0x0000000002a20000
[    1.296594] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    1.297814] Detected VIPT I-cache on CPU3
[    1.297838] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    1.297856] GICv3: CPU3: using allocated LPI pending table @0x0000000002a30000
[    1.297892] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    1.297981] smp: Brought up 1 node, 4 CPUs
[    1.305390] SMP: Total of 4 processors activated.
[    1.305842] CPU features: detected: Privileged Access Never
[    1.306366] CPU features: detected: LSE atomic instructions
[    1.306890] CPU features: detected: User Access Override
[    1.307391] CPU features: detected: 32-bit EL0 Support
[    1.307876] CPU features: detected: Common not Private translations
[    1.308465] CPU features: detected: RAS Extension Support
[    1.308972] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    1.309790] CPU features: detected: CRC32 instructions
[    1.310274] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    1.310929] CPU features: detected: RCpc load-acquire (LDAPR)
[    1.337753] CPU: All CPU(s) started at EL2
[    1.339557] devtmpfs: initialized
[    1.359479] Registered cp15_barrier emulation handler
[    1.359998] Registered setend emulation handler
[    1.360609] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    1.361537] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    1.362659] pinctrl core: initialized pinctrl subsystem
[    1.363717] DMI not present or invalid.
[    1.364339] NET: Registered protocol family 16
[    1.366260] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    1.367091] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.369859] Registered FIQ tty driver
[    1.370617] thermal_sys: Registered thermal governor 'fair_share'
[    1.370623] thermal_sys: Registered thermal governor 'step_wise'
[    1.371201] thermal_sys: Registered thermal governor 'user_space'
[    1.371767] thermal_sys: Registered thermal governor 'power_allocator'
[    1.372620] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[    1.374066] cpuidle: using governor menu
[    1.374701] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    1.375462] ASID allocator initialised with 65536 entries
[    1.378290] ramoops: dmesg-0    0x20000@0x0000000000110000
[    1.379872] ramoops: console    0x80000@0x0000000000130000
[    1.380381] ramoops: pmsg    0x50000@0x00000000001b0000
[    1.381204] printk: console [ramoops-1] enabled
[    1.381633] pstore: Registered ramoops as persistent store backend
[    1.382217] ramoops: using 0xf0000@0x110000, ecc: 0
[    1.417789] rockchip-gpio fdd60000.gpio0: probed /pinctrl/gpio0@fdd60000
[    1.419028] rockchip-gpio fe740000.gpio1: probed /pinctrl/gpio1@fe740000
[    1.420124] rockchip-gpio fe750000.gpio2: probed /pinctrl/gpio2@fe750000
[    1.421265] rockchip-gpio fe760000.gpio3: probed /pinctrl/gpio3@fe760000
[    1.422348] rockchip-gpio fe770000.gpio4: probed /pinctrl/gpio4@fe770000
[    1.423086] rockchip-pinctrl pinctrl: probed pinctrl
[    1.445538] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    1.446076] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    1.446627] fiq_debugger_probe: could not install nmi irq handler
[[    1.447291] printk: console [ttyFIQ0] enabled
    1.447291] printk: console [ttyFIQ0] enabled
[    1.448120] printk: bootconsole [uart8250] disabled
[    1.448120] printk: bootconsole [uart8250] disabled
[    1.448814] Registered fiq debugger ttyFIQ0
[    1.449513] vcc3v3_sys: supplied by dc_12v
[    1.449777] vcc5v0_sys: supplied by dc_12v
[    1.450024] vcc5v0_usb: supplied by dc_12v
[    1.450447] vcc5v0_host: supplied by vcc5v0_usb
[    1.450951] vcc5v0_otg: supplied by vcc5v0_usb
[    1.451514] vcc3v3_pcie: supplied by dc_12v
[    1.452268] iommu: Default domain type: Translated 
[    1.455815] SCSI subsystem initialized
[    1.456029] usbcore: registered new interface driver usbfs
[    1.456073] usbcore: registered new interface driver hub
[    1.456110] usbcore: registered new device driver usb
[    1.456196] mc: Linux media interface: v0.10
[    1.456225] videodev: Linux video capture interface: v2.00
[    1.456300] pps_core: LinuxPPS API ver. 1 registered
[    1.456310] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    1.456330] PTP clock support registered
[    1.456369] EDAC MC: Ver: 3.0.0
[    1.457234] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    1.457299] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    1.459259] Advanced Linux Sound Architecture Driver Initialized.
[    1.459656] Bluetooth: Core ver 2.22
[    1.459692] NET: Registered protocol family 31
[    1.459700] Bluetooth: HCI device and connection manager initialized
[    1.459714] Bluetooth: HCI socket layer initialized
[    1.459723] Bluetooth: L2CAP socket layer initialized
[    1.459741] Bluetooth: SCO socket layer initialized
[    1.460212] rockchip-cpuinfo cpuinfo: SoC        : 35663000
[    1.460225] rockchip-cpuinfo cpuinfo: Serial        : 02baa90966263a3b
[    1.460959] clocksource: Switched to clocksource arch_sys_counter
[    1.870817] NET: Registered protocol family 2
[    1.871018] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.872080] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    1.872122] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.872205] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    1.872413] TCP: Hash tables configured (established 16384 bind 16384)
[    1.872532] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.872565] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.872699] NET: Registered protocol family 1
[    1.873110] RPC: Registered named UNIX socket transport module.
[    1.873121] RPC: Registered udp transport module.
[    1.873127] RPC: Registered tcp transport module.
[    1.873133] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.874035] PCI: CLS 0 bytes, default 64
[    1.876597] rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
[    1.877567] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[    1.881569] Initialise system trusted keyrings
[    1.881719] workingset: timestamp_bits=62 max_order=19 bucket_order=0
[    1.885582] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.886114] NFS: Registering the id_resolver key type
[    1.886143] Key type id_resolver registered
[    1.886151] Key type id_legacy registered
[    1.886187] ntfs: driver 2.1.32 [Flags: R/O].
[    1.886368] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    1.886608] fuse: init (API version 7.32)
[    1.886882] SGI XFS with security attributes, no debug enabled
[    1.917265] NET: Registered protocol family 38
[    1.917305] Key type asymmetric registered
[    1.917316] Asymmetric key parser 'x509' registered
[    1.917357] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    1.917367] io scheduler mq-deadline registered
[    1.917374] io scheduler kyber registered
[    1.918068] rockchip-csi2-dphy-hw fe870000.csi2-dphy-hw: csi2 dphy hw probe successfully!
[    1.918822] rockchip-csi2-dphy csi2-dphy1: csi2 dphy1 probe successfully!
[    1.929790] rk-pcie 3c0000000.pcie: invalid prsnt-gpios property in node
[    1.930123] pwm-backlight backlight: supply power not found, using dummy regulator
[    1.930519] pwm-backlight backlight1: supply power not found, using dummy regulator
[    1.931119] iep: Module initialized.
[    1.931188] mpp_service mpp-srv: a712cbc22c5a author: Yandong Lin 2024-05-21 video: rockchip: mpp: optimize the schedule of enc/dec
[    1.931199] mpp_service mpp-srv: probe start
[    1.932989] mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 1
[    1.933180] mpp_vdpu2 fdea0400.vdpu: probe device
[    1.933457] mpp_vdpu2 fdea0400.vdpu: probing finish
[    1.933875] mpp_vepu2 fdee0000.vepu: Adding to iommu group 3
[    1.934055] mpp_vepu2 fdee0000.vepu: probing start
[    1.934345] mpp_vepu2 fdee0000.vepu: probing finish
[    1.934789] mpp-iep2 fdef0000.iep: Adding to iommu group 4
[    1.934946] mpp-iep2 fdef0000.iep: probe device
[    1.935314] mpp-iep2 fdef0000.iep: allocate roi buffer failed
[    1.935348] mpp-iep2 fdef0000.iep: probing finish
[    1.935700] rk-pcie 3c0000000.pcie: IRQ msi not found
[    1.935715] rk-pcie 3c0000000.pcie: use outband MSI support
[    1.935723] rk-pcie 3c0000000.pcie: Missing *config* reg space
[    1.935742] rk-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[    1.935773] rk-pcie 3c0000000.pcie:      err 0x00f4000000..0x00f40fffff -> 0x00f4000000
[    1.935788] rk-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[    1.935805] rk-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[    1.935814] mpp_jpgdec fded0000.jpegd: Adding to iommu group 2
[    1.935818] rk-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0300000000
[    1.935849] rk-pcie 3c0000000.pcie: Missing *config* reg space
[    1.935887] rk-pcie 3c0000000.pcie: invalid resource
[    1.935995] mpp_jpgdec fded0000.jpegd: probe device
[    1.936276] mpp_jpgdec fded0000.jpegd: probing finish
[    1.937531] mpp_service mpp-srv: probe success
[    1.941759] dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
[    1.941783] dma-pl330 fe530000.dmac:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.943451] dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
[    1.943466] dma-pl330 fe550000.dmac:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.944214] rockchip-pvtm fde00000.pvtm: pvtm@0 probed
[    1.944392] rockchip-pvtm fde80000.pvtm: pvtm@1 probed
[    1.944498] rockchip-pvtm fde90000.pvtm: pvtm@2 probed
[    1.945102] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    1.945720] arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
[    1.945987] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    1.947016] fe650000.serial: ttyS1 at MMIO 0xfe650000 (irq = 73, base_baud = 1500000) is a 16550A
[    1.949932] rockchip-vop2 fe040000.vop: Adding to iommu group 9
[    1.956853] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x3f, primary plane phy id: 4
[    1.956900] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp1 assign plane mask: 0x0, primary plane phy id: -1
[    1.956912] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x0, primary plane phy id: -1
[    1.957040] rockchip-vop2 fe040000.vop: [drm:vop2_bind] Cluster0-win0 as cursor plane for vp0
[    1.957083] rockchip-vop2 fe040000.vop: [drm:vop2_bind] VP1 plane_mask is zero, so ignore register crtc
[    1.957095] rockchip-vop2 fe040000.vop: [drm:vop2_bind] VP2 plane_mask is zero, so ignore register crtc
[    1.957128] [drm] failed to init overlay plane Cluster0-win1
[    1.957211] rockchip-drm display-subsystem: bound fe040000.vop (ops 0xffffffc00935f988)
[    1.957486] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    1.958039] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    1.958272] dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found
[    1.958623] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops 0xffffffc00936e510)
[    2.142096] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.167639] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.190666] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame buffer device
[    2.191371] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[    2.194326] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.196590] input: hdmi_cec_key as /devices/platform/fe0a0000.hdmi/dw-hdmi-cec.1.auto/input/input0
[    2.197473] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    2.198113] brd: module loaded
[    2.202636] loop: module loaded
[    2.202988] zram: Added device: zram0
[    2.203228] lkdtm: No crash points registered, enable through debugfs
[    2.207595] spi-nand spi4.0: unknown raw ID 00000000
[    2.207694] spi-nand: probe of spi4.0 failed with error -524
[    2.209985] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    2.210210] rk_gmac-dwmac fe010000.ethernet: supply phy not found, using dummy regulator
[    2.210351] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    2.210364] rk_gmac-dwmac fe010000.ethernet: TX delay(0x3a).
[    2.210373] rk_gmac-dwmac fe010000.ethernet: RX delay(0x29).
[    2.210387] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    2.210420] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    2.210666] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[    2.210870] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    2.210885] rk_gmac-dwmac fe010000.ethernet:     DWMAC4/5
[    2.210896] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    2.210904] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    2.210910] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    2.210917] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    2.211010] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    2.211020] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    2.211028] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    2.211036] rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
[    2.220983] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.247652] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.274307] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.300971] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.327636] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.346913] usbcore: registered new interface driver rtl8150
[    2.346982] usbcore: registered new interface driver r8152
[    2.354347] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.358291] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.358342] ehci-pci: EHCI PCI platform driver
[    2.358429] ehci-platform: EHCI generic platform driver
[    2.358857] phy phy-fe8b0000.usb2-phy.4: illegal mode
[    2.360906] ehci-platform fd800000.usb: EHCI Host Controller
[    2.361127] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[    2.361246] ehci-platform fd800000.usb: irq 19, io mem 0xfd800000
[    2.374300] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.374477] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.374489] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.374498] usb usb1: Product: EHCI Host Controller
[    2.374505] usb usb1: Manufacturer: Linux 5.10.209 ehci_hcd
[    2.374511] usb usb1: SerialNumber: fd800000.usb
[    2.374905] hub 1-0:1.0: USB hub found
[    2.374942] hub 1-0:1.0: 1 port detected
[    2.377594] ehci-platform fd880000.usb: EHCI Host Controller
[    2.377782] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 2
[    2.377896] ehci-platform fd880000.usb: irq 21, io mem 0xfd880000
[    2.380982] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.390975] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[    2.391140] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.391152] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.391160] usb usb2: Product: EHCI Host Controller
[    2.391167] usb usb2: Manufacturer: Linux 5.10.209 ehci_hcd
[    2.391174] usb usb2: SerialNumber: fd880000.usb
[    2.391546] hub 2-0:1.0: USB hub found
[    2.391581] hub 2-0:1.0: 1 port detected
[    2.392243] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.392271] ohci-platform: OHCI generic platform driver
[    2.392562] phy phy-fe8b0000.usb2-phy.4: illegal mode
[    2.392582] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.392734] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
[    2.392836] ohci-platform fd840000.usb: irq 20, io mem 0xfd840000
[    2.451761] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.451780] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.451789] usb usb3: Product: Generic Platform OHCI controller
[    2.451797] usb usb3: Manufacturer: Linux 5.10.209 ohci_hcd
[    2.451804] usb usb3: SerialNumber: fd840000.usb
[    2.452185] hub 3-0:1.0: USB hub found
[    2.452227] hub 3-0:1.0: 1 port detected
[    2.452706] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[    2.452859] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
[    2.452979] ohci-platform fd8c0000.usb: irq 22, io mem 0xfd8c0000
[    2.511769] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.511791] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.511800] usb usb4: Product: Generic Platform OHCI controller
[    2.511807] usb usb4: Manufacturer: Linux 5.10.209 ohci_hcd
[    2.511814] usb usb4: SerialNumber: fd8c0000.usb
[    2.512209] hub 4-0:1.0: USB hub found
[    2.512245] hub 4-0:1.0: 1 port detected
[    2.513490] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    2.513646] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 5
[    2.513778] xhci-hcd xhci-hcd.4.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010
[    2.513836] xhci-hcd xhci-hcd.4.auto: irq 88, io mem 0xfd000000
[    2.513962] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    2.514096] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 6
[    2.514114] xhci-hcd xhci-hcd.4.auto: Host supports USB 3.0 SuperSpeed
[    2.514235] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.514246] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.514254] usb usb5: Product: xHCI Host Controller
[    2.514261] usb usb5: Manufacturer: Linux 5.10.209 xhci-hcd
[    2.514268] usb usb5: SerialNumber: xhci-hcd.4.auto
[    2.514678] hub 5-0:1.0: USB hub found
[    2.514716] hub 5-0:1.0: 1 port detected
[    2.515029] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.515128] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.515139] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.515148] usb usb6: Product: xHCI Host Controller
[    2.515155] usb usb6: Manufacturer: Linux 5.10.209 xhci-hcd
[    2.515162] usb usb6: SerialNumber: xhci-hcd.4.auto
[    2.515501] hub 6-0:1.0: USB hub found
[    2.515533] hub 6-0:1.0: 1 port detected
[    2.515930] usbcore: registered new interface driver cdc_acm
[    2.515940] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.516191] usbcore: registered new interface driver uas
[    2.516282] usbcore: registered new interface driver usb-storage
[    2.516376] usbcore: registered new interface driver usbserial_generic
[    2.516400] usbserial: USB Serial support registered for generic
[    2.516445] usbcore: registered new interface driver cp210x
[    2.516467] usbserial: USB Serial support registered for cp210x
[    2.516525] usbcore: registered new interface driver ftdi_sio
[    2.516548] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.516665] usbcore: registered new interface driver keyspan
[    2.516692] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    2.516714] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    2.516733] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    2.516753] usbserial: USB Serial support registered for Keyspan 4 port adapter
[    2.516798] usbcore: registered new interface driver option
[    2.516820] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.516968] usbcore: registered new interface driver oti6858
[    2.516990] usbserial: USB Serial support registered for oti6858
[    2.517031] usbcore: registered new interface driver pl2303
[    2.517057] usbserial: USB Serial support registered for pl2303
[    2.517104] usbcore: registered new interface driver qcserial
[    2.517126] usbserial: USB Serial support registered for Qualcomm USB modem
[    2.517182] usbcore: registered new interface driver sierra
[    2.517204] usbserial: USB Serial support registered for Sierra USB modem
[    2.518630] usbcore: registered new interface driver usbtouchscreen
[    2.519187] .. rk pwm remotectl v2.0 init
[    2.519411] input: fe6e0030.pwm as /devices/platform/fe6e0030.pwm/input/input1
[    2.519746] remotectl-pwm fe6e0030.pwm: Controller support pwrkey capture
[    2.520352] i2c /dev entries driver
[    2.522487] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.524237] vdd_cpu: supplied by vcc5v0_sys
[    2.530464] rk808 0-0020: chip id: 0x8090
[    2.530511] rk808 0-0020: No cache defaults, reading back from HW
[    2.554187] rk808 0-0020: source: on=0x40, off=0x00
[    2.554213] rk808 0-0020: support dcdc3 fb mode:-22, 1
[    2.554224] rk808 0-0020: support pmic reset mode:0,0
[    2.558730] rk808-regulator rk808-regulator: there is no dvs0 gpio
[    2.558775] rk808-regulator rk808-regulator: there is no dvs1 gpio
[    2.558844] vdd_logic: supplied by vcc3v3_sys
[    2.559503] vdd_gpu: supplied by vcc3v3_sys
[    2.560090] vcc_ddr: supplied by vcc3v3_sys
[    2.560661] vdd_npu: supplied by vcc3v3_sys
[    2.561263] vcc_1v8: supplied by vcc3v3_sys
[    2.561830] vdda0v9_image: supplied by vcc3v3_sys
[    2.562900] vdda_0v9: supplied by vcc3v3_sys
[    2.563988] vdda0v9_pmu: supplied by vcc3v3_sys
[    2.565093] vccio_acodec: supplied by vcc3v3_sys
[    2.566176] vccio_sd: supplied by vcc3v3_sys
[    2.567267] vcc3v3_pmu: supplied by vcc3v3_sys
[    2.568376] vcca_1v8: supplied by vcc3v3_sys
[    2.569489] vcca1v8_pmu: supplied by vcc3v3_sys
[    2.570584] vcca1v8_image: supplied by vcc3v3_sys
[    2.571667] vcc_3v3: supplied by vcc3v3_sys
[    2.572229] vcc3v3_sd: supplied by vcc3v3_sys
[    2.572795] rk817-battery: Failed to locate of_node [id: -1]
[    2.572945] rk817-battery rk817-battery: Failed to find matching dt id
[    2.573091] rk817-charger: Failed to locate of_node [id: -1]
[    2.573192] rk817-charger rk817-charger: Failed to find matching dt id
[    2.576217] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey/input/input2
[    2.582005] rk808-rtc rk808-rtc: registered as rtc0
[    2.583723] rk808-rtc rk808-rtc: setting system clock to 2025-04-08T11:03:55 UTC (1744110235)
[    2.587336] rockchip-pinctrl pinctrl: pin gpio3-11 already requested by fe010000.ethernet; cannot claim for fe5e0000.i2c
[    2.587374] rockchip-pinctrl pinctrl: pin-107 (fe5e0000.i2c) status -22
[    2.587384] rockchip-pinctrl pinctrl: could not request pin 107 (gpio3-11) from group i2c5m0-xfer  on device rockchip-pinctrl
[    2.587393] rk3x-i2c fe5e0000.i2c: Error applying setting, reverse things back
[    2.587414] rk3x-i2c: probe of fe5e0000.i2c failed with error -22
[    2.588624] rkcifhw fdfe0000.rkcif: Adding to iommu group 7
[    2.589088] rkcifhw fdfe0000.rkcif: can't request region for resource [mem 0xfdfe0000-0xfdfe7fff]
[    2.589175] rkcifhw fdfe0000.rkcif: No reserved memory region assign to CIF
[    2.590205] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: enter mipi csi2 hw probe!
[    2.590349] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw!
[    2.591569] rkisp_hw fdff0000.rkisp: Adding to iommu group 8
[    2.591761] rkisp_hw fdff0000.rkisp: is_thunderboot: 0
[    2.591792] rkisp_hw fdff0000.rkisp: can't request region for resource [mem 0xfdff0000-0xfdffffff]
[    2.591820] rkisp_hw fdff0000.rkisp: max input:0x0@0fps
[    2.591979] rkisp_hw fdff0000.rkisp: no find phandle sram
[    2.592482] rkisp rkisp-vir0: rkisp driver version: v02.05.01
[    2.592635] rkisp rkisp-vir0: No memory-region-thunderboot specified
[    2.592828] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
[    2.592849] rkisp rkisp-vir0: Entity type for entity rkisp-csi-subdev was not initialized!
[    2.595432] usbcore: registered new interface driver uvcvideo
[    2.595450] USB Video Class driver (1.1.1)
[    2.597031] Bluetooth: HCI UART driver ver 2.3
[    2.597050] Bluetooth: HCI UART protocol H4 registered
[    2.597057] Bluetooth: HCI UART protocol ATH3K registered
[    2.597130] usbcore: registered new interface driver bfusb
[    2.597180] usbcore: registered new interface driver btusb
[    2.598057] cpu cpu0: bin=0
[    2.598125] cpu cpu0: leakage=28
[    2.598167] cpu cpu0: pvtm = 89150, from nvmem
[    2.598182] cpu cpu0: pvtm-volt-sel=2
[    2.598235] cpu cpu0: soc version=0, speed=2
[    2.599770] cpu cpu0: avs=0
[    2.600048] cpu cpu0: EM: created perf domain
[    2.600107] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.606029] sdhci: Secure Digital Host Controller Interface driver
[    2.606065] sdhci: Copyright(c) Pierre Ossman
[    2.606082] Synopsys Designware Multimedia Card Interface Driver
[    2.606936] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.607604] dwmmc_rockchip fe2b0000.dwmmc: No normal pinctrl state
[    2.607670] dwmmc_rockchip fe2b0000.dwmmc: No idle pinctrl state
[    2.607677] dwmmc_rockchip fe2c0000.dwmmc: No normal pinctrl state
[    2.607682] dwmmc_rockchip fe2c0000.dwmmc: No idle pinctrl state
[    2.607795] dwmmc_rockchip fe2b0000.dwmmc: IDMAC supports 32-bit address mode.
[    2.607798] dwmmc_rockchip fe2c0000.dwmmc: IDMAC supports 32-bit address mode.
[    2.607825] dwmmc_rockchip fe2c0000.dwmmc: Using internal DMA controller.
[    2.607833] dwmmc_rockchip fe2b0000.dwmmc: Using internal DMA controller.
[    2.607845] dwmmc_rockchip fe2c0000.dwmmc: Version ID is 270a
[    2.607848] dwmmc_rockchip fe2b0000.dwmmc: Version ID is 270a
[    2.607911] dwmmc_rockchip fe2b0000.dwmmc: DW MMC controller at irq 58,32 bit host data width,256 deep fifo
[    2.607931] dwmmc_rockchip fe2c0000.dwmmc: DW MMC controller at irq 59,32 bit host data width,256 deep fifo
[    2.608386] dwmmc_rockchip fe2c0000.dwmmc: allocated mmc-pwrseq
[    2.608406] mmc_host mmc2: card is non-removable.
[    2.609270] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[    2.609375] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.610433] cryptodev: driver 1.12 loaded.
[    2.610505] hid: raw HID events driver (C) Jiri Kosina
[    2.610896] usbcore: registered new interface driver usbhid
[    2.610907] usbhid: USB HID core driver
[    2.612146] rockchip,bus bus-npu: bin=0
[    2.612170] rockchip,bus bus-npu: Failed to get leakage
[    2.612230] rockchip,bus bus-npu: pvtm = 89150, from nvmem
[    2.612247] rockchip,bus bus-npu: pvtm-volt-sel=1
[    2.612493] rockchip,bus bus-npu: avs=0
[    2.618788] usbcore: registered new interface driver snd-usb-audio
[    2.620323] rk817-codec rk817-codec: DMA mask not set
[    2.621194] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.623577] rockchip-i2s-tdm fe410000.i2s: Register PCM for TRCM mode
[    2.624992] rockchip-pinctrl pinctrl: pin gpio3-21 already requested by fe010000.ethernet; cannot claim for fe460000.spdif
[    2.625020] rockchip-pinctrl pinctrl: pin-117 (fe460000.spdif) status -22
[    2.625029] rockchip-pinctrl pinctrl: could not request pin 117 (gpio3-21) from group spdifm1-tx  on device rockchip-pinctrl
[    2.625035] rockchip-spdif fe460000.spdif: Error applying setting, reverse things back
[    2.625055] rockchip-spdif: probe of fe460000.spdif failed with error -22
[    2.626175] rk-multicodecs rk809-sound: Failed to get ADC channel
[    2.626327] rk-multicodecs rk809-sound: ASoC: Property 'rockchip,audio-routing' does not exist or its length is not even
[    2.629175] rk817-codec rk817-codec: rk817_probe: chip_name:0x80, chip_ver:0x95
[    2.635443] input: rockchip-rk809 Headset as /devices/platform/rk809-sound/sound/card0/input3
[    2.636605] Initializing XFRM netlink socket
[    2.636929] NET: Registered protocol family 10
[    2.637509] Segment Routing with IPv6
[    2.637586] NET: Registered protocol family 17
[    2.637605] NET: Registered protocol family 15
[    2.637718] Bluetooth: RFCOMM socket layer initialized
[    2.637746] Bluetooth: RFCOMM ver 1.11
[    2.637757] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.637767] Bluetooth: HIDP socket layer initialized
[    2.637803] [BT_RFKILL]: Enter rfkill_rk_init
[    2.637808] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    2.638605] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    2.638647] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6398s
[    2.638654] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    2.638660] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    2.638680] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,poweren_gpio = 73 flags = 0.
[    2.638696] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 74, flags = 0.
[    2.638705] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    2.638710] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    2.638717] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.638723] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    2.639338] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 77.
[    2.639359] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 79.
[    2.639370] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 81.
[    2.639380] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 80.
[    2.639434] [BT_RFKILL]: Request irq for bt wakeup host
[    2.639709] [BT_RFKILL]: ** disable irq
[    2.639788] [BT_RFKILL]: bt_default device registered.
[    2.639872] input: bt-powerkey as /devices/platform/wireless-bluetooth/input/input4
[    2.640131] Key type dns_resolver registered
[    2.640585] mmc0: SDHCI controller on fe310000.sdhci [fe310000.sdhci] using ADMA
[    2.641224] gc2093 2-0037: driver version: 00.01.02
[    2.641387] gc2093 2-0037: supply dovdd not found, using dummy regulator
[    2.641473] gc2093 2-0037: supply avdd not found, using dummy regulator
[    2.641506] gc2093 2-0037: supply dvdd not found, using dummy regulator
[    2.659120] gc2093 2-0037: Detected GC2093 sensor
[    2.659190] rockchip-csi2-dphy csi2-dphy1: dphy1 matches m00_b_gc2093 2-0037:bus type 5
[    2.659767] rkisp-vir0: Async subdev notifier completed
[    2.660361] Loading compiled-in X.509 certificates
[    2.661538] pstore: Using crash dump compression: deflate
[    2.662772] rga2 fdeb0000.rk_rga: probe successfully, irq = 30, hw_version:3.2.63318
[    2.663086] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[    2.663282] rga: Module initialized. v1.3.3
[    2.676029] mmc0: Host Software Queue enabled
[    2.676081] mmc0: new HS200 MMC card at address 0001
[    2.676757] mmcblk0: mmc0:0001 8GTF4R 7.28 GiB 
[    2.677005] mmcblk0boot0: mmc0:0001 8GTF4R partition 1 4.00 MiB
[    2.677262] mmcblk0boot1: mmc0:0001 8GTF4R partition 2 4.00 MiB
[    2.677449] mmcblk0rpmb: mmc0:0001 8GTF4R partition 3 512 KiB, chardev (236:0)
[    2.680194]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    2.681250] mmc_host mmc1: Bus speed (slot 0) = 50000000Hz (slot req 50000000Hz, actual 50000000HZ div = 0)
[    2.681353] mmc1: new high speed SDHC card at address b36e
[    2.682504] mmcblk1: mmc1:b36e SDABC 29.1 GiB 
[    2.684539] rockchip-pinctrl pinctrl: pin gpio3-21 already requested by fe010000.ethernet; cannot claim for fe460000.spdif
[    2.684563] rockchip-pinctrl pinctrl: pin-117 (fe460000.spdif) status -22
[    2.684571] rockchip-pinctrl pinctrl: could not request pin 117 (gpio3-21) from group spdifm1-tx  on device rockchip-pinctrl
[    2.684578] rockchip-spdif fe460000.spdif: Error applying setting, reverse things back
[    2.684602] rockchip-spdif: probe of fe460000.spdif failed with error -22
[    2.685120]  mmcblk1: p1
[    2.746337] vendor storage:20190527 ret = 0
[    2.825087] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.840318] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 5
[    2.840889] mpp_rkvenc fdf40000.rkvenc: probing start
[    2.842093] mpp_rkvenc fdf40000.rkvenc: bin=0
[    2.842195] mpp_rkvenc fdf40000.rkvenc: Failed to get leakage
[    2.842307] mpp_rkvenc fdf40000.rkvenc: pvtm = 89150, from nvmem
[    2.842350] mpp_rkvenc fdf40000.rkvenc: pvtm-volt-sel=1
[    2.842844] mpp_rkvenc fdf40000.rkvenc: avs=0
[    2.843196] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node
[    2.843231] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model
[    2.843255] mpp_rkvenc fdf40000.rkvenc: failed to get dynamic-coefficient
[    2.844168] mpp_rkvenc fdf40000.rkvenc: probing finish
[    2.845210] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 6
[    2.845753] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start
[    2.846622] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found!
[    2.846656] rkvdec2_init:1024: No niu aclk reset resource define
[    2.846688] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found!
[    2.846710] rkvdec2_init:1027: No niu hclk reset resource define
[    2.847257] mpp_rkvdec2 fdf80200.rkvdec: bin=0
[    2.847474] mpp_rkvdec2 fdf80200.rkvdec: leakage=54
[    2.847518] mpp_rkvdec2 fdf80200.rkvdec: leakage-volt-sel=0
[    2.847604] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 89150, from nvmem
[    2.847707] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1
[    2.848284] mpp_rkvdec2 fdf80200.rkvdec: avs=0
[    2.848428] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node
[    2.848441] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model
[    2.848450] mpp_rkvdec2 fdf80200.rkvdec: failed to get dynamic-coefficient
[    2.848595] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000
[    2.848607] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000
[    2.848616] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056
[    2.848624] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536
[    2.848635] mpp_rkvdec2 fdf80200.rkvdec: min_width 512
[    2.848702] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish
[    2.848784] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[    2.850045] mali fde60000.gpu: Kernel DDK version g21p0-01eac0
[    2.850163] mali fde60000.gpu: GPU metrics tracepoint support enabled
[    2.850689] rockchip-dmc dmc: bin=0
[    2.850709] mali fde60000.gpu: bin=0
[    2.850738] rockchip-dmc dmc: leakage=54
[    2.850757] rockchip-dmc dmc: leakage-volt-sel=0
[    2.850766] mali fde60000.gpu: leakage=7
[    2.850799] rockchip-dmc dmc: pvtm = 89150, from nvmem
[    2.850817] rockchip-dmc dmc: pvtm-volt-sel=1
[    2.850823] mali fde60000.gpu: pvtm = 89150, from nvmem
[    2.850841] mali fde60000.gpu: pvtm-volt-sel=2
[    2.850845] rockchip-dmc dmc: soc version=0, speed=1
[    2.850867] mali fde60000.gpu: soc version=0, speed=2
[    2.851066] rockchip-dmc dmc: avs=0
[    2.851089] rockchip-dmc dmc: current ATF version 0x102
[    2.851497] mali fde60000.gpu: avs=0
[    2.851525] W : [File] : drivers/gpu/arm/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 143; [Func] : kbase_platform_rk_init(); power-off-delay-ms not available.
[    2.851966] mali fde60000.gpu: Register LUT 00070200 initialized for GPU arch 0x00070400
[    2.852004] mali fde60000.gpu: GPU identified as 0x2 arch 7.4.0 r1p0 status 0
[    2.852008] rockchip-dmc dmc: normal_rate = 780000000
[    2.852015] rockchip-dmc dmc: reboot_rate = 1056000000
[    2.852020] rockchip-dmc dmc: suspend_rate = 324000000
[    2.852025] rockchip-dmc dmc: video_4k_rate = 780000000
[    2.852030] rockchip-dmc dmc: video_4k_10b_rate = 780000000
[    2.852034] rockchip-dmc dmc: boost_rate = 1056000000
[    2.852039] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 1056000000
[    2.852044] rockchip-dmc dmc: performance_rate = 1056000000
[    2.852065] rockchip-dmc dmc: failed to get vop pn to msch rl
[    2.852236] mali fde60000.gpu: No priority control manager is configured
[    2.852251] mali fde60000.gpu: Large page allocation set to false after hardware feature check
[    2.852278] rockchip-dmc dmc: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.852387] rockchip-dmc dmc: could not find power_model node
[    2.852561] mali fde60000.gpu: No memory group manager is configured
[    2.854348] mali fde60000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.855652] mali fde60000.gpu: Probed as mali0
[    2.864299] usb 3-1: new low-speed USB device number 2 using ohci-platform
[    2.867545] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc3v3_pmu
[    2.867667] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(3000000 uV) supplied by vccio_acodec
[    2.867802] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vccio_sd
[    2.867949] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(3300000 uV) supplied by vcc_3v3
[    2.868000] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3
[    2.868109] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8
[    2.868157] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3
[    2.868730] input: adc-keys as /devices/platform/adc-keys/input/input5
[    2.875411] RKNPU fde40000.npu: Adding to iommu group 0
[    2.876007] RKNPU fde40000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[    2.876333] RKNPU fde40000.npu: can't request region for resource [mem 0xfde40000-0xfde4ffff]
[    2.877009] [drm] Initialized rknpu 0.9.6 20240322 for fde40000.npu on minor 1
[    2.877817] RKNPU fde40000.npu: bin=0
[    2.877864] RKNPU fde40000.npu: leakage=4
[    2.877899] RKNPU fde40000.npu: pvtm = 89150, from nvmem
[    2.877913] RKNPU fde40000.npu: pvtm-volt-sel=2
[    2.877928] RKNPU fde40000.npu: soc version=0, speed=2
[    2.878437] RKNPU fde40000.npu: avs=0
[    2.878627] RKNPU fde40000.npu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.879239] RKNPU fde40000.npu: failed to find power_model node
[    2.879251] RKNPU fde40000.npu: RKNPU: failed to initialize power model
[    2.879257] RKNPU fde40000.npu: RKNPU: failed to get dynamic-coefficient
[    2.880608] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.882609] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    2.883166] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.884347] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[    2.885064] rockchip-suspend not set sleep-mode-config for mem-lite
[    2.885074] rockchip-suspend not set wakeup-config for mem-lite
[    2.885081] rockchip-suspend not set sleep-mode-config for mem-ultra
[    2.885087] rockchip-suspend not set wakeup-config for mem-ultra
[    2.886390] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 406; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '16:31:19', on 'Apr  7 2025'.
[    2.886848] Mali: 
[    2.886851] Mali device driver loaded
[    2.886885] rkisp rkisp-vir0: clear unready subdev num: 0
[    2.886897] ALSA device list:
[    2.886904]   #0: rockchip-rk809
[    2.886910]   #1: rockchip,hdmi
[    2.887594] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.887647] cfg80211: failed to load regulatory.db
[    2.894197] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    2.894322] VFS: Mounted root (ext4 filesystem) on device 179:6.
[    2.894705] devtmpfs: mounted
[    2.903459] Freeing unused kernel memory: 6720K
[    2.937904] Run /sbin/init as init process
[    2.998377] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
[    3.067830] mmc_host mmc2: Bus speed (slot 0) = 375000Hz (slot req 375000Hz, actual 375000HZ div = 0)
[    3.088843] usb 3-1: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[    3.088913] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    3.088924] usb 3-1: Product: USB Optical Mouse
[    3.088933] usb 3-1: Manufacturer: Logitech
[    3.096708] input: Logitech USB Optical Mouse as /devices/platform/fd840000.usb/usb3/3-1/3-1:1.0/0003:046D:C077.0001/input/input6
[    3.097233] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-fd840000.usb-1/input0
[    3.219358] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: (null)
[    3.219494] ext4 filesystem being mounted at /oem supports timestamps until 2038 (0x7fffffff)
[    3.224396] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: (null)
[    3.224535] ext4 filesystem being mounted at /userdata supports timestamps until 2038 (0x7fffffff)
Start mounting all internal partitions in /etc/fstab
Log saved to /var/log/mount-all.log
Note: Will skip fsck, remove /.skip_fsck to enable
[0]: Handling /dev/mmcblk0p6 / ext4 rw,noauto 1
[2]: Handling /dev/mmcblk0p8 /userdata ext4 defaults 2
[1]: Handling /dev/mmcblk0p7 /oem ext4 defaults 2
[2]: Already resized /dev/mmcblk0p8(ext4)
[0]: Already resized /dev/mmcblk0p6(ext4)
[1]: Already resized /dev/mmcblk0p7(ext4)
Starting syslogd: OK
log-guardian: [WARN] Not a dir: "/var/log/,/tmp/"
Starting klogd: log-guardian: Guarding logs in: "/var/log/,/tmp/"...
OK
Running sysctl: OK
Populating /dev using udev: [    3.550063] udevd[326]: starting version 3.2.10
[    3.564881] udevd[327]: starting eudev-3.2.10
[    3.939109] FAT-fs (mmcblk1p1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive!
[    3.942045] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
done
Starting irqbalance: OK
Initializing random number generator: OK
Saving random seed: OK
Starting system message bus: done
Starting bluetoothd: OK
Starting network: Failed to detect Wi-Fi/BT chip!
[    4.324430] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[    4.327109] dwmac4: Master AXI performs any burst length
[    4.327169] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[    4.327205] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[    4.327508] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[    4.329834] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
udhcpc: started, v1.36.1
udhcpc: broadcasting discover

[    4.814470] rk-pcie 3c0000000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=0
[    5.966119] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
[    5.966954] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 7
[    5.967293] xhci-hcd xhci-hcd.7.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000002022010010
[    5.967461] xhci-hcd xhci-hcd.7.auto: irq 87, io mem 0xfcc00000
[    5.967873] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
[    5.968466] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 8
[    5.968538] xhci-hcd xhci-hcd.7.auto: Host supports USB 3.0 SuperSpeed
[    5.968894] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    5.968924] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.968943] usb usb7: Product: xHCI Host Controller
[    5.968961] usb usb7: Manufacturer: Linux 5.10.209 xhci-hcd
[    5.968977] usb usb7: SerialNumber: xhci-hcd.7.auto
[    5.970185] hub 7-0:1.0: USB hub found
[    5.970302] hub 7-0:1.0: 1 port detected
[    5.971921] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    5.972192] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    5.972223] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.972244] usb usb8: Product: xHCI Host Controller
[    5.972262] usb usb8: Manufacturer: Linux 5.10.209 xhci-hcd
[    5.972279] usb usb8: SerialNumber: xhci-hcd.7.auto
[    5.973558] hub 8-0:1.0: USB hub found
[    5.973696] hub 8-0:1.0: 1 port detected
[    7.147858] rk_pcie_establish_link: 131 callbacks suppressed
[    7.147893] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.174541] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.201186] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.227876] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.254512] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.281177] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.307844] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.334509] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.361177] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.387843] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.399444] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
[    7.399603] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
udhcpc: no lease, forking to background
OK
Starting dhcpcd...
dhcpcd-10.0.4 starting
dev: loaded udev
DUID 00:01:00:01:21:17:6f:78:62:c5:4d:f3:db:64
eth0: IAID 4d:f3:db:64
[    7.788925] rkisp rkisp-vir0: first params buf queue
eth0: soliciting an IPv6 router
[    8.721238] rk-pcie 3c0000000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=1
[    8.732486] xhci-hcd xhci-hcd.7.auto: remove, state 4
[    8.732614] usb usb8: USB disconnect, device number 1
[    8.735421] xhci-hcd xhci-hcd.7.auto: USB bus 8 deregistered
[    8.735942] xhci-hcd xhci-hcd.7.auto: remove, state 4
[    8.735992] usb usb7: USB disconnect, device number 1
[    8.737197] xhci-hcd xhci-hcd.7.auto: USB bus 7 deregistered
eth0: soliciting a DHCP lease
[    9.743162] rk-pcie 3c0000000.pcie: failed to initialize host
eth0: offered 192.168.3.144 from 192.168.3.1
eth0: leased 192.168.3.144 for 86400 seconds
eth0: adding route to 192.168.3.0/24
eth0: adding default route via 192.168.3.1
forked to background, child pid 579
dhcpcd_fork_cb: truncated read 0 (expected 4)
Starting chrony: OK
starting weston... done.
Starting dropbear sshd: OK
Starting pulseaudio: OK
Starting dnsmasq: OK
W: [pulseaudio] main.c: This program is not intended to be run as root (unless --system is specified).

W: [pulseaudio] main.c: Compiled with DEPRECATED libsamplerate support!
fstrim: Starting fstrim process (657)...
Starting input-event-daemon: done
root@rk3566-buildroot:/# Date: 2025-04-08 UTC
[11:04:04.217] weston 13.0.1
               https://wayland.freedesktop.org
               Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/
               Build: linux-5.10-gen-rkr8+
[11:04:04.219] Command line: /usr/bin/weston --debug
[11:04:04.219] OS: Linux, 5.10.209, #1 SMP Mon Apr 7 16:29:11 CST 2025, aarch64
[11:04:04.219] Flight recorder: enabled
[11:04:04.219] warning: XDG_RUNTIME_DIR "/var/run" is not configured
correctly.  Unix access mode must be 0700 (current mode is 0755),
and must be owned by the user UID 0 (current owner is UID 0).
Refer to your distribution on how to get it, or
http://www.freedesktop.org/wiki/Specifications/basedir-spec
on how to implement it.
[11:04:04.228] Using config file '/etc/xdg/weston/weston.ini'
WARNING: debug protocol has been enabled. This is a potential denial-of-service attack vector and information leak.
[11:04:04.230] Output repaint window is -1 ms maximum.
[11:04:04.232] Loading module '/usr/lib/libweston-13/drm-backend.so'
[11:04:04.235] initializing drm backend
[11:04:04.235] Entering mirror mode.
[11:04:04.235] Trying direct launcher...
[11:04:04.238] using /dev/dri/card0
[11:04:04.238] DRM: does not support atomic modesetting
[11:04:04.238] DRM: does not support GBM modifiers
[11:04:04.238] DRM: does not support async page flipping
[11:04:04.238] DRM: supports picture aspect ratio
[11:04:04.241] Loading module '/usr/lib/libweston-13/gl-renderer.so'
[11:04:04.269] EGL version: 1.4 Bifrost-"g13p0-01eac0"
[11:04:04.269] EGL vendor: ARM
[11:04:04.269] EGL client APIs: OpenGL_ES
[11:04:04.269] EGL features:
               EGL Wayland extension: yes
               context priority: yes
               buffer age: no
               partial update: yes
               swap buffers with damage: no
               configless context: yes
               surfaceless context: yes
               dmabuf support: modifiers
[11:04:04.288] GL version: OpenGL ES 3.2 v1.g13p0-01eac0.98c5dad4e3309b873e3189000b74ea36
[11:04:04.288] GLSL version: OpenGL ES GLSL ES 3.20
[11:04:04.288] GL vendor: ARM
[11:04:04.288] GL renderer: Mali-G52
E: [pulseaudio] module-rescue-streams.c: module-rescue-stream is obsolete and should no longer be loaded. Please remove it from your configuration.
E: [pulseaudio] module-console-kit.c: GetSessionsForUnixUser() call failed: org.freedesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files
E: [pulseaudio] module.c: Failed to load module "module-console-kit" (argument: ""): initialization failed.
W: [pulseaudio] server-lookup.c: Unable to contact D-Bus: org.freedesktop.DBus.Error.NotSupported: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead
W: [pulseaudio] main.c: Unable to contact D-Bus: org.freedesktop.DBus.Error.NotSupported: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead
[11:04:04.489] GL ES 3.2 - renderer features:
               read-back format: ARGB8888
               glReadPixels supports y-flip: no
               wl_shm 10 bpc formats: yes
               wl_shm 16 bpc formats: no
               wl_shm half-float formats: no
               internal R and RG formats: yes
               OES_EGL_image_external: yes
[   11.575609] file system registered
               wl_shm sub-image to texture: yes
[11:04:04.489] Using GL renderer
[11:04:04.513] event5  - adc-keys: is tagged by udev as: Keyboard
[11:04:04.514] event5  - adc-keys: device is a keyboard
[11:04:04.517] event6  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[11:04:04.517] event6  - Logitech USB Optical Mouse: device is a pointer
[11:04:04.520] event2  - rk805 pwrkey: is tagged by udev as: Keyboard
[11:04:04.521] event2  - rk805 pwrkey: device is a keyboard
[11:04:04.522] event0  - hdmi_cec_key: is tagged by udev as: Keyboard
[11:04:04.522] event0  - hdmi_cec_key: device is a keyboard
[11:04:04.524] event1  - fe6e0030.pwm: is tagged by udev as: Keyboard
[11:04:04.524] event1  - fe6e0030.pwm: device is a keyboard
[11:04:04.527] event3  - rockchip-rk809 Headset: is tagged by udev as: Switch
[11:04:04.539] event3  - not using input device '/dev/input/event3'
[11:04:04.540] event4  - bt-powerkey: is tagged by udev as: Keyboard
[11:04:04.541] event4  - bt-powerkey: device is a keyboard
[   11.652135] read descriptors
[   11.652194] read strings
[11:04:04.590] libinput: configuring device "adc-keys".
[11:04:04.590] libinput: configuring device "Logitech USB Optical Mouse".
[11:04:04.590] libinput: configuring device "rk805 pwrkey".
[11:04:04.590] libinput: configuring device "hdmi_cec_key".
[11:04:04.590] libinput: configuring device "fe6e0030.pwm".
[11:04:04.590] libinput: configuring device "bt-powerkey".
[11:04:04.591] Registered plugin API 'weston_drm_output_api_v1' of size 40
[11:04:04.591] Color manager: no-op
[11:04:04.591] Compositor capabilities:
               arbitrary surface rotation: yes
               screen capture uses y-flip: yes
               cursor planes: yes
               arbitrary resolutions: no
               view mask clipping: yes
               explicit sync: yes
               color operations: no
               presentation clock: CLOCK_MONOTONIC, id 1
               presentation clock resolution: 0.000000001 s
[11:04:04.592] Loading module '/usr/lib/weston/desktop-shell.so'
[11:04:04.632] DRM: head 'HDMI-A-1' found, connector 114 is connected, EDID make 'GSM', model '27MP35', serial ''
               Supported EOTF modes: SDR
[11:04:04.633] launching '/usr/libexec/weston-keyboard'
[11:04:04.635] launching '/usr/libexec/weston-desktop-shell'
[11:04:04.636] HDMI-A-1 using at least 2 buffers
[11:04:04.637] Output 'HDMI-A-1' attempts EOTF mode: SDR
[11:04:04.637] Output 'HDMI-A-1' using color profile: stock sRGB color profile
[11:04:04.638] Chosen EGL config details: id:   9 rgba: 8 8 8 0 buf: 24 dep:  0 stcl: 0 int: 0-1 type: win|pbf|swap_preserved vis_id: XRGB8888 (0x34325258)
[11:04:04.639] Output HDMI-A-1 (crtc 85) video modes:
               [email protected], preferred, current, 148.5 MHz
               [email protected] 16:9, 148.5 MHz
               [email protected] 16:9, 148.4 MHz
               [email protected], 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 16:9, 148.5 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected], 119.0 MHz
               [email protected], 101.0 MHz
               [email protected], 108.0 MHz
               [email protected], 135.0 MHz
               [email protected], 108.0 MHz
               [email protected], 88.8 MHz
               [email protected], 71.0 MHz
               [email protected], 108.0 MHz
               [email protected], 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected], 78.8 MHz
               [email protected], 65.0 MHz
               [email protected], 49.5 MHz
               [email protected], 40.0 MHz
               [email protected] 16:9, 27.0 MHz
               [email protected] 4:3, 27.0 MHz
               [email protected] 16:9, 27.0 MHz
               [email protected], 27.0 MHz
               [email protected] 16:9, 27.0 MHz
               [email protected], 31.5 MHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 25.2 MHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 28.3 MHz
[11:04:04.639] associating input device event5 with output HDMI-A-1 (none by udev)
[11:04:04.639] associating input device event6 with output HDMI-A-1 (none by udev)
[11:04:04.639] associating input device event2 with output HDMI-A-1 (none by udev)
[11:04:04.639] associating input device event0 with output HDMI-A-1 (none by udev)
[11:04:04.639] associating input device event1 with output HDMI-A-1 (none by udev)
[11:04:04.639] associating input device event4 with output HDMI-A-1 (none by udev)
[11:04:04.639] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1
could not load cursor 'dnd-move'
could not load cursor 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
could not load cursor 'dnd-none'
[   11.835855] dwc3 fcc00000.dwc3: device reset
[   11.949125] android_work: sent uevent USB_STATE=CONNECTED
[   12.022564] android_work: sent uevent USB_STATE=CONFIGURED
xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[   13.499328] Freeing drm_logo memory: 1384K

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ll
total 5948
drwxr-xr-x  21 root root    4096 Apr  8 11:03 ./
drwxr-xr-x  21 root root    4096 Apr  8 11:03 ../
drwxr-xr-x   4 root root    4096 Aug  4  2017 .cache/
-rw-r--r--   1 root root       0 Aug  4  2017 .resized
-rw-r--r--   1 root root       0 Apr  3  2024 .skip_fsck
lrwxrwxrwx   1 root root       7 Apr  7 08:42 bin -> usr/bin/
-rw-r--r--   1 root root     489 Apr  3  2024 busybox.fragment
lrwxrwxrwx   1 root root       8 Apr  7 09:58 data -> userdata/
drwxr-xr-x  14 root root    3720 Apr  8 11:04 dev/
drwxr-xr-x  25 root root    4096 Aug  4  2017 etc/
drwxr-xr-x   2 root root    4096 Apr  7 09:58 info/
lrwxrwxrwx   1 root root       7 Apr  7 08:42 lib -> usr/lib/
lrwxrwxrwx   1 root root       3 Apr  7 08:42 lib64 -> lib/
lrwxrwxrwx   1 root root      11 Apr  7 09:12 linuxrc -> bin/busybox*
drwx------   2 root root   16384 Apr  7 10:00 lost+found/
drwxr-xr-x  11 root root    4096 Apr  7 09:50 media/
drwxr-xr-x   5 root root    4096 Apr  7 09:58 mnt/
drwxr-xr-x   3 root root    4096 Apr  8 11:03 oem/
drwxr-xr-x   3 root root    4096 Apr  7 09:50 opt/
dr-xr-xr-x 213 root root       0 Apr  8 11:03 proc/
drwxr-xr-x  17 root root    4096 Apr  7 09:53 rockchip-test/
drwx------   2 root root    4096 Aug  4  2017 root/
drwxr-xr-x  12 root root     580 Apr  8 11:04 run/
lrwxrwxrwx   1 root root       8 Apr  7 08:42 sbin -> usr/sbin/
lrwxrwxrwx   1 root root      10 Apr  7 09:58 sdcard -> mnt/sdcard/
dr-xr-xr-x  14 root root       0 Apr  8 11:03 sys/
drwxr-xr-x   3 root root    4096 Apr  7 09:58 system/
drwxrwxrwt   6 root root     240 Apr  8 11:04 tmp/
lrwxrwxrwx   1 root root       9 Apr  7 09:58 udisk -> mnt/udisk/
drwxr-xr-x   4 root root    4096 Apr  8 11:03 userdata/
drwxr-xr-x   7 root root    4096 Apr  7 09:58 usr/
drwxr-xr-x   6 root root    4096 Apr  7 10:00 var/
lrwxrwxrwx   1 root root       6 Apr  7 09:58 vendor -> system/
-rw-r--r--   1 root root  353405 Aug  4  2017 wayland-screenshot-2017-08-04_17-01-04.png
-rw-r--r--   1 root root 1911487 Aug  4  2017 wayland-screenshot-2017-08-04_17-01-39.png
-rw-r--r--   1 root root 1799767 Aug  4  2017 wayland-screenshot-2017-08-04_17-01-52.png
-rw-r--r--   1 root root 1934863 Aug  4  2017 wayland-screenshot-2017-08-04_17-02-51.png
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ifconfig
eth0      Link encap:Ethernet  HWaddr 62:C5:4D:F3:DB:64  
          inet addr:192.168.3.144  Bcast:192.168.3.255  Mask:255.255.255.0
          inet6 addr: fe80::60c5:4dff:fef3:db64/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:244 errors:0 dropped:0 overruns:0 frame:0
          TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:40219 (39.2 KiB)  TX bytes:5350 (5.2 KiB)
          Interrupt:48 

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: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)

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size:  128 KByte (default)
------------------------------------------------------------
[  1] local 192.168.3.144 port 5001 connected with 192.168.3.208 port 46390
[ ID] Interval       Transfer     Bandwidth
[  1] 0.00-10.05 sec  1.09 GBytes   934 Mbits/sec

^Croot@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 

[END] 2025/4/8 19:08:47
 

猜你喜欢

转载自blog.csdn.net/wb4916/article/details/147075330