20250410在荣品的PRO-RK3566开发板使用Rockchip原厂的buildroot系统时自动挂载eth0【直接编译进IMG】

【暂时没有找到第一次编译就可以修改的地方!!!!】
rootroot@rootroot-X99-Turbo:~/RK3566_RK3568_Linux5.10_V1.2.0$ find . -name interfaces
【完整编译之后,基本确认修改这里有效。】
./buildroot/output/rockchip_rk3566/target/etc/network/interfaces
./buildroot/output/rockchip_rk3566_recovery/target/etc/network/interfaces


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


20250410在荣品的PRO-RK3566开发板使用Rockchip原厂的buildroot系统时自动挂载eth0【直接编译进IMG】
2025/4/10 16:12


缘起:荣品的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
eth0      Link encap:Ethernet  HWaddr 16:5F:03:23:18:A8  
          inet addr:192.168.3.239  Bcast:192.168.3.255  Mask:255.255.255.0
          inet6 addr: fe80::145f:3ff:fe23:18a8/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:152 errors:0 dropped:0 overruns:0 frame:0
          TX packets:20 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:30903 (30.1 KiB)  TX bytes:3188 (3.1 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)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:9A:5F:9A  
          inet6 addr: fe80::72f7:54ff:fe9a:5f9a/64 Scope:Link
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:446 (446.0 B)

wlan1     Link encap:Ethernet  HWaddr 72:F7:54:9A:5F:9A  
          inet6 addr: fe80::9d9c:27ee:9af3:7f45/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:858 (858.0 B)

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# cd /etc/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 Apr 10 06:52 ../
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 02:32 if-pre-up.d/
drwxr-xr-x  2 root root 4096 Apr  3  2024 if-up.d/
-rw-r--r--  1 root root  186 Apr  9 08:53 interfaces
drwxr-xr-x  2 root root 4096 Apr  3  2024 interfaces.d/
-rwxr-xr-x  1 root root  846 Apr  7 09:31 nfs_check*
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


# 2025/4/9 16:53 wenyuanbo add
auto eth0
iface eth0 inet dhcp

root@rk3566-buildroot:/etc/network# 

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/10 16:17:50
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# 
root@rk3566-buildroot:/etc/network# reboot
root@rk3566-buildroot:/etc/network# Stopping input-event-daemon: done
fstrim: Stopping fstrim process (779)...
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... [08:17:53.799] caught signal 15
done.
[08:17:53.801] event5  - adc-keys: device removed
Stopping chrony: [08:17:53.824] event6  - Logitech USB Optical Mouse: device removed
OK
Stopping dhcpcd...
no /sbin/dhcpcd found; none killed
[08:17:53.843] event2  - rk805 pwrkey: device removed
[08:17:53.859] event0  - hdmi_cec_key: device removed
[08:17:53.878] event1  - fe6e0030.pwm: device removed
Stopping network: [08:17:53.886] event4  - bt-powerkey: device removed
[ 5110.975030] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_enable] Update mode to 1920x1080p60, type: 11(if:800, flag:0x0) for vp0 dclk: 148500000
[ 5111.042482] rockchip-vop2 fe040000.vop: [drm:vop2_crtc_atomic_disable] Crtc atomic disable vp0
/etc/xdg/weston/weston.ini.d/02-desktop.ini: "shell/locking" from "false" to "true"
arm_release_ver: g13p0-01eac0, rk_so_ver: 10
[ 5111.168701] android_work: did not send uevent (0 0 0000000000000000)
[ 5111.168768] dwc3 fcc00000.dwc3: request 00000000439be628 was not queued to ep0out
[ 5111.389200] rk_gmac-dwmac fe010000.ethernet eth0: Link is Down
OK
Stopping bluetoothd: OK
Stopping Wi-Fi/BT...E: [pulseaudio] bluez5-util.c: org.bluez.BatteryProviderManager1.UnregisterBatteryProvider() Failed: org.freedesktop.DBus.Error.NoReply:Message recipient disconnected from message bus without replying
stopped process in pidfile '/run/wpa_supplicant.wlan0.pid' (pid 648)
[ 5111.521831] [dhd] [wlan0] dhd_pri_stop : tx queue stopped
[ 5111.521865] [dhd] [wlan0] dhd_stop : Enter
[ 5111.522464] [dhd] dhd_stop: ######### called for ifidx=0 #########
[ 5111.524707] [dhd] dhd_rx_frame: dhd_stop in progress ignore received packet
[ 5111.524726] [dhd] [Repeats 0 times]
[ 5111.526299] [dhd] CFG80211-ERROR) wl_cfgp2p_down : Clean up the p2p discovery IF
[ 5111.526321] [dhd] CFGP2P-ERROR) wl_cfgp2p_disable_discovery :  do nothing, not initialized
[ 5111.585956] [dhd] CFGP2P-ERROR) wl_cfgp2p_del_p2p_disc_if : P2P interface unregistered
[ 5111.589740] [dhd] dhd_stop: making dhdpub up FALSE
[ 5111.589795] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 1 -> mode 0
[ 5111.589813] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
[ 5111.589838] [dhd] [wlan0] wl_android_wifi_off :  g_wifi_on=1 force_off=1
[ 5111.589854] [dhd] dhd_bus_devreset: == Power OFF ==
[ 5111.590181] [dhd] dhd_bus_stop: making DHD_BUS_DOWN
[ 5111.590258] [dhd] bcmsdh_oob_intr_unregister: Enter
[ 5111.590317] [dhd] dhd_bus_devreset: making dhdpub up FALSE
[ 5111.590336] [dhd] dhd_txglom_enable: enable 0
[ 5111.590352] [dhd] dhd_bus_devreset: making DHD_BUS_DOWN
[ 5111.590461] [dhd] wifi_platform_set_power = 0, delay: 10 msec
[ 5111.590481] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[ 5111.590496] [WLAN_RFKILL]: rockchip_wifi_power: 0
[ 5111.590510] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 5111.590523] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 5111.590536] [WLAN_RFKILL]: wifi shut off power [GPIO-1-1]
[ 5111.601596] [dhd] wifi_platform_set_power = 0, sleep done: 10 msec
[ 5111.601641] [dhd] [wlan0] wl_android_wifi_off : out
[ 5111.601682] [dhd] [wlan0] dhd_stop : Exit
Done
Stopping system message bus: done
Saving random seed: OK
Stopping irqbalance: OK
Stopping klogd: OK
Stopping syslogd: OK
log-guardian: Stopping log-guardian (314)...
[ 5111.878254] ffs_data_put(): freeing
[ 5111.897670] 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
[ 5113.903699] [dhd] dhd_reboot_callback: code = 1
[ 5113.903805] [dhd] dhd_module_cleanup: Enter
[ 5113.904066] [dhd] sdioh_remove: Enter
[ 5113.904560] [dhd] dhdsdio_disconnect : no mutex held
[ 5113.904591] [dhd] dhdsdio_disconnect : set mutex lock
[ 5113.904634] [dhd] dhd_detach: making dhdpub up FALSE
[ 5113.904658] [dhd] bcmsdh_oob_intr_unregister: Enter
[ 5113.904676] [dhd] bcmsdh_oob_intr_unregister: irq is not registered
[ 5113.904701] [dhd] dhd_wlfc_deinit():3903, Already disabled!
[ 5113.946266] [dhd] dhd_detach(): thread:dhd_watchdog_thread:251 wait for terminate
[ 5113.946421] [dhd] dhd_detach(): thread:dhd_watchdog_thread:251 terminated OK
[ 5113.946494] [dhd] dhd_detach(): thread:dhd_rxf:253 wait for terminate
[ 5113.946562] [dhd] dhd_detach(): thread:dhd_rxf:253 terminated OK
[ 5113.946607] [dhd] dhd_detach(): thread:dhd_dpc:252 wait for terminate
[ 5113.946640] [dhd] dhd_dpc_thread: Unexpected up_cnt 0
[ 5113.947326] [dhd] dhd_detach(): thread:dhd_dpc:252 terminated OK
[ 5113.993342] [dhd] CFG80211-ERROR) wl_cfg80211_clear_per_bss_ies : netinfo or netinfo->wdev is NULL
[ 5114.086569] [dhd] dhd_tcpack_suppress_set 378: already set to 0
[ 5114.086690] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 7, size 0
[ 5114.086715] [dhd] dhdsdio_disconnect : mutex is released.
[ 5114.087450] [dhd] unregister wifi platform drivers
[ 5114.087467] [dhd] wifi_platform_bus_enumerate device present 0
[ 5114.087477] [dhd] ======== Card detection to remove SDIO card! ========
[ 5114.087491] [dhd] STATIC-MSG) dhd_static_buf_exit : Enter
[ 5114.087604] [dhd] dhd_module_cleanup: Exit
[ 5114.088916] rk808 0-0020: reboot: not restore POWER_EN
[ 5114.143660] mpp_rkvdec2 fdf80200.rkvdec: shutdown device
[ 5114.144145] mpp_rkvdec2 fdf80200.rkvdec: shutdown success
[ 5114.144642] mpp_rkvenc fdf40000.rkvenc: shutdown device
[ 5114.145105] mpp_rkvenc fdf40000.rkvenc: shutdown success
[ 5114.156914] fan53555-regulator 0-001c: fan53555..... reset
[ 5114.158474] fan53555-regulator 0-001c: reset: force fan53555_reset ok!
[ 5114.160101] [WLAN_RFKILL]: Enter rfkill_wlan_shutdown
[ 5114.160559] [WLAN_RFKILL]: rockchip_wifi_power: 0
[ 5114.160985] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 5114.161503] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[ 5114.162020] [WLAN_RFKILL]: wifi shut off power [GPIO-1-1]
[ 5114.162501] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 0
[ 5114.163764] rkisp_hw fdff0000.rkisp: rkisp_hw_shutdown
[ 5114.164399] mpp-iep2 fdef0000.iep: shutdown device
[ 5114.164832] mpp-iep2 fdef0000.iep: shutdown success
[ 5114.165308] mpp_vepu2 fdee0000.vepu: shutdown device
[ 5114.165761] mpp_vepu2 fdee0000.vepu: shutdown success
[ 5114.166273] mpp_jpgdec fded0000.jpegd: shutdown device
[ 5114.166738] mpp_jpgdec fded0000.jpegd: shutdown success
[ 5114.167255] mpp_vdpu2 fdea0400.vdpu: shutdown device
[ 5114.167707] mpp_vdpu2 fdea0400.vdpu: shutdown success
[ 5114.168474] xhci-hcd xhci-hcd.4.auto: remove, state 4
[ 5114.168941] usb usb6: USB disconnect, device number 1
[ 5114.170311] xhci-hcd xhci-hcd.4.auto: USB bus 6 deregistered
[ 5114.171066] xhci-hcd xhci-hcd.4.auto: remove, state 4
[ 5114.171530] usb usb5: USB disconnect, device number 1
[ 5114.173022] xhci-hcd xhci-hcd.4.auto: USB bus 5 deregistered
[ 5114.174988] dwc3 fcc00000.dwc3: Wakeup sysfs attributes not added
[ 5114.182272] 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: 24ps, dqs1: -96ps, dqs2: -96ps, dqs3: -144ps, 

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: 51.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: 43.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:0x3f
rx vref: 17.4%
tx vref: 29.0%
cs 0:
the read training result:
DQS0:0x34, DQS1:0x37, DQS2:0x34, DQS3:0x34, 
min  : 0x8  0x6  0x5  0x6  0x4  0x2  0x5  0x4 , 0x6  0x8  0xa  0x6  0x1  0x5  0x6  0x7 ,
       0x7  0x7  0x4  0x4  0x1  0x3  0x3  0x3 , 0x7  0x3  0x5  0x4  0x1  0x2  0x5  0x2 ,
