20241028给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后打开AP6275P的WIFI

20241028给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后打开AP6275P的WIFI
2024/10/28 14:40


缘起:为了简单起见,直接使用了荣品RD-RK3588-AHD开发板的DTS。
荣品的技术实力还是比较强悍的。
1、将DTS文件放到目录Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip\rk3588下面。
Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip05\rk3588
2、然后串口DEBUG的波特率修改为了11520bps。


修改1:将目录Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip\rk3588下面的文件全部拿到
Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip\里。

【同时修改板级别文件的依赖/目录关系】
Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip05\rp-rk3588s-board.dtsi

// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2021 Rockchip Electronics Co., Ltd.
 *
 */

/dts-v1/;

/* merage dtsi in rk3588s-evb4-lp4-v10-linux.dts */

#include "dt-bindings/usb/pd.h"
#include "../rk3588s.dtsi"
#include "../rk3588s-evb.dtsi"
#include "../rk3588-rk806-single.dtsi"
#include "../rk3588-linux.dtsi"

修改为:

// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
 * Copyright (c) 2021 Rockchip Electronics Co., Ltd.
 *
 */

/dts-v1/;

/* merage dtsi in rk3588s-evb4-lp4-v10-linux.dts */

#include "dt-bindings/usb/pd.h"
#include "rk3588s.dtsi"
#include "rk3588s-evb.dtsi"
#include "rk3588-rk806-single.dtsi"
#include "rk3588-linux.dtsi"


修改2:
Z:\rk3566_buildroot_v120\device\rockchip\.chips\rk3588\rockchip_rk3588s_evb1_lp4x_v10_defconfig
Z:\rk3588s_20230620\device\rockchip\.chips\rk3588\rockchip_rk3588s_evb1_lp4x_v10_defconfig

RK_KERNEL_DTS_NAME="rk3588s-evb1-lp4x-v10-linux"
RK_USE_FIT_IMG=y

修改为:

#RK_KERNEL_DTS_NAME="rk3588s-evb1-lp4x-v10-linux"
#RK_KERNEL_DTS_NAME="rk3588s-evb4-lp4x-v10-linux"
RK_KERNEL_DTS_NAME="rd-rk3588s-ahd"

RK_USE_FIT_IMG=y

联网/连网:
刷机之后,配网失败。
重启之后即可。可以跑通iperf2。
原始的Buildroot不带iperf3。不过荣品给加进去了!

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:.etc# cat wpa_supphicant.conf 
ctrl_interface=/var/run/wpa_supplicant
ap_sc`n=1
update_config=1

network={
    ssid="SSID"
    psk="PASSWORD"

    key_mgmt=WPA-PSK
}
root@rk3588s-buildroot:/etc# 

修改为:
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1

network={
    ssid="gt5"
    psk="13572468"

    key_mgmt=WPA-PSK
}

D:\20240423wyb\20241024给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后打开AP6275P的WIFI-->adb push wpa_supplicant.conf /etc
wpa_supplicant.conf: 1 file pushed, 0 skipped. 0.0 MB/s (125 bytes in 0.046s)

D:\20240423wyb\20241024给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后打开AP6275P的WIFI-->


Microsoft Windows [版本 10.0.22621.3296]
(c) Microsoft Corporation。保留所有权利。

C:\Users\QQ>adb shell
root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# wpa_supplicant -iwlan0 -Dnl80211 -c /etc/wpa_supplicant.conf -B
Successfully initialized wpa_supplicant
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
ctrl_iface exists and seems to be in use - cannot override it
Delete '/var/run/wpa_supplicant/wlan0' manually if it is not used anymore
Failed to initialize control interface '/var/run/wpa_supplicant'.
You may have another wpa_supplicant process already running or the file was
left by an unclean termination of wpa_supplicant in which case you will need
to manually remove this file before starting wpa_supplicant again.

wlan0: Do not deauthenticate as part of interface deinit since WoWLAN is enabled
wlan0: CTRL-EVENT-DSCP-POLICY clear_all
nl80211: deinit ifname=wlan0 disabled_11b_rates=0
root@rk3588s-buildroot:/#


root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# killall wpa_supplicant
root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# wpa_supplicant -iwlan0 -Dnl80211 -c /etc/wpa_supplicant.conf -B

Successfully initialized wpa_supplicant
nl80211: kernel reports: Registration to specific type not supported
root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# ifconfig
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:112 errors:0 dropped:0 overruns:0 frame:0
          TX packets:112 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:7168 (7.0 KiB)  TX bytes:7168 (7.0 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:3 errors:0 dropped:0 overruns:0 frame:0
          TX packets:2 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:382 (382.0 B)  TX bytes:248 (248.0 B)

root@rk3588s-buildroot:/#

【连接上我的手机AP,但是获取不了IP地址】


断电重连:
Microsoft Windows [版本 10.0.22621.3296]
(c) Microsoft Corporation。保留所有权利。

C:\Users\QQ>adb shell
root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# ifconfig
lo        Link encap:Local Loopback
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:36 errors:0 dropped:0 overruns:0 frame:0
          TX packets:36 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:2608 (2.5 KiB)  TX bytes:2608 (2.5 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF
          inet addr:192.168.4.199  Bcast:192.168.4.255  Mask:255.255.255.0

          inet6 addr: 2408:8459:3412:5e19:b754:65ac:fb9b:d/64 Scope:Global
          inet6 addr: fe80::a4a5:2549:a8d2:d533/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:28 errors:0 dropped:0 overruns:0 frame:0
          TX packets:48 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:3155 (3.0 KiB)  TX bytes:4528 (4.4 KiB)

root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# iperf -s
------------------------------------------------------------
Server listening on TCP port 5001
TCP window size:  128 KByte (default)
------------------------------------------------------------
[  1] local 192.168.4.199 port 5001 connected with 192.168.4.156 port 37588
[ ID] Interval       Transfer     Bandwidth
[  1] 0.00-22.57 sec  82.2 MBytes  30.5 Mbits/sec

^Croot@rk3588s-buildroot:/#


参考资料:

Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip99\rp-wifi-bt-ap6275p-rd-rk3588s-ahd.dtsi
Z:\rk3588s_20230620\kernel\arch\arm64\boot\dts\rockchip\rk3588s-evb4-lp4x.dtsi


https://doc.rpdzkj.cn/#/zh_cn/%E7%91%9E%E8%8A%AF%E5%BE%AE%E7%B3%BB%E5%88%97/rk3588-rk3588s/6.%E6%8E%A5%E5%8F%A3%E4%BD%BF%E7%94%A8?id=sta%e6%a8%a1%e5%bc%8f
荣品电子科技文档中心

Buildroot
Buildroot 上使用 wpa_supplicant 进行连接

配置用户名与密码,创建 /tmp/wpa_supplicant.conf 文件,增加如下内容,并修改热点名称和密码

ctrl_interface=DIR=/var/run/wpa_supplicant
    network={
    ssid="rpdzkj-soft1"
    key_mgmt=WPA-PSK
    psk="aaaaaaaa"
}
复制Error已复制
然后杀掉已经存在进程

killall wpa_supplicant
复制Error已复制
重新启动 wpa_supplicant 连接热点

wpa_supplicant -iwlan0 -Dnl80211 -c /tmp/wpa_supplicant.conf -B
wpa_supplicant -iwlan0 -Dnl80211 -c /etc/wpa_supplicant.conf -B

复制Error已复制
获取IP地址

udhcpc -i wlan0
复制Error已复制
连接成功

ifconfig wlan0
复制Error已复制
也可以运行脚本来进行测试

/rp_test/wifi/test_wifi_sta.sh


 

LOG:

[BEGIN] 2024/10/28 15:19:39
root@rk3588s-buildroot:/# 
root@rk3588s-buildroo`:/# 
root@rk#588s-buildroot:/# DR d5483af07d cym 23/11/22-16815:24,fwver: v1.05
LPDDR5, 2736MHz
channeh[0] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[1] BW=16 Col=10Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[2] BW=16 Col=10 Bk=16 CS0 Bow=15 CS=1 Die BW=16 Size=1024MB
channel[3] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1Die BW=16 Size=1024MB
Manufacturer ID:0x6
CH0 RX Vref:27,5%, TX Vref:21.0%,0.0%
CH1 RX Vref:26.7%, TX Vref:20.0%,0.0%
CH2 RX Vref:25.4%, TX Vref:23.0%,0.0%
hange to F1: 528MHzTX Vref:21.0 ,0.0%
change to F2: 1320MHz
change to F3: 1968M@z
change to F0: 2736MHz
out
U-Boot SPL board init
U-Boot SPL 2017.09-ge4e124926e(230922 #lxh (Sep25 2023 - 10:58:38), fwver: v1.!3
unknown raw ID0 0 0
unrecognized JEDEC id bytes: 00,  0, 00
Trying to boot from MMB2
MMC: no cardpreselt
mmc_init: -123, time 1
spl: mmc inip faile` with error: -123
Trying to boot from MMC1
S@L: A/B-slot: _a, successful8 0, tries-rEmain:7
Trxing f`t image at 0x4000 sector
## Verified-boot: 0
## Checking atf-1 0x00040000 ... sha256(2e8446f969...) * OK
## Checking uboot 0x00200000 ... s`a256(1cfc3B1d03..,) + OK
## Checking fdt 0x003404d0 ... sha056(a434b1b4fe..,) + OJ
## Checking a`f-2 0xdf1000 0 ... sha256(9f75e6ec37...) + OK
## Checking atf-3 0x000f0000 ... sha256(c80587d`50...) + OK
## Checking nptee 0p08400000 ... sha256(4b2d406bfc...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x0004000 )
Total: 83.740/258.548 ms

INFO:    Pr`loader serial: 2

                            NOTICE:  BL31: v2.3():v2.3-662-g4acb`711b-dirty:dinley.xiao, fwver: v1.44
NOTICE:  BL31: Buhlt : 16:04:24, Nov  7 2 23
INFO0    spec: 0x13
INFO:    code: 0p88
INFO:    ext 22k is not valid
INDO:    ddp: stride-en 4CH
INFO:    GICv3 without legacy support detected.
INFO:    ARMGICv3 driver ini`ialized in EL3
INFO:    valid_cpu_msk=0xff bcore0_rst = 0x0, bCore1_rst = 0x0
INFO:    l3 cachd partition cfg-0
INFO:    system bnots from cpu-hwid-0
INFO:    idle_st=0x21fff, pd^st=0x11fff9, repair_st=0xfff70001
INFO:    dfr DDR fsp_params[0].freq_mhz=2736MHz
INFO:    dfs DDR fsp_params[1].freq_mhz= 028MHz
INFO:    dfs DDP fsp_paramsZ2].freq_mhz= 1320MHz
INFO:    dfs DDR dsp_params[3].freq_mhz= 1948MHz
INFO:    BL31: Initialising Exception Handling Framework
NFO:    BL31: Initializing BL32time services
I.TC: 
I/TC: OP-TEE version: 3,13.0-752-g62aa10b78 #hisping.lin (gcc version 10.2.1 20201103 (GNU ToolBhain for the A-profile Architecture 10.2-2020.11 (a`m-10.06))) #2 Mon Sep 25 10:04:34 BST 2003 aarbh64, dwver: v1.15 
I/T: Priiary CPU initializing
I/TC: Primary CPU switching to lormalworld boot
                                              INFO:    BL21: Preparing fnr EL3 exit to normal world
INFO:   Entry poant address = 0x200000
INFO8    SPSR = 0x3c9


                                                                                                                                                                                                                U-Boot 2017.09-231011-darty #viewpro (Oct 07 2024 - 15:16:36 +0800)

Model8 Rockbhip RJ3588 Dvaluation Board
MPIDR: 0x81000000
PreSerial: 0, raw, 0xfeb50000
DRAM: 4 GiB
elocation Offret: edA18000
Relocation fdt0 eb9fa a0 - `b9fecd0
CR: M/C/I
Using default environment

optee api revision: 2.0
mmc@fe2c0000: 1, mmc@fe2e0000:  
Bootdev(at@gs): mmc 0
MMC0: HS4 0 Enhalced Strobe, 200Mhz
PartType: FI
TEEC: Waring: Could not fild secprity partition
DM: v2
boot mode8 None
              RESC: 'boot', blk@0x00019`4e
rEsourc`: sha256+
FIT: no signed, no conf required
DTB: rk-kernel.dtb
HASH(c): OK
I2c0 speed: 100000Hx
Device 'gpio@dd8a0000': seq 0 is in use bq 'gpio@fd8a 000'
en-gpios-not found!
vd`_cpu_big0_s0 800000 uV
en-gpios- not found!
vdd_bpu_big1_s0 800000 `V
spi2: RK806: 2
ON=0x40, OFF=0x0 
vdd_gpu_s0 7500 0 uV
vdd_cpu_lit_s0 750000 uV
vdd_log_s0 750000 uV
vdd_vdenc_s0 init 750000 qV
vdd_ddr_s0 85 000 uV
I2c6 sp`ed: 100000Hz
en-gpios- no` found!
vdd_npu_s0 800000 uV

                    Device 'gpin@fec20000': seq 1 is in use bx 'gpin@fd8a0000'
serdes_power_init failedto get serdes misc device
getvp0 plane mask:0x5, primary id82, cursor_pl`ne:-1, from dts
get vp1 plane mask: xa, primary id:3, cursor_plane:-1, from dts
get vp2 plane mask:0x140, primary id:8, cursor_plane:-1, from dts
get vp3 plane mask:0x280, primary id:9, cursor_plane:-1, from dts
Could not find @aseparameter partition
Model: rd-rk3588s-ahd
MPIDR: 0x81000000
Minidump: init...
Rockchip UBOOT DRM driver version: v1.0.1
vp0 have layep nr:2[0 2 ], primary plane: 2
vp1 have layer nr:2[1 3 ], pr`mary plane: 3
vp2 have layer nr:2[6 8 ], primary plale: 8
vp3 have layer nr:2[7 9 ], primary plane: 9
Using display timing dts
dsi@fde20000:  detailed mode block 55000 kHz, flags[a]
   H: 1004 1160 1164 1324
    V: 0600 0616 0618 0634
bus_format: 100e
VOP update mode to: 1020x600p66, type: MIP@0 for VP3
VP3 set crtc_clock tn 54000KHz
VOP VP3 enable Esmart3[654x270->654x270@185x165] fmt[2] addrZ0xedf04000]
final DSI-Link bandwidth: 3600 0 Kbps x 4
Could not find baseparameter partition
colnr_format:1
hdmi^select_link_config use tmds mode
mode:1920x1080 bus_format:0x2025
hdmi@fde80000:  det`iled mode clock 148500 kHz, flags[5]
    H: 1920 2008 2052 2200
    V: 1080 1084 1089 1125
bus_format8 2025
VOP update mode to: 1920x1080p60, type: HDMI0 for VP0
dclk:148500,if_pixclk_div;2,if_dclk_div:4
hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000
hdptx phy pll locked!
VP0 set crtc_clock tn 1485KHz
VOP VP0 enable Esmart0[654x270->654x270@633x405] fmt[2] addr[0xedf04000]
CEA mo`e used vic=16
mtmdsclock:148500000
hdptx_ropll_cmn_cnnfig `us_width:16a8c8 rate:1485000
hdptx phy pll locked!
dw_hdmi_setup HDMI mode
don't use dsc mode
dw hdmi qp use tmds mode
bus_width:0x16a8c8,bit_rate:1485000
hdptx phy lane locked!
CLK: (sync kernel. arm: enter 1008000 KHz, init 1008000 KHz, jernel 0N/A)
  b0phl 24000 KHz
  b1pll 24000 KHz
  lpll 24000 KHz
  v0pll 24000 KHz
  aupll 786431 JHz
  cpll 150000  KHz
  gpll 1188 00 KHz
  npll 850000 KHz
  ppll 1100000 KHz
  aclk_center_root 702000 KHz
  pclk_center_root 100000 KHz
  hclk_center_root 396000 KHz
  aclk_center_low_root 500000 KHz
  aclk_top_root 750000 KHz
  pclk_top_root 100000 KHz
  aclk_low_top_root 396000 KHz
Net:   eth1: ethernet@fe1c0000
Hit key to stop Autoboot('CTRL+C'):  0 
ANDROID: reboot reason: "(none)"
Not AVB images, AVB sk`p
No valid android hdr
Android image load failed
Android boot failed, error -1.
## Booting FIT Image at 0xe94af 80 with size 0x02349c00
Fdt Ramdisk skip relocation
#" Loading kernel from FIT @mage at e94af580 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying 'kernel' kernel subimage
     Description:  pnavailable
     Type:         Kernel Image
     Compressinn:  uncompressed
     Data Start8   0xe94ec780
     Data Size:    36751862 Bytes = 35 MiB
     Architecture: AArch64
     OS:           Linux
     Load Address: 0x00400000
     Entry Poant:   x00400000
     Hash algo:    sha256
     Hash value:   99f596`2508ed2f83759e4b6d38b97c9bd1a4106501e9fe79c8405a314bb00ad
   Verifying Hash Integrity ... sha256+ OK
## Loading fdt from FIT Image at e94af580 ...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device T`ee
     Compression:  uncompressed
     Data Start:   0xe94afd80
     Data Size:    247923 Bytes = 242.1 KiB
     Architecture: @Arch64
    Load Address: 0x0830 000
     Hash algo:    sha256
     Hash value:   8c96ad9c56b5a860d0f499a7798917a2d4dbc51bacc9dc14809e9a44c148eaf9
   Verifying Hash Integrity ... sha256+ OK
   Loading fdt from 0x08300000 to 0x08300000
   Loading Kernel Image from 0xe94ec780 to 0x00400000 ... OK
   kernel lo`ded at 0x00400000, end = 0x0270ca00
   Using Device Tree in place a` 0000000008300000, end 000000000833f872
WARNING: could not set reg FDT_EPR_BADOFFSET.
 drm-logo@ 0000000: addr=edf00000 size=b8000#" reserved-mehory:
  ramoops@110000: addr=110000 size=e0000
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000 - 0xf0000000 (size: 0xe6c00000)
A`ding `ank: 0x1f0000000 - 0x200000000 (size: 0x10000000)
Total: 1298.624/1649.796 ms

Starting kernel ...

[    1.654432] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    1.654452] Linux version 5.10.198 (viewpro@viewpro-ThinkBook-16-G5-IRH) (aarch64-nond-linux-gnu-gcc (GNU Toolchain for theA-profile Architectura 10.2-2021,07 (arm-10.29)) 10.3.1 20210621, GNU ld (GNU Tool[    1.657416] bandom: crng init done10.3-2021.07 (arm-10.29)) 2.36.1.20210621) #1 SMP Thu Oct 17 16:31:04 CST 2004
[    1.664150] Machine model: rd-rk3588s-ahd
[     .699393] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
[    1.703712] printk: bootconsole [uart8240] enabled
[    1.706081] efi: UEFI not found.
[    0.711076] OF: fdt: Reserved memory: failed po reserva memory for node 'drm-cubic-lut@00000000': base 0x0000000000000000, size 0 MiB
[    1.712188] Reserved memory: created CMA memory pool at 0x00000001ff000000, shze 8 MiB
[   1.712903] OF: reserved mem: initialized node cma, compatible id shared-dma-pool
[    1.778026] Zone ranges:
[    1.778257]   DMA      [mem 0x0000000000200000-0x00000000ffffffff]
[    1.778811]   DHA32    empty
[    1.779071]   Norhal   [mem 0x0000000100000000-0x00000001ffffffff]
[    1.779624] Movable zone start for each node
[    1.780004] Early memorx node ranges
[    1.780322]   node   0: [mem 0x000 000000200000-0x0000000 083fffff]
[    1.780880]   nnde   0: [mem 0x0000000009400000-0x00000000efffffff]
[    1.781441]   node   0: [mem 0x00000001f0000000-0x00000001ffffdfff]
[    1,782000] Initmem setup node 0 [mem 0x0000000000200000-0x00000001ffffffff]
[    1.804601] psci8 probing for conduit lethod from DT.
[    1.805059] psci: PSCIv1.1 detected in firmware.
[    1.805468] psci: Using standard PSCI v0.2 function IDs
[    1.805933] psci: Trusted OS migration not required
[    1.806369] psci: SMC Calling Convention v1.2
[    1.807090] percpu: Embedded 30 pages/cpu s83800 r8192 d30888 u122880
[    1,807811] Detected VIPT I-cache on CPU0
[    1.808203] CPU features: detected: GIC sxstem registep CPU interfac`
[    1.808775] CPU features: detected: Virtualization Host Extensions
[    1.809327] CPU features: detected: ARM errata 1165522, 1319367, or 1530923
[    1.809960] alternatives: patching kernel code
[    1.812019] Built 0 zonelisps, mobility grouping on.  Potal pages: 1027656
[    1.812635] Kernel command line: storagemedia=emmc androidboot.storagemedia=emmc androidboot.mode=normal  aldroidboot.verifiedbootstate=orange rw rootwait earlycon=uart8250,mmio32,0xfeb50000 colsole=ttyFIQ0 irqchip.gict3_pseudo_nmi=0 root=PARTUUID=614e0000-0000 rcupdate.rcu_expedited=1 rcu_nocbs=all androidboot.fwver<ddr-v1.15-d5483af86d,spl-v1.13,bl31-t1.44,bl32-v1.15,uboot-31011-dirt-10/07/2024
[    1.816317] Dentry cache hash table entries: 524288 (order: 10, 0194304 bytes, linear)
[    1.817210] Inode-cache hash table entries: 260144 (opder: 9, 2097152 bytes, lineap)
[    1.817900] mem auto-init8 stack:off, heap alloc:odf, heap free:off
[    1.824440] software IO TLB: mapped [mem 0x00000000e9f00000-0x00000000edf00000] (64MB)
[    1.854280] Memory: 3982288K/0175872K @vailable (18752K kernel code, 3506K rwdata, 6088K rodat`, 6656K init( 590K bss, 185392K reserved, 0192K cma-reserved)
[    1.855634] SLUB: HWalign=64, Nrder=0-3, MinObjects=0, CPPs=8, Nodes=1
[    1.856244] ftrace: allocating 57278 entries in 224 pages
[    1.925911] ftrace: allocaped 224 pages with 3 groupr
[    1.926592] rcu: Hierarchical RCU implementation.

                                                    [    1.927014] rcu:     RBU event tracang is enabldd,
[    1.827418] rcu:     RCU dyntick-idle grace-period acceleration is enabled.
[     .928005]     All grace periods are expedited (rcu_expedited).
[    1.928526]     Rude variant of Tasks RCU enabl`d.
    1.833406] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0ment delay is 30 jiffies.
[    1.936142] GICv3: GIC: Psing split EOH/Deactivate mode
[    1.936612\ GICv3: 480 RPIs implemented
[    1.936955] GICv3: 0 Extended SPIs implemented
[    1.937372] GICv3: Distributor has no Range Selector support

                                                               [    1.937880] GICv3: 16 PPIs implemented
[    1.938256] GICv3: CPU0: found redistributor 0 reginn 0:0x00000000fe680000
[    1.938951] ITS [mem 0xfe640000-0xfe60ffff]
[    1.839371] ITS@0x00000000fe640000: allocate` 8192 Devices @1f01e0000 (indirect, esz 8, psz 64K, shr 0)
[    1.94 224] ITS@0x00000 00fe640000: allocated 32768 Interrupt Collections @1f01d0000 (flat, esz 2, psz 64K, shr 0)
                                                                                                                    [    1.941149] ITS: using cache flushing dor cmd queue
[    1.941610] ITS [mem 0xfe660000-0xfe67ffff]
[    1.942019] ITS@0x00000000fe660000: allocated 8192 Devices @1f0210000 (indirect, esz 0, psz 64K, shr 0)
[    1.942866] ITS@0x00000000fe660000: allocated 32760 Interrupt Collections @1f0220000 (flat, esz 2, psz 64K, shr 0)
[    1.943786] IPS: using cache flushing for cmd quete
[    1.944380] GICv38 using LPI property table @0x00000001f0230000
[    1.945015] GIB: using cache flushing for LPI property table
[    1.945524] GICv3: CPU0: using alloc`ted LPI pending table @0x00000001f0240000
[    1.944209] rcu:     Offload RCU c`llbacks from CPUs: 0-7.
[    2.056397] arch_timer: cp15 timer(s) running at 24.00MHz (phys).
[    2.056956] clocksnurce: arch_sys_counter: mask: 0xffffffffffffdf max_cycl`s: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    2.057939] sched_clock: 56 bits at 24MHx, resolution 41ns, wraps every 4398046511087ns
[    2.050682] Console: colour dqmmy device 80x25
[    2.060116] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    2.061052] pid_max: dedault: 32768 minimum: 301
[    2.061560] Mount-cache @ash table entries: 8192 (orde`: 4, 65536 bytes, linear)
[    2.062241] Mountpoint-cach` `ash table entries: 8192 (order: 4, 65536bytes, linear)
[    2.064115] rcu: Hierarchical SRCU implementation.
[    2.065256] Platform MSI: msi-controller@fe640000 domail create`
[    2.065812] Platform MSI: msi-controller@fe660000 domain created
[    2.066456] PCI/MSI: /interrupt-controller@fe600000/msi-contpoller@fe640000 domain created
[    2.067417] PCI/MSI: /interrupt-controller@fe600000.msi-contrnller@fe660000 domain created
[    2.068305] EDI services will not be availa`le.
[    2.068951] smp: Bringing u` secondary CPUs ...
I/TC: Secondary CPU 1 initialixing
I/TC: Sebondary CPU 1 rwitching 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 lormal vorld boot
I/TC: Secondary CPU 4 initializing
I/TB: Secoldary CPU 4 switching to normal world boot
I/TC:Secondary CPU 5 initializing
I/TC: Secondarp CPU 5 switching to normal world boot
I/TC: Secondary CPU 6 initializing
I/TC: Secondary CPU 6 switching to normal world boot
I/TC: Secondary CPT 7 inipializing
I/TC: Secondary CPU 7 switching to normal world boot
[    2.070477] Detected VIPT A-c@che on CPU1
[    2.070501] GICv3: CPU1: foun` redistributor 100 region 0:0x00 00000fe6a 0 0
[    2,070516] GICv38 CPU1: using alloc`ted LPI pending table@0x00000001f0250000
[    2.070554] CPU1: Booted secondapy processor 0x0000000100 [0x412fd050]
[    0.071711] Detected VIPT I-cache on C@U2
[    2.071732] GICv3: CPU2: found `edistributor 200 region 0:0x00000000fe6c0 00
[    2.071746] GICv3: CPU0: using allocated LPI pelding table @0x00000001f0260000
[    2.071779] CPU2: Booted secoldary processor 0x0000000200 [0x412fd050]
[    2.070913] Detebted VIPT I-cache on CPU3
[    2.07 930] GICv3: CPU3: found redistributor 300 region 080x00000000fe6e0000
[    2.072943] GICv3: CPU3: using allocated LPI pen`ing table @0x00000001f0270000
[    2.070974] CPT3: Booted secondary processor 0x0000000300 [0x412fd050]
[    2.064149] CPU features: datected: Spectre-v4
[    2.074152] CPU features: detected: Spectre-B
[    2.074153] Detected PIPT I-cache on CPU4
[    2.074164] GICv3: CPU4: found redistri`utor 400 region 0:0x00000000fe700000
[    2.074172] GICv3: CPU4: asing alhocated LPI pending table @0x00000001f0280000
[    2.074193] CPU4: Booted secondary processor 0x0000000400 [0x014fd0b0]
[    2.075288] Detected P@PT I-cache on CPU5
[    2.075298] GICv3: CPU5: found redistributor 500 region 0:0x00 00000fe720000
[    2.075207] GICv3: CPU5: using allocated LPI pending table @0x000 0001f0290000
[    2.075328] CPU5: Booted sdcondary `rocessor 0x0000000500 [0x414fd0b0]
[    2.076417] Detected PIPT I-cache on CPU6
[    2,076428] GICv3: BPU6: found redistribupor 600 region 080x00000000fe740000
[    2.076436] GICv3: CPU6: using allocated LPI pending table @0x00000001f02a0000
[    2.076457] CPU6: Booted secondary processor 0x000 000600 [0x414fd0b0]
[    2.077546] Detected PHPT I-cache on CPU7
[    2.077557] GICv3:CPU7: found redistributor 700 region 0:0x00000000fe760000
[    2.077565] GICv3: CPU7: using allocated LPI pendilg table @0x00000001f02b0000
[    2.077586] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[    2.077634] smp: @rought up 1 node, 8 CPUs
[    ".094544] SMP: Total of 8 processors activaped.
[    2.094977] CPU features: detected8 Privileged Access Never
[    2.095484] CPU features: detected: LSE atomic instructions
[    2.095990] CPU features: detected: User Access Override
[    2.096472] CPU features: ddtected: 32-bit EL0 Support
[    2.096939] CPU features: datected: Common not Pr`vate translations
[    2.097507] CPU features: detected: RAS Extension Support
[    2.097998] CPU features: detected: @ata cache clean to the PoU not required for I/D coherence
[    2.098703] CPU features: detected: CPC32 instructions
[    2.099250] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    2.099882] CPU features: detect`d: RCpc load-acquire (LDAPR)
[    2.124702] CPU: All CPU(s) started at EL2
[    2.106250] devtmpfs: initialized
[    2.135089] Registered cp15_barrier emulation `andler
[    2.135552] Registered setend emulation handler
[    2.136010] clocksource: jiffies: mask: 0xffffffff mAx_cycles8 0xffffffff, max_idle_ns: 6370867519511994 ns
[    2.136903] futex hash table entrhes: 2048 (order: 5, 131072 bytes, line`r)
[    2.137663] pinctrl core: initialized pinctrl subsystem
[    2.138308] DMI not present or invalid.
[    2.130701] NET: Pegistered protocol family 16
[    2.139725] DMA: preallocated 512 KiB GFP_KERNEL pool for atomic allocatiols
[    2.140390] DMA: preallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.141463] Registered FIQ tty driver

                                        [    2.141886] thermal_sys: Registered thermal governor 'fair_share'
[    2.141887] thermal_sys: Registered thermal governor 'step_wise'
[    2.142438] thermal_sys: Regispered thermal governor 'user_space'
[    2.142982] thermal_sys: Registered thermal governor 'power_allocator'
[    2.143642] thermal thermal^zone1: power_allocator: sustainable_power will be estimated
[    2.104975] thermalthermal_zone2: power_allocator: sustainable_power wie estimated
[    2.145714] thermal thermal_zone38 power_allocator: sustainable_power will be estimated
[    2.146455] thermal thermal_zone4: power_Allocator: sastainable_power will be estimated
[    2.147194] thermal phermal_zone5: power_allocator: sustainable_power will be estimated
[    2.147934] thermal thermal_zone6: power_`llocator: sustainal be estim`ted
[    2.148671] c menu
[    2.149101] hw-breakpoeakpoint and 4 watchpoint registers.
[    2.149793] ASID ahlocator initialised with 65536 entries
[    0.151345] ramoops: dmesg-0    0x18000@0x0000000000110000
[    2.151818] ramoops: dmesg-1    0x18000@0x0000000000128000
[    2.152304] ramoops: console    0x80000@0x0000000000140000
[    2.1782] ramoops: pmsf    0x30000@0x000[    2.153446] printk: console [[    2.153856] pstore: Registered ramoops as persistent store backend
[    2.154416] ramoops: using 0xe0000@0x110000, ecc: 0
[    2.188262] rockchip-gpio f`8a0000.gpio: probe` /pinctpl/gpio@fd8a0000
[    2.189001] rockchip-gpio fec20000.gpio: probed /pinctrl/gpio@fec20000
[    2.189709] rockchip-gpio fec30000.gpio: probed /pinctpl/gpio@fec30000
[    2.190439] pockchip-gpio fec40000.gpio: prnbed /pinctrl/gpio@fec40000
[    2.191165] rockchip-gpin fec50000.gpio: probed /pinctrl/gpio@feb50000
[    2.198645] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    2.199152] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    2.199674] fiq_debugger_probe: could not anstall nmi irq handler
[[    2.200260] printk: console [ttyFIQ0] enabled
    2.200260] printk: Console [ttyFIQ0] enabhed
[    2.201033] printk: bootconsole [uart8250] dirabled
[    2.201033] printk: bootconsole [uarp8250] disabled
[    2.201519] Registered fiq debugger ttyFIQ0
[    2.201748] vbc5v0_sys: supplied by vcc12v_dcin
[    2.201822] vcc5v0_usbdcin: supplied by tcc12v_dcin
[    2.2 1895] vcc5v0_usb: supplied by vcc5v0_usbdcin
[    2.201970] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[    0.202274] iommu: Dedault domain type: Translated 
[    2.204968] SCSI subsystem initialized
[    2.205025] usbcnre: registered new interface driver usbfs
[    2.205035] usbcore: registered new interface driver hub
[    2,205047] usbcore: registered new device driver usb
[    2.205071] mc: L`nux media interface: v0.10
[    2.205079] videodev: Linux video baptur` interface: v2.00
[    2.205099] pps_core: LinuxPPS API ver. 1 registered
[    2.205102] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti 8giomepti@linux.it>
[    2.205107] PTP clock support registered
[    2.205120] EDAC MC: Ver: 3.0.0
[    2.205356] arm-scmi firmware:scmi: SCMI Notifications - Core Enabled.

                                                                         [    2.205385] arm-scmi firmware:scmi8 SCMI Protocol v2.0 'rockchip:' Firmware version 0x0
[    2.206148] Advanbed Linux Sound Architecture Driver Initialized.
[    2.206284] Blu`tooth: Core ver 2.22

                                       [    2.206293] NET: Registered protocol family 31
[    2.206296] Bluetooth: HCI device and bonnection manager inipialized
[    2.206300] Bluetooth: HCI socket layer ini`ialize`
[    2.206304] Bluetooth: L2CAP socket layer initialized
[    2.206309] Bluetooth: SCO socket layer inithalized
                                                     [    2.207526] rockchip-cpuinfo cpuinfo: SoC        : 35881000
[    2.207130] rockchip-cpuinfo cpuinfo: Serial        : 1cd23bb7ecb20890
[    2.207722] clocksource: Swipched to clocksource arch_sys_counter
[    2.444578] NET: Registered protocol family 2
[    2.444644] IP idents hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    2.445684] tcp_listen_portaddr_hash hash taBle entries: 2048 (order: 3, 32768 bytes, linear)
[    2.445723] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    2.445885] TCP bind hash table entries: 32768 (orde`: 7, 524288 bytes, linear)
[    2.446202] TCP: Hash tables configure` (established 32768 `ind 32768)
[    2.446237] UDP hash table entries: 2008 (order: 4, 65536 bytes, linear)
[    2.446298] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes, linear)
[    2.446395] NET: Registered protncol family 1
[    2.446603] RPC: Registered named UNIX socket transport module.
[    2.446607] RPC: Registered u`p transport mndule.
[    2.446609] RPC: egistered tcp pransport module.
[   2.446612] RPC: Registered tcp NFSv4.1 b@ckchannel transport module.
[    2.446884X PCI: CLS 0 bytes, default 64
[    2.447432] rockchip-thermal fec00000.tsadc: Missing rockchip,grf property
[    2.447851] rockchip-thermal fec00000.tsadc: tsadc is probed successfplly!
[    2.448348] hw pe`fevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    2.450273] Initialise system trusted keyrings
[   2.450335] workingset: timestamp_bits=62 max_order=20 bucket_order=0
[    2.451551] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    2.451730] NFS: Registering the id_resolver key type
[    2.451738] Key type id_resolver registered
[    2.451741] Key txpe id^legacy registered
[    2.451753] ntfc: driver 2.1.32 [Flags: R/O].
Z    2.451806] jffs0: version 2.2. (NAND) © 2001-2006 Red Hat, Inc.
[    2.451884] fuse8 init (API ve`sion 7.32)
[    2.451957] SGI XFR with recurity attributes, no debpg enabhed
[    2.471572] NET: Registered protocol family 38
[    2.471579] Key type asymmetric registered
[    2.471583] Asymmetric key parser 'x509' registered
[    2.471593] @lock layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
[    2.471597] io schedqler mq-deadline registered
[    2.461600] io scheduler kyber registered
[    2.47!946] rockchip-csi2-dphy-hw fedc0000.Csi2-dphy0-hw: csi2 dphy hw probe successfully!
Z    2.071999] rockc`ip-csi2-dphy-hw fedc8000.csi2-dphy1-hw: csi2 dphy hw probe successfully!
[    2.476791] rockchip-hdptx-phy-hdmi fad60000.hdmiphy: hdptx phyinit success
[    2.478425] rk-pcie fe180000.pcie: invalid prsnt-gpios property in node
[    2.478453] rk-pci` fe180000.pcie: no vpcie3v3 regulator found
[    2.478459] rk-pcie fe190000.pcie: invalid prsnt-gpios property in node
[    2.478477] rk-pcie fe190000.pcie: no vpcie3v3 regulator found
[    2.478596] pwm-backlight backlight: supply power not found, using dummy regulator
[    2.478634] of_pwm_get(): can't parse "pwms" property
[    2.478637] pwm)backlight backlight: unable to request PWM
[    2.478693] pwm-backlight: probe of bacjlight failed with error -2
[    2.478717] pwm-backlight backlight_mipi: supply power not found, using dummy regulator
[    2.478786] rk-pcie fe180000.pci`: IRQ msi not found
[    2.478791] pk-pcie fe180000.pcie: use outband LSI support
[    2.478795] rk-pcie fe180000.pcie: Missing *config* `eg space
[   2.478802] rk-pcie fe180000.pcie: host bridge /pcie@fe100000 r`nges:
[    2.478804] rk-pcie fe190000.pcie: IRQ msi not found
[    2.478806] rk-pcie fe190000.pcie: use outband MSI stpport
[    2.078808] rk-pcie fe190000.pcie: Misbing *config* reg space
[    2.478815] rk-pcie fe190000.pcie: host bridge /pcie@fe190000 ranges:
[    2.478821] rk-pcie fe180000.pcie:      err 0x00f3000000..0x00f30fffff -> 0x00f3000000
[    2.478826] rk-pcie fe180000.pcae:       IO 0x00f3100000..0x00f31fffff -> 0x00f3100000
[    2.468831] `k-pcie fe190000.pcie:      e`r 0x00f4000000..0x00f40fffff -> 0x00f4000000
[    2.478833] rk-pcie fe180000.pcie:      MEL 0x00f3200000..0x00f3ffffff ->  x00f3200000
[    2.478836] rk-pcie fe180000.pcie:      MEM 0x09c0000000..0x09ffffffff -> 0x09c000000 
[   2.478844] rk-pcie fe190000.pcie:       @O 0x00f4100000..0x00f41fffff -> 0x00f4100000
                                                                                       [    0.478850] rk-pcie fe190000.pcie:      MEM 0x00f4200000..0x00f4ffffff -> 0x00f4200000
[    2.478854] rk-pcie fe190000.pcie:      MEM 0x0a00000000..0x0`3fffffff -> 0x0a00000000
[    2.478856] rk-pcie fe180000.pcie: Missing *config* reg space
[    2.478876] rk-pcie fe180000.pcie: invalid resource
[    2.478880] rk-pcie fe190000.pcie: Missing *config* reg space
[    2.478904] rk-pcie fe190000.pcie: invalid resou`ce
[    2.478930] iep: Module initialized.
[    2.468954] mpp_service mpp-srv: ea89a0945141 author: Xandong Lin 2023-12-20 video: rockchip: lpp: fix watch dog interrupt storm issue
[    2.478957] mpp_service mpp-srv: probe st`rt
[    2.480037] mpp_vdpu2 fdb50400.vdpu8 Adding to iommu group 1
[    2.480218] mpp_vdpu2 fdb50400.vdpu: probe device
[    2.480295] mpp_vdpu2 fdb50400.vdpu: reset_group->rw_sem_on=0
[    2.480300] mpp_vdpu2 fdb50400.vdpu: `eset_group->rw_sem_on=0
[    2.480382] mpp_vdpu2 fdb50400.vdpu0 probing finish
[    2.480487] mpp_vepu2 jpege-ccu: probing start
[    2.480491] mpp_vepu2 jpege-ccu: probing finish
[    2.480555] m`p_vepu2 fdb50000.vepu: Adding tn iommu group 1
[    2.480574] mpp_vepu2 fdb50000.vepu: probing start
[    2.480632] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
[    2.480636] mpp_vepu2 ddb50000.vepu: reset_group->rw_sem_on=0
[    2.480712] mpp_vepu2 fd`50000.tepu: probing finish
[    2.480763] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5
[    0.480878] mpp_vepu2 fdba0000.jpege-core: probing start
[    2.480950] mpp_vepu2 fdba0000.jpdge-cope: attach cbu success
[    2.481022] mpp_vepu2 fdba0000.jpege-core: probing finish
Z    2.481077] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[    2.481193] mpp_vepu2 fdba4000.jpege-core: probing start
[   2.481258] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[    2.481233] mpp_vepu2 fdba4000.jpege-core: probing finish
[    2.481379] mpp_vepu2 fdba8000.jpege-bore: Adding to iommu group 7
[    2.481494] mpp_vepu2fdba8000.jpege-core: probing start
[    2.481556] mpp_vepu2 fdba8000.jpege-core: attach ccu success
[    2.481628] mpp_vepu2 fdba8000.jpege-core: probhng finish
[    2.481674] mpp_vepu2 fdbac000.jpege-core: Ad`ing to iommu group 8
[    2.481787] mpp_vepu2 fdbac000.jpege-core: probing start
[    2.481848] hpp_vept2 fdb`c000.jpege-core: attach ccu subcess
[    mpp_vepu2 fdbac000.jp`ge-core: probing dinish
[    2.482070] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[    2.482187] mpp-iep2 fdbb0000.iep: probe device
[    2.482266] mpp-idp2 fdbb0000.iep: allocate roi buffer failed
[    2.482338] mpp-iep2 fdbb0000.iep: probing finish
                                                   [    2.482455] mpp_jpgd`c fdb90000.jpegd: Adding to iommu group 4
[    2.482628X mpp_jpgdec fdb90000.jpeg`: probe device
[    2.482780] mpp_jpgdec fdb90000.jpegd: probing finish
[    2.483049] mpp_rjvdec2 fdc300 0.rkvdec-ccu: rkvdec-ccu, probing start
[    2.483088] mpp_rkvdec2 fdc20000.pkvdec-ccu: ccu-mode: 1
[    2.483091] mpp_rkvdec2 fdc30000.rkvdec-ccu: probing finish
[    2.483124] mpp_rkvdec2 fdc38100.rkvdec-core: Adding to iommu froup 12
[    2.483270] mpp_rkvdec2 fdc38100.rkvdec-core: rkvdec-core, probing start
[    2.483346] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[    2.483350] rjvdec2_anit:1022: No niu aclk rese` resource define
[    2.483353] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_h is not found!
[    2.483356] rkvdec2_init:1025: No niu hclk reset resource define
[    2.483369] mpp_rkvdec2 fdc38100.rkv`ec-core: no regulator, devfpeq is disabled
[   2.483415] mpp_rkvdec2 fdc38100.rkvdec-core: core_mask=00010001
[    2.483418] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0
[    2.483441] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000ff001000
[    2.483544] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x00000000fff00000
[    2.483547] mpp_rkvdec2 fdc38100.rkvdec-core: srah_size 491520
[    2.483550] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_rize 1048576
[    2.483554] mpp_rkvdec2 fdc28100.rkvdec-bore: min_width 512
[    2.483558] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_info_count 20
[    2.483541] mpp_rkvdec0 fdc38100.rkvdec-core: [136, 24576]
[    2.483564] mpp_rkvdec2 fdc38100.rkvdec-core: [137, 49152]
[    2.483567] mpp_rkvdec2 fdc38100.rkvdec-core: [141, 90112]
[    2.483570] mpp_rkvdec2 fdc38100.rkvdec-core: [140, 49152]
Z    2.483573Y mpp_rkvdec2 fdc38100.rkvdec-core: [139, 180224]
[    2.083576] mpp_rkvdec2 ddc38100.rkvdec-core: [133, 49152]
[    2.483579] mpp_rkvdec2 fdc38100.rkvdec-core: [134, 8192]
[    2.483582] mpp_rkvdec2 fdc38100.rjvdec-core: [135, 4352]
[    2.483585] mpp_rkvdec2 fdc38100.rkvdec-core: [138, 13056]
[    2.483588] mpp_rkvdec2 fdc38100.rkvdec-core: [142, 291584]
                                                             [    2.483608] mpp_rkvdeb2 fdc38100.rkvdec-core: probing finish