mid  :0x23 0x20 0x20 0x22 0x1f 0x1e 0x20 0x20 ,0x21 0x23 0x26 0x23 0x1d 0x22 0x23 0x23 ,
      0x23 0x23 0x21 0x20 0x1e 0x1f 0x20 0x1f ,0x23 0x1e 0x20 0x20 0x1d 0x1e 0x20 0x1d ,
max  :0x3f 0x3a 0x3c 0x3e 0x3b 0x3b 0x3b 0x3c ,0x3d 0x3f 0x42 0x40 0x3a 0x40 0x40 0x40 ,
      0x40 0x40 0x3e 0x3d 0x3b 0x3c 0x3d 0x3c ,0x3f 0x39 0x3c 0x3c 0x3a 0x3a 0x3c 0x39 ,
range:0x37 0x34 0x37 0x38 0x37 0x39 0x36 0x38 ,0x37 0x37 0x38 0x3a 0x39 0x3b 0x3a 0x39 ,
      0x39 0x39 0x3a 0x39 0x3a 0x39 0x3a 0x39 ,0x38 0x36 0x37 0x38 0x39 0x38 0x37 0x37 ,
the write training result:
DQS0:0x42, DQS1:0x33, DQS2:0x33, DQS3:0x2c, 
min  :0x5c 0x5a 0x58 0x5a 0x57 0x56 0x57 0x58 0x57 ,0x4a 0x4c 0x50 0x4d 0x49 0x4b 0x4b 0x4c 0x48 ,
      0x4d 0x4d 0x4b 0x4a 0x47 0x48 0x49 0x4b 0x4a ,0x46 0x43 0x44 0x43 0x41 0x42 0x44 0x42 0x3e ,
mid  :0x77 0x75 0x74 0x75 0x73 0x72 0x72 0x74 0x72 ,0x65 0x67 0x6b 0x68 0x63 0x66 0x67 0x68 0x64 ,
      0x69 0x69 0x66 0x66 0x62 0x63 0x65 0x66 0x65 ,0x61 0x5c 0x5d 0x5d 0x5c 0x5c 0x60 0x5c 0x5b ,
max  :0x92 0x91 0x90 0x91 0x8f 0x8e 0x8e 0x91 0x8e ,0x81 0x82 0x86 0x84 0x7e 0x82 0x84 0x85 0x81 ,
      0x85 0x85 0x82 0x83 0x7e 0x7f 0x81 0x81 0x80 ,0x7c 0x76 0x77 0x77 0x77 0x76 0x7c 0x77 0x78 ,
range:0x36 0x37 0x38 0x37 0x38 0x38 0x37 0x39 0x37 ,0x37 0x36 0x36 0x37 0x35 0x37 0x39 0x39 0x39 ,
      0x38 0x38 0x37 0x39 0x37 0x37 0x38 0x36 0x36 ,0x36 0x33 0x33 0x34 0x36 0x34 0x38 0x35 0x3a ,
CA Training result:
cs:0 min  :0x4f 0x45 0x45 0x3b 0x46 0x3c 0x46 ,0x4d 0x40 0x43 0x39 0x40 0x36 0x40 ,
cs:0 mid  :0x88 0x89 0x7f 0x7e 0x7f 0x7d 0x70 ,0x86 0x83 0x7c 0x7c 0x7b 0x7a 0x6a ,
cs:0 max  :0xc2 0xce 0xb9 0xc1 0xb9 0xbf 0x9b ,0xbf 0xc7 0xb5 0xbf 0xb7 0xbe 0x95 ,
cs:0 range:0x73 0x89 0x74 0x86 0x73 0x83 0x55 ,0x72 0x87 0x72 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
MMC: no card present
mmc_init: -123, time 0
spl: mmc init failed with error: -123
Trying to boot from MMC1
SPL: A/B-slot: _a, successful: 0, tries-remain: 7
Trying fit image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 (gzip @0x00240000) ... sha256(f3a66d3baf...) + sha256(b5946ac63d...) + OK
## Checking uboot 0x00a00000 (gzip @0x00c00000) ... sha256(f1f3bf2e0e...) + sha256(d1cdc492d5...) + 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(8b1cd1b914...) + sha256(28fba8b7d7...) + OK
Jumping to U-Boot(0x00a00000) via ARM Trusted Firmware(0x00040000)
Total: 166.751/245.840 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 10 2025 - 09:06:38 +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
MMC: no card present
mmc_init: -123, time 0
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
hdmi@fe0a0000 disconnected
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 24000 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:   4c5428944f0783a16105f79942cc077e4f7b46afb3d8fbe0633c2300cac90523
   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:    169541 Bytes = 165.6 KiB
     Architecture: AArch64
     Load Address: 0x08300000
     Hash algo:    sha256
     Hash value:   7640b6a1046ae061e6a65db50e1811b1dc88fa391c25f40d23477bd10777185e
   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 000000000832c644
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: 843.915/892.89 ms

Starting kernel ...

[    0.897349] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    0.897374] 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 Thu Apr 10 09:06:55 CST 2025
[    0.899167] random: crng init done
[    0.903078] Machine model: Rockchip RK3566 EVB2 LP4X V10 Board
[    0.936822] earlycon: uart8250 at MMIO32 0x00000000fe660000 (options '')
[    0.941505] printk: bootconsole [uart8250] enabled
[    0.943100] efi: UEFI not found.
[    0.978383] Zone ranges:
[    0.978637]   DMA      [mem 0x0000000000200000-0x000000007fffffff]
[    0.979225]   DMA32    empty
[    0.979499]   Normal   empty
[    0.979772] Movable zone start for each node
[    0.980174] Early memory node ranges
[    0.980512]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    0.981102]   node   0: [mem 0x0000000009400000-0x000000007fffffff]
[    0.981694] Initmem setup node 0 [mem 0x0000000000200000-0x000000007fffffff]
[    0.997477] cma: Reserved 16 MiB at 0x000000007e800000
[    0.998046] psci: probing for conduit method from DT.
[    0.998535] psci: PSCIv1.1 detected in firmware.
[    0.998970] psci: Using standard PSCI v0.2 function IDs
[    0.999466] psci: Trusted OS migration not required
[    0.999928] psci: SMC Calling Convention v1.2
[    1.000720] percpu: Embedded 30 pages/cpu s83800 r8192 d30888 u122880
[    1.001435] Detected VIPT I-cache on CPU0
[    1.001851] CPU features: detected: GIC system register CPU interface
[    1.002459] CPU features: detected: Virtualization Host Extensions
[    1.003045] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    1.003721] alternatives: patching kernel code
[    1.005975] Built 1 zonelists, mobility grouping on.  Total pages: 511496
[    1.006621] 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/10/2025
[    1.010110] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[    1.011093] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    1.011825] mem auto-init: stack:off, heap alloc:off, heap free:off
[    1.037436] Memory: 1982960K/2078720K available (18752K kernel code, 3490K rwdata, 6932K rodata, 6720K init, 590K bss, 79376K reserved, 16384K cma-reserved)
[    1.038875] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    1.039523] ftrace: allocating 57309 entries in 224 pages
[    1.112351] ftrace: allocated 224 pages with 3 groups
[    1.113163] rcu: Hierarchical RCU implementation.
[    1.113614] rcu:     RCU event tracing is enabled.
[    1.114043] rcu:     RCU dyntick-idle grace-period acceleration is enabled.
[    1.114673] rcu:     RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=4.
[    1.115288]     Rude variant of Tasks RCU enabled.
[    1.115716] rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
[    1.116427] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    1.121410] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    1.123479] GICv3: GIC: Using split EOI/Deactivate mode
[    1.123985] GICv3: 320 SPIs implemented
[    1.124348] GICv3: 0 Extended SPIs implemented
[    1.124801] GICv3: Distributor has no Range Selector support
[    1.125340] GICv3: 16 PPIs implemented
[    1.126123] GICv3: CPU0: found redistributor 0 region 0:0x00000000fd460000
[    1.126886] ITS [mem 0xfd440000-0xfd45ffff]
[    1.127347] ITS@0x00000000fd440000: allocated 8192 Devices @29d0000 (indirect, esz 8, psz 64K, shr 0)
[    1.128246] ITS@0x00000000fd440000: allocated 32768 Interrupt Collections @29e0000 (flat, esz 2, psz 64K, shr 0)
[    1.129208] ITS: using cache flushing for cmd queue
[    1.130003] GICv3: using LPI property table @0x00000000029f0000
[    1.130675] GIC: using cache flushing for LPI property table
[    1.131216] GICv3: CPU0: using allocated LPI pending table @0x0000000002a00000
[    1.131965] rcu:     Offload RCU callbacks from CPUs: (none).
[    1.160589] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    1.161179] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    1.162199] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    1.163991] Console: colour dummy device 80x25
[    1.164455] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    1.165428] pid_max: default: 32768 minimum: 301
[    1.165983] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.166689] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
[    1.168727] rcu: Hierarchical SRCU implementation.
[    1.169859] Platform MSI: interrupt-controller@fd440000 domain created
[    1.170993] PCI/MSI: /interrupt-controller@fd400000/interrupt-controller@fd440000 domain created
[    1.172130] EFI services will not be available.
[    1.172857] 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.174513] Detected VIPT I-cache on CPU1
[    1.174545] GICv3: CPU1: found redistributor 100 region 0:0x00000000fd480000
[    1.174567] GICv3: CPU1: using allocated LPI pending table @0x0000000002a10000
[    1.174621] CPU1: Booted secondary processor 0x0000000100 [0x412fd050]
[    1.175892] Detected VIPT I-cache on CPU2
[    1.175919] GICv3: CPU2: found redistributor 200 region 0:0x00000000fd4a0000
[    1.175936] GICv3: CPU2: using allocated LPI pending table @0x0000000002a20000
[    1.175974] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    1.177198] Detected VIPT I-cache on CPU3
[    1.177223] GICv3: CPU3: found redistributor 300 region 0:0x00000000fd4c0000
[    1.177240] GICv3: CPU3: using allocated LPI pending table @0x0000000002a30000
[    1.177274] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    1.177364] smp: Brought up 1 node, 4 CPUs
[    1.184773] SMP: Total of 4 processors activated.
[    1.185226] CPU features: detected: Privileged Access Never
[    1.185751] CPU features: detected: LSE atomic instructions
[    1.186275] CPU features: detected: User Access Override
[    1.186776] CPU features: detected: 32-bit EL0 Support
[    1.187260] CPU features: detected: Common not Private translations
[    1.187849] CPU features: detected: RAS Extension Support
[    1.188357] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    1.189173] CPU features: detected: CRC32 instructions
[    1.189657] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    1.190312] CPU features: detected: RCpc load-acquire (LDAPR)
[    1.217145] CPU: All CPU(s) started at EL2
[    1.218926] devtmpfs: initialized
[    1.238752] Registered cp15_barrier emulation handler
[    1.239246] Registered setend emulation handler
[    1.239867] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
[    1.240796] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    1.241911] pinctrl core: initialized pinctrl subsystem
[    1.242952] DMI not present or invalid.
[    1.243603] NET: Registered protocol family 16
[    1.245561] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations
[    1.246361] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    1.249183] Registered FIQ tty driver
[    1.249886] thermal_sys: Registered thermal governor 'fair_share'
[    1.249891] thermal_sys: Registered thermal governor 'step_wise'
[    1.250469] thermal_sys: Registered thermal governor 'user_space'
[    1.251036] thermal_sys: Registered thermal governor 'power_allocator'
[    1.251892] thermal thermal_zone1: power_allocator: sustainable_power will be estimated
[    1.253336] cpuidle: using governor menu
[    1.253970] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    1.254733] ASID allocator initialised with 65536 entries
[    1.257582] ramoops: dmesg-0    0x20000@0x0000000000110000
[    1.259517] ramoops: console    0x80000@0x0000000000130000
[    1.260029] ramoops: pmsg    0x50000@0x00000000001b0000
[    1.260829] printk: console [ramoops-1] enabled
[    1.261258] pstore: Registered ramoops as persistent store backend
[    1.261841] ramoops: using 0xf0000@0x110000, ecc: 0
[    1.297417] rockchip-gpio fdd60000.gpio0: probed /pinctrl/gpio0@fdd60000
[    1.298616] rockchip-gpio fe740000.gpio1: probed /pinctrl/gpio1@fe740000
[    1.299719] rockchip-gpio fe750000.gpio2: probed /pinctrl/gpio2@fe750000
[    1.300899] rockchip-gpio fe760000.gpio3: probed /pinctrl/gpio3@fe760000
[    1.301987] rockchip-gpio fe770000.gpio4: probed /pinctrl/gpio4@fe770000
[    1.302723] rockchip-pinctrl pinctrl: probed pinctrl
[    1.325117] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    1.325657] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    1.326207] fiq_debugger_probe: could not install nmi irq handler
[[    1.326868] printk: console [ttyFIQ0] enabled
    1.326868] printk: console [ttyFIQ0] enabled
[    1.327728] printk: bootconsole [uart8250] disabled
[    1.327728] printk: bootconsole [uart8250] disabled
[    1.328362] Registered fiq debugger ttyFIQ0
[    1.329053] vcc3v3_sys: supplied by dc_12v
[    1.329294] vcc5v0_sys: supplied by dc_12v
[    1.329538] vcc5v0_usb: supplied by dc_12v
[    1.329966] vcc5v0_host: supplied by vcc5v0_usb
[    1.330434] vcc5v0_otg: supplied by vcc5v0_usb
[    1.330978] vcc3v3_pcie: supplied by dc_12v
[    1.331749] iommu: Default domain type: Translated 
[    1.335314] SCSI subsystem initialized
[    1.335524] usbcore: registered new interface driver usbfs
[    1.335571] usbcore: registered new interface driver hub
[    1.335608] usbcore: registered new device driver usb
[    1.335696] mc: Linux media interface: v0.10
[    1.335726] videodev: Linux video capture interface: v2.00
[    1.335795] pps_core: LinuxPPS API ver. 1 registered
[    1.335804] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    1.335826] PTP clock support registered
[    1.335865] EDAC MC: Ver: 3.0.0
[    1.336731] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.
[    1.336799] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    1.338732] Advanced Linux Sound Architecture Driver Initialized.
[    1.339125] Bluetooth: Core ver 2.22
[    1.339160] NET: Registered protocol family 31
[    1.339169] Bluetooth: HCI device and connection manager initialized
[    1.339182] Bluetooth: HCI socket layer initialized
[    1.339192] Bluetooth: L2CAP socket layer initialized
[    1.339210] Bluetooth: SCO socket layer initialized
[    1.339667] rockchip-cpuinfo cpuinfo: SoC        : 35663000
[    1.339680] rockchip-cpuinfo cpuinfo: Serial        : 02baa90966263a3b
[    1.340369] clocksource: Switched to clocksource arch_sys_counter
[    1.751970] NET: Registered protocol family 2
[    1.752151] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    1.753208] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    1.753250] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    1.753334] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
[    1.753544] TCP: Hash tables configured (established 16384 bind 16384)
[    1.753659] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.753729] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
[    1.753866] NET: Registered protocol family 1
[    1.754293] RPC: Registered named UNIX socket transport module.
[    1.754304] RPC: Registered udp transport module.
[    1.754310] RPC: Registered tcp transport module.
[    1.754316] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    1.755221] PCI: CLS 0 bytes, default 64
[    1.757797] rockchip-thermal fe710000.tsadc: tsadc is probed successfully!
[    1.758737] hw perfevents: enabled with armv8_cortex_a55 PMU driver, 7 counters available
[    1.762698] Initialise system trusted keyrings
[    1.762840] workingset: timestamp_bits=62 max_order=19 bucket_order=0
[    1.766737] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    1.767322] NFS: Registering the id_resolver key type
[    1.767357] Key type id_resolver registered
[    1.767364] Key type id_legacy registered
[    1.767401] ntfs: driver 2.1.32 [Flags: R/O].
[    1.767588] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    1.767825] fuse: init (API version 7.32)
[    1.768096] SGI XFS with security attributes, no debug enabled
[    1.798479] NET: Registered protocol family 38
[    1.798511] Key type asymmetric registered
[    1.798521] Asymmetric key parser 'x509' registered
[    1.798563] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    1.798574] io scheduler mq-deadline registered
[    1.798581] io scheduler kyber registered
[    1.799264] rockchip-csi2-dphy-hw fe870000.csi2-dphy-hw: csi2 dphy hw probe successfully!
[    1.800018] rockchip-csi2-dphy csi2-dphy1: csi2 dphy1 probe successfully!
[    1.811625] rk-pcie 3c0000000.pcie: invalid prsnt-gpios property in node
[    1.812147] pwm-backlight backlight: supply power not found, using dummy regulator
[    1.812493] pwm-backlight backlight1: supply power not found, using dummy regulator
[    1.813047] iep: Module initialized.
[    1.813112] mpp_service mpp-srv: a712cbc22c5a author: Yandong Lin 2024-05-21 video: rockchip: mpp: optimize the schedule of enc/dec
[    1.813123] mpp_service mpp-srv: probe start
[    1.815087] mpp_vdpu2 fdea0400.vdpu: Adding to iommu group 1
[    1.815280] mpp_vdpu2 fdea0400.vdpu: probe device
[    1.815550] mpp_vdpu2 fdea0400.vdpu: probing finish
[    1.815977] mpp_vepu2 fdee0000.vepu: Adding to iommu group 3
[    1.816142] mpp_vepu2 fdee0000.vepu: probing start
[    1.816371] mpp_vepu2 fdee0000.vepu: probing finish
[    1.816794] mpp-iep2 fdef0000.iep: Adding to iommu group 4
[    1.816953] mpp-iep2 fdef0000.iep: probe device
[    1.817346] mpp-iep2 fdef0000.iep: allocate roi buffer failed
[    1.817381] mpp-iep2 fdef0000.iep: probing finish
[    1.817623] rk-pcie 3c0000000.pcie: IRQ msi not found
[    1.817636] rk-pcie 3c0000000.pcie: use outband MSI support
[    1.817645] rk-pcie 3c0000000.pcie: Missing *config* reg space
[    1.817664] rk-pcie 3c0000000.pcie: host bridge /pcie@fe260000 ranges:
[    1.817693] rk-pcie 3c0000000.pcie:      err 0x00f4000000..0x00f40fffff -> 0x00f4000000
[    1.817709] rk-pcie 3c0000000.pcie:       IO 0x00f4100000..0x00f41fffff -> 0x00f4100000
[    1.817729] rk-pcie 3c0000000.pcie:      MEM 0x00f4200000..0x00f5ffffff -> 0x00f4200000
[    1.817742] rk-pcie 3c0000000.pcie:      MEM 0x0300000000..0x033fffffff -> 0x0300000000
[    1.817778] rk-pcie 3c0000000.pcie: Missing *config* reg space
[    1.817812] rk-pcie 3c0000000.pcie: invalid resource
[    1.817850] mpp_jpgdec fded0000.jpegd: Adding to iommu group 2
[    1.818021] mpp_jpgdec fded0000.jpegd: probe device
[    1.818302] mpp_jpgdec fded0000.jpegd: probing finish
[    1.819647] mpp_service mpp-srv: probe success
[    1.824425] dma-pl330 fe530000.dmac: Loaded driver for PL330 DMAC-241330
[    1.824448] dma-pl330 fe530000.dmac:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.826090] dma-pl330 fe550000.dmac: Loaded driver for PL330 DMAC-241330
[    1.826105] dma-pl330 fe550000.dmac:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    1.826826] rockchip-pvtm fde00000.pvtm: pvtm@0 probed
[    1.826957] rockchip-pvtm fde80000.pvtm: pvtm@1 probed
[    1.827102] rockchip-pvtm fde90000.pvtm: pvtm@2 probed
[    1.827726] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    1.828472] arm-scmi firmware:scmi: Failed. SCMI protocol 22 not active.
[    1.828777] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    1.829886] fe650000.serial: ttyS1 at MMIO 0xfe650000 (irq = 73, base_baud = 1500000) is a 16550A
[    1.832883] rockchip-vop2 fe040000.vop: Adding to iommu group 9
[    1.840093] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x3f, primary plane phy id: 4
[    1.840139] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp1 assign plane mask: 0x0, primary plane phy id: -1
[    1.840151] rockchip-vop2 fe040000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x0, primary plane phy id: -1
[    1.840279] rockchip-vop2 fe040000.vop: [drm:vop2_bind] Cluster0-win0 as cursor plane for vp0
[    1.840325] rockchip-vop2 fe040000.vop: [drm:vop2_bind] VP1 plane_mask is zero, so ignore register crtc
[    1.840338] rockchip-vop2 fe040000.vop: [drm:vop2_bind] VP2 plane_mask is zero, so ignore register crtc
[    1.840397] [drm] failed to init overlay plane Cluster0-win1
[    1.840490] rockchip-drm display-subsystem: bound fe040000.vop (ops 0xffffffc00935f988)
[    1.840758] dwhdmi-rockchip fe0a0000.hdmi: Detected HDMI TX controller v2.11a with HDCP (DWC HDMI 2.0 TX PHY)
[    1.841267] dwhdmi-rockchip fe0a0000.hdmi: registered DesignWare HDMI I2C bus driver
[    1.841497] dwhdmi-rockchip fe0a0000.hdmi: IRQ index 1 not found
[    1.841891] rockchip-drm display-subsystem: bound fe0a0000.hdmi (ops 0xffffffc00936e510)
[    1.842194] rockchip-drm display-subsystem: route-hdmi: failed to get logo,offset
[    1.842209] rockchip-drm display-subsystem: can't not find any logo display
[    1.842219] rockchip-drm display-subsystem: failed to show kernel logo
[    1.842310] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[    1.842381] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[    1.843000] [drm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor 0
[    1.848570] input: hdmi_cec_key as /devices/platform/fe0a0000.hdmi/dw-hdmi-cec.1.auto/input/input0
[    1.849542] cacheinfo: Unable to detect cache hierarchy for CPU 0
[    1.850128] brd: module loaded
[    1.854804] loop: module loaded
[    1.855161] zram: Added device: zram0
[    1.855397] lkdtm: No crash points registered, enable through debugfs
[    1.859994] spi-nand spi4.0: unknown raw ID 00000000
[    1.860043] spi-nand: probe of spi4.0 failed with error -524
[    1.862564] rk_gmac-dwmac fe010000.ethernet: IRQ eth_lpi not found
[    1.862795] rk_gmac-dwmac fe010000.ethernet: supply phy not found, using dummy regulator
[    1.862921] rk_gmac-dwmac fe010000.ethernet: clock input or output? (input).
[    1.862934] rk_gmac-dwmac fe010000.ethernet: TX delay(0x3a).
[    1.862944] rk_gmac-dwmac fe010000.ethernet: RX delay(0x29).
[    1.862957] rk_gmac-dwmac fe010000.ethernet: integrated PHY? (no).
[    1.862992] rk_gmac-dwmac fe010000.ethernet: clock input from PHY
[    1.863240] rk_gmac-dwmac fe010000.ethernet: init for RGMII
[    1.863448] rk_gmac-dwmac fe010000.ethernet: User ID: 0x30, Synopsys ID: 0x51
[    1.863462] rk_gmac-dwmac fe010000.ethernet:     DWMAC4/5
[    1.863473] rk_gmac-dwmac fe010000.ethernet: DMA HW capability register supported
[    1.863481] rk_gmac-dwmac fe010000.ethernet: RX Checksum Offload Engine supported
[    1.863488] rk_gmac-dwmac fe010000.ethernet: TX Checksum insertion supported
[    1.863495] rk_gmac-dwmac fe010000.ethernet: Wake-Up On Lan supported
[    1.863554] rk_gmac-dwmac fe010000.ethernet: TSO supported
[    1.863563] rk_gmac-dwmac fe010000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    1.863572] rk_gmac-dwmac fe010000.ethernet: TSO feature enabled
[    1.863580] rk_gmac-dwmac fe010000.ethernet: Using 32 bits DMA width
[    1.999697] usbcore: registered new interface driver rtl8150
[    1.999764] usbcore: registered new interface driver r8152
[    2.011435] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.011476] ehci-pci: EHCI PCI platform driver
[    2.011555] ehci-platform: EHCI generic platform driver
[    2.011956] phy phy-fe8b0000.usb2-phy.4: illegal mode
[    2.014004] ehci-platform fd800000.usb: EHCI Host Controller
[    2.014198] ehci-platform fd800000.usb: new USB bus registered, assigned bus number 1
[    2.014320] ehci-platform fd800000.usb: irq 19, io mem 0xfd800000
[    2.024840] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.027057] ehci-platform fd800000.usb: USB 2.0 started, EHCI 1.00
[    2.027235] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.027247] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.027255] usb usb1: Product: EHCI Host Controller
[    2.027263] usb usb1: Manufacturer: Linux 5.10.209 ehci_hcd
[    2.027269] usb usb1: SerialNumber: fd800000.usb
[    2.027715] hub 1-0:1.0: USB hub found
[    2.027751] hub 1-0:1.0: 1 port detected
[    2.030428] ehci-platform fd880000.usb: EHCI Host Controller
[    2.030596] ehci-platform fd880000.usb: new USB bus registered, assigned bus number 2
[    2.030715] ehci-platform fd880000.usb: irq 21, io mem 0xfd880000
[    2.043724] ehci-platform fd880000.usb: USB 2.0 started, EHCI 1.00
[    2.043885] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.043898] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.043906] usb usb2: Product: EHCI Host Controller
[    2.043913] usb usb2: Manufacturer: Linux 5.10.209 ehci_hcd
[    2.043920] usb usb2: SerialNumber: fd880000.usb
[    2.044341] hub 2-0:1.0: USB hub found
[    2.044380] hub 2-0:1.0: 1 port detected
[    2.045064] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.045126] ohci-platform: OHCI generic platform driver
[    2.045438] phy phy-fe8b0000.usb2-phy.4: illegal mode
[    2.045459] ohci-platform fd840000.usb: Generic Platform OHCI controller
[    2.045619] ohci-platform fd840000.usb: new USB bus registered, assigned bus number 3
[    2.045729] ohci-platform fd840000.usb: irq 20, io mem 0xfd840000
[    2.050413] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.077051] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.103715] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.104508] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.104521] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.104529] usb usb3: Product: Generic Platform OHCI controller
[    2.104537] usb usb3: Manufacturer: Linux 5.10.209 ohci_hcd
[    2.104544] usb usb3: SerialNumber: fd840000.usb
[    2.104930] hub 3-0:1.0: USB hub found
[    2.104966] hub 3-0:1.0: 1 port detected
[    2.105452] ohci-platform fd8c0000.usb: Generic Platform OHCI controller
[    2.105602] ohci-platform fd8c0000.usb: new USB bus registered, assigned bus number 4
[    2.105699] ohci-platform fd8c0000.usb: irq 22, io mem 0xfd8c0000
[    2.130386] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.157049] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.164506] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.164526] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.164535] usb usb4: Product: Generic Platform OHCI controller
[    2.164543] usb usb4: Manufacturer: Linux 5.10.209 ohci_hcd
[    2.164550] usb usb4: SerialNumber: fd8c0000.usb
[    2.164945] hub 4-0:1.0: USB hub found
[    2.164981] hub 4-0:1.0: 1 port detected
[    2.166222] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    2.166402] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 5
[    2.166532] xhci-hcd xhci-hcd.4.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000800002010010
[    2.166595] xhci-hcd xhci-hcd.4.auto: irq 88, io mem 0xfd000000
[    2.166718] xhci-hcd xhci-hcd.4.auto: xHCI Host Controller
[    2.166849] xhci-hcd xhci-hcd.4.auto: new USB bus registered, assigned bus number 6
[    2.166867] xhci-hcd xhci-hcd.4.auto: Host supports USB 3.0 SuperSpeed
[    2.167003] usb usb5: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.167015] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.167048] usb usb5: Product: xHCI Host Controller
[    2.167056] usb usb5: Manufacturer: Linux 5.10.209 xhci-hcd
[    2.167064] usb usb5: SerialNumber: xhci-hcd.4.auto
[    2.167460] hub 5-0:1.0: USB hub found
[    2.167496] hub 5-0:1.0: 1 port detected
[    2.167818] usb usb6: We don't know the algorithms for LPM for this host, disabling LPM.
[    2.167914] usb usb6: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    2.167925] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.167933] usb usb6: Product: xHCI Host Controller
[    2.167940] usb usb6: Manufacturer: Linux 5.10.209 xhci-hcd
[    2.167947] usb usb6: SerialNumber: xhci-hcd.4.auto
[    2.168291] hub 6-0:1.0: USB hub found
[    2.168326] hub 6-0:1.0: 1 port detected
[    2.168722] usbcore: registered new interface driver cdc_acm
[    2.168732] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
[    2.168996] usbcore: registered new interface driver uas
[    2.169082] usbcore: registered new interface driver usb-storage
[    2.169170] usbcore: registered new interface driver usbserial_generic
[    2.169198] usbserial: USB Serial support registered for generic
[    2.169241] usbcore: registered new interface driver cp210x
[    2.169262] usbserial: USB Serial support registered for cp210x
[    2.169318] usbcore: registered new interface driver ftdi_sio
[    2.169339] usbserial: USB Serial support registered for FTDI USB Serial Device
[    2.169448] usbcore: registered new interface driver keyspan
[    2.169473] usbserial: USB Serial support registered for Keyspan - (without firmware)
[    2.169494] usbserial: USB Serial support registered for Keyspan 1 port adapter
[    2.169514] usbserial: USB Serial support registered for Keyspan 2 port adapter
[    2.169533] usbserial: USB Serial support registered for Keyspan 4 port adapter
[    2.169580] usbcore: registered new interface driver option
[    2.169602] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.169746] usbcore: registered new interface driver oti6858
[    2.169768] usbserial: USB Serial support registered for oti6858
[    2.169810] usbcore: registered new interface driver pl2303
[    2.169831] usbserial: USB Serial support registered for pl2303
[    2.169878] usbcore: registered new interface driver qcserial
[    2.169899] usbserial: USB Serial support registered for Qualcomm USB modem
[    2.169955] usbcore: registered new interface driver sierra
[    2.169994] usbserial: USB Serial support registered for Sierra USB modem
[    2.171382] usbcore: registered new interface driver usbtouchscreen
[    2.171829] .. rk pwm remotectl v2.0 init
[    2.172064] input: fe6e0030.pwm as /devices/platform/fe6e0030.pwm/input/input1
[    2.172419] remotectl-pwm fe6e0030.pwm: Controller support pwrkey capture
[    2.172983] i2c /dev entries driver
[    2.175088] fan53555-regulator 0-001c: FAN53555 Option[12] Rev[15] Detected!
[    2.176840] vdd_cpu: supplied by vcc5v0_sys
[    2.182989] rk808 0-0020: chip id: 0x8090
[    2.183041] rk808 0-0020: No cache defaults, reading back from HW
[    2.183749] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.206712] rk808 0-0020: source: on=0x40, off=0x00
[    2.206738] rk808 0-0020: support dcdc3 fb mode:-22, 1
[    2.206749] rk808 0-0020: support pmic reset mode:0,0
[    2.210407] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.211102] rk808-regulator rk808-regulator: there is no dvs0 gpio
[    2.211129] rk808-regulator rk808-regulator: there is no dvs1 gpio
[    2.211203] vdd_logic: supplied by vcc3v3_sys
[    2.211848] vdd_gpu: supplied by vcc3v3_sys
[    2.212443] vcc_ddr: supplied by vcc3v3_sys
[    2.213018] vdd_npu: supplied by vcc3v3_sys
[    2.213597] vcc_1v8: supplied by vcc3v3_sys
[    2.214143] vdda0v9_image: supplied by vcc3v3_sys
[    2.215219] vdda_0v9: supplied by vcc3v3_sys
[    2.216291] vdda0v9_pmu: supplied by vcc3v3_sys
[    2.217378] vccio_acodec: supplied by vcc3v3_sys
[    2.218463] vccio_sd: supplied by vcc3v3_sys
[    2.219536] vcc3v3_pmu: supplied by vcc3v3_sys
[    2.220628] vcca_1v8: supplied by vcc3v3_sys
[    2.221721] vcca1v8_pmu: supplied by vcc3v3_sys
[    2.222800] vcca1v8_image: supplied by vcc3v3_sys
[    2.223898] vcc_3v3: supplied by vcc3v3_sys
[    2.224464] vcc3v3_sd: supplied by vcc3v3_sys
[    2.225013] rk817-battery: Failed to locate of_node [id: -1]
[    2.225166] rk817-battery rk817-battery: Failed to find matching dt id
[    2.225318] rk817-charger: Failed to locate of_node [id: -1]
[    2.225409] rk817-charger rk817-charger: Failed to find matching dt id
[    2.228445] input: rk805 pwrkey as /devices/platform/fdd40000.i2c/i2c-0/0-0020/rk805-pwrkey/input/input2
[    2.234242] rk808-rtc rk808-rtc: registered as rtc0
[    2.235972] rk808-rtc rk808-rtc: setting system clock to 2025-04-10T08:17:59 UTC (1744273079)
[    2.237078] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.239137] rockchip-pinctrl pinctrl: pin gpio3-11 already requested by fe010000.ethernet; cannot claim for fe5e0000.i2c
[    2.239176] rockchip-pinctrl pinctrl: pin-107 (fe5e0000.i2c) status -22
[    2.239187] rockchip-pinctrl pinctrl: could not request pin 107 (gpio3-11) from group i2c5m0-xfer  on device rockchip-pinctrl
[    2.239196] rk3x-i2c fe5e0000.i2c: Error applying setting, reverse things back
[    2.239217] rk3x-i2c: probe of fe5e0000.i2c failed with error -22
[    2.240461] rkcifhw fdfe0000.rkcif: Adding to iommu group 7
[    2.240930] rkcifhw fdfe0000.rkcif: can't request region for resource [mem 0xfdfe0000-0xfdfe7fff]
[    2.241018] rkcifhw fdfe0000.rkcif: No reserved memory region assign to CIF
[    2.242006] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: enter mipi csi2 hw probe!
[    2.242142] rockchip-mipi-csi2-hw fdfb0000.mipi-csi2-hw: probe success, v4l2_dev:mipi-csi2-hw!
[    2.243323] rkisp_hw fdff0000.rkisp: Adding to iommu group 8
[    2.243477] rkisp_hw fdff0000.rkisp: is_thunderboot: 0
[    2.243510] rkisp_hw fdff0000.rkisp: can't request region for resource [mem 0xfdff0000-0xfdffffff]
[    2.243537] rkisp_hw fdff0000.rkisp: max input:0x0@0fps
[    2.243728] rkisp_hw fdff0000.rkisp: no find phandle sram
[    2.244177] rkisp rkisp-vir0: rkisp driver version: v02.05.01
[    2.244335] rkisp rkisp-vir0: No memory-region-thunderboot specified
[    2.244544] rkisp rkisp-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
[    2.244566] rkisp rkisp-vir0: Entity type for entity rkisp-csi-subdev was not initialized!
[    2.247429] usbcore: registered new interface driver uvcvideo
[    2.247446] USB Video Class driver (1.1.1)
[    2.249352] Bluetooth: HCI UART driver ver 2.3
[    2.249371] Bluetooth: HCI UART protocol H4 registered
[    2.249378] Bluetooth: HCI UART protocol ATH3K registered
[    2.249443] usbcore: registered new interface driver bfusb
[    2.249496] usbcore: registered new interface driver btusb
[    2.250348] cpu cpu0: bin=0
[    2.250453] cpu cpu0: leakage=28
[    2.250496] cpu cpu0: pvtm = 89150, from nvmem
[    2.250511] cpu cpu0: pvtm-volt-sel=2
[    2.250561] cpu cpu0: soc version=0, speed=2
[    2.252124] cpu cpu0: avs=0
[    2.252396] cpu cpu0: EM: created perf domain
[    2.252454] cpu cpu0: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.258694] sdhci: Secure Digital Host Controller Interface driver
[    2.258728] sdhci: Copyright(c) Pierre Ossman
[    2.258737] Synopsys Designware Multimedia Card Interface Driver
[    2.259760] sdhci-pltfm: SDHCI platform and OF driver helper
[    2.260053] dwmmc_rockchip fe000000.dwmmc: No normal pinctrl state
[    2.260066] dwmmc_rockchip fe000000.dwmmc: No idle pinctrl state
[    2.260087] dwmmc_rockchip fe2b0000.dwmmc: No normal pinctrl state
[    2.260096] dwmmc_rockchip fe2b0000.dwmmc: No idle pinctrl state
[    2.260167] dwmmc_rockchip fe000000.dwmmc: IDMAC supports 32-bit address mode.
[    2.260188] dwmmc_rockchip fe000000.dwmmc: Using internal DMA controller.
[    2.260198] dwmmc_rockchip fe000000.dwmmc: Version ID is 270a
[    2.260201] dwmmc_rockchip fe2b0000.dwmmc: IDMAC supports 32-bit address mode.
[    2.260211] dwmmc_rockchip fe2b0000.dwmmc: Using internal DMA controller.
[    2.260222] dwmmc_rockchip fe2b0000.dwmmc: Version ID is 270a
[    2.260254] dwmmc_rockchip fe000000.dwmmc: DW MMC controller at irq 52,32 bit host data width,256 deep fifo
[    2.260265] dwmmc_rockchip fe2b0000.dwmmc: DW MMC controller at irq 59,32 bit host data width,256 deep fifo
[    2.260622] dwmmc_rockchip fe000000.dwmmc: allocated mmc-pwrseq
[    2.260636] mmc_host mmc3: card is non-removable.
[    2.261618] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[    2.261696] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[    2.262463] cryptodev: driver 1.12 loaded.
[    2.262510] hid: raw HID events driver (C) Jiri Kosina
[    2.262743] usbcore: registered new interface driver usbhid
[    2.262749] usbhid: USB HID core driver
[    2.263756] rockchip,bus bus-npu: bin=0
[    2.263771] rockchip,bus bus-npu: Failed to get leakage
[    2.263819] rockchip,bus bus-npu: pvtm = 89150, from nvmem
[    2.263830] rockchip,bus bus-npu: pvtm-volt-sel=1
[    2.264018] rockchip,bus bus-npu: avs=0
[    2.267117] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    2.268502] usbcore: registered new interface driver snd-usb-audio
[    2.270314] rk817-codec rk817-codec: DMA mask not set
[    2.273567] mmc_host mmc1: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.274359] rockchip-i2s-tdm fe410000.i2s: Register PCM for TRCM mode
[    2.275995] rockchip-pinctrl pinctrl: pin gpio3-21 already requested by fe010000.ethernet; cannot claim for fe460000.spdif
[    2.276010] rockchip-pinctrl pinctrl: pin-117 (fe460000.spdif) status -22
[    2.276019] rockchip-pinctrl pinctrl: could not request pin 117 (gpio3-21) from group spdifm1-tx  on device rockchip-pinctrl
[    2.276025] rockchip-spdif fe460000.spdif: Error applying setting, reverse things back
[    2.276044] rockchip-spdif: probe of fe460000.spdif failed with error -22
[    2.277100] rk-multicodecs rk809-sound: Failed to get ADC channel
[    2.277244] rk-multicodecs rk809-sound: ASoC: Property 'rockchip,audio-routing' does not exist or its length is not even
[    2.278410] rk817-codec rk817-codec: rk817_probe: chip_name:0x80, chip_ver:0x95
[    2.284805] input: rockchip-rk809 Headset as /devices/platform/rk809-sound/sound/card0/input3
[    2.285742] Initializing XFRM netlink socket
[    2.286060] NET: Registered protocol family 10
[    2.286630] Segment Routing with IPv6
[    2.286678] NET: Registered protocol family 17
[    2.286696] NET: Registered protocol family 15
[    2.286770] Bluetooth: RFCOMM socket layer initialized
[    2.286798] Bluetooth: RFCOMM ver 1.11
[    2.286810] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[    2.286818] Bluetooth: HIDP socket layer initialized
[    2.286853] [BT_RFKILL]: Enter rfkill_rk_init
[    2.286858] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    2.287595] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    2.287636] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi_chip_type = ap6398s
[    2.287642] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifi power control.
[    2.287647] [WLAN_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    2.287679] [WLAN_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 124, flags = 0.
[    2.287688] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    2.287693] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    2.287700] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.287706] [WLAN_RFKILL]: Exit rfkill_wlan_probe
[    2.288558] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 142.
[    2.288579] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 133.
[    2.288590] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 134.
[    2.288600] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 137.
[    2.288654] [BT_RFKILL]: Request irq for bt wakeup host
[    2.288969] [BT_RFKILL]: ** disable irq
[    2.289049] [BT_RFKILL]: bt_default device registered.
[    2.289133] input: bt-powerkey as /devices/platform/wireless-bluetooth/input/input4
[    2.289366] Key type dns_resolver registered
[    2.290401] gc2093 2-0037: driver version: 00.01.02
[    2.290409] mmc0: SDHCI controller on fe310000.sdhci [fe310000.sdhci] using ADMA
[    2.290551] gc2093 2-0037: supply dovdd not found, using dummy regulator
[    2.290666] gc2093 2-0037: supply avdd not found, using dummy regulator
[    2.290703] gc2093 2-0037: supply dvdd not found, using dummy regulator
[    2.308369] gc2093 2-0037: Detected GC2093 sensor
[    2.308426] rockchip-csi2-dphy csi2-dphy1: dphy1 matches m00_b_gc2093 2-0037:bus type 5
[    2.309117] rkisp-vir0: Async subdev notifier completed
[    2.309666] Loading compiled-in X.509 certificates
[    2.310788] pstore: Using crash dump compression: deflate
[    2.312027] rga2 fdeb0000.rk_rga: probe successfully, irq = 30, hw_version:3.2.63318
[    2.312352] rga_iommu: IOMMU binding successfully, default mapping core[0x4]
[    2.312552] rga: Module initialized. v1.3.3
[    2.326463] mmc0: Host Software Queue enabled
[    2.326519] mmc0: new HS200 MMC card at address 0001
[    2.327260] mmcblk0: mmc0:0001 8GTF4R 7.28 GiB 
[    2.327542] mmcblk0boot0: mmc0:0001 8GTF4R partition 1 4.00 MiB
[    2.327834] mmcblk0boot1: mmc0:0001 8GTF4R partition 2 4.00 MiB
[    2.328106] mmcblk0rpmb: mmc0:0001 8GTF4R partition 3 512 KiB, chardev (236:0)
[    2.330824] rockchip-pinctrl pinctrl: pin gpio3-21 already requested by fe010000.ethernet; cannot claim for fe460000.spdif
[    2.330856] rockchip-pinctrl pinctrl: pin-117 (fe460000.spdif) status -22
[    2.330864] rockchip-pinctrl pinctrl: could not request pin 117 (gpio3-21) from group spdifm1-tx  on device rockchip-pinctrl
[    2.330871] rockchip-spdif fe460000.spdif: Error applying setting, reverse things back
[    2.330892] rockchip-spdif: probe of fe460000.spdif failed with error -22
[    2.331097]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    2.396544] vendor storage:20190527 ret = 0
[    2.477827] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    2.493158] mpp_rkvenc fdf40000.rkvenc: Adding to iommu group 5
[    2.493755] mpp_rkvenc fdf40000.rkvenc: probing start
[    2.494945] mpp_rkvenc fdf40000.rkvenc: bin=0
[    2.495053] mpp_rkvenc fdf40000.rkvenc: Failed to get leakage
[    2.495166] mpp_rkvenc fdf40000.rkvenc: pvtm = 89150, from nvmem
[    2.495212] mpp_rkvenc fdf40000.rkvenc: pvtm-volt-sel=1
[    2.495705] mpp_rkvenc fdf40000.rkvenc: avs=0
[    2.496050] mpp_rkvenc fdf40000.rkvenc: failed to find power_model node
[    2.496082] mpp_rkvenc fdf40000.rkvenc: failed to initialize power model
[    2.496105] mpp_rkvenc fdf40000.rkvenc: failed to get dynamic-coefficient
[    2.496959] mpp_rkvenc fdf40000.rkvenc: probing finish
[    2.498090] mpp_rkvdec2 fdf80200.rkvdec: Adding to iommu group 6
[    2.498781] mpp_rkvdec2 fdf80200.rkvdec: rkvdec, probing start
[    2.499790] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_a is not found!
[    2.499825] rkvdec2_init:1024: No niu aclk reset resource define
[    2.499858] mpp_rkvdec2 fdf80200.rkvdec: shared_niu_h is not found!
[    2.499880] rkvdec2_init:1027: No niu hclk reset resource define
[    2.500246] mpp_rkvdec2 fdf80200.rkvdec: bin=0
[    2.500346] mpp_rkvdec2 fdf80200.rkvdec: leakage=54
[    2.500385] mpp_rkvdec2 fdf80200.rkvdec: leakage-volt-sel=0
[    2.500424] mpp_rkvdec2 fdf80200.rkvdec: pvtm = 89150, from nvmem
[    2.500437] mpp_rkvdec2 fdf80200.rkvdec: pvtm-volt-sel=1
[    2.500611] mpp_rkvdec2 fdf80200.rkvdec: avs=0
[    2.500735] mpp_rkvdec2 fdf80200.rkvdec: failed to find power_model node
[    2.500745] mpp_rkvdec2 fdf80200.rkvdec: failed to initialize power model
[    2.500753] mpp_rkvdec2 fdf80200.rkvdec: failed to get dynamic-coefficient
[    2.500880] mpp_rkvdec2 fdf80200.rkvdec: sram_start 0x00000000fdcc0000
[    2.500890] mpp_rkvdec2 fdf80200.rkvdec: rcb_iova 0x0000000010000000
[    2.500897] mpp_rkvdec2 fdf80200.rkvdec: sram_size 45056
[    2.500904] mpp_rkvdec2 fdf80200.rkvdec: rcb_size 65536
[    2.500913] mpp_rkvdec2 fdf80200.rkvdec: min_width 512
[    2.500975] mpp_rkvdec2 fdf80200.rkvdec: link mode probe finish
[    2.501047] mpp_rkvdec2 fdf80200.rkvdec: probing finish
[    2.502146] mali fde60000.gpu: Kernel DDK version g21p0-01eac0
[    2.502225] mali fde60000.gpu: GPU metrics tracepoint support enabled
[    2.502560] rockchip-dmc dmc: bin=0
[    2.502656] rockchip-dmc dmc: leakage=54
[    2.502671] rockchip-dmc dmc: leakage-volt-sel=0
[    2.502678] mali fde60000.gpu: bin=0
[    2.502714] rockchip-dmc dmc: pvtm = 89150, from nvmem
[    2.502727] rockchip-dmc dmc: pvtm-volt-sel=1
[    2.502734] mali fde60000.gpu: leakage=7
[    2.502749] rockchip-dmc dmc: soc version=0, speed=1
[    2.502765] mali fde60000.gpu: pvtm = 89150, from nvmem
[    2.502783] mali fde60000.gpu: pvtm-volt-sel=2
[    2.502796] mali fde60000.gpu: soc version=0, speed=2
[    2.502923] rockchip-dmc dmc: avs=0
[    2.502943] rockchip-dmc dmc: current ATF version 0x102
[    2.503295] mali fde60000.gpu: avs=0
[    2.503317] 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.503720] rockchip-dmc dmc: normal_rate = 780000000
[    2.503729] mali fde60000.gpu: Register LUT 00070200 initialized for GPU arch 0x00070400
[    2.503739] rockchip-dmc dmc: reboot_rate = 1056000000
[    2.503747] rockchip-dmc dmc: suspend_rate = 324000000
[    2.503754] mali fde60000.gpu: GPU identified as 0x2 arch 7.4.0 r1p0 status 0
[    2.503763] rockchip-dmc dmc: video_4k_rate = 780000000
[    2.503771] rockchip-dmc dmc: video_4k_10b_rate = 780000000
[    2.503778] rockchip-dmc dmc: boost_rate = 1056000000
[    2.503786] rockchip-dmc dmc: fixed_rate(isp|cif0|cif1|dualview) = 1056000000
[    2.503793] rockchip-dmc dmc: performance_rate = 1056000000
[    2.503815] rockchip-dmc dmc: failed to get vop pn to msch rl
[    2.503912] mali fde60000.gpu: No priority control manager is configured
[    2.503925] mali fde60000.gpu: Large page allocation set to false after hardware feature check
[    2.503990] rockchip-dmc dmc: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.504089] rockchip-dmc dmc: could not find power_model node
[    2.504482] mali fde60000.gpu: No memory group manager is configured
[    2.505794] rockchip-iodomain fdc20000.syscon:io-domains: pmuio2(3300000 uV) supplied by vcc3v3_pmu
[    2.505933] rockchip-iodomain fdc20000.syscon:io-domains: vccio1(3000000 uV) supplied by vccio_acodec
[    2.506158] rockchip-iodomain fdc20000.syscon:io-domains: vccio3(3300000 uV) supplied by vccio_sd
[    2.506373] rockchip-iodomain fdc20000.syscon:io-domains: vccio4(3300000 uV) supplied by vcc_3v3
[    2.506433] mali fde60000.gpu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.506440] rockchip-iodomain fdc20000.syscon:io-domains: vccio5(3300000 uV) supplied by vcc_3v3
[    2.507018] rockchip-iodomain fdc20000.syscon:io-domains: vccio6(1800000 uV) supplied by vcc_1v8
[    2.507150] rockchip-iodomain fdc20000.syscon:io-domains: vccio7(3300000 uV) supplied by vcc_3v3
[    2.507903] input: adc-keys as /devices/platform/adc-keys/input/input5
[    2.508329] mali fde60000.gpu: Probed as mali0
[    2.513754] usb 3-1: new low-speed USB device number 2 using ohci-platform
[    2.515066] RKNPU fde40000.npu: Adding to iommu group 0
[    2.515685] RKNPU fde40000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[    2.516021] RKNPU fde40000.npu: can't request region for resource [mem 0xfde40000-0xfde4ffff]
[    2.516657] [drm] Initialized rknpu 0.9.6 20240322 for fde40000.npu on minor 1
[    2.517488] RKNPU fde40000.npu: bin=0
[    2.517538] RKNPU fde40000.npu: leakage=4
[    2.517573] RKNPU fde40000.npu: pvtm = 89150, from nvmem
[    2.517588] RKNPU fde40000.npu: pvtm-volt-sel=2
[    2.517604] RKNPU fde40000.npu: soc version=0, speed=2
[    2.518137] RKNPU fde40000.npu: avs=0
[    2.518333] RKNPU fde40000.npu: l=0 h=2147483647 hyst=5000 l_limit=0 h_limit=0 h_table=0
[    2.518970] RKNPU fde40000.npu: failed to find power_model node
[    2.518982] RKNPU fde40000.npu: RKNPU: failed to initialize power model
[    2.518989] RKNPU fde40000.npu: RKNPU: failed to get dynamic-coefficient
[    2.520289] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    2.522380] cfg80211: Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[    2.522867] mmc3: queuing unknown CIS tuple 0x80 (2 bytes)
[    2.522995] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    2.523968] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    2.523983] cfg80211: failed to load regulatory.db
[    2.524487] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[    2.525183] rockchip-suspend not set sleep-mode-config for mem-lite
[    2.525191] rockchip-suspend not set wakeup-config for mem-lite
[    2.525199] rockchip-suspend not set sleep-mode-config for mem-ultra
[    2.525204] rockchip-suspend not set wakeup-config for mem-ultra
[    2.525217] mmc3: queuing unknown CIS tuple 0x80 (3 bytes)
[    2.526488] 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 '09:08:41', on 'Apr 10 2025'.
[    2.527073] Mali: 
[    2.527077] Mali device driver loaded
[    2.527100] rkisp rkisp-vir0: clear unready subdev num: 0
[    2.527124] ALSA device list:
[    2.527131]   #0: rockchip-rk809
[    2.527137]   #1: rockchip,hdmi
[    2.528004] mmc3: queuing unknown CIS tuple 0x80 (3 bytes)
[    2.530991] mmc3: queuing unknown CIS tuple 0x80 (7 bytes)
[    2.534454] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    2.534543] VFS: Mounted root (ext4 filesystem) on device 179:6.
[    2.534925] devtmpfs: mounted
[    2.534960] mmc3: queuing unknown CIS tuple 0x81 (9 bytes)
[    2.543855] Freeing unused kernel memory: 6720K
[    2.567208] Run /sbin/init as init process
[    2.596229] mmc_host mmc3: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0)
[    2.602558] dwmmc_rockchip fe000000.dwmmc: Successfully tuned phase to 270
[    2.604817] mmc3: new ultra high speed SDR104 SDIO card at address 0001
[    2.620601] EXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
[    2.725248] usb 3-1: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[    2.725329] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.725341] usb 3-1: Product: USB Optical Mouse
[    2.725349] usb 3-1: Manufacturer: Logitech
[    2.733916] input: Logitech USB Optical Mouse as /devices/platform/fd840000.usb/usb3/3-1/3-1:1.0/0003:046D:C077.0001/input/input6
[    2.734424] hid-generic 0003:046D:C077.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-fd840000.usb-1/input0
[    2.768600] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: (null)
[    2.768701] ext4 filesystem being mounted at /oem supports timestamps until 2038 (0x7fffffff)
[    2.771969] EXT4-fs (mmcblk0p8): mounted filesystem without journal. Opts: (null)
[    2.772051] 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
[1]: Handling /dev/mmcblk0p7 /oem ext4 defaults 2
[2]: Handling /dev/mmcblk0p8 /userdata ext4 defaults 2
[1]: Already resized /dev/mmcblk0p7(ext4)
[0]: Already resized /dev/mmcblk0p6(ext4)
[2]: Already resized /dev/mmcblk0p8(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.076831] rockchip-drm display-subsystem: [drm] Cannot find any crtc or sizes
[    3.080557] udevd[327]: starting version 3.2.10
[    3.096809] udevd[331]: starting eudev-3.2.10
done
Starting irqbalance: OK
Initializing random number generator: OK
Saving random seed: OK
Starting system message bus: done
Starting bluetoothd: OK
Starting network: [    3.757181] rk_gmac-dwmac fe010000.ethernet eth0: PHY [stmmac-1:00] driver [RTL8211F Gigabit Ethernet] (irq=POLL)
[    3.760571] dwmac4: Master AXI performs any burst length
[    3.760632] rk_gmac-dwmac fe010000.ethernet eth0: No Safety Features support found
[    3.760664] rk_gmac-dwmac fe010000.ethernet eth0: IEEE 1588-2008 Advanced Timestamp supported
[    3.761084] rk_gmac-dwmac fe010000.ethernet eth0: registered PTP clock
[    3.761624] rk_gmac-dwmac fe010000.ethernet eth0: configuring for phy/rgmii link mode
udhcpc: started, v1.36.1
udhcpc: broadcasting discover