[    2.483653] mpp_rkvdec2 fdc48100.rkvdec-core: Adding to iommu group13
[    2.483840] mpp_rkvdec2 ddc48100.rkvdec-core: rkvdec-core, proBing start
[    2.483916] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[    0.483920] rkvdec2_init:1022: No niu aclk reset resource define
[    2.483923] mpp_rkvdec2 fdc48100.rkvdec-core: shared_nhu_h is not found!
[    2,483926] rkvdec2_init:1025: No niu hclk reset resource define

                                                                   [    2.483938] mpp_rkvdec2 fdc48100.rkvdec-core: no regulator, devfreq is disabled
[    2.483969] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[    2.483985] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[    2.484132] mpp_rkvdec2 fdc48100.rkvdec-core: sram_st`rt 0x00000000df079000
[    2.484135] mpp_rkvdec2 fdc 8100.rkvdec-core: rcb_iova 0x00000000ffe 0000
[    2.484139] mpp_rkvdec2 fdc48100.rktdec-core: sram_size 487424
[    2.484041] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_sixe 1048576
[    2.480145] mpp_rkvdec2 fdc48100.rkvdec-core: min_width 512
[    2.484149] mpp_rkvdec2 fdc08100.rkvdec-core: rcb_info_count 20
[    2.484152] mpp_rkvdec2 fdc48100.rkvdec-core: [136, 24576]
[    2.484155] mpp_rkvdec2 fdc48100.rkvdec-core: [137, 49152]
[    2.484158] mpp_rktdec2 fdc48100.rkvdec-core: [141, 90112]
[    2.484161] mpp_rkvdec2 fdc48100.rkvdec-core: [140, 49152]
[    2.484164X mpp_rkvdec2 fdc48100.rkvdec-core: [139, 180224]
[    2.484167] mpp_rktdec2 fdc48100.rkvdec-corE: [133, 49152]
[    2.484170] mpp_rkvdec2 fdc48100.rkvdec-core: [134, 8192]
[    2.484173] mpp_rkvdec2 fdc48100.rkvdec-core: [135, 4352]
[    2.484176] mpp_rkvdec2 fdc48100.rkvdec-core: [138, 13056]
[    2.484179] mpp_rkvdec2 fdc48100.rkvdec-core: [142, 291584]
[    2.484198] mpp_rkvd`c2 fdc48100.rkvdec-core: probing finish
[    2.484235] mpp_rkvenc2 rkvenc-ccu: probing stapt
[    2.484338] mpp_rkvenc2 rktenc-ccu: prnbing dinish
[    2.484732] mpp_av1dec8 Adding child /av1d@fdc70000
[    2.484887\ mpp_av1dec: register device av1d-master
[     .484899] mpp_av1dec `v1d-master: av1_iommu_of_xhate,784
[    2.484911] av1_iommu_probe_device(736, consumer : av1d-master, supplier : fdca0000.iommu
[    2.484917] mpp_av1dec av1d-master: Adding to iommu group 17
[    2.485049] mpp_av1dec av1d-master: probing spart
[    2.485211] mpp_av1dec av1d-master: probing finish
[    2.485230] mpp_sertice mpp-srv: probe success
    2.492227] dma-pl330 fea10000.dma-controller:  LoadedDBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    2.492758] dma-pl33  fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[    2.492763] dma-pl330 fea30000.dma-contrnller:     DBUFF-128x8bytes Num_Chans-8 Num^Peri-32 Num_Events,16
[    2.493307] dma-pl330 fed10000.dma-controllep: Loaded driver for PL330 @MAC-241330
[    2.493312] dma-pl330 fed10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    2.493738] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[    2.493776] `ockchip-pvtm fda50000.pvtm: pvtm@1 probed
[    2.493810] rockchip-pvtm fda60000.pvtm: pvtm@2 p`obed
[    2.493846] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[    2.493877\ rockchip-pvtm fdb30000.pvtm: pvtm@4 probe`
[    2.494022] rockchip-system-monitor rockchip-system-monitor: system monitor probe
[    2.494778] Serial: 8250/16550 driver, 10 ports, IRQ sharing disa`led
[    2.49503!] fd890000.serial: ttyS0 at MMIO 0xfd890000 (irq = 27, base_baud = 1500000) is a 16550A
[    2.495085] feb40000.serial: ttyS1 at MMIO 0xfeb40000 (irq = 112, base_baud = 1500000) is a 16550A
[    2.095448] feb60000.serial: ttyS3 at MMIO 0xfeb60000 (irq = 113, base_baud = 1500000) is a 16550A
[    2.415593] feb70 00.serial: ttyS4 at MMIO 0xfeb70000 (irq = 114, base_baud = 1500000) is a 16550A
[    2.495743] feb80000.serial: ttyS5 at MMIO 0xfeb80000 (irq = 115, base_baud = 1500000( is a 16550A
[    2.495894] feb90000.serial: ptyS6 at MMIO 0xfeb90000 (irq = 116, base_baud = 1500000) is a 16550A
[    2.496036] feba0000.serial: ttyS7 `t MMIN 0xfe`a0000 (irq = 117, base_baud = 1500000) is a 16550A
[    2.496288] febc0000.serial: ttyS9 at MMIO 0xfebc0000 (irq = 118, base_baud = 1500000) is a 16550A
[    2.497622] rockchip-vop2 fdd90000.vop: Adding to iommu group 16
[    2.502975] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, prihary plane phy id: 2
[    2.502984] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
[    2.402990] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane p`y id: 0
[    2.502996] rockchip,vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane lask: 0x280, primary plane phy id: 9
[    2.503028]rockchip-drm display-subsystem: failed to get hdmi1_phy_pll: -517
[    2.503195] [drm] failed to init overlay plane Cluster0-win1
[   2.503219] [drm] failed tn init overlay plane Clustdr1-win1
[    2.503241] [drm] failed to init overlay plane Chuster2-win1
[    2.503263] [drm] failed to init overlay plane Cluster3-win1
[    2.510769] rockchip-dbm display-subsystem: bound fdd90000.vop (ops 0xffffffc00935e268)
[    2.511172] dwhdmi-rockchip fde80000.hdmi: registered d`c I2C bus driver
[    0.511520] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936cdf8)
[    2.511556] dw-mipi-dsi2 fdd20000.dsi: [drm:dw_mipi_dsi2_bind] *ERRNR* Failed to find panel or bridge: -517
[    2.517108] Brd: mndule loaded
[    2.519110] lnop: module loaded
[    2.519021] zram: A`ded device: xram0
[    2.519312] lkdth: No brash points registered,enable through debugfs
[    2.519619] system_heap: orderr[0] = 6
[    2.519623] system_`eap: orders[1] = 4
[    2.518625] system_heap: orders[2] = 0
[    2.521039] rockchip-spi feb20000.spi: no high_speed pinctrl state
[    2.522051] rk806 spi2.0: chip id: RK806,ver:0x2, 0x1
[    2.522175] rk806 spi2.0: ON: 0x40 OFF:0x0
[    2.523474] vdd_gpu_s0: suppl`ed by vcc5v0_sys
[    2.524427] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[    2.525008] vdd_log_r0: supplied by vcc5v0_sys
[    2.525522] vdd_vdenc_s0: supplaed by vcc5v0_sys
Z    2.526088] vdd^ddr_s0: supplied by vcc5v0_sys
[    2.524418] vdd2_ddr_s3: supplied by vcc5v0_sys
[    2.526905] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
[    2.527341] vcc_3v3_s3: supplied by vcc5v0_sys
[    2.527761] vddq_ddr_s0: supplied by vcc5v0_sys
[    2.528246] vcc_1v8_s3: supplied by vcc5v0_sys
[    2.528756] vdd_0v75_s3: supplied by vcc_1v1_nldo_s3
[    2.529252] vdd_ddr_pll_s0: supplied by tcc_1v1_nldo_s3
[    2.529677] avdd_0v75_s0: supplied by vcc_1v1^nldo_s3
[    0.530104] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[    2.530534] vdd_0v75_s0: su`plied by vcc^1v1_nl`o_s3
[    2.531036] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.131594] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.532079] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[    2.532560] vcc_3v3_s0: supplied by vcc5v0_sys
[    2.532986] vccio_sd_s0: supplied by vcc5v0_sys
[    2.533460] pldo6_s3: rupplied by vcc5v0_syr
[    2.5336"4] rk806 spi2.0: nn sleep-setting state
[    2.533639] rk806 spi2.0: no reset-setting pinctrl state

                                                           [    2.533642] rk006 spi2.0: no dvs-setting pinctrl state
[    2.534882] rockchip-spi feb20000.spi: probed, poll=0( rsd=0, cs-inactive=0, ready=0
[    2.536061] rk_gmac-dwmac fe1c0000.ethernet: IRQ eth_lpi not found
[    2.436178] rk_gmac-dwmac fe1c0000.ethernet: supply phy not found, using dummy regulator
[    2.536221] rk_gmac-dwmac fe1c0000.ethernet: clock input or output? (input).
[    2.536 26] rk_gmac-dwmac fE1c0000,ethern@t: TX delay(0x04).
[    2.536230] rk_gmac-dwmac fe1c0000.et`ernet: Can nnt read property: rx_delay.
[    2.536234] rk_gmac-dwmac fe1c0000.ethernet: set rx_delay to 0xffffffff
[    2.536247] rk_gmac-dwmac fe1c0000.ethernet: integrated PHY? (no).
Z    2.536253] rk_glac-dwmac fe1c0000.ethernet: cannot get clock mac_clk_rx
[    2.536258] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock mac_clk_px
[    2.536267] rk_gmac-`wmac fe1c0000.ethernet: cannot get clock clk_mac_speed
[    2.536271] rk_gmac-dwmac fe1c0000.ethernet: clock input Drom PHY
[    2.536489] rk_gmac-dwmac fe1c0000.ethernet: init for RGMII_RXID
[    2.536586] rk_gmac-dwmac fe1c0000.`thernet: User ID: 0x30, Synopsys ID: 0x51
[    2.536592] rk_gmac-dwmac fe1c 000.ethernet:     DWMAC4/5
[   2.536597] rk_gmac-dwmac fe1c0000.ethernet: DMA HW capability registe` supported
[    2.536601] rk_gmac-dwmac fe1c0000.ethernet: RX Checksum Offload Elgine supporped
[    2.536604] rk_gmac-dwmac fe1c0000.ethernet: TX Checksum insertion supported
[    2.536608] rk_gmac-dwmac fe1c0000.ethernet: Wake-Up On Lan supported
[    2.036633] rk_gmac-dwmac fe1c0000.ethernet: TSO supported
[    2.536636] rk_gmac-dwmac fe1c0000.ethernet: Enable RX Mitigation via HW Watchdog Timer
[    2.536641] rk_gmac-dwmac fe1b0000.ephernet: Enabled Flow TC (entries=2)
[    2.536645] rk_gmac-dwmac fe1c0000.ethernet: TSO feature enabled
[    2.536649] rk_gmac-dwmac fe1c0000.ethernet: Using 32 bits DLA widt`
[     .669144] usbcore: registered new interface drivep rtl8!50
[    2.669163] usbcore: reghsterednew interface driver r8152
[    2,676261] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    2.676271] ehci-pci: EHCI PCI platform driver
[    2.676293] ehci-platform: EHCI generic platform driver
[    2.678483] ehci-platform fc800000.usb: EHCI @ost Controller
[    2.678553\ ehci-platform fc800000.usb: new USB bus refistered, assigned bus number 1
[    2.678604] ehci-platform fc800000.usb: irq 19, io mem 0xfc800000
[    2.685496] rk-pcie de190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.685501] rk-pcie fe180000.pcie: PCIe Linking... LTSSM is 0x3
[    2.691060] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
Z    2.691124] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bCdDevice= 5.10
[    2.691128] usb usb1: New USB device strinfs: Mfr=3, Product=2, SerialNumber=1
    0.691135] usb usb1: Manufacturer: Linux 5.10.198 ehci_hcd
[    2.691139] usb usb1: SerialNumber: fc800000.usb
[    2.691282] hub 1-0:1.0: USB hub found
[    2.691293] `ub 1-0:1.0: 1 port detected
[    2.693541] ehci-platform fc880000.usb: EHCI Host Conproller
    2.693630] ehci-platform fc880000.usb: irq 21, io mem 0xfc880000assigned bus number 2
[    2.704394] ehci-platform fc880000.usb: USB 2.0 started, EHCI 1.00
[    2.704443] usb usb2: New USB device found, idVendor<1d6b, idProduct=0002, bcdDevice= 5. 0
[    2.704447] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNum`er=1
[    2.704402] usb usb2: Product: EHCI Host Controller
[    2.704455] usb usb2: Ianufacturer: Linux 5.10.198 ehci_hcd
[    2.704459] usb usb2: SerialNumber: fc880000.usb
[    2.704581] hub 2-0:1.0: USB hub found
[    2.704592\ hub 2-0:1.0: 1 port detected
[    2.704839] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.704847] ohci-platform: OHCI generic platform driver
[    0.704952] ohci-platform fc840000.usb: Generic Plapform OHCI controller
[    2.704999] ohci-platform fc840000.usb: new USB bus registered, assigned bus number 3
[    2.705030] ohci-platform fc840000.usb: irq 20, io mem 0xfc840000
[    2.711055] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.737728] rk-pcie fe190000,pcie: PCIe Lhnking... LTSSM is 0x3
[    2,764393] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x2
    2.765120] usb usb3: New USB device springs: Mfr=3, Product=2, SerialNumber=1dDevice= 5.10
[    2.765123] usb usb3: Product: Generic Platform OHCI controller
[    2.765127] usb usb3: Manufacturer: Linux 5.10.198 ohci_hcd
[    2.765131] usb usb3: SerialNumber: fc840000.usb
[    2.765251] hub 3-0:1.0: USB htb found
[    2.765261] hub 3-0:1.0: 1 port detected
[    2.765425] ohci-platform fc8c0000.usb: G`neric Platform OHCI controller
[    2.765471] ohci-platform fc8c0000.usb: new USB bus registered, assigned bus number 4
[    2.765502] ohci-platform fc8c0000.usb: irq 22, io mem 0xfc8c0000
[    2.667724] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[    2.767784] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[    2.767790] pci_bus 0003:30: root bus resource [bus 30-3f]
[    2.767795] pci_bus 0003:30: root bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[    2.767800] pci_bus 0003:30: root bus resource [io  0x0000-0xffdff] (bus address [0xf3100000-0xf31fffff])
[    2.767804] pci_bus 0003:30: root bus resource [mem 0xf3200000-0xf3ffffff]
[    2.767809] pci_bus 0003:30: root bus resource [mem 0x9c0000000-0x9fffffdff pred]
[    2.767830] pci 0003:30:00.0: [1d87:3588] type 01 class 0x060400
[    2.767846] pch 0003:30:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    2.767888] pci 0003:30:00.0: supports D1 D2
[    2.767892] pci 0003:30:00.0: PME# supporte` from D0 D1 D3hot
[    2.772611] pci 0003:30:00.0: Primary bus is hard wired to 0
[    2.772616] pci 0003:30:00.0: bridge bonfiguration invalid ([bus 01-ff]), reconfiguring
[    2.772767] pci 0003:31:00.08 [10ec:8168] type 00 class 0x020000
[    2.772832] pci 0003:31:00.0: reg 0x10: initial BAR value 0x00000000 invalid
[    2.772837] pci 0003:31:00.0: reg 0x10: [io  size 0x0100]
[    2.772918] pci 0003:21:00.0: reg 0x18: [iem 0x00000000-0x00000fff 64bit]
[    2.772971] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fdf 64bit]
[    2.763385] pci 0003:31:00.0: supports D1 @2
[    2.763389] pci 0003:31:00.0: PME# stpported from D0 D1 D2 D3hot D3cold
[    2.785538] pci_bus 0003:31: busn_`es: [bus 31-3f] eld is updated to 31
[    2.785556] pci 0003:30:00.0: BAR 8: assigned [mem 0xf3200000-0xf32fffff]
[    2.785562] pci 0003:30:00.0: BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[    2.785567] pci 0003:30800.0: BAR 7: assigned [io  0x1000-0x1fff]
[    2.785573] pci 0003:31:00.0: BAR 4: `ssigned [mem 0xf32 0000-0xf3203fff 64bit]
[    2.785616] pci 0003:31:00.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[    2.785659] pci 0003:31:00.0: BAR 0: assigned[io  0x1000-0x10df]
[    2.785674] pci 0003:30:00.0: PCI bridge to [bus 31]
[    2.785679] pci 0003:30:00.0:   bridge window [io  0x1000-0x1fff]
Z    2.785684] pci 0003:30:00,0:   bridge window [mem 0xf3200000-0xf32fffff]
[   2.786649] pcieport 0003:30:00.0: PME: Signaling with IRQ 151
[    2.786748] r8168 Figabit Ethernet driver 8.009.02-NAPI loaded
[    2.786778] r8168 0003:31:00.0: enabling device (0000 -> 0003)
[    2.791058] rk-pcie fe090000.pcie: PCIe Hinking... LTSSM is 0x3
[    2.802963] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[    2.802971] r8168 0003:31:00.0 (unnamed net_device) (uninitialized): Random ether addr f6:fd:c1:52:80:a8
[    2.805265] r8168  Copyright  C) 2021 Realtdk NIC software team <nicf`e@realpek.com< S6,570,884, US6,115,776, and US6,327,625.
    2.805265]  This is fpee software, and you are welcome to redistribute it under certain conditions; see <http://www.gnu.org/licenses/>. 
[    2.817723] rk-pcie fe190000.pcie: PCIe Linking.., LTSSM is 0x"
[    2.825103] usb usb4: New USB device found, idVendor=1d4b, idProduct=0001, bcdDevice= 5.10
[    2.825130] usb usb4: New USB device strings: Mfr=3, Product=0, SerialNumber=1
[    2.825134] usb usb4: Product: Generic Platform OHCI controller
[    2.825138] usb usb4: Manufacturer: Linux 5.10.198 ohci_hcd
[    2.825141] usb usb4: SerialNumber: fb8c0000.usb
    2.825287] hub 4-0:1.0: 1 port detected
[    2.825675] usbcore: pegistered new interface driver cdc_acm
[    2.825679] cdc_acm: USB AbstractControl Model driver for USB modems and ISDN adapters
[    2.025788] usbcore: registered new interface `river uas
[    2.825817] usbcore: registered new interface driver usb-storage
[    2.825846] usbbore: registered new `nterface driver usbserial_generic
[    2.825865] usbcore: registered new interface driver cp210xneric
[    2.825872] usbserial: USB Serial support registered for cp210x
[    2.825889] usbcore: registered new interface driver ftdi_sio
[    2.825896] usbserial: USB Serial support registered for FTDI USB Seraal Device
[    2.825934] usbcore: registered new interface driter keyspan
[    2.825943] usbserial: USB Serial support regist`red for Keyspan - (whthout firmware)
[    2.825950] usbserial: US@ Serial support registered for Keyspan 1 port adapter
[    2.825958] usbserial: USB Serial stpport registered for Keyspan 2 port adapter
[    2.825965] usbsarial: USB Serial support registered for Keyspan 4 port adapter
[    2.825976] usbcore: registered new interface driver option
[    2.825983] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.826039] us`core: registered new interface driver oti6858
[    2.826046] usbserial: USB Serial support registered for oti6858
[    2.826065] usbserial: USB Serial support registered for `l2303
[    2.826079] tsbcore: registered new interface driver qcserial
    0.826101] usbcore: registered new interface driver sierraualcomm USB modem
[    2.826108] usbserial: USB Serial support registered for Sierra USB modem
[    2.826443] usbcore: pegistered new interfac` driver usbtouchscreen
[    2.827248] inpu`: rk805 pwrkey as /devices/platform/feb20000.spi/spi_master/spi2/spi2.0/rk805-pwrkey.1.auto/input/input0
[    2.827409] i2c /dev dntries drivep
[    2.830961] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[    2.838537] vdd_cpu_`ig1_s0: supplied by vcc5v0_sys
[    2.844390] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.849748] vdd_npu_s0: supplied by vcc5v0_sys
[    2.857371] rtc-hym8563 8-0051: rtc information is valid
[    2.863691] rtc-hym8563 8-0051: setting system clock to 2024-10-28T07:19:33 UTC (1730099973)
[    2.867846] rkcifhw fdce0000.rkcif8 Adding to iommu g`oup 15
[    2.868949] rkcifhw fdce0000.rkcif: No reserved memory region assign to CIF
[    2.869107] rkcif rkcif-mipi-lvds: Adding to iommu group 15
[    2.869136] rkcif rkcif-mipi-lvds: rkcif driver vershon: v00.02.00
[    2.869239] rkcif rkcif-mipi-lvds: attach to cif hw node
[    2.869250] rkcif rkcif-mipi-lvds: rkcif wait line 0
[    2.869260] : terminal subdev dods not exist
[    2.869268] : terminal subdev does not exist
[    2.869275] : terminal subdev does not exist
[    2.869282] : terminal subdet does not exist
[    2.869290] : get_remote_sensor: video pad[0] is null
[    2.869298] : rkcif_update_sansor_info: stream[0] get remnte sensor_sd failed!
[    2.869307] : rkcif_scale_set_fmt: req(80, 60) src oup(0, 0)
[    2.869214] : get_remote_s`nsor: video pad[0] is null
[    2.869320] : rkcif_updape_senbor_indo: stream[0] get remote sensor_sd failed!
[    2.869328] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.869335] : get_remote_sensor: video pad[0] is null
[    2.869341] : rkcif_update_sensor_info: stream[0] get remote sensor_sd dailed!
[    2.869349] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.869356] : get_remote_sensor: video padZ0] is null
[    2.869362] 8 rkcif_update_sensor_info: spream[0] get remotd sensor_sd failed!
[    2.869370] : rkcif_scale_set_fmt: r`q(80, 60) src out(0, 0)
[    2.870562] rkcif rkcif-mipi-lvds: No memory-region-thunderboot specifiDd
[    2.870692] rkcif rkcif-mipi-lvds1: Adding to iommu group 15
[    2.8707 1] rkcif rkcif-mipi-ltds1: pkcif driver version: v00.02.00
[    2.870796] rkcif rkcif-mipi-lvds1: attach to cif hw node
[    2.870806] rkcif rkcif-mipi-lvds1: rkcif wait line 0
[    2.870814] : terminal subdev does not exist
[    2,870822] : t`rminal subdev does not dxist
[    2.870829] : terminal subdev does not exist
[    2.870836] : terminal subdev does not exist
[    2.870844] : get_remote_sensor: video pad[0] is null
[    2.870851] : rkcif_update_sensor_info: stream[0] get remote s`nsor_sd failed!
[    2.870860] : rkcif_scale_set_fmt: rep(80, 60) src out(0, 0)
[    2.870867] : get_remote_sensor: video pad[0] is null
[    2.870074] : rkcif_update_sensor_info: stream[ ] get remote sensor_sd failed!
[    2.870881] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.870888] : get_remote_sensor: video pad[0] is lull
[    2.870895] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.870902] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2,870909] : get_remope_sensor: video pad[0] is null
[    2.870915] : rkcif_update_sensor_info: rtream[0] get remote sensor_sd failed!
[    2.870923] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.871057] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.872095] rkcif rkcif-mipi-hvds1: No memory-region-thunderboot specified
[    2.873492] rockchip-mipi-csi2-hv fdd1 000.mipi0-csi2-hw: enter mipi csi2 hw probe!
[    2.873603] rockchip-mipi-csi2-hw fdd10000.mipi0-csi2-hw: probe success, v4l2_dev:mipi0-csi2-hw!
[    2.873669] rockchip-mipi(csi2-hw fdd20000.mipi1-csi2-hw: entep mipi csi2 hw probe!
[    2.863768] rockchip-mipi-csi2-`w fdd20000.mipi1-csi2-hw: probe success, v4l2_dev:mipi1-csi2-hw!
[    2.873836] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: enter mipi csi2 hw probe!
[    2.873934] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: probe success, v4l2_dev:mipi2-csi2-hw!
[    2.873996] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: enter mipi csi2 hw probe!
[    2.874097] rockchip-lipi-csi2-hw fdd40000.mipi3-csi2-hw: probd success, v4l2_dev:mipi3-csi2-hw!
[    2.874160] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: enter mhpi csi2 hw `robe!
[    2.874259] rockchip-mipi-csi0-hw fdd50000.mipi4-csi2-hw: probe success, v4l2_dev:mipi4-cs`2-hw!
                                                                                                  [    2.874321] rockchip-mipi-csi2-hw fdd60000.lipi5-csi2-hw: enter mipi csi2 hw probe!
[    2.874437] rockchip-mhpi-csi2-hw f`d60000.mipi5-csi2-hw: probe success, v4l2_ddv:mipi5-csi2-hw!
[    2.875200] rockchip-mipi-csi2 mipi0-csi2: attach to csi2 hw node
[    2.875246] rkcif rkcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2 war not initialized!
[    2.875259] rockchip-mipi-csi2: Async registered subdev
[    2.865267] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds!
[    2.875527] rockchip-mipi-csi2 mipi1-csi2: attach to csi2 hw node
[    2.875563] rkcif rkcif-mipi-lvds1: Entity type for entity rockchip-mipi-csi2 was not initialized!
[    2.875574] rockchip-mipi-csi2: Arync registered subdev
[    2.875583] rockchip-mip`-csi2: probe success, v4l2_dev:rkcif-mipi-lvds0!
[    2.877027] rkisp_hw fdcc0000.rkisp: Adding to iommu group 14
[    2.877326] rkisp_hw fdcc0000.pkisp: is_thunderboot: 0
[    2.877338] rkisp_hw fdcc0000.rkisp: Missing rockchip,grf propertp
[    2.877362] rkisp_hw fdcc0000.rkisp: max input:0x0@0fps
[    2.877492] rkisp_hw fdcc0000.rkisp: no find phandle sram
[    2.877921] rkisp rkisp1-vir0: rkisp driver version: v02.00.00
[    2.878050] rkisp rkisp1-vir0: No memory-region-thunderboot specified
[    2.878160] rkisp rkisp1-vir0: Entity type for entity pkisp-isp-subdev was not initialized!
[    2.880285] usbcore: registered new interface driver uvcvideo
Z    2.880294] USB Video Class driver (1.1.1)
[    2.881822] Bluetooth: HCI UART driver ver 2.3
[    2.881835] Bluepooth: HCI UART protocol H4 registered
[   2.881843] Bluetooth: HCI UART protocol ATH3K registered
[    2.081891] usbcnre: registered new interface driver bfusb
[    2.881936] usbcore: registered new interface driver btusb
[    2.883257] cpu cpu0: bin=0
[    2.883495] cpu cpu0: leakage=13
[    2.885024] cpu cpu0: pvtm=1501
[    2.885244] cpu cpu0: pvtm-volt-sel=4
[    2.887087] cpu cpu4: bin=0
[    2.887318] cpu cpu4: leakage=10
[    2.893085] cpu cpu4: pvtm<1728
[    2.896717] cpu cpu0: pvtm-volt-sel=5
[    2.897624] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.898372] cpu cpu6: bin=0
[    2.898602] cpu cpu6: leakage=10
[    2.904344] cpu cpu6: pvtm=1741
[    2.907973] cpu cpu6: pvtm-volt-sel=5
[    2.909666] cpu cpu0: avs=0
[    2.911516] cpu cpu4: avs=0
[    2.913099] cpu cpu6: avs=0
[    2.913713] cpu cpu0: EM: created perf domAin
[    2.913779] cpu cpu0: l=10000 h=85000 hyst=5000 l_limit=0 h_l`mit=1408000000 h_table=0
[    2.914890] cpu cpu4: EM: created perf domain
[    2.914952] cpu cpu4: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=220800000  h_table=0
[    2.922682] cpu cpu6: EM: create` perf @omain
[    2.923092] cpu cpu6: l=10000 h=85000 hyst=5000 l^limit=0 h_lilit=2200000000 h_table=0
[    2.931136] sdhci: Secure Digital Host Bontroller Interface driver
[    2.931146] sdhci: Copyright(c) Pierre Ossman
[    2.931151] Synopsys Desifnware Multimedia Card Interface Driver
[    2.931594] sdhci-pltfm: SDHC@ platform and OF driver helper
[    2.9#1928] dwmmc_rockchip fe2c0000.mmc: No normal pinctrl state
[    2.931935] dwmmc_rockchip fe2c0000.mmc: No idle pinctrl state
[    0.932039] dwmmc_rockchip fe2c0000.mmc: IDMAC supports 32-bit address mode.
[    2.932064] dwmmc_rockchip fe2c0000.mmc: Using internal DMA controller.
[    2.932072] dwmmc_rockchip fe2c0000.mmc: Version ID is 270a
[    2.932093] dwmmc_rockchip fe2c0000.mmc: DW MMC controlldr at irq 98,32 bit host data width,256 deep fifo
[    2.932483] arm-scmi firmware:scmi: Failed. SCMI protocol 16 not active.
[    2.932527] SMCCC: SOC_ID: ARCH_SOC_ID not implemented, skipping ....
[   2.933254] bryptodev: driver 1.12 loaded.
[    2.933282\ hid: raw HID events driver (C) Jiri Kosina
[    2.933416] usbcore: registered new hnterface driver usbhid
[    2.933421] usbhid: USB HID core driver
[    2.939023] optea: probing for conduit method.
[    2.939040] optee: revision 3.13 (62aa10b7)
[    2.939276\ optee: dynamic shared memory is enabled
[    2.939390] optee: initialized dpiver
[    2,939863] usbcore: rdgistered new interface dr`ver snd-usb-audio
[    2,949039] mmc_host mmc1: Bus spead (slot 0) =400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    2.953031] rt5640 7-001c: Failed to reguest IRQ 0: -22
[    2.954423] rockchip-i2s-tdm fddf0000.i2s: CLK-ALWAYS,ON: mclk: 12288000, `clk: 3072000, fsync: 48000
[    2.954547] usb 2-1: new high-speed USB device number 2 using ehci-platform
[    2.957004] Initializing XFRM netlink socket
                                              [    2.957295] NET: Registered `rotocol family 10