Handling start for Wi-Fi/BT chip:
Broadcom    AP625X    sdio    02d0:a9bf    bcmdhd.ko    # AP6255/AP6256/AP6745
Starting Wi-Fi/BT...
Wi-Fi/BT module: bcmdhd.ko
Installing bcmdhd.ko ...
[    3.926286] bcmdhd: loading out-of-tree module taints kernel.
[    3.938453] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.10.591.52.27 (20240409-1)(20240411-2)(d83d8d7)
[    3.938453] /home/rootroot/RK3566_RK3568_Linux5.10_V1.2.0/external/rkwifibt/drivers/bcmdhd compiled on Apr 10 2025 at 09:12:32
[    3.938453] 
[    3.938531] [dhd] STATIC-MSG) dhd_static_buf_init : 101.10.361.36 (wlan=r892223-20231107-1)
[    3.938594] [dhd] STATIC-MSG) dhd_init_wlan_mem : prealloc ok for index 0: 1102848(1077K)
[    3.938609] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[    3.938686] [dhd] dhd_wlan_init_gpio: WL_HOST_WAKE=-1, oob_irq=116, oob_irq_flags=0x4
[    3.938696] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[    3.938703] [dhd] dhd_wifi_platform_load: Enter
[    3.938711] [dhd] Power-up adapter 'DHD generic adapter'
[    3.939015] [dhd] dummy_probe: func->num=0x1; 
[    3.939027] [dhd] dummy_probe: class=0xff; vendor=0x2d0; device=0xffff
[    3.939878] [dhd] dummy_probe: func->num=0x2; 
[    3.939908] [dhd] dummy_probe: class=0xff; vendor=0x2d0; device=0xffff
[    3.940101] [dhd] dummy_probe: func->num=0x3; 
[    3.940138] [dhd] dummy_probe: class=0xff; vendor=0x2d0; device=0xffff
[    3.940317] [dhd] wifi_platform_set_power = 1, delay: 200 msec
[    3.940330] [dhd] ======== PULL WL_REG_ON(-1) HIGH! ========
[    3.940338] [WLAN_RFKILL]: rockchip_wifi_power: 1
[    3.940345] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    3.940398] [WLAN_RFKILL]: wifi turn on power [GPIO-1-0]
[    4.147331] [dhd] wifi_platform_set_power = 1, sleep done: 200 msec
[    4.147413] [dhd] wifi_platform_bus_enumerate device present 1
[    4.147425] [dhd] ======== Card detection to detect SDIO card! ========
[    4.164572] [dhd] bcmsdh_register: register client driver
[    4.170971] [dhd] bcmsdh_sdmmc_probe: Enter num=1
[    4.171435] [dhd] bcmsdh_sdmmc_probe: Enter num=2
[    4.171462] [dhd] bus num (host idx)=3, slot num (rca)=1, caps=0x4008010d
[    4.171476] [dhd] found adapter info 'DHD generic adapter'
[    4.171497] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 3, size 139264
[    4.171551] [dhd] succeed to alloc static buf
[    4.171559] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 4, size 0
[    4.171633] [dhd] sdioh_attach: set sd_f2_blocksize 256
[    4.171681] [dhd] sdioh_attach: sd clock rate = 150000000
[    4.172237] [dhd] dhdsdio_probe : no mutex held
[    4.172252] [dhd] dhdsdio_probe : set mutex lock
[    4.172400] [dhd] F1 signature read @0x18000000=0x15294345
[    4.176028] [dhd] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2
[    4.177308] [dhd] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000
[    4.177476] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 7, size 42288
[    4.177574] [dhd] dhd_conf_set_chiprev : devid=0xa9bf, chip=0x4345, chiprev=9
[    4.177739] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 0, size 10320
[    4.177905] [dhd] dhd_ioctl_entry_local invalid parameter net 0000000000000000 dev_priv 00000000097f98eb
[    4.177940] [dhd] CFG80211-ERROR) wl_is_fils_supported : FILS NOT supported, err -22
[    4.179784] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 5, size 65536
[    4.181543] [dhd] CFG80211-ERROR) wl_is_fils_supported : FILS NOT supported, err -19
[    4.182074] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 19, size 65688
[    4.182694] [dhd] dhd_attach(): thread:dhd_watchdog_thread:245 started
[    4.183136] [dhd] dhd_attach(): thread:dhd_dpc:246 started
[    4.183535] [dhd] dhd_attach(): thread:dhd_rxf:247 started
[    4.183594] [dhd] dhd_deferred_work_init: work queue initialized
[    4.183626] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 2
[    4.183649] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
[    4.183956] [dhd] sdioh_cis_read: func_cis_ptr[0]=0x10ac
[    4.196165] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 1, size 10300
[    4.196290] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 2, size 65536
[    4.196895] [dhd] dhdsdio_probe_init: making DHD_BUS_DOWN
[    4.197460] [dhd] Dongle Host Driver, version 101.10.591.52.27 (20240409-1)(20240411-2)(d83d8d7)
[    4.197460] /home/rootroot/RK3566_RK3568_Linux5.10_V1.2.0/external/rkwifibt/drivers/bcmdhd compiled on Apr 10 2025 at 09:12:32
[    4.197460] 
[    4.198497] [dhd] Register interface [wlan0]  MAC: 70:f7:54:9a:5f:9a
[    4.198497] 
[    4.198853] [dhd] [wlan0] wl_android_wifi_off :  g_wifi_on=1 force_off=1
[    4.198876] [dhd] dhd_bus_devreset: == Power OFF ==
[    4.199197] [dhd] dhd_bus_stop: making DHD_BUS_DOWN
[    4.199249] [dhd] bcmsdh_oob_intr_unregister: Enter
[    4.199258] [dhd] bcmsdh_oob_intr_unregister: irq is not registered
[    4.199281] [dhd] dhd_bus_devreset: making dhdpub up FALSE
[    4.199291] [dhd] dhd_txglom_enable: enable 0
[    4.199300] [dhd] dhd_bus_devreset: making DHD_BUS_DOWN
[    4.199349] [dhd] wifi_platform_set_power = 0, delay: 10 msec
[    4.199360] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[    4.199370] [WLAN_RFKILL]: rockchip_wifi_power: 0
[    4.199381] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    4.199390] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    4.199397] [WLAN_RFKILL]: wifi shut off power [GPIO-1-1]
[    4.210486] [dhd] wifi_platform_set_power = 0, sleep done: 10 msec
[    4.210563] [dhd] [wlan0] wl_android_wifi_off : out
[    4.211489] [dhd] Register interface [wlan1]  MAC: 72:f7:54:9a:5f:9a
[    4.211489] 
[    4.211540] [dhd] wl_android_post_init: 0
[    4.211550] [dhd] dhdsdio_probe : mutex is released.
[    4.214224] [dhd] bcmsdh_sdmmc_probe: Enter num=3
[    4.214483] [dhd] _dhd_module_init: Exit err=0
Successfully init Wi-Fi for AP625X!
[    4.249178] [dhd] dhd_pri_open : no mutex held
[    4.249302] [dhd] dhd_pri_open : set mutex lock
[    4.249317] [dhd] [wlan0] dhd_open : Enter
[    4.249326] [dhd] Dongle Host Driver, version 101.10.591.52.27 (20240409-1)(20240411-2)(d83d8d7)
[    4.249326] /home/rootroot/RK3566_RK3568_Linux5.10_V1.2.0/external/rkwifibt/drivers/bcmdhd compiled on Apr 10 2025 at 09:12:32
[    4.249326] 
[    4.249352] [dhd] dhd_open: ######### called for ifidx=0 #########
[    4.249378] [dhd] [wlan0] wl_android_wifi_on : in g_wifi_on=0
[    4.249390] [dhd] wifi_platform_set_power = 1, delay: 200 msec
[    4.249400] [dhd] ======== PULL WL_REG_ON(-1) HIGH! ========
[    4.249409] [WLAN_RFKILL]: rockchip_wifi_power: 1
[    4.249420] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    4.249427] [WLAN_RFKILL]: wifi turn on power [GPIO-1-0]
Successfully initialized wpa_supplicant
[    4.453973] [dhd] wifi_platform_set_power = 1, sleep done: 200 msec
[    4.454061] [dhd] sdio_sw_reset: call mmc_hw_reset
[    4.674078] mmc_host mmc3: Bus speed (slot 0) = 375000Hz (slot req 400000Hz, actual 375000HZ div = 0)
[    4.707263] rk-pcie 3c0000000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=0
[    4.725282] mmc3: queuing unknown CIS tuple 0x80 (2 bytes)
[    4.727202] mmc3: queuing unknown CIS tuple 0x80 (3 bytes)
[    4.728944] mmc3: queuing unknown CIS tuple 0x80 (3 bytes)
[    4.732410] mmc3: queuing unknown CIS tuple 0x80 (7 bytes)
[    4.736382] mmc3: queuing unknown CIS tuple 0x81 (9 bytes)
[    4.822028] mmc_host mmc3: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0)
[    4.841738] dwmmc_rockchip fe000000.dwmmc: Successfully tuned phase to 270
[    4.841966] [dhd] sdioh_start: set sd_f2_blocksize 256
[    4.842752] [dhd] dhd_bus_devreset: == Power ON ==
[    4.843062] [dhd] F1 signature read @0x18000000=0x15294345
[    4.851861] [dhd] F1 signature OK, socitype:0x1 chip:0x4345 rev:0x9 pkg:0x2
[    4.853920] [dhd] DHD: dongle ram size is set to 819200(orig 819200) at 0x198000
[    4.854165] [dhd] dhd_bus_devreset: making DHD_BUS_DOWN
[    4.854337] [dhd] dhdsdio_probe_init: making DHD_BUS_DOWN
[    4.854756] [dhd] dhd_conf_set_path_params : Final fw_path=/vendor/etc/firmware/fw_bcm43456c5_ag.bin
[    4.854789] [dhd] dhd_conf_set_path_params : Final nv_path=/vendor/etc/firmware/nvram_ap6256.txt
[    4.854811] [dhd] dhd_conf_set_path_params : Final clm_path=/vendor/etc/firmware/clm_bcm43456c5_ag.blob
[    4.854831] [dhd] dhd_conf_set_path_params : Final conf_path=/vendor/etc/firmware/config.txt
[    4.857187] [dhd] dhd_os_open_image1: /vendor/etc/firmware/config.txt (240 bytes) open success
[    4.857645] [dhd] dhd_conf_read_pm_params : PM = 0
[    4.857679] [dhd] dhd_conf_read_pm_params : pm_in_suspend = 2
[    4.857706] [dhd] dhd_conf_read_others : keep_alive_period = 120000
[    4.857729] [dhd] dhd_conf_read_others : garp = 1
[    4.857751] [dhd] dhd_conf_read_pm_params : suspend_bcn_li_dtim = 10
[    4.857780] [dhd] dhd_conf_read_others : wl_preinit = pm2_sleep_ret=20
[    4.857806] [dhd] dhd_conf_read_pkt_filter : pkt_filter_del id = 100 102 103 104 105 107 
[    4.857864] [dhd] dhd_conf_read_pkt_filter : pkt_filter_add[0][] = 142 0 0 77 0xffffffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702F
[    4.859005] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm43456c5_ag.bin (628872 bytes) open success
[    4.859477] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm43456c5_ag.bin (628872 bytes) open success
[    4.859502] [dhd] dhdsdio_download_code_file Using SINGLE image (size 628872)
[    4.924658] [dhd] dhd_os_open_image1: /vendor/etc/firmware/nvram_ap6256.txt (2732 bytes) open success
[    4.925354] [dhd] #AP6256_NVRAM_V1.4_06112021
[    4.925946] [dhd] dhdsdio_write_vars: Download, Upload and compare of NVRAM succeeded.
[    5.015511] [dhd] dhd_bus_init: enable 0x06, ready 0x06 (waited 0us)
[    5.015692] [dhd] bcmsdh_oob_intr_register: HW_OOB irq=116 flags=0x4
[    5.017984] [dhd] wlc_ver_major 4, wlc_ver_minor 1
[    5.018015] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 2 -> mode 1
[    5.018024] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
[    5.018768] [dhd] dhd_legacy_preinit_ioctls: use firmware generated mac_address 70:f7:54:9a:5f:9a
[    5.018910] [dhd] dhd_apply_default_clm: Ignore clm file /vendor/etc/firmware/clm_bcm43456c5_ag.blob
[    5.020749] [dhd] Firmware up: op_mode=0x0005, MAC=70:f7:54:9a:5f:9a
[    5.026004] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 40 ret: -23
[    5.028393] [dhd] arp_enable:1 arp_ol:0
[    5.028415] [dhd] dhd_conf_add_pkt_filter : 142 0 0 77 0xffffffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702F
[    5.032133] [dhd]   Driver: 101.10.591.52.27 (20240409-1)(20240411-2)
[    5.032133] [dhd]   Firmware: wl0: Apr  1 2024 13:44:02 version 7.45.96.201 (gdb74b971) FWID 01-fe1c2a99 es7.c5.n4.a3
[    5.032133] [dhd]   CLM: 9.2.9 (2016-02-03 04:34:31) 
[    5.032397] [dhd] dhd_txglom_enable: enable 1
[    5.032410] [dhd] dhd_conf_set_txglom_params : txglom_mode=copy
[    5.032417] [dhd] dhd_conf_set_txglom_params : txglomsize=36, deferred_tx_len=0
[    5.032423] [dhd] dhd_conf_set_txglom_params : txinrx_thres=128, dhd_txminmax=-1
[    5.032430] [dhd] dhd_conf_set_txglom_params : tx_max_offset=0, txctl_tmo_fix=300
[    5.032442] [dhd] dhd_conf_get_disable_proptx : fw_proptx=1, disable_proptx=-1
[    5.033297] [dhd] dhd_wlfc_hostreorder_init(): successful bdcv2 tlv signaling, 64
[    5.075291] [dhd] dhd_legacy_preinit_ioctls: Failed to get preserve log # !
[    5.076243] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_delay IOVAR not present, proceed
[    5.076955] [dhd] dhd_bus_check_srmemsize : srmem_size no need to change.
[    5.102512] [dhd] dhd_conf_set_country : set country CN, revision 38
[    5.105139] [dhd] dhd_conf_set_country : Country code: CN (CN/38)
[    5.115629] [dhd] [wlan0] wl_android_wifi_on : Success
[    5.168559] [dhd] CFG80211-ERROR) init_roam_cache : roamscan_mode iovar failed. -23
[    5.168630] [dhd] CFG80211-ERROR) wl_cfg80211_up : Failed to enable RCC.
[    5.171433] [dhd] [wlan0] dhd_open : Exit ret=0
[    5.171485] [dhd] [wlan0] dhd_pri_open : tx queue started
[    5.171503] [dhd] dhd_pri_open : mutex is released.
[    5.237770] [dhd] P2P interface registered
[    5.247811] [BT_RFKILL]: bt shut off power
nl80211: kernel reports: Registration to specific type not supported
[    5.269087] [dhd] WLC_E_IF: NO_IF set, event Ignored
[    5.270258] [dhd] P2P interface started
[    5.766539] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host high!
[    5.817355] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host input!
[    5.817519] [BT_RFKILL]: ENABLE UART_RTS
[    5.845528] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
[    5.849327] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 7
[    5.849792] xhci-hcd xhci-hcd.7.auto: hcc params 0x0220fe64 hci version 0x110 quirks 0x0000002022010010
[    5.849970] xhci-hcd xhci-hcd.7.auto: irq 87, io mem 0xfcc00000
[    5.850349] xhci-hcd xhci-hcd.7.auto: xHCI Host Controller
[    5.851405] xhci-hcd xhci-hcd.7.auto: new USB bus registered, assigned bus number 8
[    5.851503] xhci-hcd xhci-hcd.7.auto: Host supports USB 3.0 SuperSpeed
[    5.851955] usb usb7: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    5.851996] usb usb7: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.852025] usb usb7: Product: xHCI Host Controller
[    5.852049] usb usb7: Manufacturer: Linux 5.10.209 xhci-hcd
[    5.852072] usb usb7: SerialNumber: xhci-hcd.7.auto
[    5.855720] hub 7-0:1.0: USB hub found
[    5.855894] hub 7-0:1.0: 1 port detected
[    5.856729] usb usb8: We don't know the algorithms for LPM for this host, disabling LPM.
[    5.857237] usb usb8: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.10
[    5.857274] usb usb8: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    5.857313] usb usb8: Product: xHCI Host Controller
[    5.857329] usb usb8: Manufacturer: Linux 5.10.209 xhci-hcd
[    5.857342] usb usb8: SerialNumber: xhci-hcd.7.auto
[    5.859202] hub 8-0:1.0: USB hub found
[    5.859412] hub 8-0:1.0: 1 port detected
[    5.923925] [BT_RFKILL]: DISABLE UART_RTS
[    5.924109] [BT_RFKILL]: bt turn on power
[    5.924307] [BT_RFKILL]: Request irq for bt wakeup host
[    5.924925] [BT_RFKILL]: ** disable irq
###AMPAK FW Auto detection patch version = [v1.1 20161117]###
FW folder path = /lib/firmware
[    6.447573] of_dma_request_slave_channel: dma-names property of node '/serial@fe650000' missing or empty
[    6.447647] dw-apb-uart fe650000.serial: failed to request DMA, use interrupt mode
proc_resetchip id = BCM4345C5
FW path = /lib/firmware/BCM4345C5.hcd
send hci_download_minidriver[    6.843076] rk_gmac-dwmac fe010000.ethernet eth0: Link is Up - 1Gbps/Full - flow control off
[    6.843190] 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:2f:8a:27:40:70:f7:54:9a:5f:9a