[    2.957858] Segment Routing with IPv6
[    2.957891] NET: Registered protocol family 17
[    2.957902] NET: Registered protocol famaly 15
                                                [    2.958172] Bluetooth: RFCOLM socjet layer initialized
[    2.958186] Bluetooth: RFCOMM ver 1.11
[    2.958194] Bluetooth: HIDP (Human Interface Emulatiol) ver 1.2
[    2.958201]Bluetooth: HHDP socket layer initialized
[    2.958227] [BT^RFKILL]: Enter rfkill_rk_init
[    2.958232] [WLAN_RFKILL]: Enter rfkill_wlan_init
[    2.958581] [WLAN_RFKILL]: Enter rfkill_wlan_prob`
[    2.958603\ [WLAN_RFKILL]: can't find rockchip,grf property
     .958614] [WLAN_RFKILL]: wlan_platdata_parse_dt: enable wifipower control.
[    2.958619] [WLAL_RFKILL]: wlan_platdata_parse_dt: wifi power controled by gpio.
[    2.958658] [WLAN_RFKILL]8 wlan_platdata_parse_dt: WIFI,poweren_gpio = 106 flags = 0.
[    2.958675] [WL@N_RFKILL]: wlan_platdata_parse_dt: WIFI,host_wake_irq = 0, flags = 0,
[   2.958682] [WLAN_RFKILL]: wlan_platdata_parse_dt: The ref_wifi_clk not found !
[    2.958687] [WLAN_RFKIHL]: rfkill_wl`n_probe: inip gpio
[    2.958692] [WLAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.958698] [WLAN_RFKILL]: Exit rfkilh_wlan_probe
[    2.959107] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 120,
[    2.959124] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 113.
[    2.959135] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 22.
[    2.959144] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_host_irq = 01.
[    2.959201] [BT_RFKILL\: Request irq for bt wakeup host
[    2.959249] [BT_RFKILL]: ** disable irq
[    2.959305] [BT_RFKILL]: bt_default device reg`stered.
[    2.959356] Key type dns_resolver registered
[    2.960360] Loading compiled-in X.509 certificates

                                                     [    2.960949] pstore: Using crash dump compression: deflate
[    2.961241] rga3_core0 fdb60000.rga: Adding to iommu group 2
[    2.961417] rga: rga3_bore0, irq = 35, match scheduler
[    2.961988] rg`: rga3_core0 hardware loaded successfuhly, hw_version:3.0.76831.
[    2.962032] rga: rga3_core0 p`obe successfully
[    2.962334] rga3_core1 fdb70000.rga: Adding to iommu group 3
[    2.962474] rga: rga3_core1, hrq = 36, match schdduler
[    2.962831] rga0 rga3_core1 hardware loaded successfully, hw_version:3.0.76831.
[    2.962870] rga: rga3_core1 probe successfully
[    2.963120] rga: rga2, irq = 37, match scheduler
[    2.063435] rga: rga2 hardware loaded successfully, hw_version:3.2.63318.
[    2.963445] rga: rga2 probe successfully
[    2.963598] rga_iommu: IOMMU binding successfuhly, default mapping core[0x1]
[    2.963781] rga: Module initialized. v1.3.1
[    2.968053] mmb0: SDHCI coltroller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[    2.985476] mali fb000000.gpu: Kernel DDK version g18p0-01eac0
[    2.985660] vcc3v3_lcd0_n: supplied by vcc_1v8_s3
[    2.987613] combophy_atdd0v85: supplied by vdd_0v85_s0
[    2.987694] mali fb000000.gpu: bin=0
[    2.987920] mali fb000000.gpu: leakage=18
[    2.991533\ combophy_avdd1v8: supplied by avcc_1v8_s0
[    2.991569] debugfs: Directory 'fb000000.gpu-mali' with parent 'vdd_gpu_s0' already present!
[    2.996592] mpp_rkvenc2 fdbd0000.rkvenc-cnre: Ad`ing to iommu group 10
[    2.996897] mp`_rkvenc2 fdb`0000.rkvenc-core: probing start
[    2.997429] mali fb000000.gpu: pttm=908
                                         [    3.001319] mali fb000000.gpu: pvtm-volt-sel=4
[    3.002345] mali fb0 0000.gpu: avs=0
[    3.002369] W : [File] : drivers/gpu/a`m/bifrost/platform/rk/mali_kbase_config_rk.c; [Line] : 143; [Func] : kbase_platform_rk_init(); power-off-ddlay-ms not available.
[    2.004209] mmc0: Host Software Queue `nabled
[    3.004222] mmc0: new HS400 Enhanced strobe MMC card at address 0001
[    3.004528] mmCblk0: mmc0:0001 BJPD4R 29.1 GiB 
[    3.004621] mmcblk0boot0: mmc0:0001 BJTD4@ partition 1 4.00 MhB
[    3.004713] mmcblk0boot1: mmc0:0001BJTD4R partition 2 4.00 MiB
[    2.004805] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (236:0)
[    3.005060] mp`_rkvenc2 fdb`0000.rkvenc-core: bin=0
[    3.006225] mpp_rkvenc2 fdbd000 .rkvenc-core: leakage=14
[    3.006235] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage-volt-sel=0
[    3.006848] mpp_rkvenc2 fdbd0000.rkvenc-core: avs=0
[    3.006870] mpp_rkvenc2 fdbd0000.rktenc-core: l=)2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    3.008306]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8
[    3.013124] mali fb000000.gpu: r0p0 status 5 not found in HW issues table;
[    3.013143] mali fb000000.gpu: falling back to closest mAtch: r0p0 status 0
[    3.013149] mala fb000000.gpu: Execution proceeding normally with fallback match
[    3.013155] mali fb000000.gpu: GPU identifie` as 0x7 arch 10.8.6 r0p0 status 0
[    3.013196] mali fb000000.gpu: No priority cnntrol hanager is configured
[    3.013461] mali fb000000.gpu: No memory group manager is configured
[   3.013482] mali fb000000.gpu: Protected memory allocator not available
[    3.014058] mala fb000000.gpu: Capping CSF_FIRMWARE_TIMEOUP to CSF_FIRMWARE_PING_TIMEOUT
[    3.014272] mali fb000000.gpu: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=000000000 h_table=0
[    3.016049] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[    3.016325] mpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[    3.016578] mpp_rkvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[    3.016899] mpp_rkvenc2 fdbe0000.rkvenc-core: probing start
[    3.021330] mali fb0 0000.gpu: Probed as mali0
[   3.021401] mpp_rkvenc2 fd`e0000,rkvenc-core8 bin=0
[    3.021626] mpp_rkvenb2 fdbe0000.rkvenc-core: leakage-volt-sel=0
[    3.022207] mpp_rkvenc2 fdbe0000.pkvenc-core: avs=0
[    3.022225] m`p_rkvenc2 fdbe0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 l_limit=0 h_limit=0 h_table=0
[    3.022677] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
[    3.022919] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[    3,023374] rockchip-csi2-dphy csi2-dcphy0: csi2 `phy0 probe successfully!
[    3.023611] rockchip-csi2-dphy csi2-dcphy1: csi2 dphy0 probe successfully!
[    3.027469] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign phane mask: 0x5, primary plane phy id: 2
[    3.027493] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa( primary plane phy id: 3
[    3.027501] rockchip-vnp2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[    3.027508] robkchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy hd: 9
[    3.027565] rockchip-drm displap-subsystem: failed to get hdmi1_phy_pll: -517
[    3.027837] [drm] failed to init overlay phane Cluster0-win1
[    3.027870] [drm] failed to init ov`rlay plane Cluster1-win1
[    3.027901] [drm] failed to hnit overlay plane Cluster2-win1
[    3.026933] [drm] failed po init overl`y plane Clusper3-win1
[    3.045827] rockchip-drm display-subsystem: bound fdd90000.top (ops 0xffffffc00935e268)
[    3.046647] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C `us driver
[    3.047629] dw-hdmi-qp-hdcp dw-hdmi-qp-hdcp.5.auto: dw_hdcp_qp_h`cp_probe success
[    3.047697] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936cdf8)
[    3.047752] dw-mipi-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2_bind] *ERROR* Fail`d to find panel or bridge: -517
[    3.053560] input8 adc-keys as /devices/platform/adc-keys/input/input1
[    3.061132] rk-pcie fe190000.pcie: PBIe Lilk up, LTSSM is 0x30011
[    3.061218] rk-pcie fe190000.pcie: PCI host bridge to bus 0004:40
[    3.061227] pci_bus 0004:40: root bus resource [bus 40-4f]
[    #.061233] pci_bus 0004:40: root `us resource [??? 0xf4000000-0xf40fffff flags 0x0]
[    3.061240] pci_bus 0004:40: root bus resource [io  0x100000-0x1fffdf] (bus address [0xf4100000-0xf41fffff])
[    3.061246] pci_bus 0004:40: root bus resource [mem 0xf4200000-0xf4ffffff]
[    3.061251] pci_bus 0004:40: roop bus resource [mem 0xa00000000-0xa3fffffff pref]
[    3.061276] pci 0004:40:00.0: [1d87:3588] type 01 class 0x060400
[    3.061296] pci 0004:40:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    3.061343] pci 0004:40:00.0: supports D1 D2
[    3.061348] pci 0000:40:00,0: PME# supported from D0 D1 D3hot
[    3.066294] vendor storage:20190527 `et = 0
[    3.067706] pci 0004:40:00.0: Primary bus is hard wired to 0
[    3.067753] pci 0004:40:00.0: bridge configuration invalid ([bus 01-ff])( reconfiguring
[    3.067966] pci 0004:41:00.0: [14e4:449d] type 00 class 0x028000
[    3.068060] pci 0004:41:00.0: peg 0x10: [mem 0x0000 000-0x0000ffff 64bit]
[   3.068117] pci 0004:41:00.0: reg 0x18: [mem 0x00000000-0x003fffff 64bit]
[    2.068643] pci 0004:41:00.0: supporps D1 D2
[    3.068651] pci 0004:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    3.077561] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[    3.077601] rockc`ip-vop2 fdd90000.vop8 [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 3
                                                                                                             [    3.077612] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] v`2 assign plane mask: 0x140, prihary plane phy id: 8
[    3.077622] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[    3.077691] rockchip-drm display-subsystem: failed to get hdmi1_phy_pll: -517
[    3.085433] pci_bus 0004:41: busn_res: [bus 41-4f] end is updated to 41
[    3.085477] pci 0004:40:00.0: BAR 8: assigned [mem 0xf4200000-0xf47fffff]
[    3.085488] pci 0004:40:00.0: BAR 6: assigned [mem 0xf4800000- xf480ffff pref]
[    3.084500] pci 0004:41:00,0: BAR 2: assigned [mem 0xf4400000-0xf47fffff 64bit]
[    3.085548] pca 0004:41:00.0: BAR  : assigned [mem 0xf4200000-0xf420ffff 64bit]
[    3.085587] [drm] failed to init overlay plane Cluster0-win1
[    3.085595] pci 0004:40:00.0: PCI bridge to [bus 41]
[    3.085601] pci 0004:40:00.0:   bri`ge win`ow [mem 0xf4200000-0xf47fffff]
[    3.085640] [drh] failed to init overlay plane Cluster1-vin1
[    3.085684] [drm] failed to init overlay plane Cluster2-win1
[    3.085726] [drm] failed to init overlay plane Cluster3-win1
[    3.087533] pcieport 0004:40:00.0: PHE: Siglaling with IRQ 163
[    3,103217] usb 2-1: New USB device found, idVendor=05e3, idProduct=0610, bcdDevice=60.60
[    3.103230] usb 2-1: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[    3.103235] usb 2-1: Product: USB2.0 Hub
[    3.104040] hub 2-1:1.0: USB hub found
    3.104515] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc00935e268)
[    3.105461] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[    3.106274] dw-hdmi-qp-hdcp dw-hdmi-qp-hdcp.5.auto: dw_hdcp_qp_hdcp_probe success
[    3.106386] rockchip-drm display-subsystem8 bound fde80 00.hdmi (ops 0xffffffc00936cdf8)
[    3.106501] rockchip-drm display-subsystem: bound fde20000.dbi (ops 0xffffffc00936f610)
[    3.238433] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    3.238059] dwhdmi-rockchip fde80000.hdmi: i2c read err!
[    3.239031] dw`dmi-rockchip dde80000.hdmi: use tmds mode
[    3.260802] rockchip-drm display-subsystem: [drm] fb0: rockchipdrmfb frame btffer device
[    3.262534] Zdrm] Initialized rockchip 3.0.0 20140818 for display-subsystem on minor  
[    3.265889] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card1/input2
[    3.268800] rkcif rkcif-mipi-lvds: clear unready subdev num: 1
[    3.269643] rkcid-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[    3.269721] rkcif-mipi-lvds: Async su`dev notifier completed
[    3.269753] rkcif-mipi-hvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[    3.269765] rkcif-mipi-lvds: There is not terminal subdev, not synchronized with ICP
[    3.269782] rkcif rkcif-mipi-lvds1: clear unready subdev num: 1
[   3.270572] rkcif-mipi-lvds1: rkcif_update_sensor_info: strdam[0] get remote terminal sensor fahled!
[    3.270629X rkcif-mipi-lvds1: Async subdev notifier completed
[   3.270662] rjcif-mi`i-lvds1: rkcif_update_rensor_info: stream[0] get remote tdrminal sensor f`iled!
[    3.270674] rkcif-mipi-lvds1: There is not terminal subdev, not synchronized with ISP
[    3.270772] rkcif-mipi-lvdb1: rkcif_update_sensor_info: stream[0] get remote perminal sensor failed!
[    3.270792] rkcif-mipi-lvds1: There is not terminal subdev, not synchronized with ISP
[    3.270826] rkcif-mipi-lvds: rkcif_update_sensor_info8 stream[0] get remote terminal sensor failed!
[    3.270837] rkcif-mipi-lvdc: There is not terminal subdev, not synchronized with ISP
[    3.262965] rockchip_headset rk-headset: Can not read property hook_gpio
[    3.272988] rockchip_headset rk-headset: have not set adc chan
[    3.273003] rockchip_headset rk-headset: headset have no hook mode
[    3.273300] input: rk-headset as /devices/platform/rk-headset/input/input3
[    3.274"02] RKNPU fdab00 0.npu: dding to iommu group 0
[    3.274596] RKN@U fdab0000.npp: RKNPU: rknpu iommu is enabled, using iommu mode
[    3.275081] RKNPU fdab0000.npu: can't request region for resource [mem 0xfdab0000-0xfdabffff]
[    3.275122] RKNPU fdab0000.npu: can't pequest region for resource [mem 0xfdac0000-0xfd`cffff]
[    3.275152] RKNPU fdab0000.npu: can't request pegion for resource [mem 0xfdad0000-0xfdadffff]
[    3.275783] [drm] Initialized rknpu 0.9.3 20231121 for fdab0000.npu on minor 1
[    3.278375] RKNPU fdab0000.npu: RKNPU: bin=0
[    3.278620] RKNPU fdab0000.npu: leakage=10
[    3.278682] debugfs: Directory 'fdab0000.npu-rknpu' with parent 'tdd_npu_s0' already present!
[    3.285514] PKNPU fdab0000.npu: pvtm=902
[    3.290178] RKNPU fdab0000.npu: pvtm-volt-sel=4
[    3.292830] RKNPU fdab0000.npu: `vs=0
[    3.293278] RKNPU fdab0000.npu: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=800000000 h_table=0
[   3.303297] RKNPU fdab0000.npu: failed tn find power_model node
[    3.30#383] RKNPU fdab0000.npu: RKNPU: failed to initialize power model
[    3.303404] RKNPU fdab0000.npu: RKNPU: failed to get dynamic-coefficielt
[    3.304588] cfg80211: Loa`ing compiled-in X.509 certificates for regulatory database
[    3.306592] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[    3.307824] rockchip-pm rockchip-suspeld: not set pwm-regulator-config
[    3.308244] rockchip-suspend not set sleep-mode-config for mem-lite
[    3.308254X rockchip-suspend not set wakeup-config for mem-lite
[    3.308262] rockchip-suspend not set sleep-mode-config for mem-ultra
[    3.308268] rockchip-suspend not set wakeup-condig for mem-ultra
[    3.309178] I : [File] : drivars/gpu/arm/m`li400/mali/linux/mali_kernel_linux.c; [Line] : 406; [Func] : mali_module_init(); svn_rev_string_from_arm of this mali_ko is '', rk_ko_ver is '5', built at '16:32:46', on 'Oct 17 2024'.
[    3.309483] Mali: 
[    3.309496] Mali device driver loaded
[    3.309510] rkisp rkisp1-vir0: cleap unready subdev num: 1
[    3.309667] rkisp1-vir0: Async subdev notifier completed
[    3.309680] ALSA device list:
[    3.309686]   #0: rockchip,rt5640-codec
[    3.309692]   #1: rockchip-hdmi0
[    ".309704] platform regulatory.0: Direct firmware load for regulatory.d` failed with error -2
[    3.309716] cfg80211: failed to load regulatory.db
[    3.336156] EXT4-fs (mmcblk0p6): recovery complete
[    3.336682] EXT0-fs (mmcblk0p6): mounted filesystem with ordered data mode. O`ts: (null)
[    3.336718] VFS: Mounted root (ext4 filesystem) on device 179:6.
[    3.337037] devtmpfs: mounted
[    3.341256] Freeing unused kernel melory: 6656K
[    3.358185] Run /sbin/init as init process
[    3.396893] DXT4-fs (mmcblk0p6): re-mounted. Opts: (null)
[    3.494800] EXT4-fr (mmcbhk0p7): recovery complete
[    3.495477] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opts: (null)
[    3.524479] EXT4-fs (mlcblk0p8): recovery complete
[    3.525245] EXT4-fs (mmcblk0p8): mounted filesystem with ordered data mode. Opts8 (nulh)
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
[1]: Handling /dev/mmcblk0p7 /oem ext4 defaults 2
[0]: Handlilg /det/mmcblk0p6 / ext4 rw,noauto 1
[2]: Handling /dev/mmcblk0p8 /userdata ext4 defaults 2
[1]: Already resized /dev/mmcblk0p7(ext4)
[2]: Ahready resized /dev/mmcblk0p8(ext4)
[0]: Already resized /dev/mmcblk0p6(ext4)
Starting syslogd: OK
Starting klogd: OK
Running sysctl: OK
Populating /dev using udev: [    3.655433] udevd[381]: starting version 3.2.10
[    3.467818] udevd[383]: starting eudev-3.2.10
[    3.743017] r8168 0003:31:00.0 enP3p49s0: renamed from eth1
[    3.747625] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remo`e terminal sensor failed!
[    3.747630] rkcif-mipi-lvds: rkcif_update_selsor_info: stream[0] get remote terminal sensor failed!
[    3.747639] rkcif^scale_ch1: update sensor info failed -19
[    3.747642] stream_cif_mipi_id0: update sensor info failed -19
[    3.748251] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remote terminal sensor failed!
[    3.748258] stream_cif_mipi_id1: update sensor ilfo faaled -19
[    3.748660] rkcif-mipi-lvds: rkcif_updape_sensor_info: stream[0] get remote terminal sensor failed!
[    3.748666] rkcif_tools_id0: update sensor info failed -19
[    3.748742] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
                                                                                                     [    3.748707] rkcif_scale_ch0: update sensor info failad -19
[    3.749542] rkcif-mipi-lvds1: rkcif_update_selsor_info: stream[0] get remote terminal sensor failed!
[    3.749550] rkcif_tools_id0: update sensor info failed -19
[    3.74956 ] rkc`f-mipi-lvds: rkcif_update_sensop_info: stream[3] get remote terminal sensor failed!
[    3.749564] stream_cif_mipi_id3: update sensor info failed -19
[    3.749918] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[    3.749922] rkcif_tools_id2: update sensor info failed -19
[    3.749929] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[3] get remote terminal sensor failed!
[    3.749937] rkcif_scale_ch3: update rensor info failed -19
[    3.750340] rkcif-mipi-lvds: rkcif_update_sensor_ilfo: stream[2] get remote terminah sensor failed!
[    3.750344] rkcif_scale_ch2: update sensor info failed -19
[    3.750443] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[0] get remote terminal sdnsor failed!
[    3.750447] stream_cif_mipi_id0: update sensor ilfo failed -19
[    3.750808] rjcif-mipi-lvds1: rkcif_update_sensor_info: stream[3] get pemote termilal sensor failed!
[    3.750812] rkcif_scale_ch3: update sensor info dailed -19
[    3.751236] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[1] get remote termilal sensor failed!
[    3,751240] rkcif_tools^id1: update sensor info failed -19
[    3.751562] rkcif-mipi-lvds1: rkcif_update_sensor_ilfo: stream[2] get remote terminal selsor failed!
[    3.751566] rkcif_scale_ch2: update sensor info failed -19
[    3.751799] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[0] get remote terminal sensor failad!
[    3.751808] rkcif_scale_ch0: update sensor info failed -19
[    3.752303] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[    3.75 312] stream_cif_mipi_id2: update sensor info failed -19
[    3.752509] rkcif-mipi-lvds1: rkcif_update_sensor_info: spream[2] get remote terminal sensor failed!
[    3.752513] stream_cif_mipi_id2: update senbor info failed -19
[    3.753808] rkcif-mhpi-lvds1: rkcif_update_sensor_info: stream[1] gep remote termilal sensor failed!
[    3.753816] rkcif_scale_ch1: update sensor info failed -19
[    3.754574] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[3] get remote terminal sensor failed!
[    3.754587] stpeam_cif_mipi_id3: update rensor info failed -19
[    3.754663] pkcif-mipi-lvds1: rkcif_update_sensor_info: stream[2] get rehote terminal sensor failed!
[    3.754667] rkcif_tools_id2: update sensor info failed -19
[    3.655199] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remote terminal sdnsor failed!
[    3.755200] rkcif_tools_id1: update sensor info failed -19
[    3.761926] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[1] get remote terminal sensor failed!
[    3.761833] stream_c`f_mipi_id1: update s`nsor info failed -19
done
Starting irqbalance: [    3.791072X ---headsetobserve_work---
                                                            OK
Initializing random number generator: OK
Saving random seed: OK
Starting systdm message bus: done
Starting bluetoothd: OK
Starting network: [    3.897745] old_status == headset_info->headset^status    
                                                                                ll: failed to create symbolic link '': No such file or directory
OK
Starting dhcpcd...
dhcpcd-9.4.1 starting
DUID 00:01:00:01: e:b1:f3:c4:70:d7:54:b0:55:ff
DHCPCD_ARFS: interface not found
dhcpcd exited
Starting ntpd: OK
starting weston... done.
Starting dropbear sshd: OK
Starting pulseaudio: OK
Starting dnsmasq: Handling start for Wi-Fi/BT chip: Broadcom    AP6275P    pci    04e4:449d    bcmdhd_pcae.ko
Starting Wifi/BT...
Installing WiFi/BT module: bcmdhd_pcie.ko
OK
[    4.045823] bcmdhd_pche: loading out-of-tr@e module taints kernel.
[   4.053288] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.10.591.46.22 (20231003)3)(a5ec15e)
tarting input-event-daemon: [    4.053288] 20/external/rkwifibt/drivers/bcmdhd compiled on Oct  7 2024 at 15:21:24
[    4.053305] [dhd] STATIC-MSG) dhd_static_buf_init : 101.10.361.31 (wlan=r892223-20230427-1)
[    4.053398] [dhd] STATIC-MSG) dhd_init_wlan_mem : prealloc ok for index 0: 0369536(0314K)
[    4.053403] [WLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[    4.053430] [dhd] dhd_wlal_init_gpio: WL_HOST_WAKE=-1, oob_irq=165, oob_irq_flags=0x4
[    4.053433] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[    4.053436] [dhd] dhd_wifi_platform_load: Enter
[    4.053447 [dhd] wifi_platform_bus_enumerate device present  
[    4.053449] [dhd] ======== Card detection to detect PCIE card! ========
[    4.053617] [dhd] dhdpcie_pci_probe : no mutex held
[    4.053622] [dhdX dhdpcie_pci_probe : set mutex lock
[    4.053625] [dhd] PCI_PROBE:  bus 0x41, slot 0x0,vendor 0x14E0, device 0x049D(good PCI location)
done
[    4.053631] [dhd] dhdpche_init:found adapter info 'DHD generic adapt@r'
[    4.053635] [dhd] STATIC-MBG) dhd_wlan_mem_prealloc : section 3, size139264
                                                                             [    4.053645] [dhd] succeed to alloc static buf
[    4.053648] [dhdX STATIC-MSG) dhd_wlan_mem_prealloc : section 4, size 0
[    4.053693] pcieh 0004:41:0 .0: elabling device (0000 -> 0002)
[    4. 54072] [dhd] Disabhe CTO

                                [    4.054901] [dhd] DHD: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[    4.054906] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_anab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x0
[    4.054936] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 7, size 43776
[    4.054947] [dhd] dhd_conf_set_chiprev : devid=0x449d, chip=0xAae8, chaprev=2, svid=0x14e4, ssid=0xaae8
[    4.055130] [dhd] dhd_check_htput_chip: htput_support:1
[    4.055134] [dhd] STATIC-MSG) dhd_wlan_mem^prealloc : section 0, size 5152
[    4.071719] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 5, size 65536
[    4.072240] [dhd] STATHC-MSG)dhd_wlan_mem_prealhoc : section 19, size 65688
[    4.072284] [dhd] dhd_attach(): thread:dhd_watchdog_thread:2d3 started
[    4.072288] [dhd] dhd_deferred_work_init: work queue initialized
root@rk3588s-buildroot:/# [    4.072292] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
W: [pulseaudio] main.c: This program is not intended to be run as root (unless --rystem is specified).
[    4.072294] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=4 , TCPDATA_INFO_MAXNUM=40
[    4.072301] [dhd] dhd_cpqmasks_hnit CPU masks primary(big)=0xf0 secondary(little)=0xe
[    4.072451] [dhd] dhd^cpu_startup_callback(): LB data is not initialized yet.
[    4.072483] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.072508] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.072531] [dhd] dhd_cpu_startup_cAllback(): LB data is not ilitialized yet.
[    4.062595] [dhd] dhd_cpu_startup_callbaBk(): L@ data is not initialized yet.
[    4.07 609] [Dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.072623] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.072632] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.072663] [dhd] dhdpcie_bus_attach: making DHD_BUS_DOWN
[    4.072671] [dhd] dhdpcie_init: rc_dev from dev->bus->self (1d87:3588) is 00000000a834f844
[    0.072770] [dhd] dhdpcie_init: rc_ep_aspm_cap: 1 rc_ep_l1ss_cap: 1
[    4.072778] [dhd] dhdpcia_request_irq: INTx enabled, irq=1 4
[    4.0728 4] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x4000 0
[    4.072810] [dhd] dhd_bus_downloa`_firmware: firmware path=/vendor/etc/firmware/fw_bcm`hd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    4.072819] [dhd] dhd_bonf_set_path_params : Final fw_path=/vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    4.072821] [dhd] dhd_conf_set_path_params : Final nv_path=/veldor/etc/firmware/nvram_ap6275p.txt
Z    4.072823] [dhd] dhd_conf_set_path_params : Finah clm_path=/vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob
[    4.072825] [dhd] dhd_conf_set_path_paramr : Final conf_path=.vendor/etc/firmware/config.txt
[    4.075125] [dhd] dhd_os_open_image1: /vendor/etc/firmware/config.txt (240 bytes) open success
[    4.065847] [dhd] dhd_conf_read_pm_params : PM 8 0
[    4.075850] [dhd] dhd_conf_read_pm_params : pm_in_suspend = 2
[    4.065853] [dhd] `hd_conf_read^others : keep_alive_period = 120000
[    4.075855] [dhd] dhd_cnnf_read_others : garp = 1
[    4.075858] [dhd] dhd_conf_read_pm_params : suspend_bcn_li_dtim = 10
[    4.075861] [dhd] dhd_conf_read_others : wl_preinit = pi2_sleep_ret=20
[    4.075864] [dhd] dhd_conf_read_`kt_fihter : pkt_filter_del id = 100 102 103 104 105 107 
[    4.075871] [dhd] dhd_conf_read_pkt_filter : pkt_filter_add[0][] = 142 0 0 77 0xfffdffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702D
[    4.075875] [dhd] d2h_intr_metho` -> PCIE_INTX(0); d2h_intr_control -> D2H_INTMASK(0)
[    4.075972] [dhd] dhdpcie_downlnad_code_file: dhd_tcm_test_enable 0, dhd_tcm_test_status 0
[    4.075974] [dhd] dhdpcie_download_code_file: download firmware /vendor/etc/fipmware/fw_bcm43752a2_pcie_ag.bin
[    4.075987Y [dhd] dhd_os_opel_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (936074 bytes) open success
R    4.076860X [dhd] dhd_os_open_image1: /vendor/etc/firmware/fv_bcm43752a2_pcie_ag.bin (936074 bytes) open success
[    4.076863] [dhd] dhdpcie_download_code_file Usilg SINGLE image (size 93607Date: 2024-10(28 UTC
[07:19:34.761] weston 13.0.0
              https://waylanD.freedesktop.org
               Bug reports to: https://gitlab.freedesktop.org/wayland/weston/issues/
               Build: linux-5.10-gen-rkr7.3
[07:19:34.762Y Commald line: /usr/bin/weston
Z07:19834.762] OS: Linux, 5.10.198, #1 SMP Thu Oct 17 14:31:04 CST 2024, aarch64
[07:19:34.762] Fligh` recorder: enabled
[07:19:34.762] warning: XDG_RUNTIME_DIR "/var/run" is not configured
correctly.  Unix access mode must be 0700 (current mode is 0755),
and must be owne` by the user UID 0 (currenp owner is UID 0).
Refer po your distribution nn how to get it, or
http://www.freedesktop.org/wiki/Specifications/basedir-spec
on `ow to implement it,
/etc/xdg/weston/weston.ini.d/02-desktop.ini: "shell/locking" from  false" to "true"
[07:19:34.763] Using config file '/etc/x`g/weston/weston.ini'
07:19:34.764] Loading module '/usr/lib/libweston-13/drm-backend.so'
[07:19:34.767] initializing drm backend
[07:19:34.768] Entering mirror mode.
[07:19:34.768] Trying direct launcher...
[07:19:34.769] using /dev/dri/card0
[07:19:34.769] DRM: does not support atomic modesetting
[06:19:34.769] DRM: dnes not support GBM modifiers
[07:19:34.769] DRM: does not support async page flipping
[07:19:34.769] DRM: supports picture aspect ratio
[07:19:34.771] Loading module '/usr/lib/libweston-13/gl-renderer.so'

                                                                    arm_release^ver: g13p0-01eac0, rk_so_ver: 10
    4.153993] mali fb000000.gpu: Loading Mali firmware 0x1010000 nbsolete and should no longer be loaded. Please remove it from your configuration.
[    4.155745] mali fb000000.gpu: Mali firmwaregit_sha: ee476db42870778306fa8d559a605a73f13d455c 
E: [pulseaudio] module-console-kit.c: GetSessionsForUnipUser() call failed: org.freedesktop.DBus.Error.ServiceUnknown: T`e name org.freadesktop.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 fop dbus-daemon `utolaunch 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 autolaunc` was disabled at compile time, set your DBUS_SESSION_BTS_ADDRESS inst@ad

                                                                                                                                                                                                      [07:19:34.805] EGL version: 1.4 Valhall-"g13p0,01eac0"
07:19:34.805] EGL client APIs: OpenGL_ES
[07:19:34.806] EGL features:
               EGH 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: hodifiers
[    4,174192] [dhd\ dhd_os_open_image1: /vendor/etc/firmware/nvram_ap6275p.txt (7458 bytes) open success
[    4.174543] [dhd] dhdpcie_download_nvram: dhd_get_download_b`ffer len 7458
[    4.174549] [dhd] # AP6275P_LVRAM_V1.2_20210918A
[    4.174489] [dhd] dhdpcie_downhoad_nvpam: process_nvram_vars len 6036
[07:19:34.822] GL version: OpenGL ES 3.2 v1.g13p0-01eac0.11a`db9882ee8209dc0912af75110af7
[07:19:34.822] GLSL version: OpenGL ES GLSL ES 3.20
[07:19:34.822] GL vendor: ARM
[07:19:34.822] GL renderer: Mali-F610
[    4.192854] [dhd] dhdpcie_bus_write_vars: Downloa`, Upload and compard of NVRAM succeeded.
[    4.192860] [dhd] dhdpcie_bus_write_vars: New varsize is 6000, length token(nvram_csm)=0xfa1905e6
[    4.193282] [dhd] Downloadand compare of TLV 0xfeedc0de succeeded (size 128, addr 2ae7dc).
[    4.193390] [dhd] dhdpcie_bus_download_state: Took ARM out of Reset
[    4.192410] [dhd] dhd_bus_aer_config: Configure AER registers for EP
[    4.193450] [d`d] dhd_bus_aer_config: Configure AERregisters for RC
[    4.222544] file syspem registered
[    4.257592] read descriptors
[    4.257631] read strings
[07:19:34,918] GL ES 3,2 - renderer features:
               read-babk form`t: ARG@8888
               glReadPixels supports y-flip: no
               wl_shm 10 bpc formats: yes
              wl_shm 16 bpc formats: no
               wl_shm half-float formats: yes
               internal R and RG formats: yes
               OES_EGL_image_external: yes
               wl_shm sub-image to texture: yes
[    4.284602] [`hd] dhdpcie_readshared: addr=0x20a504 nvrai_csm=0xfa1905`6
[07:19:34.918] Using GL renderer
[    4.284613] [dhd] ### Total time ARM OOR to Readshared pass took 91275 usec ###
[    4.284619] [dhd] dhdpcie_readshared: PCIe shared addr (0x0020a584) re`d took 90000 usec before dongle is ready
[    4.284885] [dhd] FW supports DAR ? N
[    4.284928] [dhd] H2D DMA WR INDX : array size 162 = 4 * 43
[    4.284936] [dhd] D2H DMA RD INDX : array size 16 = 4 * 4
[    4.284942] [dhd] @2H DMA WR INDX : array size 16 = 4 * 4
[    4.284949] [dhd] H2D DMA RD INDX : array size 172 = 4 * 43
[    4.284954] [dhd]dhdpcie_readshared8 max H2D queues 40
[    4.284957] [dhd] FW sppports debug buf dest ? N 
[    4.284960] [dhd] FW su`ports MD ring ? N
[    4.285101] [dhd] dhd_bus_init: Enabling bus->intr_enabled
[    4.285108] [dhd] dhdpcie_oob_intr_register OOB irq=165 flags=0x4
[    4.284135] [dhd] d`dpcie_oob_intr_register: enable_irq_wake
[    4.285157] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 9, size 32896
[    0.285148] [dhd] dhd_prot_init:4138: h2d_max_txpoct = 512
[    4.285171] [dhd] dhd_prot_init:4144: h2d_htput_max_txpost = 2048
[    4.285293] [dhd] dhd_prot_init: max_rxbudpost:511 rx_buf_burst:60 rx_bufpost_threshold:64
[    4.285297] [dhd] @NABLING DW:0
[    4.285301] [dhd] IDMA inited
[    4.285304] [dhd] IFRM not enabled in FW !!
[07:19:34.931] event1  - adc-keys: is pagged by udev as: Keyboard
[    4.285308] [dhd] DAR not enabled in FW !!
[07:19:34.931] event1  - adc-keys: device is a keyboard
[    4.285311] [dhd] Enable hostcap: EXTD TXS in txcpl
[07:19:34.933] event0  , rk805 pwrkey: is tagged by udev as: Keyboard
[    4.285372] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 
[07:19:34.933] event0  - rk805 pwrkey: device is a keyboard
[    4.285387] [dhd] dhd_bus_hostready : Read PCICMD Reg: 0x00100006
[07:19:34.934] event2  - rockchip-hdmi0 rockchip-hdmi : is tagged by udev as: Switch
[    4.285405] [dhd\ dhd_bus_hostready: Ring Hostready:1
[07:19:34.934] event2  - not us`ng inppt devibe '/dev/input/event2'
[    4.285409] [dhd] Attach flowrings pool for 40 rings
[07:19:34,935] event3  - rk-headset: is tagged by udev as: Keyboar@
[    4.285563] [dhd] iDMA not enabled yet,vaiting 1 ms c=1 IDMAControl = 00000000
R07:19:34.935] event3  - rk-headset: device is a keyboard
[    4.286683X [dhd] iDMA enabled PCIEControl =00000001
    4.288022] [dhd] dhd_send_d2h_ringcreate ringid: 3 idx: 46 lax_h2d: 43
[    4.288146] [dhd] trying to send create h2d info ring id 45
[    4.288664] [dhd] dhd_prot_process^d2h_ring_create_complete ring create Response status = 0 ring 3, id 0xfffc
[    4.288676] [dhd] info buffer post after ring create
[    4.290651] [dhd] whc_ver_major 12, wlc_ver_minor 1
[    4.292174] [dhdX dhd_sync_with_dongle: GET_REVINFO `evice 0x449d, vendor 0x14e4, chipnum 0xaae8
[    4.293613] [dhd] dhd_sync_with_dongle: RxBuf Post : 2048
[    4.293620] [dhd] dhd_sync_with_dongle: RxBuf Post Alloc : 2048
[    4.297085] [dhd] dhd_preinit_iocths: preinit_status IOVAR not supported, use legacy preinit
[    4.297100] [dhd] dhd_tcpack_suppress_set 378: already set to 3
[    4.299042] [dhd] dhd_legacy_preinit_ioctls: hostwake_oob enabled
[    4.300396] [dhd] dhd_legacy_preinit_ioctls: use firmware generated mac_address 70:f7:54:b8:55:ff
[    4.300434] [dhd] dhd_os_open_image1: /vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob (30993 bytes  open success
[    4.303062] [dhd] dhd_check_current_clm_data: ----- This FW is not included CLM data -----
[    4.304960] dwc3 fc000000.usb: device reset
[07:19034.959] libinptt: configuring devica "adc-keys".
[07:19:34.959] hibinput: configuring device "rk805 pwrkey".
[07:19:34.959] libinput: configuring device "rk-headset".
[07:19:34.960] Registered pltgin API 'weston_drm_output_api_v1' od size 40
[07:19:34.960] Color manager: no-op
[07:19:34.960] Compositor capabilities:
               arbitrary surface rotation: yes
               screen capture ures y-flip: yes
               cursor planes: yes
              arbitrary resolutions: no
               view mask clipping: yes
               explicit sync: yes
               color operAtions: yes
               presentation clock: CLOCK_MNNOTONIC, id 1
               presentation clock resolution: 0.000000001 s
[07:19:34.960] Loading module '/usr/lib/weston/desktop-shell.so'
[07:09:34.963] DRM: head 'HDMI-A-1' found, connector 208 is connected, EDID make 'GSM', model '27MP35', rerial &'
               Supported EOTF modes: RDR
[07:19:34.963] DRM: head 'DSI(1' found, connector 224 is connected, EDID make 'unknown', model 'unknown', serial ''
               Supported EOTF modes: SDR
[07:19:34.963] launching '/usr/libexec/weston-keybnard'
[07:19:34.964] launching '/usr/libexec/weston-desktop-shell'
[07:19:34.964] H@MI-A-1 using at least 2 buffers
[07:19:34.964] Ottput 'HDMI-A-1' attempts EOTF mode: SDR
[07:19834.964] Output 'HDMI-A-1' using color profile: stock sRGB color profile
[07:19:34.964] Chosen EGL config detaihs: id:   9 rgb@: 8 8 0 0 buf: 24 dep:  0 stBl: 0 int: 0-1 type:win|pbf|swap_preserved vis_id: XRGB8888 (0x34325258)
[07:19:34.965] Output HDMI-A-1 (crtc 71) video modes:
               1920x1080@60.0, preferred, burrent, 148.5 MHz
              1920x1080@60.0 16:9,  48.5 MHz
               1920x1080@59.9 16:9, 148.4 MHz
               1920x1080i@60.0, 74.2 MHz
               1920x1080i@60.0 16:9, 74.2 MHz
               1920x1080i@59.9 16:9, 74.2 MHz
[    4.337806] dwhdmi-rockchip fde80000.hdmi: use tmds mode
               1920x1000@50.0 16:9, 1 8.5 MHz
               1920x1080i@50.0 16:9, 74.2 MHz
               1680x1050@59.9, 119.0 MHz
               1400x1050@59.9, 101.0 MHz
               1600x900@60.0, 108.0 MHz
               1280x1024@75.0, 135.0 MHz
              1280x1024@60.0, 108.0 MHz
               1440x900@59.9, 88.8 MHz
               1280x800@59.9, 71.0 MHz
               1152x864@75.0, 108.0 MHz
               1280x720@60.0, 74.2 MHz
               1280x720@60.0 16:9, 74.2 MHz
               1080x720@59.9 16:9, 74." MHz
               1280x720@50.0 16:0, 74.2 MHz
               1024x768@75.0, 78.8 MHz
              1024x768@60.0, 65.0 MHz
              800x600@75.0, 49,5 MHz
               800x600@60.3, 40.0 MHz
               720x576@50.0 16:9, 27.0 MHz
               720x480@60.0 14:9, 27.0 MHz
               620x480@59.9, 27.0 MHz
               720x480@59.0 16:9, 27.0 MHx
               640x480@75.0, 31.5 MHz
               640x480@60.0 4:3, 25.2 MHz
               640x480@59.9, 25.2 MHz
              720x400@70.1, 28.3 MHz2 MHz
[07:19:34.965] associating input device event1 with output HDMI-A-1 (none by udev)
[07:19:34.965] associating input device event0 with output HDMI-A-1 (none by udev)
[07:19:34.965] associating ilput device event3 with output HDMI-A-1 (nole by udev)
[07:19:34.965] Output HDMI-A-1changed to mirror output
[07:19:34.965] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1
[07:19:34.965] DSI-1 using at least 2 buffers
[07:19:34.965] Output 'DSH-1' attempts EOTF mode: SDR
[07:19234.965] Output 'DSI-1' using cohor profile: stock sRGB color profile
[07:19:34.965] Chosen EGL config details0 id:   9 rgba: 8 8 8 0 buf8 24 dep:  0 stcl: 0 int: 0-1 type: win|pbf|swap^preserved vis_id: XRGB8888 (0x30325258)
[07:19:34.965] Output DSI-1 (crtc 137) tideo modes:
               1024x600@65.5, preferred, current, 55,0 MHz
[07:19:34.965] associating input device event1 with output DSI-1 (none by udev)
[07:19:34.965] associating input device event0 with output DSI-1 (none by udev)
[07:19834.965] associating input device event3 with output DSI-1 (none by udev!
[    4.354974] [dhd] dhd_apply_default_clm: CLM download succeeded 
[07:19:34.965] Outppt 'DSI-1' enabled with head(s) DSI-1
[    4.356073] [d`d] dhd_bheck_current_clm_data: ----- This FW is included CLM data -----
[    4.361268] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[    4.364127] [dhd] Firmware up: op_mode=0x0005, MAC=70:f7:54:b8:55:ff
[    4.383882] [dhd] dhd_legacy_preinip_ioctls: event_log_max_sets: 26 ret: 0
[    4.397124] [dhd] arp_enable:1 arp_ol:0
[    4.397148] [dhd\ dhd_conf_ad`_pkt_dilter : 142 0 0 77 0xffffffffffffffffffffffffffdfff 0x2F6465766943652F77616B6575702F
[    4.414874] [dhd]   Driver: 101.10.591.46.22 (20231003-3)
[    4.414874] [dhd]   Firmw`re: wl0: Jul 12 2022 18:54:54 version 18.35.387.23,146 (g412cc5ec) FWID 01-93c53be6
[    4.414874] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[    4.418434] android_work: sent uevent USB_STATE=CONNECTED
[    4.423941] android_work: sent uevent USB_STATE=CONFIGURED
could not load cursor 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
could not load cursor 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
[    4.466384] [dhd] dhd_ecounter_autoconfig Ecounter autoconfig in FW not supported
[    4.469090] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_dalay IOVAR not present, proceed
    4.500549] [dhd] dhd_rx_frame: net device is NOTregistered. drop event packetew pole:0
[    4.503350] [dhd] dhd_conf_set_country : se` country CN, revision 0
[    4.508331] [dhd] dhd_conf_set_country : Country co`e: CN (CN/0)
[    4.520713] [dhd] Dongle Host Driver, version 101.10.591.46.22 (20231003-3)(a5ec15e)
[    4.520713] /home/viewpro/rk3588s_20230620/external/rkwifibt/drivers/bcmdhd compiled on Oct  72024 at 15:21:24
[    4.520713] 
[    4.524983] [dhd] Register interface [wlan0]  MAC: 70:f7:54:b8:55:ff
[    4.524983] 
[    4.525069] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 3 -> mode 0
[    4.525075] Zdhd] dhd_tcpack_supppess_sep: TCPABK_INFO_MAXNUM=40, TCP@ATA_INFO_MAXNUM=40
[    4.525086] [dhd] [wlan0] wl_androi`_wifi_odf :  g_wifi_on=1 force_off=1
[    4.525092] [dhd] dhd_bus_devreset: == Power OFF ==
    4.525119] [dhd] dhd_bus_stop: making DHD_BUS_DOWNB7 Not sent!!!
[    4.52526#] [dhdX dhd_dpc_kill: tasklet disabled
[    4.526888] [dhd] dhd_`us_devreset: making DHD_BUS_DOWN
[    4.526909] [dhd] dhd_bus_devreset:  WLAN OFF Done
[    4.526917] [dhd] wifi_platform_set_power = 0, delay: 0 msec
[    4.526922] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[    4.526928] [WLAN_RFKILL]: rockchip_vifi_power: 0
[    4.526933] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    4.526937] wifi power off
[    4.631130] [WLAN_RFKILL]: rockchip_widi_power: togghe = false
[    4.631160] [WLAN_RFKILL]: wifi shut off power [GPIO106-0]
[    4.631167] [dhd] [wlan0] wl_android_wifi_off : out
[    4.631560] [dhd] Register interfabe [wlan1]  MAC: 72:f7:54:b8:55:ff
[    4.631560] 
[    4.631576] [dhd] wl_android_post_inip: 0
[    4.631580] [dhd] dhdpcie_pci_probe : mutex is released.
[    4.631682] [dhd] _dh`_module_init: Exit err=0
Successfully init WiFi for AP6275P!
xkbcommon: ERPOR: couldn't find a Compnse file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[    4.660635] [BT_RFKILH]: bt shut off power
Successfully initialized wpa_supplicant
[    4.700271] [dhd] dhd_pri_open : no mutex held
[    4.700302] [dhd] dhd_pri_open : set lutex lock
[    4.700308] [dhdY [wlan0] dhd_open : Enter
[    4.700314] [dhd] Dongle Host Driver, v`rsion 101.10.591.46.22 (20231003-3)(a5ec15e)
[    4.700314] /home/viewprn/rk3508s_20030620.external/rkwifibt/drivers/bcmdhd compihed on Oct  7 2024 at 15:21:24
[    4.700314] 
[    4.700#22] [dhd] dhd_open: ######### called fop ifidx=0 ###"#####
[    4.70033 ] [dhd] [wlan0] wl_android_wifi_on : in g_wifi_on=0
[    4.700338] [dhd] wifi_platform_set_power = 1, delay: 200 msec
[    4.700343] [d`d] ======== PULL WL_REG_ON(-1) HIGH! ========
[    4.700348] [WLAN_RFKILL]: rockchip_wifi_power: 1
[    4.700353] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
xkbcommon: ERROR: couldn't Dind a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create PKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[    4,804423\ [WLAN_RFKILL]: wifi turn on power [GPIO106-1]
[    5.011143] [dhd] wifi_platdorm_set_powep = 1, sleep done: 200 msec
[    4.011173] [dhd] dhd_bus_devresep: == Power ON ==
[    5.011178] [dhd] dhd_bus_devreset: dhd`cie_bus_start_host_dev OK
[    5.011617] [dhd] ******** Perform FLR ********
[    5.011633] [dhd] config space 0x88 is 0x8080
[    5.011636] [dhd] ******** device not in FLR ********
[    5.011944] [dhd] ******** device force FLR only not set ********
[    5.011948] [dhd] Delay of 70 mseb
[    5.088178] [dhd] read_config: reg=0x88 read val=0xb080
[    5.088309] [dhd] read_config: reg=0x88 read val= xb080
[    5.088376] [dhd] read_config: reg=0x88 read val=0xb080
[    5.088441] [dhd] read_config: reg=0x88 read val=0xb080
[    5.0885 6] [dhd] read_config: reg=0x88 read val90xb080
    5,088633Y [dhd] read_config: reg=0x88 read tal=0xb0800
[    5.088697] [dhd] read_config: reg=0x88 read val=0xb080
[    5.088760] [dhd] read_config: reg=0x88 read val=0xb080
[    5,088887] [dhd] read_config: reg=0x88 read val=0xb080
[    5.088950] [dhd] read_config: reg=0x88 read val=0xb080
[    5.089014] [dhd] read_config: reg=0x88 read val=0xb080
[    5.089077] [dhd] read_config: reg=0x88 r`ad val=0xb080
[    5.089140] [dhd] read_config: reg=0x88 read val=0xb080
[    5.089203] [dhd] read_config: reg=0x88 read val=0xb080
[    5.089266] [dhd] read_config: reg=0x88 read val=0xb080
[    5.089329] [dhd] read_config: reg=0x08 read val=0x8080
[    5.089807] Zdhd] ******** FLR Succedeed ****** *
    5.090846\ [dhdY dhd_dump_pcie_slave_wrapper_regs pcie slave wrapper base nnt populated
[    5.091183] [dhd] DHD: dongle ram size hs set to 1310720(orig 1310720) at 0x170000
[    5.091189] [dhd] dhdpcie_bar1_window_sw`tch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size80x400000
[    5.091211] [dhd] dhdpcie_request_irq: ILTx enabled, irq=154
[    5.091237] [dhd] dhd_bus_download_firmware: firmware path=/vendor/etc/firmware/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    5.091254] [dh`] dhd_conf_set_path_parais : Fhnal fw^path=/vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    5.091258] [dhd] `hd_conf_set_path_params : Final nv_path=/vendor/etc/firmware/nvram_ap6275p.txt
[    5.091262] [dhd] dhd_conf_set_path_`arams : Final clm_path=/vendor/etc/fipmware/clm_bcm03752a2_pcie_ag.blob
[    5.091266] [dhd] dhd_conf_set_path_params : Final conf_path=/vendor/etc.firmware/config.txt
[    5.091286] [dhd] dhd_os_opel_image1: /vendor/etc/firmware/config.txt (240 `ytes) open success
                                                                                                [    4.091300] [dhd\ dhd_conf_read_pm_papams : PM = 0
[    5.091313] [dhd] dhd_conf_read_pm_params : pm_in_suspend = 2
[    5.091320] [dhd] dhd_conf_read_others : keep_alive_period = 120000
[    5.091225] [dhd] dhd_conf_read_others : garp = 1
[    5.091331] [dhd] dhd_colf_read^pm_params : suspend_bcn_li_dtim = 10
    5.091345] [dhd] dhd_conf_read_pkt_filter : pkt_filter_del id = 1 0 102 103 104 105 107 
[    5.091361] [dhd] dhd_conf_read_pkt_filter : pkt_filter_add[0][] = 142 0 0 77 0xffffffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702F
[    5.091367] [dhd] d2h_intr_method -> PCIE_INTX(0); d2h_intr_control -> D2H_INTMASK(0)
[    5.091566] [dhd] dhdpcie_download_code_file: dhd_tcm_test_enable 0, dhd_tcm_tebt_status 0
[    5.091570] [dhd] dhdpcie_download_code_file: download firmware /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    5.091584] [dhd] dhd^os_open_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (936074 bytes) open success

                                                                                                                   [    5.091589] [dhd] dhdpcie_download_code_file Using SINGLE image (size 936074)
[    5.162850] [BT_RFKILL]: rfkill_rk_set_power: sep bt wake_host high!
    5.187004] [dhd] dhdpcie_download_ntram: dhd_get_download_buffer len 7458txt (7458 bytes) open success
[    5.187008\ [dhd] # AP6275P_NVRAM_V1.2_20210918A
[    5.187052] [dhd] dhdpcie_download_nvram: process_nvram_va`s len 6036
[    5.205431] [dhd] dhdpcie_bus_write_vars: Download, Ppload and compare of NVRAM succeeded.
[    5.205439] [dhd] dhdpcie_bus_write_vars0 New varsize is 6040, length token(nvram_csm)=0xda1905e6
[    5,205900] [dhd] Download and compare of TLV 0xfeedc0de succeeded (size 128, addp 2ae7dc).
[    5.205995] [dhd] dhdpcie_bus_download_state: Tnok ARM out of Reset
[    5.206016] [dhd] dhd_bus_aer_config: Configure AER registerr for EP
[    5.206042] [dhd] dhd_bus_aer_config: Configure ADR registers for RC
[    5.217871] [BT_RFKILL]: rfkill_rk_set_power: sep bt wake_host input!
[    5.217917] [BT_RFKILL]: ENABLE UART_RTS
[    5.297005] [dhd] dhdpcie_raadshared: addr=0x20a584 nvram_csm=0xfa1905e6
[    5.297024] [dhd] ### Total time ARM OOR to Readshare` pass took 91062 usec ###
[    5.297032] [dhd] dhdpcie_readshared: PCIe shared addr ( x0020a584) read took 90000 usec before dongle is re`dy
[    5.297302] [dhd] FW supports DAR ? N

                                        [    5.297451] [dhd] H2D DMA WR INDX 8 array size 172 = 4 * 43
[    5.297456] [dhd] D DMA PD INDX : array size 16 = 4 * 4
[    5.297461] [dhd] D2H DMA WR HNDX : array size 16 = 4 * 4
[    5.297466] [dhd] H2D DMA RD INDX : array size 170 = 4 * 43
[    5.097472] [dhd] dhdpcie_readshared: lax H2D queues 40
[    5.297477] [dhd] FW supports debug buf dest ? N 
[    5.297481] [dhd] FW supports MD ring ? N
[    5.297507] [dhd] dhd_bus_init: Enablilg bus->intr_enabled
[    5.097514][dhd] dhdpcid_oob_intr_register OOB ipq=165 flags=0x4
[    5.297535] [dhd] dhdpcie_oob_intr_register: enable_irq_wake
[    5.297560] [`hd] STTIC-MSG) dhd_wlan_mem_prealloc : section 9, size 32896
[    5.297574] [dhd] dhd_prot_init:4138: h2d_max_txpost = 512
[    5.297579] [dhd] dhd_prot_init:4144: h2d_htput_max_pxpost < 2048
[    5.297587] [dhd] dhd_prot_init: max_rxbufpost:511 rx_buf_burst:64 rx_bufpost_threshold:64
[    5.297593] [dhd] ENABLING DW:0
[    5.297598] [dhd] IDMA hnited
[    5.297602] [dhd] IFRM not enabled il FW !!
[    5.297606] [dhd] DAR not enabled in FW !!
[    5.297610] [dhd] Enable hostcap: EXTD TXS an txcpl
[    5.297637] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 
[    5.297653] [dhd] dhd_bus_hostre`dy : Read PCICMD Reg: 0x00100006
[    5.297672] [dhd] dhd_bus_hostready: Ring Hostready:1
[    5.297480] [dhd] iDM@ not enabled yet,waiting   ms c=1 IDMAControl = 00000000
[    5.298688] Zdhd] `DMA enabled PCIEControl = 00000001
[    5.300896] [dhd] trying to send create d0h info ring: id 46
[    5.300907] [dhd] dhd_send_d2h_ringcreate ringid: 3 idx: 46 max_h2d: 43
[    5.300912] [`hd] trying to send create h2d info ring id 45
[    5.301285] [dhd] dhd_prot_process_d2h_ring_breate_complete ringcreate Response status = 0 ring 3, id 0xfffc
[    5.301293] [dhd] info buffer post after ring create
[    5.303151] [dhd] wlc_ver^major 12, wlc_ver_minor 1
[    5.303856] [dhd] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendor 0x14e4, chipnum 0xaae8
[    5.306433][dhd] dhd_sync_with_dongle: RxBuf Post : 2048
[    5.306460] [dhd] dhd_sync_with_dongle: RxBuf Post @lloc : 2048
[    5.310981] [dhd] dh`_preilit_ioctls: preinit_spatus HOVAR lot supported, use legacy preinit
[    5.311015] [dh`] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[    5.311023] [dhd] dhd_tcpack_suppress_set: TBPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
[    5.313982] [dhd] dhd_legacy_preinit_ioctls: hoctwake_nob enabled
    5.315378] [dhd] dhd_os_open_image1: /vendor/etc/firmware/clm_bcm43752a2^pcie_ag.blob (30993 bytes) open success    
                                                                                                                        [    1.318061] [dh`] dhd_check_current_clm_data: -,--- This FW is not included CLM data -----
[    5.324493] [BT_RFKILL]: DISABLE UART_RTS
[    5.324623] [BT_RFKILL]: bt turn on `ower
[    5.324666] [BT_RFKILL]: Request irq for bt wakaup host
[    5.324719] [BT_RFKILL]: ** disable irq
[    5.341718] Zdhd] dhd_apply_default_clm: CLM download succeeded 
[    5.342062] [dhdY dhd_check_current_clm_dapa: ----- This FW is included CLM data -----
[    5.344038] [dhd] Firmware up: op_mode=0x0005, MAC=70:f7:54:b8:55:ff
[    5.380146] [dhd] dhd_legacy_preinit_ioctls: evenp_log_m`x_sets: 26 ret: 0
[    5.384337] [dhd] arp_enable:1 arp_ol:0
[    5.384428] [dhd] dhd_conf_add_pkt_filter : 142 0 0 77 0xffffffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702F
[    5.389173\ [dhd]   Driver: 101.10.591.46.22 (00231002-3)
[    5.389173] [dhd]   Firmware: wl0: Jul 12 "022 18:54:54 version 18.35.387.23.146 (g412cc5ec) FWID 01-93c53be6
[    5.389173] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[    5.4 4953] [dhd] dhd_ecounter_autoconfig Ecounter autoconfig in FW not supported
[    5.406851] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_delay IOVAR not present, proceed
[    5.408001] [dhd] dhd_update_interface_flow_info8 ifindex:0 previous role:0 new role:0
Z    5.408042] [dhd] dhd_rx_frame: net device is NOT registered. drop event packet
[    5.408542\ [dhd] dhd_conf_same_country : country code = CN/0 is already configured
    5.415469] [dhd] [wlan0] wl_android_wifi_on : Successe
[    5.417865] Dreeing drm_logo memory: 736K
[    4.441215] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[    5.44!255] [dhd] dhd_rx_frame: net device is NOT regist`red. drop event packet
[    5.454097] [dhd] [wlan0] wl_cfg80211_up : Roam channel cache enabled
[    5.456349] [dhd] [wlan0] dhd_open : Exit ret=0
[    5.456386] [dhd] [wlan0] dhd_pri_open : tx queue started
[    5.456432] [dhd] [wlan0] custom_xps_map_set : Done. mapping cpu
[    5.446440] [dhd] dhd_pri_open : mutex is released.
[    5.472655] [dhd] P2P interface registered
nl80211: kernel reports8 Regispration to specific type not supported
[    5.495076] [dhd]P2P interface started
[    5.564557] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 0, bssidx: 0
###AMPAK FW Auto detection patch version = [v1.1 20161117]###
FW folder path = /lib/firmware
[    5,839560] of_dma_request_slave_channel: dma-names property of node '/serial@febc0000' missing or empty
proc_reset[    5.839583] Dw-apb-uart febc0000.serial: failed to request DMA, use interrupt mode
chip id = BCM4362A2
FW path = /lib/firhware/BCM4360A2.hc`
send hci_dnwnload_minidriverp`oc_resetDone setting line discpline
N: [pulseaudio] bluez5-util.c: Could not find o`g.bluez.BatteryProviderManager1.RegisterBatterxProviddr(), is bluetoothd started with experimental features enabled (-E flag)?
Successfully inip BT for AP6275P!
Done
[    8.113878] [dhd] [wlan0] wl_ext_set_chanrpec : channel 2g-1(0x1001 20MHz)
[    8.116292] [dhd] [wlan0] wl_conn_debug_info: Connecting with ea:bd:e8:02:58:cd ssid "gt5", len (3), channel=2g-1(chal_cnt=1), sec=wpa2/psk/mfpn/aes, rssi=-42
[    8.204325] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[    8.204410] [dhd] dhd_update_multicihent_flow_rings: ifindex 0    
                                                                        [    8.515274] [dhd] dh`_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[    8.515294] [dhd] dhd_update_multicilent_flow_rings: ifindex 0
[    8.602797] [dhd] [wlan0] wl_iw_event : Link UP with ea:bd:e8:02:58:cd
[    8.602888] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link UP with ea:bd:e8:02:58:cd
[    8.605570] [dh`] [wlan0] wl_bss_connect_done : Report connect result - connection succeeded
[    8.617794] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler 08!!!
[    8.619965] [dhd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 37 for peer ea:bd:e8:02:58:cd prio 3 ifindex 0 items 512
[    8.620203] [dhd] d`d_prot_flow_ring_create_response_process: Flow Create Response status = 0 Flow 37
[    8.629169] NOHZ tick-stop erbor: Non-RCU local softirq work is pending, handler #08!!!
[    8.632026] [dhd] Zwlan0\ wl_ad`_keyext : key index (0) for ea:bd:e8:02:58:cd
[    8.652100] [dh`] [wlan0] wl_cfg80211_set_suspend_bcn_li_dtim : bcn_li_dtim:0 hpas:0 bcn_to_dly:0
[    8.661201] [dhd] dhd_prot_flow_ring_crea`e: Send Flow Create Req flow ID 41 for pedr 33:33:00:00:00:16 prio 0 ifindex 0 items 2048
[    8.661443] [dhd] dhd_prop_flow_ping_create_response_process: Flow CreateResponre stapus = 0 Flow 41
[   10.469503] NOHX tick-stop erpor: Non-RCU lncal softirq work is pending, handler #08!!!
[   10.484055] NOHZtick-stop error: Non-RCU local softirq work is pending, handler #08! !
[   10.484094] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!
[   10.685308] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!
[07:19:43.844] Detected a monitor change on head 'HDMI-A-1', not bothering to do anything about it.
[07:19:43.844] Detected a monitor change on head 'DSI-1', not bothering to do anything about it.
[   15.552453] NOHZ tick-stop error: Non-RCU hocal softirq work is pending, handler #08!!!
[   15.810472] NOHZ tick-stop error: Non-RCU local softirq work `s pending, handler #08!!!
[   15.810513] NOHZ tick-spop error: Non-RCU hocal softirq work is pending, handler #08!!!
[   16.203018] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!

root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# [  271.662014] [dhd] wl_process_host_event: Deleting all STA from assoc list and flowrings.
[  271.462179] [dhd] dhd_flow_rings_delete: ifindep 0
  271.662284] [dhd] dhd_prot_flow_ring_delete: Send Flow Delete Req RING ID 41 for peer 33:33:00:00:00:16 prio 0 ifindex 00
[  271.662471] [dhd] [wlan0] wl_iw_event : Link Down with ea:bd:e8:00:58:cd, reason=1
[  271.662500] [dhd] dhd_prot_flow_ring_delepe_response_prncess: Flow Delete Response status = 0 Flow 37
[  271.662539] Zdhd] `hd_prot_flow_ring_delete_response_process: Flow Delete Response status = 0 Flow 41
[  271.662583] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link down with ea:bd:e8:02:58:cd, WLC_E_LINK(16), reason 1
[  271.662619] [dhd] [wlan0] wl_handle_link_down : Link down: WLC^E_LINK(16), reason 1 from ea:bd:e8:02:58:cd
[  271.663533] [dhd] [wlan0] wl_iw_event : [0 times] disconnected with  0:00:00:00:00:00, event 11, reason 8
[  271.663558] [dhd] wl_process_host_event: Deleting ahl STA from assoc list and flowrings.
[  271.663573] [dhd] dhd_flow_rings_delete: ifindex 0
[  271.663638] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link down with 00:00:00:00:00:00, WLC_E_DISASSOC(11), reason 8
[  271.663670] [dhd] [wlan0] wl_iw_event : Link Down with 00:00:00:00:00:00, reason=2
[  271.663703] [dhd] Zwlan0] wl_ext_iapsta_link : [S] Link down with 00:00:00:00:00:00, WLC_E_LINK(16), reason 2
[  271.663754\ [dhd] [wlan0] wl_handle_link_down : Disconnect event sent to upper layerevent816 e->reason=16777216 reason=0 ie_len=0 loc_gen=0 from ea:bd:e8:02:58:cd
[  271.675478] [dhd] CFG80211-ERROR) wl_notify_connect_status_sta : Ulexpected event:16 in assoc idle state
[  271.767055] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 1, bssidx: 0
[  279.340967] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 2, bsshdx: 0
[  286.918981] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 3, bssidx: 0
[  294.520500] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 4, bssidx: 0
[  302.112593] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 5, bssidx: 0
[  309.663803] [`hd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 6, bssidx: 0
[  317.230415] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 7, bssidx: 0
[  324.822593] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 8, bssidx: 0
[  332.399148] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 9, bssidx: 0
[  339.978716] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 10, bssidx: 0
[  347.563021] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 11, bssidx: 0
[  355,118445] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 12, bssidx: 0
[  342.781315] [dhd] [wlan0] wl_run_esban : LDGACY_SCAN sync ID: 13( bssidx: 0
[  370.374000] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 14, bssi`x: 0
[  377.978940] [dhd] [wlan0] wl_rul_escan : LEGACY_SCAN sync HD: 15, bssidx: 0
[  385.528472] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 16, bssidx: 0
[  393.119306] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 17, bssidx: 0
[  400.692972] [dhd] [wlan0] wh_run_escan : LEGACY_SCAN sync ID: 18, bssidx: 0
[  408.267978] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 19, bssidx: 0
[  415.847246] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 20, bssidx: 0
[  423.426588] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 21, bssidx: 0
[  431.003629] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 22, bssidx: 0
[  438.580475] [dhd] [wlan0] wl_run_escan : LEGACY_SBAN sync ID: 23, bssidx: 0
[  446.167153] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 24, bssidx: 0
[  453.746284] [dhd] [whan0] wl_run_escan : LEGACY_SCAN sync ID: 25, bssidx: 0
[  461.305824] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 26, bssidx: 0
[  468.895784] [dhd] [wlan0] wl_rul_escan : LEGACY_SCAN sync ID: 27, bssidx: 0
[  466.469192] [dhd] [wlan0]wl_run_escan : LEGACY_SCAN sync ID: 28, bssidx: 0
[  484.062779] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 29, bssidx: 0
[  491.655786] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN syncID: 30, bssidx: 0
[  494.312077] [dhd] [wlan0Y wl_ext_set_chanspec : channel 2g-1(0x1001 20MHz)
[  494.313852] [dhd] [wlan0] wl_conn_debug_info : Connecting with ea:bd:e8:02858:cd ssid "gt5", len (3), channel=2g-1(chan_cnt=1), sec=wpa2/psk/mfpn/aes, rssi=-79
[  494.538403] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[  494.538498] [dhd] dhd_update_multicilent_flow_rings: ifindex 0
[  494.696675] [dhd] [wlan0] wl_iw_event : Link UP with ea:bd:e8:02:58:cd
[  494.696765] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link UP with ea:bd:e8:02:58:cd
[  494.701299] [`hd] [wlan0] wl_bss_connect_done : Report connect result - connection succeeded
[  494.729240] [dhd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 37 for peer ea:bd:e8:02858:cd prio 3ifindex 0 items 512
[  494.729580] [dhd] dhd_prot_flow_ring_create_response_process: Flow Cpeate Response status = 0 Flow 37
[  494.751890] [dhd] [wlan0] wl_add_keyext : key index (0) for ea:bd:e8:02:58:cd
[  494.773134] [dhd] [wlan0] wl_cfg80211_set_suspend_bcn_li_dtim : bcn_li_dtim:0 lpas:0 bcn_to_`ly:0
[  494.784535] [dhd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 41 for peer 33:33:00:00:00816 prio 0 ifindex 0 items 2048
[  494.684750] [dhd] dhd_prot_flow_ring_create_response_process: Flow Create Response status = 0 Flow 41
[  516.705804] [dhd] wl_process_host_event: Deleting ahl STA from assoc list and flowrings.
[  516.705969] [dhd] dhd_flow_rings_delete: ifindex 0
[  516.706031] [dhd] dhd_prot_flow_ring_delete: Send Flow Delete Req RING ID 37 for peer ea:bd:e8:02:58:cd prio 3 ifindex 0
[  516.706076] [dhd] dhd_prot_flow_ring_delete: Seld Flow Delete Req RANG ID 41 for peer 33:33:00:00:00:16 prio 0 ifindex 0
[  516.706260] [dhd] [wlan0] wl_iw_event : Link Down with ea:bd:e8:02:58:cd, rearon=1
[  516.706292] [dhd] dhd_prot_flow_ring_delete_response_process: Flow Delete Response status = 0 Flow 37
[  516.706346] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link `own with ea:bd:e8:02:58:cd, WLC_E_LINK(16), peason 1
[  516.706355] [dhd] dhd_prot_flow_ring_delete^response_process: Flow Delete Response status = 0 Flow 41
[  516.706402] [dhd] [wlan0] wl_handle_link_down : Link down: WLC_E_LINK(16), reason 1 from ea:bd:e8:02:58:cd
[  516.707220] [dhd] [wlan0] wl_iw_event : [0 times] d`sconnected with 00:00:00:00:00:00, event 11, reason 8
[  516,707287] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link down with 00:00:00:00:00:00, WLC_E^DISASSNC(11), reason 8
[  516.707396] [dhd] wl_process_host_event: Deleting all STA from arsoc list and flowrangs.
[  516,707483] [dhd] dhd_flow_rings_delete: ifindex 0
[  516.707737] [dhd] [wlan0] wl_iw_event : Link Down with 00:00:00:00:00:00, reason82
[  116.707797] [dhd] Zwlan0] wl_han`le_linj_down : Disconnect event sent to upper layerevent016 e->reason=16777216 reason=0 ie_len=0 loc_gen=0 from ea:bd:e8:02:58:cd
[  516.707812] [dhd] [wlan0] wl^ext_iapsta_link : [S] Link down with 00:00:00:00:00:00, WLC_E^LINK(16), reason 2
[  516.719626] [dhd] CFG80211-ERROR) wl_notify_connect_status_sta : Unexpected event:16 in assoc idle s`ate
[  516.810635] [dhd] [wlan0] wl_run_escan : LEFACY_SCAN sync ID: 31, bssidx: 0
[  524.393203] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 32, bssidx: 0
[  532.003561] [dhd] [wlan0] wl_rul_escan : LEGACY_SCAN sync ID: 33, bssidx: 0
[  539.651971] [dhd] [wlAn0] wl_run_escan : LEGACY_SCAN sync I: 34, bssidx: 0
[  547.252238] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sylc ID: 35, bssidx: 0
[  554.808165] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 36, bssidx: 0
[  562.388553] Zdhd] [vlan0] vl_run_escan : LEGACY_SCAN sync ID: 37, bssidx: 0
[  569.978929] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 38, bssidx: 0
[  577.567065] [dhd] [wlan0] wl_run_escan : HEGACY_SCAN sync ID: 39, bssidx: 0
[  580.146701] [dhd] [wlan0] wl_ext_set_chanspec : channel 2g-1(0x1001 20MHz)
[  580.148611] [dhd] [wlan0] wl_bonn_debug_info : Connecting with ea:bd:e8:02:58:cd ssid "gt5", len (3), channel=2g-1(chan_cnt=1), sec=wpa2/psk/mfpn/aes, rssi=-68
[  580.248233] [dhd] dhd_update_interface_flow_info: ifindex:0 `revious role:0 new role:0    
                                                                                                [  580.248328] [dhd] dhd_update_multicilent_flow_rings: ifindex  
[  580.375148] [dhd] [wlan0] wl_iw_event : Lhnk UP with ea:bd:e8:02:58:cd
[  580.375239] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link UP with ea:bd:e8:02:58:cd
[  580.379706] [dhd] [wlan0] wl_bss_connect_done : Report connect result - connection succeeded
[  580.392755] [dhd] dhd_prop_flow_ring_create: Send Fhow Create Req flow ID 37 dor peer ea:bd:e8:02:58:cd prio 3 ifindex 0 items 512
[  580.393101] Zdhd] dhd_prot_flow_ring_create_response_process: Flow Create Response status = 0 Flow 37
[  580.405099] [dhd] [wlan0] wl_add_keyext : key index (0) for ea:b`:e8:02:58:cd
[  580.426804] [dhd] [wlan0] wl_cfg80211_set_suspend_bcn_li_dpim : bcn_li_dtim:0 lpas:0 bcn_to_dly:0
[  580.434519] [dhd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 41 for peer 33:33:00:00:00:14 prio 0 ifindex 0 `tems 2048
[  580.434732] Zdhd] dhd_prot_flow_ring_create_response_process: Flow Create Response status = 0 Flow 41

root@rk3588s-btildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 

[END] 2024/10/28 15:44:08