[    7.053782] rk_pcie_establish_link: 132 callbacks suppressed
[    7.053795] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.080529] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.107110] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.133799] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.159364] rkisp rkisp-vir0: first params buf queue
[    7.160453] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
eth0: IAID 03:23:18:a8
[    7.164562] [dhd] dhd_static_if_open : no mutex held
[    7.164589] [dhd] dhd_static_if_open : set mutex lock
[    7.164596] [dhd] [wlan1] dhd_static_if_open : Enter
[    7.164605] [dhd] [wlan0] dhd_open : Primary net_device is already up
[    7.164625] [dhd] CFG80211-ERROR) wl_cfg80211_deinit_p2p_discovery : Disabling P2P Discovery Interface 
[    7.174951] [dhd] WLC_E_IF: NO_IF set, event Ignored
[    7.176119] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 8, size 44584
[    7.176144] [dhd] dhd_wlfc_enable: ret=0
[    7.176553] [dhd] dhd_wlfc_enable: ret=0
[    7.184368] [dhd] dhd_clear_del_in_progress
[    7.184395] [dhd] [wlan1] dhd_static_if_open : Exit ret=0
wlan0: waiting for carrier
[    7.184402] [dhd] dhd_static_if_open : mutex is released.
wlan1: waiting for carrier
wlan1: carrier acquired
[    7.187102] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
wlan1: IAID 54:9a:5f:9a
wlan1: IAID conflicts with one assigned to wlan0
wlan1: adding address fe80::9d9c:27ee:9af3:7f45
[    7.213887] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.243841] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.270527] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
[    7.297138] rk-pcie 3c0000000.pcie: PCIe Linking... LTSSM is 0x3
eth0: soliciting an IPv6 router
proc_resetwlan1: soliciting an IPv6 router
Done setting line discpline
Successfully init BT for AP625X!
wlan1: soliciting a DHCP lease
Done
eth0: soliciting a DHCP lease
[    8.603958] rk-pcie 3c0000000.pcie: PCIe Link Fail, LTSSM is 0x3, hw_retries=1
[    8.615161] xhci-hcd xhci-hcd.7.auto: remove, state 4
[    8.615287] usb usb8: USB disconnect, device number 1
[    8.618190] xhci-hcd xhci-hcd.7.auto: USB bus 8 deregistered
[    8.618542] xhci-hcd xhci-hcd.7.auto: remove, state 4
[    8.618577] usb usb7: USB disconnect, device number 1
[    8.619723] xhci-hcd xhci-hcd.7.auto: USB bus 7 deregistered
eth0: offered 192.168.3.239 from 192.168.3.1
eth0: leased 192.168.3.239 for 86400 seconds
eth0: adding route to 192.168.3.0/24
eth0: adding default route via 192.168.3.1
[    9.619724] rk-pcie 3c0000000.pcie: failed to initialize host
forked to background, child pid 679
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 (802)...
Starting input-event-daemon: done
root@rk3566-buildroot:/# [   10.043471] dwhdmi-rockchip fe0a0000.hdmi: Rate 0 missing; compute N dynamically
[   10.044166] dwhdmi-rockchip fe0a0000.hdmi: Rate 0 missing; compute N dynamically
[   10.076683] dwhdmi-rockchip fe0a0000.hdmi: Rate 0 missing; compute N dynamically
[   10.080064] dwhdmi-rockchip fe0a0000.hdmi: Rate 0 missing; compute N dynamically
Date: 2025-04-10 UTC
[08:18:07.350] weston 13.0.1
               https://wayland.freedesktop.org
               Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/
               Build: linux-5.10-gen-rkr8+
[08:18:07.352] Command line: /usr/bin/weston --debug
[08:18:07.352] OS: Linux, 5.10.209, #1 SMP Thu Apr 10 09:06:55 CST 2025, aarch64
[08:18:07.352] Flight recorder: enabled
[08:18:07.352] 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.
[08:18:07.367] 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.
[08:18:07.370] Output repaint window is -1 ms maximum.
[08:18:07.378] Loading module '/usr/lib/libweston-13/drm-backend.so'
[08:18:07.386] initializing drm backend
[08:18:07.386] Entering mirror mode.
[08:18:07.386] Trying direct launcher...
[08:18:07.389] using /dev/dri/card0
[08:18:07.389] DRM: does not support atomic modesetting
[08:18:07.390] DRM: does not support GBM modifiers
[08:18:07.390] DRM: does not support async page flipping
[08:18:07.390] DRM: supports picture aspect ratio
[08:18:07.394] Loading module '/usr/lib/libweston-13/gl-renderer.so'
[08:18:07.423] EGL version: 1.4 Bifrost-"g13p0-01eac0"
[08:18:07.426] EGL vendor: ARM
[08:18:07.426] EGL client APIs: OpenGL_ES
[08:18:07.426] 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
[08:18:07.448] GL version: OpenGL ES 3.2 v1.g13p0-01eac0.98c5dad4e3309b873e3189000b74ea36
[08:18:07.448] GLSL version: OpenGL ES GLSL ES 3.20
[08:18:07.448] GL vendor: ARM
[08:18:07.449] 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
[08:18:07.666] 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
               wl_shm sub-image to texture: yes
[08:18:07.666] Using GL renderer
[08:18:07.689] event5  - adc-keys: is tagged by udev as: Keyboard
[08:18:07.690] event5  - adc-keys: device is a keyboard
[08:18:07.693] event6  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[08:18:07.693] event6  - Logitech USB Optical Mouse: device is a pointer
[08:18:07.696] event2  - rk805 pwrkey: is tagged by udev as: Keyboard
[08:18:07.696] event2  - rk805 pwrkey: device is a keyboard
[08:18:07.699] event0  - hdmi_cec_key: is tagged by udev as: Keyboard
[08:18:07.699] event0  - hdmi_cec_key: device is a keyboard
[   10.437529] file system registered
[08:18:07.701] event1  - fe6e0030.pwm: is tagged by udev as: Keyboard
[08:18:07.701] event1  - fe6e0030.pwm: device is a keyboard
[08:18:07.704] event3  - rockchip-rk809 Headset: is tagged by udev as: Switch
[08:18:07.714] event3  - not using input device '/dev/input/event3'
[08:18:07.716] event4  - bt-powerkey: is tagged by udev as: Keyboard
[08:18:07.716] event4  - bt-powerkey: device is a keyboard
[08:18:07.771] libinput: configuring device "adc-keys".
[08:18:07.772] libinput: configuring device "Logitech USB Optical Mouse".
[08:18:07.772] libinput: configuring device "rk805 pwrkey".
[08:18:07.772] libinput: configuring device "hdmi_cec_key".
[08:18:07.772] libinput: configuring device "fe6e0030.pwm".
[08:18:07.772] libinput: configuring device "bt-powerkey".
[08:18:07.772] Registered plugin API 'weston_drm_output_api_v1' of size 40
[08:18:07.772] Color manager: no-op
[08:18:07.772] 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
[08:18:07.773] Loading module '/usr/lib/weston/desktop-shell.so'
[08:18:07.776] DRM: head 'HDMI-A-1' found, connector 114 is disconnected.
[08:18:07.776] launching '/usr/libexec/weston-keyboard'
[08:18:07.778] launching '/usr/libexec/weston-desktop-shell'
[   10.518438] read descriptors
[   10.518498] read strings
could not load cursor 'dnd-move'
could not load cursor 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[   10.729595] android_work: did not send uevent (0 0 0000000000000000)
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

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# ifconfig
eth0      Link encap:Ethernet  HWaddr 16:5F:03:23:18:A8  
          inet addr:192.168.3.239  Bcast:192.168.3.255  Mask:255.255.255.0
          inet6 addr: fe80::145f:3ff:fe23:18a8/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:152 errors:0 dropped:0 overruns:0 frame:0
          TX packets:20 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:30903 (30.1 KiB)  TX bytes:3188 (3.1 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)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:9A:5F:9A  
          inet6 addr: fe80::72f7:54ff:fe9a:5f9a/64 Scope:Link
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:5 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:446 (446.0 B)

wlan1     Link encap:Ethernet  HWaddr 72:F7:54:9A:5F:9A  
          inet6 addr: fe80::9d9c:27ee:9af3:7f45/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:858 (858.0 B)

root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# 
root@rk3566-buildroot:/# cd /etc/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 Apr 10 06:52 ../
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 02:32 if-pre-up.d/
drwxr-xr-x  2 root root 4096 Apr  3  2024 if-up.d/
-rw-r--r--  1 root root  186 Apr  9 08:53 interfaces
drwxr-xr-x  2 root root 4096 Apr  3  2024 interfaces.d/
-rwxr-xr-x  1 root root  846 Apr  7 09:31 nfs_check*
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


# 2025/4/9 16:53 wenyuanbo add
auto eth0
iface eth0 inet dhcp

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

[END] 2025/4/10 16:20:34
 

猜你喜欢

转载自blog.csdn.net/wb4916/article/details/147121842
今日推荐