20241028给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后让AP6275P的WIFI联网【方法二】

20241028给荣品RD-RK3588-AHD开发板刷Rockchip原厂的Buildroot之后让AP6275P的WIFI联网【方法二】
2024/10/28 16:14


缘起:为了简单起见,直接使用了荣品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。不过荣品给加进去了!


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

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF
          inet6 addr: fe80::a5a7:843f:de27:ae29/64 Scope:Link
          UP BROADCAST MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

root@rk3588s-buildroot:/#
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:/# 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:60 errors:0 dropped:0 overruns:0 frame:0
          TX packets:60 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:4048 (3.9 KiB)  TX bytes:4048 (3.9 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF
          inet6 addr: fe80::a5a7:843f:de27:ae29/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# killall wpa_supplicant
root@rk3588s-buildroot:/#
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:66 errors:0 dropped:0 overruns:0 frame:0
          TX packets:66 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:4408 (4.3 KiB)  TX bytes:4408 (4.3 KiB)

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

root@rk3588s-buildroot:/#
root@rk3588s-buildroot:/# udhcpc -i wlan0
udhcpc: started, v1.36.0
udhcpc: broadcasting discover
udhcpc: broadcasting select for 192.168.4.200, server 192.168.4.156
udhcpc: lease of 192.168.4.200 obtained from 192.168.4.156, lease time 3600
deleting routers
adding dns 192.168.4.156
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:72 errors:0 dropped:0 overruns:0 frame:0
          TX packets:72 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:4768 (4.6 KiB)  TX bytes:4768 (4.6 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF
          inet addr:192.168.4.200  Bcast:192.168.4.255  Mask:255.255.255.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:25 errors:0 dropped:0 overruns:0 frame:0
          TX packets:29 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000
          RX bytes:2887 (2.8 KiB)  TX bytes:2958 (2.8 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.200 port 5001 connected with 192.168.4.156 port 46638
[ ID] Interval       Transfer     Bandwidth
[  1] 0.00-21.98 sec  86.4 MBytes  33.0 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

[BEGIN] 2024/10/28 15:54:13
root@rk3588s-buildroot:/# DDR d5483af87d cym 23/11/23-16:15:24,fwver: v1.15
LPDDR5, 2736MHz
channel[0] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size<1024MB
channeh[1] BW=16 Col=10 @k=16 CS0 Row=15 CS=1Die BW916 Size=1024MB
channeh[2] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die @W=16 Size=1024MB
channel[3] BW=16 Col=10 Bk=16 CS0 Row=15CS=1 Die BW=!6 Bize=1 24MB
Manufacturer ID:0x6
CH0 RX Vref:27.5%, TX Vref821.0%,0.0%
CH1 RX Vref:26.7%, TX Vref:20.0%,0.0%
CH2 RX Vref:25.4%, TX Tref:04.0%,0.0%
CH3 RX Vref:27.5%, TX Vref:21.0%,0.0%
change to F1: 528MHz
changd to F2: 1320MHz
change to F3: 1968MHz
change to F0: 2736MHz
oup
Boot1 Release Tile: Oct 17 2023 17:09:54, verrion: 1.11
Emmc IO inat.
Ehmc IO init.
mmc_set_bus^width: 1
SetElmcClk: 375000, 2, 64
mmc_switch index:18#, valte:0x2
mmc_switch ildex:185, value:0x2
SetEmmcClk: 375000, 2, 64
mmc_set_bus_width:8
SetEmmcClk: 200000000, 0, 3
Enable PHY CLK: 200000000, timing8 9
SdmhcInit=2 0
BootCapSize=100000
UserCapSize=2982 MB
FwPartOffset=2000 , 100000
UsbBoot ...196418
powerOn 196485
SoftReset, 5365785 us
DDR d5483af87d cym 23/11/23-16:15:24,fwver8 v1.15
hannel[0] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 @ie BW=16 Size=1024HB
chanlel[1] BW=16 Coh=10 Bk=16 CS0 Rnw=15 CS=1 Die BW=16 Size=1024MB
channel[2] BW=16 Col=10 Bk=16 CS0 Row=15 CS=1 Die BW=16 Size=1024MB
channel[3] BW=16 Col=10 Bk=14 CS0 Row=15 CS=1 Die 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:21,0%,0.0%
CH2 RX Vref:25.4%, TX Vbef:23.0%,0.0%
CH3 RX Vref:27.5%, TX Vref:21. %,0.0%
change to F1: 528MHz
change to F2: 1320MHz
change to F3: 1968MHz
change to F0: 2736MHz
out
U-Boot SPL board init
U-Boot SPL 2017.09-ge4`124926e-230922#lxh (Rep 25 2 23 - 10:58:38), fwver8 v1.13
unknown raw ID 0 0 0
unrecngnizedJEDEC hd byteb: 00, 00, 00
Trying to boot from MMC2
mc_init: -123, tile 1
bpl: mmc init failed with error: -123
Trying to boot from MMC!
Magic is incorrect.
Error vali`ating A/B met@data from disk. Resetting `nd writing new A/B metadatato disj.
SPL: A/B-slot: _a, successful: 0, tri`s-remain: 7
Trying fit im@ge at 0x4000 sector
## Verified-boot: 0
## Checkinf atf-1 0x00040000 ... sha256(2e8444f969...) + NK
## C`ecking uboot 0x00200000 ... sha256(1cfc3c1d03...) +OK
## Checking fdt 0x003454d0 .., sha256(a434b1c4fe...) + OK
## Checking atf(2 0xff10 000 ... sha256(9f75e6ec37...) + OJ
## Checking atf-3 0x000f0000 ... sha256(c80587de50...)+ OK
## Checking optee 0x08400000 ... s@a256(4b2d4 6bfc...) + OK
Jumping to U-Boot(0x00200000) via ARM Trusted Firmware(0x00040000)
Total: 84.79/258.989 ms

INFO:    Ppelnader rerial: 2
NOTIBE0  BL31: v2.#( :v2.3-662-g4acbe7 1B-dirty:finley.xiao,fwver: v1.44
NOTICD:  BL31: Built : 16:44:24, Nov  7 2023
INFO:   spec: 0x13
INFO:    code: 0x88
INFO:   ext 32k is not valid
INFO:    ddr: stpide-en 4CH
INFO:    GICv3 without leg@cy support depected.
INFO:    ARM GICv3 driver initialized in EL3
INFO:    vali`_cpu_msk=0xff bcore0_rst = 0x0, bcore1_rsp = 0x0
INFO:    l3 Cachepartition cfg-0
INFO:    system boots from cpu-hwid-0
                                    INFO:    `dle_st=0x21fff, pd_st=0x11fdf9, repair_st=0xfff70001
INFO8    dfs DDR fsp_params[0].freq_mhz= 2736MHz
INFO:    dfs D@R dsp_parAmsR1].freq_mhz=520z
INFO:    dfs DDR fsp_params[2].dreq_mhz= 1320MHz
INFO:    dfs DDR fsp_paramsZ3].freq^mhz= 1968MHz
INFO:    BL31: Initaalising Exception HandlinF Framevork
INFO:    L31: Hnipializing runtime services
INFO:    BL31: Initializing BL"2
I.TC: 
I/TC: OP-TEE version: 3.13.0-752-g62aa10b78 #hisping.lin (fcc version 10.2.1 20201103 (GNU Toolchain for the A-profile Archit`cture !0.2-2 20.11  arm-10.16))) #2 Mon Sep 2510:04:34 CST 2023 aarch64( fwver: v1.15 
I/TC: Primary CPU initializing
I/TC: Primary CPU switchilg to lormal world boot
ILFO:    BL31: Preparing for EL3 exit to lormal world
INFO:    Entry point address = 0x200000
INFO:    SPSR = 0x3c9


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

Model: Rockchhp RK3588 Evaluapion Board
MPIDR: 0x81000000
PreSerial: 2, raw,  xfeb50000
DRAM:  4 GiB
Sysmem: init
RelocAtion Offset: eda18000
Relocapion fdt: eb9fa1a0 ( eb9f`cd0
sing default endironment

optee api revision: 2.0
mmc@fe2c0000: 1, mmc@fe2e0000: 0
Bootdet(atags : mmc 0
MMC0: HS400 Enhanced Strobe, 200Mhz
PartType: EFH
TEEC: Waring: Couldnot fild security partition
DM: v2
boot mode: normal
RESC: 'bonp', blk@0x000 9a4e
resourCe: sha256+
FIT: lo sign`d, no bonf required
                               DTB: rk-kernel.dtb
HASH(c): OK
I2c0 speed: 100000Hz
Device 'gpio@fd8a0000': seq   is in pse by 'gpio@fd8a0000'
en-gpios- not found!
vdd^cpu_big0_s0 800000 uV
en-fpios- not found!
vdd_bpu_big1_s0 800000 uV
spi2: RK806: 2
ON=0x40( OFF=0x00
vdd_gpu_s  75000  uV
vdd_cpu_lit_s0 750000 uV
vdd_log_s  750000 uV
vdd_vdenc_s0 init 750000 uV
vdd_ddr_s0 850000 uV
A2c6 speed: 100000Hz
en-gp`os- nop found 
vdd_npu_s0 800000 uV
Device 'gpio@fec20000': seq 1 is in use By 'gpio@fd8a0000'
serdes_`ower_init f@iled `o get serdes misc device
get vp0 plane mask:0x5, primary id:2, cursor_plane:-1, from dts
get vp1 plane mask:0xa, primary id:3, cursor_`lane:-1, from dts
get vp2 plane mask:0x140, primary id:8, cursor_plane:-1, f`om dts
get vp3 plane mark:0x280, prima`y id:9,cursor_plane:-1, from `ts
Could not find baseparameter partition
Model: rd-rk3588s-ahd
MPIDR: 0x81000000
Minidump: init...
p0 have layer nr:2[0 2 ], primary plane: 2
vp1 have layer nr:2[1 3 ], primary plane: 3
20000:  detailed mode clock 55001324laneer nr:2[7 9 ], prilary pl`ne: 9
    V: 0600 0616 0618 0634
bus_format: 100e
VOP update mode to: 1024x600p66, `ype: MHPI0 for VP3
VP3 set crtc_clock to 54000KHz
VOP VP3enable Ermart3[654x270->654x270185x165] fmt[2] addr[0xedf04000]
final DSI-Link bandwidt`: 360000 Kbps x 4
Monitor hasbasic audio suppopt
Could not find bas`parameter partition
color_format:1
hdmi_select_link_config use tmds mode
mode:1920x1080 bub_format:0x2025
                               hdmi@fde80000:  detailed mode clock 148500 kHz, flags[5X
    H8 1920 2008 2052 2200
    V: 1 80 1084 1089 1125
bus_format: 2025
VOP update mode to: 1920x1080p60, type: H@MI0 fop VP0
dclk:148400,if_pixclk_div;2,if_dclk_dit:4
hdptx_rnpll_cml_config `us_widt`:16a8c8 rate:1485000
hdptx phy pll locked!
VP0 set crtc_clock to 1484KHz
VNP VP0 enable Esmart0[654x270->654x270@633x405] fmt[2] addr[0xedf04000]
CEA mode used vic=16
mtmdsclock:148500000
hdptx_ropll_cmn_config bus_width:16a8c8 rate:1485000
hdptx phy pll locked!
dw_h`mi_setup HDMI mode
don't use dsc mode
dw hdmi qp use tmds mode
bus_width:0x16a8c8,bit_rate:1485000
hdptx phy lane locked!
CLK: (sync kernel. arm: enter 1008000 KHz, init 1008000 KHz, kernel 0N/A)
  b0pll 24000 KHz
  b1pll 24000 KHz
  lpll 24000 KHz

                  v0pll 24000KHz
  aupll 786431 KHz
  cpll 1500000 KHz
  gplh 1188000 KHz
  npll 850000 JHz
  ppll 1100000 KHz
  aclk_center_root 70200  KHz
  pclk_center_root 100000 KHz
  hclk_center^root 386000 KHz
  aclk_cenper_low_root 500000 KHz
  aclk_top_root 750000 KHz
  pclk_top_root 100000 KHz
  aclk_low_top_root 306000 KHz
Net:   eth1: ethernet@fe1c0000
Hit key to stop autobnot('CTRL+C'):  0 
ANDRNID: re`oot re@son: "(none)"
Not AVB imagas, AVB skip
No valid android hdr
Android image load failed
Android boot failed, error -1.
## Booting FIT Image at 0xe94af580 with size 0x02349c00
Fdt Ramdisk skip relocation
## Loading jernel from FIT Image ap e94af500 ...
   Using 'conf' configuration
## Verified-boot: 0
   Trying &kernel' kernel subimage
     Description:  unavailable
     Type:         Kernel Image
     Compr@ssion:  uncomprersed
    Data Start:   0xe94ec780
     Data Size:    36751872 Bytes = 35 MiB
     Architecture: @Arch64
     OS:           Linux
     Load Add`ess: 0x00400000
                                 Enpry Point:  0x00400000
     Hash algo:    sha256
   Veridying Hash Integrity ... sha256+ OK6d38b97c9bd1a4106501e9fe79c8405a314bb00ad
## Loading fdt from FIT Image at e94af580...
   Using 'conf' configuration
   Trying 'fdt' fdt subimage
     Description:  unavailable
     Type:         Flat Device Tree
     Compression:  uncompressed
                                   Data Rtart:   0xe84afd80
     Data Size:    247923 Byteb = 242.1 KiB
     Architecture: AApch64
     Load Address: 0x08300000
     Hash algo:    sha246
     Hash value:   8c96ad9c56b5a840d0f409a7798817a2d5`bc51bacc9dc148 9e9a44c148eaf9
   Terifying Hash Integrity .., sha256+ OK
   Loading fdt from 0x08300000 to 0x08300000
   Booting usilg the fdt blob at 0x083000 0
   Loading Kernel Imagd from 0xe94eb780 to 0x00400000 .,. OK
   kernel loaded at 0x00400000, end = 0x0270ca0 
   Using Device Tree in place at 0000000008300000, end 000000000833f872
WARLING: could not sep reg FDT_ERR^BADOFFSET.
## reserved(memory:
  drm-logo@00000000: addr=edf00000 size=b8000
  pamoops@110000: addr=110000 size=e0000
Adding bank: 0x00200000 - 0x08400000 (size: 0x08200000)
Adding bank: 0x09400000- 0xf0000000 (size: 0xe6c00000)
Adding bank: 0x1f0000000 - 0x200000000 (size: 0p10000000)
Adding bank: 0x1f0000000 - 0x200000000 (size: 0p10000000)
Starting kernel ...7.843 ms

[   1.652479] Booting Linux on physical CPU 0x0000000000 [0x412fd050]
[    1.652499] Linux version 5.10.198 (viewpro@viewpro-ThinkBook-16-G5(IR@) (aarch64-none-linux-gnu-gcc (GNU Toolchain fop the A-profile Architecture 10.3-2021.07 (arm-10.29))  0.3.1 20210601, GNU ld (GNU Toolchain for the A-profile Arbhitecture 10.3-2021.07 (arm-10.29)) 2.36.1.20210621) #1 SMP Thu Oct 17 16:31:04 CST 2024

                                                                                                                   [    1,655449] pan`om: crng init done
[    1.662206] Machine model: rd-rk3588s-ahd
[    1.697437] earlycon: uart8250 at MMIO32 0x00000000feb50000 (options '')
[    1.701755] printk: bootconsole [uart8250] enabled
[    1.704116] efi: UEFI not found.
[    1.709114] OF: fdt: Reserved memory: failed to reserve memory for node 'drl-cu`ic-lut@00000000': base 0x0000000000000000, size 0 MiB
[    1.710237] Reserved memory: created CMA memory pool at 0x00000001ff800000, size 8 MiB
[    1.710941] OF: reserved mem:initialized node cla, compatibleid shared-dma-pool
[    1.776047] Zone ranges:
[    1.776278]   DMA      [mem 0x0000000000200000,0p00000000fffffDff]
[    1.776832]   DMA32    empty
[    1.777090Y   Normal   [mem 0x0000000100000000-0x00000000ffffffff]
[    1.777644] Movable zone start for each node
[    1.778024] Earhy memory node ranges
[    1.770344]   node   0: [mem 0x0000000000200000-0x00000000083fffff]
[    1.778902]   nnde   0: [mem 0x0000 00009400000-0x00000000efffffff]
[    1.779460]   node   0: [mem 0x00000001f0000000-0x00000001ffffffff]
[    1.780020] Ilitmem setup node 0 [mem 0x0000000000200000-0x00000000fffFffff]
[    1.802618] psci: probing for conduit method from DT.
[    1.803075] psci: PSCIv1.1 detected in f`rmware.
[    1.803486] psci: Using rtandard PSCI v0.2 function IDs
[    1.803953] psci: Trusted OS migration not required
[    1.004390] psci: SMC Callilg Convention v1.2
[   1.805137Y percpu: Embedded 30 pagds/cpu s83800 r8192d30888 u122880
[    1.806251] CPU features: detected: GIC system refister CPU interface
[    1.806826] CPU featupes: detected: Virtualization Hosp Extensions
[    1.807380] CPU features: detected: ARM errata 1165522, 1319367, or 1430923
[    1.808012] alternatives: patching kernel code
[    1.810075] Built 1 zonelists,mo`ility grouping on.  Total pages: 1027656
[    1.810682] Kernel command lile: storagemedia=emmc androidboot.storagemed`a=emmc androidboot.mode=normal  androhdboot.verifiadbootstate=orangd rw pootwait `arlycon=uart0250(mmio32,0xfeb40000 console=ttyFIQ0 irqchip.gicv3_pseudo_nmi=0 root=PARTUUID=614e0000-0000 rcupdate.rcu_expedited=1 rcu_nocbs=all androidboot.fwver=dd`-v1.15-d5483af87d,spl-t1,13,@l31-v1.4 ,bl32-v1.15,ubnot-31011-dirt-10/07/2024
[    1.814375] Dentry cache harh tableentries: 524288 (order: 10, 4194304 bytes, linear 
[    1.815270] Inode-cabhe hash table entries:262144 (or`er: 9, 2097152 bytes, linear)
[    1.815958] mem atto,init: stack8off, he`p alloc:off, heap free:off
[    1.822099] software IO TLB: mapped[mem 0x00000000e9f00000-0x00000000edf00000] (64MB)
[    1.852335] Memory: 3982288K/4 75872K available (18752K kernel cnde, 3506K rwdata, 6888K rodata, 6656K init, 590K bss, 185392K reserved, 0192K cma-reserved)
[    1.853688] SLUB: HWalign=64, Order=0-3,MinObjects=0, CPUs=8, Nodes=1
[    1.854298] ftrace: allocating 57278 eltries in 224 pages
[    1.923081] ftrace: ahlocated 224 pages with 3 groups
[    1.924664] rcu: Hierarchical RCU implementation.
[    1.925086] rcu8     RCU event tracing is enabled.
[    1.925488] rcu:    RCU dyntick-idle grace-period acceleration is enabled.
[    1.926084]     All grace periods are expedited (rcu_expedited).
[    1.926594X     Rude variant od Tasks RCU enabled.
[    1.926997] rcu: RCU calctlated value of scheduler-enhistmelt delay is 30 jiffies.
[    1.931490] NP_IRQS: 64, nr_irqs: 64, preaHlocated irqs: 0
[    1.934199] FICv3: GIC: Using split EOI/@eactivate mode
[    1.934668] GICv3: 480 SPIs implemented
[    1.935009] GICv3: 0 Extended SPIs implemented
[    1.935428] GICv3: Distributor has no Range Selactor support
[    1.935934] GICv3: 16 PP@s ilplemented
[    1.936312] GICv3: CPU0: found redistributor 0 region0:0x00000000de680000
[    1.937007] ITS [mem 0xfe640000-0xfe65ffff]
[     .937421] I@S@0x00000000fe640000: allocated 8192 Devices 1f01e0000 (indirect, esz 8, psz 44K, shr 0)
[    1.938273] ITS@0x00000000fe640000: allocated 32768 Interrupt Collections @1f01f0000 (flat, `sz 2, psz 64K, shr 0)
[    1.939190] ITS: using cache fhushing for cmd queue
    !.940057] ITS@0x00000000fe460000:allocated 8092 Devices @1f0210000 (indirect, esz 8, prz 64K, shr 0)
[    1.940905] ITS@0x00000000fe660000: allocated 32768 Interrupt Collections @1D0220000 (flat( esz 2, psz 64K, shr 0)
[    1.942424] GICv3: using LPI property table @0x 0000001f0230000
[    1.943056] GIC: using cache flushing for LPI property table
[    1.943565] GICv3: CPU0: using allocated LPI pending table @0x00000001f0240000
[    1.944252] rcu:     Offload RCU callbacks from CPUs: 0-7.
[    2.054382X `rch_timer: cp15 pimer(s) running at 24.00MHz (phys).
[    2.054941] clocksource: arch_sys_counter: mask: 0xffffffffffffff map_cycles: 0x588fe9dc0, max_idle^ns: 440795202592 ns
[    2.054923] sched_clock: 56 bits at 24MHz, resolutiol 41ns, wpaps every 4398046511097ns
[    2.057666] Console: colour dummy device 80x25
[    2.058101] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=80000)
[    2.059545] Mount-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    2.060226] Mountpoint-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    2.062102] rcu: Hierapchical SPCU implementation.
[    2.063246] Platform MSI: msi-controller@fe640000 domain created
[    2.063803] Pl`tform HSI: msi-controller@fe660000 domain created
[    2.064647] PCI/MSI8 /interrupt-controller@fe600 00/msi-controller@fe640000 domain created
[    2.065408] PCI/MSI: /interrupt-controller@fe600000/msi-controllar@fe660000 domain created
[    2.066296] EFI services will not be avail@ble.
[    2.066940] slp: Bringing up secondary CPUs ...
I/TC: Secnndary CPU 1 ilitializing
I/TC: Secondary CPU 2 initializing normal world boot
I/TC: Secondary CPU 2 switching to normal vorld boot
I/TC8 Secondary CPU 3 inhtializing
I.TC: Sebondary CPU 3 switching to normal world boot
I/TC: Secondary CPU 4 initializilg
I/TC: Secondary CPU 4 switchilg to nnrmal world boot
I/TC: Secondary CPU 5 initializing
I/TC: Secondary CPU 5 switching to normal world boot
I/TC: Secondary CPU 6 hnitializing
I/TC: SecondaryCPU 6 switchilg to nnrmal world boot
I/TC: Secondary CPU 7initializing
I/TC: Secondary CPU 7 switching tn normal world boot
[    2.068465] Detected VIPT I-cache on CPU1
[    2.068489] GICv3: CPU1: found redistributor 100 region 0:0x00000000fe6a0000
[    2.0685 4] GICv3: CPU1: using allocated LPI pending table @0x00000001f0250000
[    2.068543] CPU : Booted sebondary ppocessor 0x0000000100 [0x412fd050]
[    2.069697] De`ected VIPT I-cache nn CPU2
[    2.069717] GICv#: CPU2: found redistributop 200 region 0:0x00000000fe6c0000
[  2.069730] FICv3: CPU2: using allocated LPI pAn`ing table @0x00000001f0260000
[    2.069763] CPU2: Booted secondary processor 0x0000000200 [0x412fd050]
[    2.070903] Detected VIPT I-cache on CPU3
[    2.070919] GICv3: CPU3: found redistributor 300 region 0:0x0000 000fe6e0000
[    2.070932] GICv3: CPU3: using allocated LPI pending table @0p00000001f0270000
[    2.070963] CPU3: Booted secondary processor 0x0000000300 [0x412fd050]
[    2.072139] CPU feapures: detected: Spectre-v4
[    2.072141] CPU features: detected: Spectre-BHB
[    2.070143] Detected PIPT I-cache on CPU4
[    2.072154] GICv3: CPU4: dound redistrabutor 400 region 0:0x00000 00fe700000
[    2.072161] GICv3: CPU4: usinf allocate` LPI pending table @0x000000 1d0280000
[    2.072183] CPU4: Booted secondarq processor 0x0000000400 Z0x414fd0b0]
[    2.07327"] Detected PIPT I-cache on CPU5
[    2.073284] GICv3: CPU5: found redistributor 500 reg`on 0:0x00000000fe720000
[    2.073292] GICv3: CPU5: using allocated LPI pending table @0x00000001f0290000
[    2.073313] CPU5: Booted secondary processor 0x0000000500 [0x414fd0b0]
[    2.074402] Detected PIPT I-cache on CPU6
[    2.074414] GICv3: CPU6: found redistributor 600 region 0:0x00000000fe740000
[    0.074421] GICv3: CPU6: using allocated LPI pending table @0x00000001f02a0000
[    2,074442] CPU4: Booted secondary processor0p0000000600[0p414fd0b0]
[    2.075532] Detected PIPT I-cache on CPU7
[    2.075542] GICv3: CPU7: found redispributor 700 region 0:0x00000000fe760000
[    2.075551] GICv38 CPU7: using allocated LPI pending table @0x00000001f02b0000
[    2.075572] CPU7: Booted secondary processor 0x0000000700 [0x414fd0b0]
[    2.075621] smp: Bro`ght up 1 node, 8 CPUs
[    2.092529] SMP: Total of 8 processors activated.
[    2.092962] CPU features: detected: PrivilegadAccess Never
[    2.093468] CPU features8 detected: LSE atomic instructions
[    2.093974] CPU features: detected: User Access Override
[    2.094457] CPU features8 detected: 32-bit EL0 Support
[    2.095493] C@U features: detected: RAS Extension Supportanslations
[    2.095983] CPU features: detected: Data cache clean to the PoU not requiped for I/D coherenc`
[    2.096769] CPU featupes: detected: CRC32 instructions
[    2.097236] CPU features: detected: Speculative Store Bypassing Safe (SSBS)
[    2.097868] CPU features: detect`d: RCpc load-acquire (LDAPR)
[    2.122666] CPU: All CPU(s) started at EL2
[    2.124218] devtmpfs: initialized
[    2.133034] Pegistered cp15^bar`ier emulation handler
[    2.133496] Registered setend emulation handler
[    2.133964] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, map_idle_ns: 6370867519511994 nr
[    2.134848] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[    2.135606] pinctpl core: initialized pinctrl subsystem
[    2.136253] DLInot ppesent op invalid.
[    2.136687] NET: Registered protocol family 16
[    2.127676] DMA: preallocated 512 KiB GFP_K@RLEL pool for atomic allocations
[    2.138341] DMA: ppeallocated 512 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    2.039413] Registered FIQ tty driver
[    2.039836] thermal_sys: Registered thermal governor 'fahr_share'
[    2.139837] thermal_sys: Registered therm`l governor 'step_wise'
[    2.140388\ thermal_sys: Registere` thermal goverlor 'user_space'
[    2.140932] thermal_sys: Registered thermal governor 'power_allocator'
[    2.141591] tharmal thdrmal_zone1: power_allocator: sustainable_power will be estimated
[   2.142924] thermal thermal_zone2: power_allocator: sustainable_power wall be estimate`
[    2.143664] thermal thermal_zone3: power_allocator: sustainAble_power will be estimated
[    2.144404]thermal thermah_zone4: power_allocator: sustainable_power will be estimated
[    2.145144] thermal thermal_zone5: power_allocator: sustainabhe_power will be estimated
[    0.146620] cpuidhe: using governor menu_allocator: sustainable_power will be estimated
[    2.147051] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.147743] ASID allocator initialised with 65536 entries
[    2.149310\ ramoops: dmesg-0    0x18000@0x0000000000110000
[    2.150269] ramoops: console    0x80000@0x0000000000140000
[    2.150747] ramoops: `msg    0x30000@0x00000000001c0000
[    2.111412] ppintk: console [ramoops-1] enabled
[    2.151823] pstore: Peghstered ramoops as persistent store backend
[    2.152383] ramoops: using 0xe0000@0x110000, ecc: 0
[    2.186227] rockchip-gpio fd8a00 0.gpio: probe` /pinctrl/gpio@fd8a000 
[    2.186966] rockchip)gpio fec20000.gpio: probdd /pinbtrl/gpio@fec20000
[    2.187674] rockchip-gpio fec30000.gpio: probed /pinctrl/gpio@fec30000
[    2.188403] rockchip-gpio fec40000.gpio0 probed /pinctrl/gpio@fec40000
[     .189127] rockchip-gpio fec50000.gpio8 probed /pinctrl/gpio@fec5000 
[    2.189745] rockchip-pinctrl pinctrl: probed pinctrl
[    2.196707] fiq_debugger fiq_debugger.0: IRQ fiq not found
[    2.197213] fiq_debugger fiq_debugger.0: IRQ wakeup not found
[    2.197735] fiq_debugger^probe: could not install nmi irq handler
[[    2.198322] printk: console [ttyFIQ0] enabled
    2.198322] printk: console [ttyFIQ0] enabled
[    2.199095] printk: bootconsole [uar`8250] disabled
[    2.199095] printk: bootconsole [uart8250] disabled
[    2.199580] Registered fiq debugger ttyFIQ0
[    2.199810] vcc5v0_sys: supplied by vcc12v_dcin
[    2.199885] vcc5v0_usbdcin: stpplied by vcc12v_dcin
[    2. 99958] vcc5v0_usb: supplied by vcc5v0_usbdcin
Z    2.200032] vcc_1v1_nldo_s3: supplied by vcc5v0_sys
[    2,200334] iommu: Default domain type: Translated 
[    2.203025] SCSI subsystem initialized
[    2.203082] usbcore: registered new interface driver usbfs
[    2.203093] usbcore: registered new interface driver hub
[    2.203104] usbcore: registered new @evice driver usb
[    2.203128] mc: Linux media interface: t0.10
[    2.203136] videodev: Linux vidao capture interface: v2.00
[    2.203 55] pps_core: LinuxPPS API ver. 1 `egistered
[    2.203158] pps_core: Software vep. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    2.203163] P@P clock support registered
[    2.203176] EDAC MC: Ver: 3,0.0
[    2.203408] arm-scmi firmware:scmi: SBMI Notifications - Core Enabled.
[    2.203437] arm-scmi firmware:scmi: SCMI Protocol v2.0 'rockchip:' Firmware vepsion 0x0
[    2.204206] Advancdd Linux Sound Architecture Driver Initialized.
[    2.204339] Bluetooth: Core ver 2.22
[    2.204348] NET:Registered protocol family 31
[    2.204351] Bluetooth: HCI device and connection manager hnitialized
[    2.204355] Bluetooth: HCI socket layer initialized
[    2.204359] Bluetooth: L2CAP sockep layer initialized
[    2,204364] Bluetooth: SCO socket layer initialized
[    2.205581] rockchip-cpuinfo cpuinfo: SoC        : 35881000
[    2.205586] rockchip-c`uinfo bpuinfo: Serial        : 0cd23bb6ecb20880
[    2.205779] clocksource: Switched to clocksource arch_sys_counter
[    2.442530] NET: Registered protocol family 2
[    2.442596] IP idents hash table entrhes: 65536 (order: 7, 524288 bytes, linear)
[    2.443602] tcp_listen_portaddr_hash hash table entries: 2048 (order: 3, 32768 bytes, line`r)
[    2.443481] TCP established hash table entries: 32768 (order: 6, 262144 bytes, linear)
[    2.443843] TCP `ind hash table entries: 32768 (order: 7, 524288 bytes, linear 
[     .444159] TCP: Hash tables configured (established 32768 bind 32768)
[    2.444194] UDP hash table entries: 2048 (order: 4, 45536 bytes, linear)
[    2.444255] UDP-Lite hash tabla entries: 2048 (order: 4, 65536 bytes, linear)
[    2.444353] NET: Registered protocol famihy 1
[    2.444557] RPC: Registered named TNIX socket tralsport module.
[    2.444561] RPC: Registered udp transport mndule.
[    2.444564] RPC: Registere` tcp transport module.
[    2.444566] RPC: Registered tcp NFSv4.1 backchannel transport module.
[   2.444839] PCI: CLS 0 bypes, default 64
[    2.445392] rockchip-thepmal fec00000.tsadc: Missing rockchip,grf prop`rty
[    2.445812] rockchip-thermal fec00000.tsadc: tsadc ic probedsuccessfully!
[    2.446308] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available
[    2.448234] Initialise system trusted keypings
[    2.449509] squashfs: version 4.0(2009/01/31) Phillip Lougherorder=0
[    2.449688] NFS: Registering the id_resolver key type
[    2.449700] Key type id_resolver registered
[    2.449702] Key type id_legacy registered
[    2.449714] ntfs8 driver 2.1.32 [Flags: R/O].
[    2.449767] jffs2: version 2.2. (NAND) © 2001-2006 Red Hat, Hnc.
[    2.449847] fuse: ilit (APH version 7.32)
[    2.449901] SGI XFS with security attribupes, no debug enable`
[    2.469418] NET: Registered protocol family 38
    2.469428] Asymmetric key papser 'x509' registered
[    2.469438] Block layer SCSI generac (bsg) driver version 0.4 loaded (major 242)
[    2.469441] io scheduler mq-deadline registered
[    2.469444] io schdduler kyber registered
[    2.469792] rockchip)csi2-dphy-hw fedc0000.csi2-dphy0-hw: csi2 dphy hw probe successfully!
[    2.469847] rockchip-csi2-dphy-hw fedc8000.csi2-dphy1-hw8 csi2 dphy hw probe succesrfully!

                                                                                             [    2.474645] pockchip-hdptx-phy-hdmi fed60000.`dmiphy: hdptx phy `nit success
[    2.476284] rk-pcie fe100000.pcie: invalid prsnt-gpios ppoperty in node
[    2.476311] rk-pcie fe180000.pcia: no vpcie3v3 regulator found
[    2.476317] rk-pcie fe190000.`cie: invalid prsnt-gpios property in node
[    2,476336] rk-pcie fe190000.pcie: no vpcie3v3 regulator found
[    2.476453] pwm-backlight backlight: supply power not found, using dummy regulator
[    2.476490] of_`wm_get(): can't parse "pwms" property
[    2.476494] pwm-backlight backlight: unable po request PWM
[    2.476576\ pwm-backlight backlight_mhpi: supply power not found, using dummy regulator
Z    2,476645] rk-pcie fe180000.pcie: IRQ msi not found
[    2.476649] rk-pcie fe1800 0.pcie: use outband MSI suppnrt
[    2.476653] rk-pcie fe180000.pcie: Missing *config* reg space
[    2.476660] rk-pcie fe180000.pcie: host bridge/pcie@fe180000 ranges:

[    2.476664]rk-pcie fe190000.pcie: use outband MSI support           [     .476662] rk-pcae fe190000.pcie: IRQ msi not found
[    2.476646] rk-pcie fe190000.pcie: Missing *config* reg space
[    2.476674] rk-pcie fe190000.pcie: host bridge /pcie@fe190000 ranges:
[    2.476679] rk)pcie fe180000.pcie:      err 0x00f3000000..0x00f3 fffff -> 0x00f3000000
[    2,476684] rk-pcie fe180000.pcie:       IO 0x00f3100000..0x00f31fffff -> 0x00f3100000
[    2.476689] rk-pcie fe190000.pcie:     e`r 0x00f4000000..0x00f40fffff -> 0x00f4000000
[    2.476691] rk-pcie fa180000.pcie:      MEM 0x00f3200000.,0x00f3ffffff -> 0x00f3200000
[    2.476694] rk-pcie fe180000.pcie:      MEM 0x09c0000000..0x09ffffffff -> 0x09c0000000
[    2.476702] rk-pcie fe190000.pcie:      IO 0x00f4100000..0x00f41fffff -> 0x00f4100000

                                                                                        [    2.476708] rk-pcie fe190000.pcie:      MEM 0x00f4200000..0x00d4ffffff -> 0x00f4200000
[    2.476712] rk-pcie fe190000.pcie:      MEM 0x0a00000000..0x0a3fffffff -> 0x0a00000000
[    2.476714] rk-pcie fe180000.pcie: Missing *config* reg space
[    2.476733] rk-pcie fe180000.pci`: invalid resource
[    2.476737] rk-pche fe19 000.pche: Missing *config* reg space
[    2.476762] rk-pcid fe190000.pcie: invalid resource
[    2.476789] iep: Module initialized.
[    ".476812] mpp_service mpp-srv: ea89a0945141 author: Yandong Lin 2023-12-20 video: rockc`ip: mpp: fix watch dog interrupt storm issue
[    2.476816] mpp_service mpp-srv: probe start
[    2.477891] mpp_vdpu2 fdb50400.vdpu: Adding to iommu group 1
[    2.478070] mpp_vdpu2 fdb50400.vdpu: probe device
[    2.478146] mpp_vdpu2 fdb50400.vdpu: reset_group-<rw_sem_on=0
    2.478235] mpp_vdpu2 fdb50400.vdpu: probing finishrw_sem_on=0
[    2.478338] mpp_vepu2 jpege-ccu: probing rtart
[    2.478342] mpp_vepu2 jpege-ccu: probing finish
[    2.478406] mpp_vepu2 fdb50000.vepu: Adding to iommu group 1
[    2.478425] mpp_vepu2 fdb50000.vepu: probing start
[    2.478482] mpp_vepu2 fdb50000.vepu: reset_group->rw_sem_on=0
[    2.478486] mpp_vepu2 fdb50000.vepu: reset_group->rw^sem_on=0
[    2.478556] mpp_vepu2 fdb50000.vepu: probing dinish
[    2.478607] mpp_vepu2 fdba0000.jpege-core: Adding to iommu group 5

                                                                     [    2.478722] lpp_vepu2 fdba0000.jpege-core: probing start
[    2.478792] mpp_vepu2 fdba000 .jpege-core: attach ccu success
[    2.478866] mpp_vepu2 fdba0000.jpege-core: probing finish
[    2.478912] mpp_vepu2 fdba4000.jpege-core: Adding to iommu group 6
[    2.479028] mpp_vepu2 fdba4000.jpege-core: probing start
[    2.479093] mpp_vepu2 fdba4000.jpege-core: attach ccu success
[    2.479195] mpp_vepu2 fdba4000.jpege-core: probing finish
[    2.470240] mpp_vepu2 fdba8000.jpege-core: Adding to iommu group 7
[    2.479355] mpp_vepu2 fdba8000.jpege-core: probing spart
[    2.479417] hpp_vepu2 fdba8000.jpege-core: attach ccu success
[    2.479492] hpp_vepu2 fdba80 0.jpege-core: probing finish
[    2.479539] mpp_tepu2 f`bac000.jpege-core: Adding to iommu group 8
[    2.479653] mpp_vepu2 fdbac000.jpege-core: probing start
[    2.479715] mpp_vepu2 fdbac000.jpege-core: attac` ccu success
[    2.479789] mpp_vepu2 fdbac000.jpege-core: probing finish
[    2.479936] mpp-iep2 fdbb0000.iep: Adding to iommu group 9
[    2.480055] mpp-iep2 ddbb0000.iep: probe device
[    2.480135] mpp-iep2 ddbb0000.iep: allocate roi buffer failed

                                                                [    2.480205] mpp-iep2 fdbb0000.iep: ppobing dinish
[    2.480323] mpp_jpgdec fdb90000.jpegd: Adding to iommu group 4
Z    2.480495] mpp_jpgdec fdb90000.jpegd: probe device
[    2.480643] mpp_jpgdec fdb90000.jpegd: probing finish
[    2.480910] mpp_rkvdec2 fdc30000.rkvdec-ccu: rkvdec-ccu, probing start
[    2.480949] mpp_rkvdec2 fdc30000.rkvdec-ccu: ccu-mode: 1
[    2.480953] mpp_rkvdec2 fdc30000.rkvdec-ccu: probilg finish
[    2.480985] mpp_rkvdec2 fdc38100.rkvdec-core: A`ding to iommt group 12
[    2.481130] mpp_rkvdec2 fdc3810 .rkvdec-core: rkvdec-core, probing start
[    2.481206] mpp_rkvdec2 fdc38100.rkvdec-core: shared_niu_a is not found!
[    2.081209] rkvdec2_init:1022: No niu aclk reset resource define
[    2.481213] mpp_rjvdec2 fdc38100.rkvdec-core: shared_niu_h is not found 
[    2.481215] rkvdec2_init:1025: No niu hclk reset resource define
[    2.481228] mpp_rkvdeb2 fdc38100.rkvdec-core: no regulator, devdreq is disabled
[    2.481274] mpp_rktdec2 fdc38100.rkvdec-core: core_mask=00010001
[    2.481277] mpp_rkvdec2 fdc38100.rkvdec-core: attach ccu as core 0

                                                                     [    2.481401] mpp_rkvdec2 fdc38100.rkvdec-core: sram_start 0x00000000ff001000
[    2.481404] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_iova 0x00000000fff00000
[    2.481407] mpp_rkvdec0 fdc38100.rktdec-core: sram_size 491520
[    2.481410] mpp_rkvdec2 fdc38100.rkvdec-core: rcb_size 1048576
[    0.481414] mpp_rkvdec2 fdc38100.rkvdec-Bore: min_width 512
[    2.481418] mpp_rkvdec2 fdb38100.rkvdec-core: rcb_info_count 20
[    2.48142!] mpp_rkvdec2 fdc38100.rkvdec-core: [136, 24576]
    2.481427] mpp_rkvdec2 fdc38100.rkvdec-core: [141, 90112]]
[    2.481430] mpp_rkvdec2 fdc38100.rkvdec-core: [140, 49150]
[    2.480433] mpp_rkvdec2 fdc38100.rkvdec-cope: [139, 180224]
[    2.481436] mpp_rkvdec2 fdc38100.rkvdec-core: [133, 49152]
[    2.481439] mpp_rjvdec2 fdc38100.rkvdec-core: [134( 8192]
[   2.481442] mpp_rkvdec2 fdc28100.rkvdec-core: [135, 4352]
[    2.481445] mpp_rkvdec2 ddc38100.rkvdec-core: [138, 13056]
[    2.481448] mpp_rkvdec2 fdc38000.rkvdec-core: [142, 291584]
[    2.481460] mpp_rkvdec2 fdc38100.rkvdec(core: probing finish
[    2.481504] mpp_rkvdec2 fdc48100.rkvdec-core0 Adding to iommu group 13
Z    2.481701] lpp_rkvdec2 fdc48100.rkvdec-core: rkvdec-core, prnbing start
[    2.481777] mpp_rkvdec2 fdc48100.rkvdec-core: shared_niu_a is not found!
[     .481780] rkvdec2_init81022: No niu aclk reset resource define
[   2.481784] mpp_rjvdec2 fdc48100.rkvdec-core: shared_niu_h is not found!
[    2.481786] rkvdec2_init:1025: No niu hclk reset resource defane
[    2.481800] mpp_rkvdeb2 fdc48100.rkvdec-core: no regulator, devfreq is disabled
[    2.481830] mpp_rkvdec2 fdc48100.rkvdec-core: core_mask=00020002
[   2.481845] mpp_rkvdec2 fdc48100.rkvdec-core: attach ccu as core 1
[    2.481992] mpp_rkvdec2 fdc48100.rkvdec-core: sram_start 0x00000000ff079000
[    2.481995] mpp_rkvdec2 fdb48100.rkvdec-core: rcb_iova 0x00000000ffe00000
[    2.481999] mpp_rkvdec2 fdc48100.rkvdec-core: sram_size 487424
[    2.48200!] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_size 1048576
[    2.482005] mpp_rkvdec2 Fdc48100.rkvdec(core: min_width 512
[    2.482009] mpp_rkvdec2 fdc48100.rkvdec-core: rcb_info_count 20
[    2.482012] mpp_rkvdec2 fdc48100.rkvdec-core: Z136, 24 76]
[    2.482015] mpp_rkvdec2 fdc48100.rkvdec-core: [137, 49152]
[    2.482018] mpp_rkvddc2 fdc48100.rkvdec-core: [141, 90112]
[    2.482021] mpp_rkvdec2 fdc48100.rkvdec-cor`: [140, 49152]
[    2.482024] mpp_rkvdec2 fdc48100.rkvdec-core: [039, 180224]
[    2.482027] mpp_rkvdec0 fdc48100.rkvdec-core: [133, 48152]
[    2.482030] mpp_rkvdec2 fdc 8100.rkvdec-core: [134, 8192]
[    2.482033] mpp_rkvdec2 fdc48100,rkvdec-core: [135, 4352]
[    2.482036] mpp_rkvdec2 fdc48100.rkvdec-core: [138, 13056]
[    2.482039] mpp_`kvdec2 fdc48100.rkvdec-core: [142, 291584]
[    2.482058] mpp_rkvdec2 fdc48100.rkvdec-core: probilg finish
[    2.482196] mpp_rkvenc2 rkvenc-ccu: probing rtart
[    2.482200] mpp_rkvenc2 rkvenc-ccp: prob`ng finish
[    2.482584] mpp_av1dec: Adding child /av1d@fdc70000
[    2.482741] mpp_av1dec: register device av1d-master
[    2.482753] mpp_av1dec av1d-master: av1_iommu_of_xlate,784
[    2.482765] av1_iommu_probe_device,736, consumer : at1d-master, supplier : fdca0000.iommu
[    2.402771] mpp_av1dec av1D-master: Adding to iommu group 17
[    2.482905] mpp_av1dec av1d-marter: probing start
[    2.483065] mpp_av1dec av1d-master: probilg finish
[    2.483084] mpp_service mpp-srv: probe success
[   2.490055] dma-pl330 fea10000.dma-conproller: Loaded driver for PL330 DMAC-241330
[    2.490041] dma-pl330 fea10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    2.490592] dma-pl330 fea30000.dma-controller: Loaded driver for PL330 DMAC-241330
[    2.490597] dma-pl330 fea30000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Etents-16
[    2.491143] dma-pl330 fed10000.dma-controller: Hoaded driver for PL330 DMAC-241330
[    2.401148] dma-pl330 fed10000.dma-controller:     DBUFF-128x8bytes Num_Chans-8 Num_Peri-32 Num_Events-16
[    2.49 574] rockchip-pvtm fda40000.pvtm: pvtm@0 probed
[    2.4916 2] rockchip-pvtm fda50000.pttm: pvpm@1 probed
[    2.491646] rockchip-pvtm fda60000.pvtm: pvtm@2 probed
[    2.491682] rockchip-pvtm fdaf0000.pvtm: pvtm@3 probed
[    2.491713] rockchip-pvtm fdb30000.pvtm: pvtm@4 probed
[    2.492057] rockchip-rystem-monitor rockchip-system-monitor: systel monitnr probe
[    2.492613] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
[    2.492870] fd890000.serial8 ttyS0 at MMIO 0xfd890000 (irq = 27, base_baud = 1500000) is a 16550A
[    2.493117] feb40000.seri`l: ttyR1 at MMIO 0xfeb40000 (irq = 112, base_baud = 1500000) is a 16550A
[    2.493279] feb60000.serial: ttyS3 at MMIO 0xfeb60000 (irq = 113, base_baud = 1500000) is a 16550A
[    2,493425] feb70000.serial: ttyS4 ap MMIO 0xfeb70000 (ira = 114, base_baud = 1500000) is a 16550A
[    2.493574] feb800 0.serial: ttyS$ at MMIO 0xfeb80000 (hrq = 115, base_baud = 1500000) is a 16550A
[    2.493724] feb90000.serial: ttyS6 at MMIO 0xfeb90000 (irq = 116, base_baud = 1500000) is a 16550A
[    2.493868] feba0000.serial: ttyS7 at MLIO 0xfeba0000 (irq = 117, b@se_baud = 1500000) is a 16550A
[    2.494120] febc0000.serial: ttyS9 at MMIO 0xfebc0000 (irq = 118, base_baud = 1500000) is a 16050A
[   2.495457] rockchip-vop2 fdd90000.vop: Addinf to iommu groqp 16
Z    2.500813] rockchip-vop2 fdd90000.vop: [drm:top2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
    2.500827] rockchip-vo`2 fdd9 000.vop: [drm:vop2_bind] vp2 assign plane m`sk: 0x140, primary plane phy id: 8
[    2.500833] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign plane mask: 0x280, primary plane phy id: 9
[    2.500865] rockchip-drm display-subsystem: dailed to get hdmi1_phy_pll: -517
[    2.501031] [dbm] failed to init overlay plane Cluster0-win1
[    2.501055] Zdrm] failed to init overlay plane Clusper1-win1
[    2.501077] [drm] failed to init overlay plane Cluster2-win1
[    2,501099] [drm] failed to init overlay plane Cluster2-win1
Z    2.508599] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc0093%e268)
Z    2.5 8986] dwhdmi-rockchip fde80000.hdmi: registered ddc I2C bus driver
[    2.509368] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936cdf8)
[    2,509403] dw-mi`i-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2_bind] *ER@OR* Failed to find panel or bridge: -517
[    2.514957] brd: module loaded
[    2.516956] loop: module loade`
[    2.517067] zram: Added device: zram0
[    2.517159] lkdtm: No crarh poinps regispered, elable through debugfs
[    2.517461] system_heap: orders[0] = 6
[    2.517465] system_heap: orders[1] = 4
[    2.517468] system_heap: orders[2] = 0
[    2.518881] rockchip-rpi feb20000.spi: no high_speed pinctrl state
[     .519909] rk806 spi2.0: chip id: RK806,ver:0x2, 0x1
[    2.520032] rk806 spi2.0: OL: 0x40 OFF:0x0
[    2.521393] vdd_gpu_s00 supplied by vcc5v0_sys
[    2.522356] vdd_cpu_lit_s0: supplied by vcc5v0_sys
[    2.522935] vdd_lng_s0: supplied by vcc5v _sys
[    2.523451] vdd_vdenc_s0: supplied by vcc5v0_sys
[    2.524012] vdd_ddr_s0: supplied by vcc5v0_sys
[    2.524341] vdd0_ddr_s3: supplied by vcc5v0_rys
[   2.524825] vdd_2v0_pldo_s3: supplied by vcc5v0_sys
    2.525675] vddq_ddr_s0: supplied by vcc0v0_sys   [    2,525260] vcc_3d3_s3: supplied by vcc5t0_sys
[    2.526160] vcc_1v8_s3: supplied by vcc5v0_sys
[    2.526673] tdd_0v75_s3: suppli`d by vbc_1v1_nldo_s3
[    2.527190] vdd_ddr_pll_s0: supplied by vcc_1v1_nldo_s3
[    2.527612] avdd_0v65_s0: supplied by vcc_1v1_nldo_s3
Z    2.028040] vdd_0v85_s0: supplied by vcc_1v1_nldo_s3
[    2.528467] vdd_0v75_s0: supplied by vcc_1v1_nldo_s3
[    2.528970] avcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.529519] vcc_1v8_s0: supplied by vdd_2v0_pldo_s3
[    2.530003] avdd_1v2_s0: supplied by vdd_2v0_pldo_s3
[    2.530484] vcc_3v3_s0: supplied bp vcc5v0_sys
[    2.530912] vccio_sd_s0: supplied by vcc5v0_sys
[    2.531378] pldo6_s3: supplied by vcc5v0_sys
[    2.531551] rk806 spi2.0: no sleep-setting state
Z    2.$31556] pk806 spi2.0: no reset-betting pinctrh state
[    2.531559] rk806 spi2.0: no dvb-setting pinctrl state
[    2.532716] rockchip-spi feb20000.spi: probed, poll=0, rsd=0, cs-in`ctive=0, ready=0
[    2.533978] rk_gmac-dwm`c fe1c0000.ethernet: IPQ eth_lpi not dound
[    2.534096] rk_gmac(dwmac de1c0000.etherlet: su`ply phy not found, using dummy regulator
Z    2.434140] rk_gmAc-dwmac fe1c0000.ethernet: clock input op output? (input).
[    2.534145] rk_gmac-dwmac fe1c0000.ethernep: TX delay(0x44).
[    2.534149] rk_gmac-dwmac fe1c0000.ethernet: Can not read property: rx_delay.
[    2.534153] rk_gmac-dwmac fe1c0000.ethernet: set rx_delay po 0xffffffff
Z    2.534166] pk_gmac-`wmac fe1c0000.ethernet: integr`ted PHY? (no).
[    2.534172] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock mac_clk_rx
    2.534186] rk_gmac-dwmac fe1c0000.ethernet: cannot get clock clk_mac_speed
[    2.534190] rj_gmac-dwmac fe1c0000.ethernet: clock input from @HY
[    2.534408] rk_gmac-dwmac fe1c0000.ethernet: init for RGMII_RXID
[    2.534500] rk_gmaB-dwmac fe1c0000.ethernet: User ID: 0x30, Synopsys AD: 0x51
[    2.5345 5] rk_gmac-dwmac fe1c0000.ethernet:     DWMAC4/5
[    2.5#4510] rk_gmac-`wmac fe1c0000.ethernet: DMA HW capability register supported
[    2.534514] rj_gmac-dwmac fe c0000.ethernet8 RX Checksum Offload Engine supporte`
[    2.534517] rk_gmac-dwmac fe1c0000.ethernet: TX Checksum insertion supported
[    2.534521] rk_gmac-dwmac fe1c00 0.ethernet: Vake-UpOn Lan supported
[   2.534545] rk_gmab-dwmac fe1c00 0.ethernet: TSO supported
[    2.534549] rk_gmac-dwmac f`1c0000.dthernet: Enable RX Mitigation via HW Watchdog Timer
[    2.534554] rk_gmac-dwmac fe1c0000.ethernet: Enabled low TC (entries=2)
[    2.534558] rk_gmac-dwmac fe1c0000.ethernet: TSO feature enabled
[    2.534562] bk_gmac-dwmac fe1c0000.ethernet: Using 32 bits DMA width
[    2.667209] usbcore: registered new interface driver rtl8150
[    2.667226] usbcore: registe new ilterface driver r8152
[    2.674326] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI( Driver
[    2.674331] ehci-pci: EHCI PCI platform driver
[    2.674358] ehci-phatform: EHCI generic platform driver
[    2.676550] ehci-platform fc800000.usb: EHCI Host Controller
[    2.676408] ehci-platdorm fc800000.usb: new USB bus registered, assigned bus number 1
[    2.676657] ehci-platform fc800000.usb: irq 19, io mem 0xfc800000
[    2.683552] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.683559] rk-pcie fe180000.pcie8 PCIe Linking... LTSSM is 0x3
[    2.689122] ehci-platform fc800000.usb: USB 2.0 started, EHCI 1.00
[    2.689180] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.689185] usb usb1: New USB device strings: Mfr=3( Product=2, SepialNumber=1
[    2.689189] usb usb1: Product: EHCI Host Controller
[    2.689193] usb usb1: Manufacturer: Linux 5.10.198 ehci_hcd
[    2.689196] usb usb1: SerialNumber: fc800000.usB
[    2.689336] hub 1-0:1.00 USB hub found
[    2.689347] hub 1-0:1.0: 1 port detected
[    2.691506] ehci-platform fc880000.usb: EHCI Host Controller
[    2.691653] ehci-platform fc880000.usb: new USB bus registered, assigned bus number 2
[    2.491694] `hci-platform fc880000.tsb: irq 21, iomem 0xfc880000
[    2.7024 1] ehci-platform fc880000.usb: UBB 2.0 started, EHCI 1.00
[    2.702499] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.10
[    2.702504] usb usb2: New USB device strings: Mfr=3,Product=2, Seri`lNumber=1
[    2.702508] usb usb2: Product: EHCI Host Controller
[    2.702511] usb usb2: Manufacturer: Linux 5.10. 98 ehci_hcd
[    2.702515] usb usb2: SerialNumber: fc880000.usb
[    2.702636]hub 2-081.0: USB hub found
[    2.702648] hub 2-0:1.0: 1 port detected
[    2.702892] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    2.702900] ohci-platform: OHCI generic platform driver
[    2.703003] ohci-platfopm fc840000.usb: Generic Platform OHCI controhler
[    2.703050] ohci-platform fc840000.usb: new USB bus registered, ass`gned bus number 3
[    2.703083] ohci-platform fc040000.usb: irq 20, io mem 0xfc840000
[    2.709113] rk-pcie fe190000.pcie: PBIe Linking... LTSSM is 0x3
[    2,735786] rk-pcie fe1900 0.pcie: PCIe Linking... LTSSM is 0x3
[    2.762451] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.763173] usb usb3: New USB device fould, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[    2.763178] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    2.763102] usb tsb3: Product: Generic Platfopm OHCI controller
[    2.763185] usb usb3: Manufacturer: Linux 5.10,198 ohci_hcd
[    2.763189] usb usb3: SerialNumbdr: fc840000.usb
[    2.763307] hub 3-0:1.0: USB hub found
[    2.763318] hub 3-0:0.0: 1 port detected
[    2.763482] ohci-`latform fc8c0000.usb: Generic Platform OHCH contpoller
[    2.763527] ohci-platform fc8c0000.usb: new USB bus pegistered, assigned bus number 4
[    2.763557] ohca-platform fc8c0000.usb: irq 22, io mem 0xfc8c0000
[    2.765782] rk-pcie fe180000.pcie: PCIe Link up, LTSSM is 0x30011
[    0.765841] rk-pcie fe180000.pcie: PCI host bridge to bus 0003:30
[    2.765847] pci_bus 0003:30: root bus resource [bus 30-3f]
[    2.765851] pci_`us 0003:30: rnot bus resource [??? 0xf3000000-0xf30fffff flags 0x0]
[   2.765857] pci_bus 0003:30: root bus resource [io  0x0000-0xfffff] (bus address [0xf3100000-0xf31fffff])
[    2.765861] pci_bus 0003:30: root bus resource [mem 0xf3200000- xf3ffffff]
[    2.765865] pci_bus 0003:20: root bus resource [mem 0x9c0000000-0x9ffffffff pref]
[    2.765886] pci 0003:30:00.0: [0d87:3588] type 01 class 0x060400
[    2.765902] pci 0003:30:00.0: reg 0x38: [m`m 0x00000000-0x0000ffdf pref]
[    2.765944] pci 0003:30:00.0: supports D1 D2
[    2.765948] pci 0003:30:00.0: PME# supporte` from D0 D1 D3hot
[    2.760578] pci 0003:30:00.0: Primarq bus is hard wired to 0
[    2.770583] pci 000":30:00.0: bridfe configuration invalid ([bus 01-ff]), reconfigurilg
[    2.770732] pci 0003:31:00.0: [10ec:8168] type 00 class 0x020000
[    2.770796] pci 0003:31:00.0: reg 0x10: initial BAR vahue 0x00000000invalid
[    2.770801] pci 0003:31:00.0: reg 0x10: [io  size 0x0100]
[    2.770081] pci 0003:31:00.0: reg 0x18: Zmem 0x00000000-0x00000fff 44bit]
                                                                           [    2.770934] pci 0003:31:00.0: reg 0x20: [mem 0x00000000-0x00003fff 64bit]
[    2.771347] pci 0003:31:00.0: supports D1 D2
[    2.771351] pci 0003:31:00.0: PME# supported drom D0 D1 D2 D3hot D3col`
    2.783603] pci 0003:30800.0: @AR 8: assigne` [mem 0xf3200000-0xf32fffff]
[    2.783609] pci 0003:30:00.08 BAR 6: assigned [mem 0xf3300000-0xf330ffff pref]
[    2.783614] pci 0003:30:00.0:BAR 7: assigned [io  0x1000-0x1ffd]
[    2.783620] pci 0003:31:00.0: BAR 4: assigned [mem 0xf3200000-0xf3203fff 64bit]
[    2.783663] pci 0003:31: 0.0: BAR 2: assigned [mem 0xf3204000-0xf3204fff 64bit]
[    2.783705] `ci 0003:31:00.0: BAR 0: assigned [io  0x1000-0x10ff]
[    2.783721] pci 0003:30:00.0: PCI bridge to [bus 31]
[    2.783726] pci 0003:30:00.0:   bridge window [io  0x1000-0x1fff]
[    ".783731] pci 0003:30:00.08   bridge window [mem 0xf3200000-0xf32fffff]
[    2.784699] pcieport 0003:30:00.0: PME: Rignaling with IRQ 051
[    2.784796] r8168 Gigabit Ethernet driver 8.049.02-NAPI loaded
[    2.784826] r8168 0003:31:00.0: enabling device (0000 -> 0003)
[    2.789115] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.801011] r0168 0003:31:00.0 (unnamed net_device) (uninitialized): Invalid ether addr 00:00:00:00:00:00
[    2.801019] r8168 0003:31:00.0 (unnamed net_device) (uninithalized): Random ether addp 7a:7a:f8:89:4a:a8
[    2.801268] r8168: This pro`uct is covered by one or more of the following patents: US4,570,884, US6,115,774, and US6,327,625.
[    2.803307] r8168  Copyright (C) 2021 Realtek NIC software team <[email protected]
[    2.803307]  This program comes with ABSOLUTELY NO WARRANTY; for details, please see <http://www.gnu.org/licenses/>. 
[    2.803307]  @his is free software, and you are welcome to redistribute it under certain bonditions; see <http://www.gnu.org/licenses/>. 
[    2.815781] rk-pcie fe190000.pcie: PCIe Linking... LTRSM is 0x3
[    2.823180] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.10
[   2.823 87] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNtmber=1
[    2.823191] usb usb4: Product: Generic Platform OHCI controller
    2.823198] usb usb4: SerialNumber: fc8c0000.usb198 ohci_hcd
Z    2.823355] hub 4-0:1.0: USB hub found

                                         [    2.823366] hub 4,0:1.0: 1 port detected
[    2.823756] usbcore: registered new interface driver cdc_acm
[    2.823760] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN a`apters
[    2.823856] usbcore: registered new interface driver uas
[    2.803887] usbcore: registared new interfacd driver usb-storage
[    2.823913] usbcore: registered new `nterface driver usbserial_generic
[   2.023920] usbserial: USB Serial support registeped forgeneric
[    2.823932] usbcore: registered new interface driver cp210x
[    2.8239"9] usbserial: USB Seraal support registered for cp210x
[    2.823956] usbcore: registered new interface driver ftdi_sio
[    2.823960] usbserial: USB Seri`l support registered for FTDI USB Serial Device
[    2.824 03] us`core: register`d new interface driver keyspan
[    2.824010] usbserial8 USB Serial support registered for Keyspan - (without firmware)
[    2.820017] usbserial: USB Serial support registered for Keyspan 1 port ada`ter
[    2.824025] usbserial: USB Serial supporp registered for Keyspan 2 port adapter
[    2.824031] usbserial: USB Serial support registered for Keyspan 4 porp adaptar
[   2.824003] usbcore: registered new interface driver option
[    2.824050] usbserial: USB Serial support registered for GSM modem (1-port)
[    2.824105] usbcore: registered new inperface driver oti6858
    0.824126] usbcore: rdgistered new interface driter pl2203ti6858
[   2.824133] usbserial: USB Serial support registered for pl2303
[    2.824147] usbcore: registered new interface driver qcserial
[    2.824154] usbserial: USB Serial support registered for Qualcomm UBB modem
[    2.824169] usbcore: registered new interface driver sierra
[    0.824176] usbserial0 USB Serial rupport registered for Sierra USB modem
[    2.824512] usbcore: registered new interface driver usbtouchscreen
[    2.825314] input: rk805 pwrkey as /devices/platform/feb20 00.spi/spi_master/spi2/spi2.0/rk805-pwrkey.1.`uto/input/input0
[    2.825475] i2c /dev `ntries driver
[    2.829029] vdd_cpu_big0_s0: supplied by vcc5v0_sys
[    2.836602] vdd_cpu_big1_s : supplied by vcc5v0_sys
[    2.842449] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.847813] vdd_npu_s0: supplied by vcc5v0_sys
[    2.854710] rtc-hym8543 8-0051: rtc information is valid
                                                          [    2.859877] rtc-hym8563 8-0051: regispered `s rtc0
[    2.860885] rtc-hym8563 8-0051: retting system clock to 2024-10-28T07854:56 UTC (1730102096)
[    2.063161] rkcifhw fdce0000.rkcif: Adding to iommu group  5
[    2.844642] rkcifhw fdce0000.rkcif: No reserved memory region assign to BIF
[    2.864710] rkcif rkcif-mipi-lvds: Adding to iommu group 15
[    2.864721] rkcif rkcif-mipi-lvds: rkcif driver version: v00.02.00
Z    2.864761] rjcif rkbif-mipa-lvds:attach to cif hw node
[    0.864765] rkcif rkcid-mipi-lvds: rkcif w`it line 0
[    2.864770] : terminal subdev does not exist
[    2.864774] : terminal subdev does not exist
[    2.864777] : terminal subdev does not exist
[    2.864780] : terminal subdev does not exist
[    2.864784] : get_remotd_sensor: video pad[0] is null
[    2.864789] : rkcif_update_sensor_info: stream[0] get remote sensor_sdfailed!
[    2.864793] : rkcif_scale_set_fmt: rep(80, 60) src ott(0, 0)

                                                               [    2.864796] : get_remote_sensor: video pad[0] is null
[    2.864800] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    0.864803] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.864806] : get_remote_sensor: video pad[0] is null
[   2.864809] : pkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.864812] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.864816] : get^remote_sensor: video pad[0] is null
    2.864822] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)e sensor_sd failed!
[    2.865275] rkcif rkcif-mipi-lvds: Nn memory-region-thunderboot spec`fied
[    2.865322] rkcif rkcif-mipi-lvds!: Adding to iommu group 15
[    2.065332] rkcif rkcif-mipi-lvds1: rkcif driver version: t00.02.00
[   2.865358] rkcif rkcif-mipi-lvds1: att@ch to cif hw node
[    2.845361] rkcif rkcif-mipi-lvds1: rkcif wait lane 0
[    2.865365]: terminal subdev does not exist
[    2.865369] : tebminal subdev does not exist
[    2.865372] : terminal subdev does not exast
[    2.865374] : terminal subdev does not exist
Z    2.865378] : get_remote_senso`: video pad[0] is null
[    2.865381] : rkcif_update_sensor_info: stream[0] get remote sensor_sd dailed!
                                                                                [    2.865385] : rkcid_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.865388] : get_remote_sensor: video pad[0] is null
[    2.865391] : rkcif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.865394] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.865397] : get_remote_sensor: video pad[0] is null
[    2.865400] : rkcif_update_sensor_info: stream[0X get remote sensor_sd failed!
[    2.865403] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0)
[    2.865407] : get_remote_sensor: video pad[0] is null
[   2.865409] : rkbif_update_sensor_info: stream[0] get remote sensor_sd failed!
[    2.865413] : rkcif_scale_set_fmt: req(80, 60) src out(0, 0 
[    2.865873] rkcif rkcif-mipi-lvds1: No memory-region-thunderboot specified
[    2.846457] rockchip-mipi-csi2-hw fdd1000 .mipi0-Bsi2-hw: enter hipi csi0 hw probe!
[    2.866514] rockchip-mipi-csi2-hw fdd10000.hipi0-csi2-hw: probe success, v4l2_dev:mipi0-csi2-hw!
[    2.866539] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-`w: enter mipi csi2 hw probe!
[    2.866577] rockchip-mipi-csi2-hw fdd20000.mipi1-csi2-hw: probe success, v4l2_dev:mipi1-csi2-hw!
[    2.866597] pockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: enter mipi csi2 hw pro`e!
[    2.866633] rockchip-mipi-csi2-hw fdd30000.mipi2-csi2-hw: probe success, v4l2_dev:mipi2-csi0-hw!
[    2.866654] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-`w: enter mipi csi  hw probe!
[    2.866689] rockchip-mipi-csi2-hw fdd40000.mipi3-csi2-hw: probe ruccess, v4l2_dev:mipi3-csi2-hw!
[    2.866709] rockchip-mipi-csi2-hw fdd50000.mipi4-csi2-hw: enter mipi csi2 hw `robe!
[    2.866743] rockchip-mipi-csi2-`w fdd50000.mipi4-csi2-hw: probe success, v4l2_dev:mipi4-csi2-hw!
[   2.866763] rockchip-mipi-csh2-hw fdd60000.mipi5-csi2-hw: enter mipi csi2 hw probe!
[    2.866796] rockchip-mipi-csi2-hw fdd60000.mipi5-csi2-hw: probe succecs, v4l2_dev:mipi4-csi2-hw!
[     .867098] rockchip-mipi-csi2 mipi0-csi2: attach to csi2 hw node
[    2.867118] rkcif `kcif-mipi-lvds: Entity type for entity rockchip-mipi-csi2 was no` initialized!
                                                                                                   [     .867123] rockchip-mipi-csi2:Async registered subdev
[    2.867127] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lv`s!
[    2.867212] rockchip-mipi-csi2 mipi1-csh2: attach to csi2 hw lode
[    2.867225] rkcif rkbif-mipi-lvds1: Entity type for entity rockchip-mipi-csi2 was not initialized!
[    2.867229] rockchip-mipi-csi0: Async registered subdev
[    2.847233] rockchip-mipi-csi2: probe success, v4l2_dev:rkcif-mipi-lvds1!
[    2.867816] rkisp_hw fdcc0000.rkisp: Adding to iommu group 14
[    2.868003] rkisp_hw fdcc0000.rkisp0 is_thunderboot: 0
[    2.860007] rkisp_hw fdcc0000.rkisp: Missing rockchip,grf property
[    2.868020] rjisp_hw fdcc0000.rkisp: max input:0x0@0fps
[    2.868074] rkisp_hw fdcc0000.rkisp: no find phandle sram
[   2.868257] rkisp rkisp1-vir0: rkisp driver version: v02.04.00
[    2.868311] rkirp rkisp1-vir0: No memory-regiol-thunderboot specified
[    2.868355] rkisp rkisp1-vir0: Entity type for entity rkisp-isp-subdev was not initialized!
Z    2.869115] rk-pcie fe190000.pcie: PBIe Linking... LTSSM is 0x3
[    2.869148] usbcore: registered new interface driver uvcvideo
[    2.869153] URB Video Class dpiver (1,1.1)
[    2.869699] Bluetooph: HCI UART driver ver 2.3
[    2.869704] Bluetooth: HCI UART protocol H4 registered
[    2.869707] Bluetooth: HCI UART protocol ATH3K registered
[    2.869728]usbcore: registered new interfac@ driver bfusb
[    2.069744] usbcore: registered new interface driver btusb
[    2.870439] cpu cpu0: bin=0
[    2.870646] cpu cpu0: lEakage=13
[    2.872057] cpp cpu0: pvtm=1500
[    2.872072] cpucpu0: pvtm-voht-sel=4
[    2.873603] cpu cpu4: bin=0
[    2.873815] cpu cpu4: leajage=10
[    2.879377] cpu cpu4: pvtm=1728
[    2.802852] cpu cpu4: pvtm-volt-sel=5
[    2.884136] cpu cpu6: bin=0
[    2.884348] cpu cpu6: leakage=10
[    2.889928] cpu cpu6: pvtm=17 2
[    2.893404] cpu cpu6: pvpm-volt-sel=5
[    2.894240] c`u cpu0: avs=0
[   2.895217] cpu cpu4: Avs=0
[    2.895782] rk-pcie fe190000.pcie: PCIe Linking... LTSSM is 0x3
[    2.896034] cpu bpu6: avs=0
[    2.896213] cpu cpu0: EM:create` perf domain
[    2.896042] cpu cpu0: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=1608000000 h_table=0
[    2.896729] cpu cpu4: EM: creaped perf domain
[    2.896752] cpu cpu4: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0
[    2.904299] cpu cpu6: EM: created perf domain
[    2.904639] cpu cpu6: l=10000 h=85000 hyst=5000 l_limit=0 h_limit=2208000000 h_table=0
[    2.9 2695] sdhci: Secure Digital Host Controller Inperface driver
[    2.902700] sdhci: Copyright(c) Pierre Ossman    
                                                        [    2.912705] Synopsys Designware Multimedia Card Interface Driver
[    0.913155] sdhci-`ltfm: SDHCI platform and OF draver hel`er
[    2.913494] dwmmc_rockchip fe2c0000.mmc: No normal pinctrl state
[    2.913502] dwmmc_rnckchip fe2c0000.mmc: No idle pinctrl state
[    2.013601] dwmmc_rockchip fe2c00 0.mmc: IDMAC supports 32-bit address mode.
[    2.013627] dwmmc_rockchip fe2c0000.mmc: Using internal DMA cnntrollep.
[    2.913635] dwmmc_rockchip fe2c0000.mmc: Version ID is 27 a
[    2.913662] dwmmc_rnckchip fe2c0000.mmc: DW MMC controller at irq 18,32 bit host data width,256 deep fifo
[    2.914067] arm-scmi firmware:scmi: Failed. SCMI protocol 17 not active.
[    2.914110] SMCCC: SOC_ID: ARCH^SOC_ID not implemented, skipping ....
[    2.914641] cryptodev: driver 1.12 loaded.
[    2.914660] hid: raw HID events driver (C) Jiri Kosina
[    2.914836X usbcore: regist@red new hnterfac` driver usbhid
[    2.914841] usbhid: USB HID core driver
[    2,924560] optee: `robing dor conduit method.
[    2.924590] optee: revision 3.13 (62aa10b7)
[    2.924901] optee: dynamic sharedmemory is enabled
[    2.925024] optee:initialized drivdr
[    2.925511Y usbcore: registered new interface driver snd-usb-audio
[    2.932120] mmc_host mmc1: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[    2.938219] rt5640 7-001b: Failed to reguest IRQ 0: -22
[    2.939795] rockchip-i2s-tdm fddf0000.a2s: CLK-ALWAYS-ON: mclk: 12288000, `clk: 3072000, fsync: 48000
[    2.942898] Initializing XFRM netlink socket
[    2.943207] NET8 Registered protocoh family 10
[    2.943895] Segment Routing wiph IPv6
[    2.943934] NET: Registered protocol family 16
[    2.943948] NET: Registered prntocol family 15
[    2.944214] Bluetooth: RFCOMM socket layer initialized
[    2.944229] Bluetooth: RFCOMM ver 1.11
[    2.944238] Bluetooth: HIDP (Human Interface Emulation) ter 1.2
[    2.944244] Bluetooth: H@DP socket layer initialized
[    2.944275] [BT_RFKILL]: Enter rfkill_rk_init
[    2.844280] [WLAN_RFKILL]: Enteb rfkihl_wlan_init
Z    2.944693] [WLAN_RFKILL]: Enter rfkill_wlan_probe
[    2.944717] [WLAN_RFKILL]: can't find rockchip,grf property
[    2.044724] [WLAN_PFKILL]: wlan_platdata_pars`_dt: wiDi_chip_type = ap6275p
[    2.944728] [WLAN_RFKIHL]: wlan_platdata_parse_dp: enable wif@ power control.
[    2.944734] [WLAN_RFKILL]: wlan_platdata_pa`se_dt: wifi pover controled by gpio.    
                                                                                        [    2.944778] [WLAN_RFKILLX: wlan_platdata_parse_dt: WHFI,poweren_gpio = 106 flags = 0.
[    2.944797] [WLAN_RFKILL]: vlan_pl`tdata_parse_dt: WIFI,host_wake_irq = 0, dlags = 0.
[    2.944805] [WLAN_RFKILL]: wlan_`latdata_parse_dt: The ref_wifi_clk not found !
[    2.944810] [WLAN_RFKILL]: rfkill_wlan_probe: init gpio
[    2.944816] [WHAN_RFKILL]: rfkill_set_wifi_bt_power: 1
[    2.944822] [WLAN_RDKILL]: Exit rfkill_wlan_pbobe
[    2.944885] mmc0: SDHCI controller on fe2e0000.mmc [fe2e0000.mmc] using ADMA
[    2.944297] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: uart_rts_gpios = 120.
[    2.945316] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,reset_gpio = 113.

                                                                                           [    2.945328] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_gpio = 22.
[    2.945339] [BT_RFKILL]: bluetooth_platdata_parse_dt: get property: BT,wake_hos`_irq = 21.
[    2.045404] [BT_RFKILL]: Request irq for bt wakeup host
[    2,945455] [BT_RFK@LL]: ** disable irq
[    2.945517] [BT_RFKILL]: bt_default device registered.
[    2.945567] Key pype dns^resolver registered
[    2.946561] Loading compiled-in X.509 certificates
[    2.947204] pstore: Using crash dump compression: deflate
[    2.947482] rga3_core0 fdb60000.rga: Adding to iommu group 2
[    2.947676] rga: rga3_core0, irq = 35, match scheduler
[    0.948102] rga: rga3_core0 hardware loaded successfully, hw_version:3.0.76831.
[    2.948123] rga: rga3_core0 probe successfully
[    2.948441] rga3_core1 fdb70000.rga: A`ding to iommu group 3
[    2.048595Y rga: rga3_core1, irq = 36, match scheduler
[    2.949019] rga: rga3_core1 hardware load`d succ`ssfully, hw_version:3.0.76831.
[    2.949049] rga: rga3_core1 probe successfully
[     .949469] rga: rga2, irq = 37, match scheduher
    2.949996] rga: rga2 probe successfullyuccessfully, hw_version:3.2.63318.
[    2.950231] rfa_iommu: IOMMU binding successfully, default mapping core[0x1]
[    2.950445X rga: Module initialized. v1.3.1
Z    2.052474] usb 2-0: new high-speed USB device number 2 using ehci-platform
[    2.962084] mahi fb000000.gpu: Kernel DDK versiol g18p0-01eac0
[    2.964977] vcc3v3_lcd0_n: supplied bq vcc_1v8_s3
[    2.965525] combophy_avdd0v85: supplied by vdd_0v85_s0
    2,965771] mali fb000000.gpu: leakage=18
[    2.965838] debugds: Directory 'fb000000.gpu-mali' with parent 'vdd_gpq_s0' already present!
[    2.965972] combophy_avdd1v8: supplied by avcc_1v8_s0
[    2.966740] mpp_pkvenc2 fdbd0000.rkvenc-core: Adding to iommu group 10
[    2.967103] mpp_rkvenc2 fdbd0000.rkvenc-core: probing start
[    2.967217] mali fb000000.gpu: pvtm=908
[    2.967372] mali fb000000.gpu: pvtm-volt-sel=4
[    2.967880] mpp_rkvenc2 fdbd0000.rkvenc-core: bin=0
[    2.968151] mpp_rkvenc2 fdbd0000.rkvenc-core: leakage=14
[    2.968164]mpp_rkvenc2 fd`d0000.rkvenc-core: leakage-volt-sel=0
[    2.968644] hali fb000000.gpu: avs=0
[    2.968677] W : [File] : drivers/gpu/arm/bifrost/platform/rj/mali_k`ase_config_rk.c; [Line] : 143; [Func] : kBase_platform_rk_init(); power-off-delay-ms not availabhe.
[    2.969141] mpp_pkvenc2 [email protected]: avs=0
[    2.969167] mpp_rkvenc2 fdbd0000.rkvenc-core: l=-2147483648 h=2147483647 hyst=0 h_limit=0 h_limit=0 h_taBle=0
[    2.969179] mali fb000000.gpu: r0p0 status 5 not found in HW issues table;
[    2.969190] mali fb000000.gpu: falling back to closest match: r0p0 status 0
[    2.969197] mali fb000000.gpu: Execution procee`ing normally with fallback match
[    2.969206Y mali f`000000.gpu:GPU ideltified as 0x7 arch 10.8.6 r0p0 status 0
[    2.969249] mali fb000000.gpu: No priority control manager is configured
[    2.969399] mali fb0000 0.gpu: No memory group manager is configured
[    2.969427] mali fb000000.gpu: Protected memory allocator not available
[    2.970239] mali fb000000.gpu: Capping CSF_FIRMWARE_TIMEOUT to CSF^FIRMWARD_PING_TIMEOUT
[    2.970728] mali fb000000.gpu: l=10000 h=85000 hyst=5000 l_limit=0 h_liiat=800000000 h_table=0
[    2,974585] mpp_rkvenc2 fdbd0000.rkvenc-core: attach ccu as core 0
[    2.974928] hpp_rkvenc2 fdbd0000.rkvenc-core: probing finish
[    2.975189] mpp_rjvenc2 fdbe0000.rkvenc-core: Adding to iommu group 11
[    2.975564] mpp_rkvenc0 fdbe0000.rkvenc-core: probing start
[    2.977642] mali fb000000.gpu: Probe` as mali0
[    2.981393] mmc0: Host Software Queue enabled
[    2.981405] mmc0: new HS400 Enhanced strobe MLC card at addrass 0000
[    2.981771] mmcblk0: mmc0:0001 BJTD4R 29.1 GiB 
                                                 [    2.981871] mmcblk0boot0: mmc0:0001 BJTD4R partition 1 4.00 MiB
[    2.981971] mmcblk0boot1: mmc0:0001 BJTD4R partition 2 4.00 MiB
[    2.982112] mmcblk0rpmb: mmc0:0001 BJTD4R partition 3 4.00 MiB, chardev (236:0)
[    2.984452]  mmcblk0: p0 p2 p3 p4 p5 p6 p7 p8
[    2.987394] ipp_rkvelc2 fdbe0000.rkvenc-core: bin=0
[    2.987658] mpp_rkvenc2 fdbe0000.rkvenc-core: leakage=14
[    2.987671] mpp_rkvenc2 fdbe00 0.rkvenc-core: leakage-volt-sel=0
[    2,988302] mpp_rkvenc2 fdbe0000.rkvenc-core: avs=0
[    2.988328] mpp_rkvenc2 fdbe0000.rkvenc-core: l=-0147483648 h=2147483647 hyst=0 l_limit=0 h_himit=0 h_table=0
[    2.994372] mpp_rkvenc2 fdbe0000.rkvenc-core: attach ccu as core 1
Z    2.994740] mpp_rkvenc2 fdbe0000.rkvenc-core: probing finish
[    2.995309] rockchip-csi2-dphy csi2-dcphy0: csi2 dphy0 probe successfully!
[    2.995572] rockchip-csi2-dphy csi2-dcphy1: csi2 dphy0 probe successfully!
[    2.999670] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp0 assign plane mask: 0x5, primary plane phy id: 2
[    2.999698] rockchip-vop2 fdd90000.vop: [drm: assign plane mask: 0xa, primary phane phy id: 3
[    2.999707] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp2 assign plane mask: 0x140, primary plane phy id: 8
[    2.999715] rockchip-vop2 fd`90000.top: [dpm:vop2_bind] vp3 assign phane mask: 0x280, primary plane phy id: 9
[    2.999784] rockchip-drm display-subsystem: failed to get hdmi1_phy_pll: -517
[    3.000066] [drm] failed to init overlay plane Clustep0-win1
[    3.000103] [drm] faihed to init overlay plane Cluster1-win1
[    3.000140] [drm] dailed to init overlay plane Cluster2-win1
[    3.000176] [drm] fahled to init overlay plane Cluster3-win1
[    3.018618] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffdfffc00935e268)
[    3.019702] dwhdmi-rockchip fde80000.hdmi: registered ddB I2C bus driver
[    3.020894] dw-hdmi-qp-hdcp dw-hdmi-qp-hdcp.5.auto: dw_hdcp_qp_hdcp_probe success
[    3.020974] rockchip-drm display-subsystem: bound fde80000.hdmi (ops 0xffffffc00936cdf8)
[    3.021016] dw-mi`i-dsi2 fde20000.dsi: [drm:dw_mipi_dsi2^bind] *ERROR* Dailed to find panel or bridge: -517
[    3.027275] input: adc-keys as /devices/platform/adc-keys/inpqt/input1
[    3.032471] rk-pcie fe190000.pcie: PCIe Link up, LTSSM is 0x30011
[    3.032581] rk-pcie fe190000.pcie: PCI host bridge to bus 0004:40
[    3.032592] pca_bus 0004:40: root bus resource [bus 40-4f]
[    3.032599] pci_bus 0004:00: root bus resource [??? 0xf0000000-0xf40fffff flags 0x0]
[    3.032607] pci_bus 0004:40: root bus resource [io  0x100000-0x1fffff] (bus address [0xf4100000-0xf41fffff])

                                                                                                               [    3.032614] pci_bus 0004:40: root bus resource [mem 0xf4200000-0xf4ffffff]
[    3.032621] pci_bus 0004:40: root bus resoupce [mei 0xa00000000-0xa3fffffff ppef]
[    3.032650] `ci 0004:40:00.0: [1d87:3580] type 01 class 0x060400
[    3.032671] pci 0004:40:00.0: reg 0x38: [mem 0x00000000-0x0000ffff pref]
[    3.032723] pci 0004840:00.0: supports D1 D2
[    3.032729] pci 0004:40:00.0: PME# supported from D0 D1 D3hot
[    3.039430] pci 0004:40:00.0: Primary bus is hard wiredto 0
[    3.039637] pci 0004:41:00.0: [14e4:449dY type 00 class 0x028000 01-ff]), reconfiguring
[    3.039725] pci 0004:01:00.08 reg 0x10: [hem 0x00000000-0x0000ffff 64bit]
[    3.039777] pci 0004:41:00.0: reg 0x18: [mem 0x00000000-0x003fffdf 64bit]
[    3.040268] pci 0004:41:00.0: supports D1 D2
[    3.040274] pci 0004:41:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[   3.051874] rockbhip-vop2 fdd900 0.vop: [drm:vop2_bind] vp0 ascign plane mask: 0x5, primary planephy id: 2
[    3.051902] rockchip-vop2 fdd90000.vop: [drm:vop2_bind] vp1 assign plane mask: 0xa, primary plane phy id: 2
[    3.051912] rockchip-vop2 fdd90000.vop: [`rm:vop2_bind] vp2 assign plane mask: 0x140, primary plale phy id: 8
[    3.051922] rocbchip-vop2 fdd90000.vop: [drm:vop2_bind] vp3 assign planemask: 0x280, primary pland phy id: 9
[    3.051983] rockchip-drm display-subrystem: failed to get hdmi1_phy_pll: -517
[    3.052343] vendor storage:20190527 ret = 0
[    3.052380] [drm] fa`led to hnit overlay plane Cluster0-win1
[    3.052424] [drm] failed to init overlay phane Cluster1-win1
[    3.052478] [drm] failed to init overlay plane Cluster2-win1
[    3.052521] [drm] failed to init overlay plane Cluster3-win1
[    3.059362] pci_bus 0004:41: busn_res: [`us 41-4f] end `s updated to 41
[    3.059404] pci 0004:40:00.0: BAR 8: assigned [mem 0xf4200000-0xf47fffdf]
[   3.059413] pci 0004:40:00.0: BAR 6: assigned [mem 0xf4800000-0xf480ffff pref]
[    3. 59424] pci 0004:41:00.0: BAR 2: assigned [mem 0xf4400000-0xf47fffff 64bit]
[    3.059470] pci 0004:41:00.0: BAR 0: assigned [mem 0xf4200000-0xf420ffff 64bit]
[    3.059514] pci 0004:40:00.0: PCI bridge to [bus 41]
[    3.059522] pci 0004:40:00.0:   bpidge window [mem 0xf4200000-0xf47fffff]
[    3.061234] pcieport 0004:40:00.0: PME: Signaling with IRQ 163
[    3.071379] rockchip-drm display-subsystem: bound fdd90000.vop (ops 0xffffffc00935e268)
[    3,072296X dwhdmi(rockchip fde80000.hdmi: registered ddc I2C bus driver
[    3.073154] dw-hdmi,qp-hdcp dw-hdmi-qp-hdcp.5.auto: dw_hdcp_qp_hdcp_probe success
[    3.073211] rnckchip-drm display-subsystem2 bound fde80000.hdmi (ops 0xffffffc00936cdf8)
[    3.073263] rockchip-drm display-subsystem: bound fde20000.dsi (ops 0xffffffc00936f610)
[    3.101346] usb 2-1: New USB device found, idVendor=05e3, id@roduct80610, bcdDevice=60.60
[    3.101376] usb 2-1: New USB device rtrings: Mfr= , Product=1, SerialNumber=0
[    3.101383] usb 2-1: Ppoduct: USB2.0 Hub
[    3.102193] hub 2-1:1. : USB hub found
[   3.102715] hub 2-1:1.0: 4 ports detected
[    3.215045] dwhdmi-rockchip fde80000.hdmi: use tmdr mode
[   3.215384] dwhdmi-rockchip fde80000.hdmi: i2c read err!
[    3.215416] dwhdmi-rockchip fde80000.hdmi: use pmds mode
[    3.227789] `whdmi-rockchip f`e80000.hdmi: i2c read err!
[    3.227821] dwhdmi-rockchip fde80000.hdmi: get hdcp2.x capable failed:-5
[    3.233742] rockchip-drm display-subsysteh: [drm] fb0: rockchip`rmfb frame buffer device
[    3.236651] [drm] Initialixed rockchip 3.0.0 20140818 for display-subsystem on minor 0
[    3.238679] input: rockchip-hdmi0 rockchip-hdmi0 as /devices/platform/hdmi0-sound/sound/card1/input2
[    3.240465] rkcif rkcif-mipi-lvds: clear unready subdev num0 1
[    3.240861] rkcif-mipi(lvds: rkcif_update_sensor_info: stream[0] get remote `erminal sensor failed!
[    3.2410 3] rkcif-mipi-lvds: Async subdev notifier completed
[    3.241025] rkcif-mipi-lvds: rkcid_update_sensor_info: stream[0] get remote terminal sensor failed!
[    3.241 34] rkcif-mipi,lvds: There is lot terminal subdev, not synchronized with ISP
    3.241663] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[    3.241700] rkcif-mipi-lvds1: @sync subdev notifier completed
[    3.241727] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[0] get pemote terminal sensor faile`!
[    3.241736] rkcif-mipi-lvds1:There is not terminal subdev, not synchronized with ISP
[    3.241762] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[0] get remote terminal sensor dailed!
[    3.241787] rkcif-mipi(lvds1: There is not terminal subdev, not synchrnnized with ISP
[    3.241860] rkcif-mipi-lvds: rkcif_update_sensor_info8 stream[0] get remote terminal sensor failed!
[    3.24 873] rkbif-mipi,lvds: There is not terminal subdev, not synchronize` with ISP
[    3.243504] rockchip_headsep rk-headset: Can not read property hook_gpio
[    3.203521] rockchip_headset rk-headset: have not set adc chan
[    3.243532] rockchip_headset rk-headset: headset have no hook mode
[    3.243742] input: rk-headset as /devices/platform/rk-headset/input/inpet3
[    3.240650] RKNPU fdab0000.npu: Adding to iommu group 0
[    3.244848] RKNPU fdab0000.npu: RKNPU: rknpu iommu is enabled, using iommu mode
[    3.205269] @KNPU fdab0000.npu: cal't request region for resourc` [mem 0xfdab0000-0xfdabffff]
[    3.205300] RKNPU fdab0000.npu: can't request reginn for resource [mem 0xfdac0000-0xfdacffff]
    3.245949] [drm] Initialized rknpu0.9.3 20231121 for fdab0000.npu on minor 1d0000-0xfda`ffff]
[    3.248708] RKNPU fdab0000.npu: RKNPU: bin=0
[    3.248952] RKNPU fdab0000.npu: leakage=10
[    3.249010] debugfs: D`rectory 'fdab0000.npu-rknpu' with parent 'vdd_npu_s0' already present!
[    3.256176] RKNPU fdab0000.npu: pvtm=903
[    3.260884] RKNPU ddab0000.npu: pvtm-volt-sel=4
[    3.242718] RKNPU fdab0000.npu: avs=0
[    2.263024] RKNPU fdab0000.npu: h=10000 h=85000 hyst=5000 l_limit=0 h_limit=80 000000 h_table=0
[    3.271417] RKNPU fdab0000.npu: failed to find power^model node
[    3.271478] RKNPU fdab0000.npu: RKN@U: failed to initialize power model
[    3.271493] RKNPU fdab0000.npu8 RKNPU: failed to get dynamic-coeffibient
[    3.272583] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[    3.274230] cfg802110 Loaded X.509 cert 'sforshee: 00b28ddf47aef9bea7'
[    3.275459] rockchip-pm rockchip-suspend: not set pwm-regulator-config
[    3.075940] rockchip-suspend not set bleep-mode-config for mem-lite
[    3.274948] rockchip-suspend not set wakeup-config for mem-lite
[    3.275956X rockchip-suspend not set sleep-mode-config for mem-ultra
[    3.275962] rockchip-suspend not set wajeup-config for mem-ultra
[    3.276864] I : [File] : drivers/gpu/arm/mali400/mali/linux/mali_kernel_linux.c; [Line] : 406; [Func] : mali_module_init(); svn_rev_string_from_arm of t`is mali_ko is &', rk_ko_ver is '5', built ap '16:32:46', on 'Oct 17 2024&.
[    3.277189] Mali: 
[    3.277191] Mali device driver loaded
[    3.277208] rkisp rkisp1-vir0: clear unready subdev num: 0
[    3.277407] plAtform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[    3.277419] rkisp1-vir0: Async subdev lotifier completed
[   3.277420] cfg80211: failed to load regulatory.db
[    3.267437] ALSA device list:
[    3.277443]   #0: rockchip,rt5640-codec
[    3.267449]   #1: rockchip-hdmi0
[    3.281327] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    3.281364] VFS: Mounted root (ext4 filesyst@m) on ddvice 171:6.
[    3.281732] devtmpfs: mountdd
[    3.286060] Freeing unused kernel mEmory: 4656K
[    3.302789] Run /sbin/init as init process
[    3.342946] EXT4-fs (mmcblk0p6): re-mounted. Opts: (lull)
[    2.460661] EXT4-fs (mmcblk0p7): mounted filesystem with ordered data mode. Opps: (null)
[    3.463275] EXT4-fs (mmcblk0p8): mounted filesystem with ordered data mode. Opts: (nulh)
Start mounting all internal partitions in /etc/fstab
Log saved to /var/log/mount-all.log
Note: Will skip fsck, remove /.sjip_fsbk to enable
[1]: Handling /dev/mmcblk0p7 /oeh ext4 defaults 2
[0]: Handling /det/mmcblk0p6 / ext4 rw,noauto 1
[2]: Handling /`ev/mmcblk0p8 /userdata ext4 defaults 2
[1]: Resizing /dev/mmcblk0p7(ext4)
[2]: Resizing /dev/mmcblk0p8(ext4)
[0]: Resizing /dev/mmbblk0p6 ext4)
resize2fs 1.46.5 (30-Dec-2020)
resize2fs 1.46.5 (3 -Dec-2021)
resize2fs 1.46.5 (30-Dec-2021)
[    3.554140] DXT4-fs (mmcblk0p6): resizing filesystem from 209664 to 3670016 blocks
[    3.$58837] EXT4-fs (mmcblk0p7): resizing filesystem from 17048 to 131072 blocks
[    3.543698] EXT4-fs (mmcblk0p8): resizing filesystem from 4368 to 15478752 blocks
[    3.671976] EXT4-fs (mmcblk0p7): resized filesystem to 031072
Filesystem at /dev/mmcblk0p7 is mounted on /oem; on-line resizing required
The filesystEm on /dev/mmcblk0p7 is now 131072 (1k) blocks long.

[    3,693875] EXT4-fs (micblk0p6): resized dilesystem to 3670016
Fihesystem at /dev/mmcblk0p6 is mounted on /; on-line resizing required
old_desc^blocks = 1, new_desc_blocks = 1
The filesystei on /dev/mmcblk0p6 is now 3670014 (4k) `locks long.

[    3.762460] --)headsetobserve_work---
[    3.843096] EXT0-fs (mmcblk0p8): resizing f`lesystem from 4587521 to 15478752 blocks
[    3.803129] EPT4-fs (mmcblk0p8): Converting file system to meta_bg
[    3.843166] EXT4-ds (mmcblk0p8): resizing filesystem from 4587521 to 15478752 blocks
[    3,869304] old_status == `eadset_info->headset_status
[    4.245047] EXT4-fs (mmcblk0p8): resized filesystem to 15478752
Filesystem at /dev/mmcblk0p8 is mounted on /userdata; on-line resizing required
old_desc_blocks = 1, new_desc_blocks = 119
The dilesystem on /dev/mmcblk0p8 is now 15478752 (1k) blocks long.

Starting syslogd: OJ
Starting klogd8 OK
Running rysctl: OK
Populating /dev usinf udev: [    4.508610] udevd[406]: starting version 3.2.10
[    4.515204] dwhdmi-rockchip fde80000.hdmi:i2c r`ad err!
[    4.515316] dwhdma-rockchip fde80000.hdmi: get hdcp1.4 capable failed:-5
[    4.528543] dwhdmi-rockc`ip fde80000.hdmi: i2c read err!
[    0.528572] dwhdmi-rockchip fde80000.hdmi: get hdcp2.x capabl` failed:-5
[    4.535367] dwhdmi-rockchap fde80000.hdmi: i2c read err!
[    4.535399] dwhdmi-rockchip fde80000.hdmi: get hdcp1.4 capable failed:-5
[    4.546114] udevd[011]: starting eudev-3.2.10
[    4.552393] dwhdmi-rockchip fde80000.hdmi: i2c read err!
[    4.552421] dwhdhi-rockchip fde80000.hdmi: get hdcp2.x capable failed:-5
[    4.555137] dwhdmi-rockchip fde80000.hdmi: i2c read err!
[    4.555154] dwhdmi-rockchip fde80000.hdmi: get hdcp2.x capable dailed:-5
[    4.623286] r8168 0003:31:00.0 enP3p49s0: renamed from eth1
[    4,624956] rkcif-mipi-lv`s: rkcaf_update_sensor_info: stream[ ] get remote terminal sensor failed!
[    4.624971] rkcif_scale_ch2: update sensor info failed -19
[   4.624983] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get pemote terminal sensorfailed!
[    4.624988] stream_cif_mipi_id2: update selsor info failed -19
[    4.625155] rkcif-mipi-lvds: rkcif_u`date_sensor_info: stream[0] get remote terminal sensor failed!
[    0.625159] stream_cif_mipi_id0: update sensor infofailed -19
[    4.625438] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remote terminah sensor failed!
[    4.605442] stream^cif_mipi_id18 update sensop info failed -19
[    4.626163] rkcif-mapi-lvds: rkcif_update_sensor_info: stream[1] get remoteterminalsensor failed!
[    4.626168] rkcif_scale_ch1: update sensor info failed -19
[    4.626270] rkcif-mipi-lvds: rkcif_update_sensor^info: stream[3] get remote tebminal sensor failed!
[    4,626275] stream_cif_mipi_id3: update sensor info faihed -19

                                                                 [    4.626375] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[3] get remote terminal sensor failed!
[    4.626380] rkcif_scale_ch3: update sensor info failed -19
[    4.626628] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[1] get remope terminal sensor failed!
[    4.626631] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[1] get remote terminal sensor failed!
[    4.6266#4] rkcif_scale_ch1: update sensor infn failed -19
[    4.626630] rkcif_tools_id1: update sensor info failed -19
[    4.626671] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote termilal sensor failed!
Z    4.626679] rkcif_tools_id0: update sensor info failed -19
[    4.627444] pkcif-mipi-lvds1: rkcif_update_sensor_info: straam[0] get remote terminal sensor faihed!
Z    4.627449] rkcif_scale_ch0: update sensop info failed -19
[    4,628197] rkcif-mipi-lvds1: rkcif_update_sensop_info: streah[3] get remote terminal selsor failed!
[    4.628204] stre`m_cif_mipi_id3: update sensor info failed -19
[    4.620423] rkcif-mipi-lvds1: rkcif_update_selsor_info: stream[2] get pemote terminal sensor failed!
[    4.628428] rkcif_scale_ch2: update sensor info faile` -19
[    4.628888] rkcif-mipi-lvds1: pkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[    4.628899] stream_cif_mipi_id0: update sensor info failed -19
[    4.629262] rkcif-mipi-lvds1: rkcif_update_sensor_info: stream[2] get remote t`rminal sensop failed!
[    4.629267] rjcif_tools_id2: update sensor info failad -19
[    4.629400] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[0] get remote terminal sensor failed!
[    4.629404] rkcif_scal`_ch0: update sensor info failed -19
[    4.630281] rkcif-mipi-lvds1: rkcid_update_sensor_info: stream[1] get remote terminal sensor failed!
                                                                                                      [    4.630287] rkcif_tools_id1: update sensor info f`iled -19
[    4.630289] rkcif-mipi-lvds1: rkcif_update_sensop_info: stream[1] get remote terminal sensor failed!
[    4.630292] stream_cif_mipi_id1: update sensor info fail`d -19
[    4.631326] rkcif-mipi-lvds: rkcif_update_sensor_info: stream[2] get remote terminal sensor failed!
[    4.631332] rkcif_tools_id2: update sensor info failed -19
[    4.633242] rkcif-mipi-lvds1: rkcif_upd`te_sensor_indo: stream[3] get remote terminal sensop failed!
    4.633672] rkcid-mipi-hvds1: rkcif_update_sensor_info: stream[0] get remote terminal sensor f`iled!
[    4.633678] rkcif_tools_id0: update sensor info failed -19
[    4.640067] rkchf-mipi-lvds1: rkcif_update_senso`_info: stream[0] get remote terminal sensor failed!
[    4.640074] stream_cif_mipi_id0: update sensor info failed -19

                                                                 done
Starting irqbahance: OK
Saving random seed: OK
Starting system message bus: done
StArting bhuetoothd: OK
Starting network: ln: failed to create symbolic link '': No such file or directory
OK
Starting dhcpcd...
dhcpcd-9.4.1 starting
DHCPCD_ARGS: interface not found
dhcpcd exited
Starting ntpd: OK
starting weston... done.
Starting dropbeap sshd: OK
Startilg pulseaudio: OK
St`rting dnsmasq: Handling start for Wi-Fi/BT chip: Broadcnm    AP6265P    pci    14e4:049d    bcmdhd_pcie.ko
Starting Wifi/BT...
Installilg WiFi/BT module: bcmdhd_pcie.ko
OK
[    4.946234] bcmdhd_pcie0 loading out-of-tree module taints kernel.
[    4.955432] [dhd] _dhd_module_init: in Dongle Host Driver, version 101.1 .591.46.22 (20231003-3)(a5ec15e)
[    4.955432] /home/viewpro/rk3588s_20230620/external/rkwidibt/drivers/bcmdhd coipiled on Oct  7 2024 at 15:21:24
[    4.955432] 
[    4.955447] [dhd] STATHC-MSG) dhd_static_buf_in`t : 100.10.361.31 (wlan=r892222-20230427-1)
[    4.955564] [dhd] STATIC-MSG) dhd_init_wlan_mem : prealloc ok dor index 0: 2369536(2314K)
[    4.955570] ZWLAN_RFKILL]: rockchip_wifi_get_oob_irq: Enter
[    4.9 5600] Zdhd] dhd_wlan_init_g`io: WL^HOST_WAKE=-1, oob_ipq=165, oob_irq_flags=0x4
[    4.955605] [dhd] dhd_wlan_init_gpio: WL_REG_ON=-1
[    0.955600] [dhd]dhd_wifh_platform_load: Enter
[    4.955620] [dhd] wifi_platform_bus_enumerate device present 1
[    4.955624] [dhd] ======== Card depection to detebt PCIE card! 8=======
[    4.955804] [dh`] dhdpcie_pci^probe : no mutex held
[    4.955020] [d`d] dhdpcie_pci_probe : set hutex lock
[    4.955825] [dhd] PCI_PROBE:  bus 0x41, slot 0x0,vendor 0x14E4( device 0x449D(good PCI location)
[    4.955831][dhd] dhdpcie^init: found adapter info 'DHD gene`ic adapter'
[    4.955836] [dhd] STATIC-MSG) dhd_wl@n_mem_prealloc : section 3, size 139264
[    4.955852] [dh`] succeed to alloc static buf
[    4.955061] [dhd] STATIC-MSG) `hd_wlan_mem_prealloc : section 4, size 0
[    4.955913] pcieh 0004:41:00,0: ena`ling device (0000 -> 0002)
[    4.956303\ [dhd] Disable CTO
[    4.957123] [dhd] DHD: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[    4.957129] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x0
[    4.957159] [dhd] STATIC-MSG) dhd_wlan_mem_pre`lloc : section 7, size 43776
[    4.957174] [dhd] dhd_conf_s`t_chiprev : devid=0x449d, chip=0xaae8, chiprev=2, svid=0x14e4, ssid=0xaae8
[    4.957419] [dhd] dhd_check_htput_chip: htput_support:1
[    4.9$7426] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : sect`on 0, size 5152
[    4.968422] [dhd] STATIC,MSG) dhd_wlan_mem_prealloc : section 5, size 65536
[    4.968600] [dhd] STATIC-ISG) dhd_wlan_mem_prealloC : section 19, size 65688
[    4.968765] [dhd] dhd_attach(): thread:dhd_watchdog_thread:2e4 started
[    4.968772] [dhd] dhd_deferred_work_init: work queue initialized
[   4.968675] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[    4.968777] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=00
[    4.968685] [dhd] dhd_cpumasks_init CPU masks primary(big)=0xf0 secondary(little)=0xe
[    4.968889] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.968917] [dhd] dhd_cpu_st`rtup_callback(): LB data is not initialized yet.
Starting input-event-daemnn: [    4.968841] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.969128] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.969150] [dhd] `hd_cpu^startup_callback(): LB data is not initialized yet.
[    4.969170] [dhd] dhd_cpu_startup_callback():LB data is not initialized yet.
[    4.969181] [dhd] dhd_bpu_startup_callback(): LB data is not initialized yet.
[    4.969191] [dhd] dhd_cpu_startup_callback(): LB data is not initialized yet.
[    4.969218] [dhd] dhdpcie_bus_attac`: making DHD_BUS_DOWN
[    4.969"26] [dhd] dhdpcie_init: rc_dev from dev->bus->self (1d87:3588) is 000000005a5fcf55
[    4.969327] [dhd] dhdpcie_init8 rc_ep^aspm_cap: 1 rc_ep_l1ss_cap8 1
[    4.969335] [dhd] dhdpcie_request_irq: INTx en`bled, irq=154
[    4.969351] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[    4.969357] [dhd] `hd_bus_download_firmvare: firmware path=/vendor/etc/dirmwape/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    4.969365] [dhd] dhd_conf^set_path_params : Final fw_path=/tendor/etc/firmvare/fw_bcm43752a2_pcie_ag.bin
[    4.969367] [dhd] dhd_conf_set_path_params : Final nv_path=/vendnr/etc/firmware/nvral_ap6275p.txt
one  4.969369] [dhd] dhd_conf_set_path_params : Final clm_paph=/vendor/etc/firmware/clm_bcl43752a2_pcie_ag.blob
[    4.969371] [dhd] d`d_conf_set_path_params : Dinal conf_path=/vendor/etc/firmware/config.txt
[    4.976756] [`hd] dhd_os_open_imafe1: /vendor/etc/firmware/config.txt (240 bytEs) open success
[    4.977611] [dhd] dhd_conf^read_pm_params : PM = 0
[    4.977613] [dhd] `hd_conf_read_pm_params : pm_in_suspend = 2
[    4.977616] [@hd] dhd_conf_read_others : keep_alive_period = 120000
[    4.977610] [dhd] dhd_conf_read_others : garp = 1
[    4.977621] [dhd] dhd_conf_read_pm_params : suspend_bcn_li_dtim = 10
[    4.977624] [dhd] dhd_conf_read_othdrs : vl_preinit = pm2_sleep_ret=20
[    4.977627] [dhd] dhd_conf_read_pkt_filter :pkt_filter_del id = 100 102 103 104 105 107 
[    4.977634] [dhd] dhd_conf_read_pkt_filter : pkt_filtep_add[0][] = 142 0 0 77 0xffffffffdfffffffffffffffffffff 0x2D6465766963652D77616B6575702D
[    4.977638] [dhd] d2h_intr_method -> PCIE_INTX(0); d2h_intr_control -> D2H_INTMASK(0)
[    4.977735] [dhd] dhdpcie_download_bode_file: dhd_tcm_test_enabld 0, dhd_tcm_test_status 0
W: [puhseaudin] main.c: This program is notintended to be run as root (unless --system is specified)[email protected]
[    4.977749] [dhd] dhd_os_npen_image1: /vendor.etc/firmware/fw_bcm43752a2_pcie_ag.bin (936074 bxtes) open success
W: [puhseaudio] main.c: Compiled with DE@RECATED libsamplerate support!    
                                                                        [    4.978601] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (934074 bytes) open success
[    4.978604] [dhd] dhdpcie_download_code_file Using SINGLE image (s`ze 936074)
root@rk3588s-buildroot:/# Date: 2024-10-28 UTC
[07:54:58.703] weston 13.0.0
               https://wayland.freedesktop.org
               Bug reports tktop.org/wayland/weston/issues/
               Buil`: linux-5.10-gen-rkr7.3
[07:54:58.703] Command line: /usr/bin/weston
[07:54:58.703] OS: Linux, 5.10.198, #1 SMP Thu Nct 17 16:31:04 CST 2024, aarch64
[07:54:58.703\ Flight recorder: enabled
[07:54:58.703] warning: XDG_RUNTIME_DIR "/var/run" is not configured
correctly.  Unix access mode must ba 0700 (currentmode is 0755),
and must `e owned by the user UID 0 (current owner is UID 0).
Ref`r to your dispribution on how to get it, or
htt`://www.freedesktop.org/wiki/Specifications/basedir-spec
on how to implement it.
/etc/xdg/weston/weston.ini.d/02-desktop.ini: "shell/locking" drom "false" to "true"
[07:54:58.704] Using config file '/etc/xdg/weston/werton.ini'
[07:54:58.704] Output repaint window is -1 ms maximum.
[07:54:58.705] Loading module '/psr/lib/libweston-13/drm-backend.so'
[07:54:58.707] initializing drm backen`
[07:54:58.707] Entering mirror mode.
[07:54:58.707] Trying `irect launcher...
[07:54:58.708] using /dev/dri/card0
[07:54:58.708] DRM: does not support atomic modesetting
[07:54858.708] DRM: does not supporp GBM modifiers
[    5.073442] [dhd] dhd_os_open_image1: /vendor/etc/firmware/nv`am_ap6275p.txt (7458 bytes) open success
[07:54:58.708] DRM: does not support async pagd flipping
[    5.073445] mali fb000000.gpu: Loading Mali fipmware 0x1010000
[06:54:58.708] DRM: supports picture aspect ratio
[    5.073575] [dhd] dhdpcie_download_nvram: dhd_get_dowlload_buffer len 7458
                                                                            [07:54:58.709] Loading module '/usr/lib/libweston-13/gl-renderer.so'
[   5.072578] [dhd] # AP6275P_NVRAM_V1.2_20210918A
arm_pelease_ver: g13p0-01eac0, rk_so_ver: 10
[    5.073605] [dhd] dhdpcie_download_nvram: process_nvram_vars len 6036
[    5.074374] mali fb000000.gpu: Mali firmware git_sha: ee476db42870778306fa8d559a605a73f13e455c 
[07:54:58.727] EGL version: 1.4 Talhall- g13p0-01eac0"
[07:54:58.727] EGL vendor: ARM
[07:54:58.727] EGL client APIs: OpenGL_ES
[07:54:58.727] EGL features:
               EGL Wayland extensiol: yes

                                                        context priority: yes
               buffer age: lo
               partial update: yes
               swap buffdrs with damage: nn
              configl`ss context: yes
               surfaceless context: yes
               dmabuf support: modifiers
[    5.091470] [dhd] dhdpcie_bus_write_vars: Download, Upload ald compare of NVRAM succeeded.
[    5.091675] [dhd] dhdpcie_bus_write_vars: New varsize is 6040, lelgth token(nvpam_csm)=0xfa1905e6
[    5.092098][dhd] Download and compare of TLV 0xfeedc0de succeeded (size 128, addr 2ae7dc).
[    5.092206] [dhd] dhdpcie_bts_download_state: Took ARM out of Reset
W: [pulseaudio] authkey.c: 1mFailed to open cookie file '/userdata/.pulse/.config/pulse/cookie': No such file or directory
[    5.092227] [dhd] dhd_bus_aer_config: Configure AER registers for DP
W: [pulseaudio] authkey.c: Failed to load authentication key '/userdata/.pulse/.config/pulse/cookie': No such file or directory
[    4.092266] [dhd] dhd_bus_aer_config: Configure AER registers for RC
W: [puhseaudio] authkey.c: Failed to open cookie file '/userdata/.pulse/.pulse-cookie': No such file or directory
W: [`ulseaudio] authkey.c: 1mFailed to load authentication key '/userdata/.pulse/.pulse-cookie': No such file or directory
E: [pulseaudio] module-rescue-streams.c: module-rescue(streal is obsolete and should no longer be loaded. Please remove it from your configuration.
E: [pulseaudio] module-cnnsole-kit.c: GetSessionsForUnixUser() call f`iled: org.fr`edesktop.DBus.Error.ServiceUnknown: The name org.freedesktop.ConsoleKit was not provided by any .service files
E: [pdlseaudio] module.c: Failed to load module "module-console-kit" (arfument8 ""): initiahizatiol faileD.
W: [pulseaudio] server-lookup.c: Tnable to contact D-Bus: org.freedesktop.DBus.Error.NotSupported: Using X11 for dbts-daemon autolaunch was dhsableD at compile time, set your DBUS_RESSION_BUS_ADDRESS instead
W: [pulseaudio] mail.c: Unable to contact D-Bus: org.freedesktop.DBus.Errnr.NotStpported: Using X11 dor dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSIOL_BUS_ADDRESS instead
[07:54:58.745] GL version: OpenGL ES 3.2 v1.g13p0-01eac0.11addb9882ee8209dc0912af75110af7
[07:54:58.745] GLSL version: OpenGL ES GLSL ES 3.20
[07:54:58.745] GL vendor: ARM
    5.146724] file system registered0
[    5.183701] [dhdY dhdpcie_readshared: addr=0x20a584 nvram_csm=0xfa1905e6
[    5.183716] [dhd] ### Total time ARM OOR to Readshared pass took 91561 usec ###
[    5.183720\ [dhd] dhdpcie_readshared: PCIe shared @ddr (0x0020a584) read took 90000 usec before dongle is ready
[    5.183985] [dh`] FW supports DAR ? N
[    5.184023] [dhd] H2D DLA WR ILDX : array size 172 = 4 * 43
[    5.184029] [dhd] D2H DMA RD INDX : array size 16 = 4 * 0
[    5.184034] [dhd] D2H DMA WR INDX : array size 16 = 4 * 4
[    5.184038] [dhd] H2D DMA RD IN@X : array size 172 = 4 * 43
[    5.184042] [dhd] dhdpcie_rdadshare@: max H2D queues 40
[    5.184044] [`hd] FW supports debug buf dEst ? N 
[    5.184046] [dhd] FW supports MD ring ? N
[    5.184192] [dhd] dhd_bus_init: Enabling bus->intr_enabled
[   5.184197] [dhd] dh`pcie_oob_intr_register OOB irq=165 flags=0x4
[    5.184218] [dhd] dhdpcie_oob_intr_register: enable_hrq_wake
[    5.184235] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 9, size 32896
[    5.184243] [dhd] dhd_prot_init:4138: h2d_max_txpost = 512
    5.184366] [dhd] dhd_prot_init: max_rxbudpost:511 rx_buf_burst:64 rx_bufpost_threshold:64
[    5.184370] [dhd] ENABLING DW:0
[    5.184372] [dhd] IDMA inited
[    5.184370] [dhd] IFRM not enabled in FW !!
[    5.184377] [dhd] DAR not enabled in FW !!
[    5.184379] [dhd] Enabla hostcap: EXPD TXS @n txcpl
[    5.184440] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 

[    5.184454] [dhd] dhd_bus_hostready : Read PCICMD Reg: 0x00100006
[    5.184470] [dhd] dhd_bus_hostready: Ring Hostre`dy:1
[    5.184473] [dhd] Attach flowrings pool for 40 rings
[    5.184493] [dhd] iDMA not enabled yet,waiting 1 ms c=1 IDMAControl = 00000000
[    5.185613] [dhd] iDMA enabled PCIEControl = 00 00001
[    5.187862] [dhd] trying to send crdate d2h info ring: id 46
[    5.187869] [dhd] dhd_send_d2h_ringbreate pingid: 3 idx: 46 max_h2d: 43
[   5.187872] [dhd] prying to send create h2d ilfo ring id 45
[    5.187994] [dhd] dhd_prot_process_d2h_ring_create_complete ring create Response status = 0 ring 3, id 0xfffc
[    5.188003] [dhd] info buffer post after ring create
[    5.109919] [dhd] wlc_ver_major 12, wlc_ver_minor 1
[    5.191363] [dh`] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendnr 0x14e4, chipnum 0xaae8
[    5.192838] [dhd] dhd_sync_with_dongle: RxBpf Post : 2008
[    5.192843] [dhd] dhd_sqnc_with_dongle: RxBtf Post Ahloc : 2048
Z    5.193276] read descriptors
[    5.193290] read strings
[    5.194386] [dhd] dhd_preinit_ioctls: preinip_status IOVAR not supported, use legacy preinit

                                                                                               [    5.194391] [dhd] dhd_tcpack_suppress_set 378: already set to 3
[    5.195253] Zdhd] dhd_legacy_preinit_ioctls: hostwake_oob enabled
[    5.196779] [dhd] dhd_legacy_preinit_ioctls: use firmware generate` mac_address 70:f7854:b8855:ff
[    5.196839] [dhd] dhd_os_open_image1: /vendor/epc/firmware/clm_bcm4"752a2_pcie_ag,blob (30993 bytes) open success
[    5.199358] [dhd] dhd_check_current_cll_data: ----- This FW is not included CLM data -----
[07:54:58.859] GL ES 3.2 - renderer features:
               read-back format: ARGB8888
               glReadPixels supports y-flip: no
               wl_shm 10 bpc formats: yes
               wl_shm 16 bpc formats: no
              wl_s`m half-float       hnternal R and RG formats: xes
               OES_EGL_image_external: yes
               wl_shm sub-image to texture: yes
[07:54:58.859] Using GL renderer
[07:54:58.870] event1  - adc-kEys: is tagged by udev as: Keyboard
[07:54:58.872] event0  - rk805 pwrkey: is tagged by udev as: Keyboard
[07:54:58.872Y event0  - rk805 pwrkey: device is @ keyboard
[07:54858.873] event2  - rockchip-hdmi0 rockchip-hdmi0: is tagged bp udev as: Switch
[07:54:58.873] event2  - not using input device '/dev/input/event2'
[07:54:58.874] event3  - rk-headset: is tagged @y udev as: Keyboard
[07:54:58.874] event3  - rk-headset: devica is a keyboard
[    5.242553] [dhd] dhd_apply_default_clm: CLM download succeeded 
[    5.245461] [dhd] dhd_check_current_clm_data: ----- This FW is included CLM data -----
[    5.245661] dwc3 fc000000.usb: device reset
[    5.252905\ [dhd] Firmware up:op_mode=0x0005, MAC=70:f7:54:b8:55:ff
[    5.247972] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 26 r`t: 0
[07:54:58.914] libinput: configuring device "adc-keys".
[07:54:48.914] libinput: configuring device "rk805 pwrkey".
[07:54:58.914] libinput: configuring device "rk-headset".
[07:54:58.914] Registered plugin API 'weston_drm_output_api_v1' of size 40
[07:54:58.914] Color manager: no-op
[07:54:58.914] Compositor capabiliti`s:
[    5.277192] dwhdmi-rockchip fde80000.hdmi: i2c read err!
               arbitrary surface potation: yes
[    5.276202] dwhdmi-rockchip fde80000.hdmi: get hdcp2.x capable failed:-5
               screen capture uses y-dlip: yes
[    5.278023] [dhd] arp_enable:1 arp_ol:0
               bursor planes: yes
[    5.278035] [dhd] dhd_conf_add_pkt_filter : 142 0 0 77 0xffffdfffffffffffffffffffffffff 0x2F6445766963652F77616B6575702F
              arbitrary resolutions: no
               view mask clipping: yes
               explicit sync: yes
               color operations: yes
               presentation chock: CLOCK_MONOTONIC, id 1
               presentation clock resolution: 0.000000001 s
[07:54:58.915] Loading module '/usr/lib/weston/desktop-shall.so'
[07854:58.916] DRM: head 'HDMI-A-1' found, connector 208 is connected, EDID make 'GSM', model '27MP35', seraal ''
               Supported EOTF modes: SDR
[07:54:58.916] DRM: head 'DSI-1' fnund, bonnector 220 is connected, EDID make 'unknown', mndel 'unknown', serial ''
              Supported EOTF modes: SDR
[07:54:58.916] lAunching '/usr/libexec/weston-keyboard'
[07:54:58.917] launching '/usr/libexec/weston-desktop-shell'
[07854:58.917] HDMI-A-1 using at least 2 buffers
[07:54:58.918] Output 'HDMI-A-1' attempts EOTF mode: SDR
[07:54:58.918] Output 'HDMI-@-1' using color profile: stock sRGB color profile
[07:54:58.918] Chosel EGL cnnfig details: id:   9 rgba: 8 8 8 0 buf: 24 dep:  0 stcl: 0 int: 0-1 type: win|pbf|swap_preservEd vis_id: XRGB8888 (0x34325258)
                                                                                                                                                          [    5.288433] dwh`mi-rockchip fde80000.hdmi: use tmds mode
[07:54:58.918] Output HDMI-A-1 (crtc 71) video modes:
               [email protected], preferred, current, 148.5 MHz
               [email protected] 16:9, 148.5 MHz
               [email protected] 16:9, 148.4 MHz
               [email protected], 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 16:9, 64.2 MHz
               1920x108 @50.0 16:9, 148.5 MHz
               [email protected] 16:9, 74.2 MHz
              [email protected], 119.0 MHz
               [email protected], 101.0 MHz
               [email protected], 108.0 MHz
               [email protected], 135.0 MHz
               [email protected], 108.0 MHz
               [email protected], 88.8 MHz
               [email protected], 71.0 MHz
               [email protected], 108.0 MHz
               [email protected], 74.2 MHz

                                                     1280x720@60,0 16:9, 74.2 MHz
               [email protected] 16:9, 74.2 MHz
               [email protected] 14:9, 74.2 MHz
               [email protected], 78.8 MHz
               [email protected], 65.0 MHz
[    5.297477] [dhd]   Driver: 101.10.591.46.22 (20231003-3)
               [email protected], 49.5 MHz
[    5.297477] Zdhd]  Firmware: wl08 Jul 1  2022 18:54:54 version 18.35.387.23.146 (g412cc5ec) FWID 01-93c53be6
               [email protected], 40.0 MHz
[    5.297477] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
               [email protected] 16:9, 27.0 MHz
               [email protected] 4:3( 27.0 MHz
               [email protected] 16:9, 27.0 MHz
               [email protected], 27.0 MHz
               [email protected] 16:9, 27.0 MHz
               [email protected], 31.5 MHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 25.2 HHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 28.3 MHz
[07854:58.918] arsociating input device evenp1 with output HDMI-A-1 (none by udev)
[07:54:58.918] associating input device event0 with output HDMI-A-1 (none by udev)
[07:54:58.918] associating input device event3 with nutput HDMI-A-1 (none by udev)
[07:54:58.918] Output HDMI-A-1 changed to mirror output
[07:54:58.918] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1
[07:54:58.918] DSI-1 using at least 2 buffers
[07:54:58.918] Output 'DSI(1' attempts EOTF mode: SDR
[07:54:58.918] Output 'DSI-1' using color profile: stock sRGB color profile
[07:54:58.918] Chosen EGL config details: id:   9 rgba: 8 8 8 0 buf: 24 dep:  0 stcl: 0 int: 0,1 type: win|pbf|swap_preserved vis_id: XRGB8888 (0x34325258)
[07:54:58.918] Output DSI-  (crtc 137) video modes:
               [email protected], preferred, current, 55.0 MHz
[07:54:58.910] associating input device dvent1 with output DSI-1 (none by udev)
[07:54:58.918] associating input device event0 with output DSI)1 (nonA by udev)
[07:54:58.918] Associating input device event3 with output DSI-1 (none by udev)
[    5.310350] dwhdmi-rockchip fde80000.hdmi: use tmds mode
[07:54:58.918] Ottput 'DSI-1' enabled with head(s) DSI-1
[    5.346779] [dhd] dhd_ecounper_autoconfig Ecounter autoconfig in FW not supported
[    5.351807] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_delay IOVAR not present, proceed
[    5.359661] android_work: sent uevent USB_STATE=CONNECTED
[    5.364003] android_work: sent uetent USB_STATE=CONFIGURED
[    5.388234] [dhd] dhd_update_inperface_flow_`nfo: ifindex:0 previous role:0 new role:0
[    5.388267] [dhd] `hd_rx_Drame: net device is NOT registered. drop event packet
[    5.391004] [dhd] dhd_conf_set_country : set countpy CN, revision 0
[   5.396106] [dhd] dhd_conf_set_country : Country code: CN (CN/0)
could not loadcursor 'dnd-love'
could not load cursor 'dnd-bopy'
could not load cursor 'dnd-none'
could lot load cursop 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
    5.413499] /home/viewpro/rk3588s_20230620/external/rkwifibt/drivers/bcmdhd compiled on Oct  7  024 at 15:21:24
[    5.413499] 
[    5.417689] [dhd] Register interface [wlan0]  MAC: 70:f7:54:b8:55:ff
[    5.417689] 
[    5.417723] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 3 -> mode 0
[    5.417727] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNPM=40, TCPDATA_INFO_MAXNUM=40
[    5.417732] [dhd] [wlan0] wl_android_wifi_off :  g_wifi_on=1 force_off=1
[    5.417735] [dhd] dhd_bus_devreset: == Power OFF ==
[    5.417739] [dhd] dhdpcie_advertise_bus_cleanup: DB7 Not sent!!!
[    5.417751] [dhd] dhd_bus_stop: making DHD_BUS_DOWN
[    5.417884] [dhd] dhd_dpc_kill: tasklet disabled
[    5.418706] [dhd] dhd_bus_devreset: making D@D_BUS_DOWN
Z    5.418713] [dhd] dhd_bus_devreset:  WLAN OFF Done
[    5.418719] [dhd] wifi_platform_set_power = 0, delay: 0 mrec
[    5.418722] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[    5.418725] [WLAN_RFKILL]: rockchip_wifi_power: 0
[    5.418729] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    5.418731] wifi power off
[    5.522646] [WLAN_RDKILL]: rockchip_wifi_power: toggle = false
[    5.522682] [WLAN_RFKILL]: wifi shut off power [GPIO106-0]
[    5.522691] [dhd] [wlan0] wl_android_wifi_off : out
[    5,523138] [dhd] Register interface [wlan1]  MAC: 72:f7:54:b8:55:ff
[    5.523138] 
[    5.523148] [dhd] wl_android_post_init: 0
[    5.523154] [dhd] dhdpcie_pci_probe : mutex is released.
[    5.523260] [`hd] _dhd_moduhe_init8 Exit err=0
Successfully init WiFi for AP6275P!
[    5.550591] [BT_RFKILH]: bt shut ofd power
Successfully initialized wpa_supplicant
xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locald 'en_US.UTF-8'.  D`sabiling compose
[    5.597949] [dhd] dhd_pri_open : set mutex hock
[    5.517956] [dhd] [wlan0] `hd_open : Enter
[    5.497962] [dhd] Dongle Host Driter, version 101.10.591.46.20 (20231003-3)(a5ec15e)
[    5.597962] /`ome/viewpro/rk3588s_20230620/external/rkwifibt/drivers/bcmdhd compiled on Oct  7 2024 at 15821:24
[    4.597960] 
[   5.596971] [dhd] dhd_open: ######### called forifidx=0 #########
[    5.517981] Rdhd] [wlan0] wl_android_wifi_on : in g_wifi_on=0
[    5.597987] [dhd] wifi_platform_set_power =  , delay: 200 msec
[    5.597992] [dhd] ======== PULL WL_REG_ON(-1) HIGH! ========
[    4.597997] [WLAN_RFKILL]: roCkchip_wifi_power: 1
[    5.598002] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
xkbcommon: ERROR: couldn't fin` a Compose file for locale "en_US.UTF-8" (mapped to "dn_US.UTF-8")
could not cre`te XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[    5.702582] [WLAN_RFKILL]: wifi turn on power [GPIO104-1]
[    5.909194] [dhd] wifi_platform_set_power = 1,sleep dnne: 200 msec
[  5.909224] [dhd] dhd_bus_devrese`: == Power ON ==
[    5.909229] [dhd] dhd_bus_devreset: dhdpcie_bus_start_host_`ev OK
[    5.909666] [dhd] ******** Pepform FLR ********
[    5.909681X [dhd] config space 0x88 is 0x8080
[    5.909685] [dhd] ******** device not in FLR ********
[    5.909991] [dhd] ******** device force FLR only not set ********
[    5.909995] [dhd] Delay of 70 msec
[    5.985963] [dhd] read_config: reg=0x80 read val=0xb080
[    5.986060] [d@d] read_config: reg=0x08 read val=0xb 80
[    5.986120] [dhd] read_config: r`g=0x88 read val=0xb080
[    5.986178] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986236] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986293] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986351] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986408] [dhd] `ead_config: reg=0x88 read val=0xb080
[    5.986466] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986523] [dhdX read_cnnfig: rag=0x88 read val=0xb080
[    5.986580] [dhdX read_config: reg=0x88 read val=0xb080
[    5.986637] [dhd] `ead_config: reg=0x88 pead val=0xb08 
[    5.986695] [dhd] read_config8 reg=0x88 read val=0pb080
[    5.986752] [dhd] read_config: `eg=0x80 read tal=0xb080
[    5.986809] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986865] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986922] [dhd] read_config: reg=0x88 read val=0xb080
[    5.986979] [`hd] rea@_config:reg=0x88 read val=0xb080
[    5.987037] Zdhd] read_confhg: reg=0x88 read val=0xb080
    5.987151] [dhd] read_confif: reg=0x88 read val=0x80800
[    5.987670] [dhd] **(***** FLR Succedeed ********
[    5.987806] Zdhd] Disable CTO
[    5.988903] [dhd] dhd_dump_pcie_slave_wrapper_regs pc`e slave wrappep base not populated
[    5.989240] [dhd] DHD: dongle ram size `s set to 1310720(orig 1310720) at 0x170000
[    5.989246] [dhd] dhdpcie_bar1_window_swipch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[    5.989268] [dhd] dhdpcie_request_irq: INTx enabled, irq=154
[    5.989294] [dhd] dhd_bus_download_firmware: firmware path=/vendor/etc/farmware/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    5.989310] [dhd] dhd_conf_set_path_paramb : Final fw_path=/vendor/etc/firmware/fw_bcm43752a2_pcie_`g.bin
[    5.989314] [dhd] dhd_conf_set_path_params : Dinal nv_path=/vendor/etc/firmware/nvram_ap6275p.txt
[    5.989318] [dhd] dhd_conf_set_path_params : Final clm_path=/vendor/epc/firmware/clm_bcm43752a2_pcie_ag.blob
[    5.989322] [dhd] dhd_conf_set_path_params 0 Final conf_path=/vendor/etc/firmware/config.txt
[    5.909343] [dhd] dhd_os_open_image1: /vendor/etc/firmware/config.txt (240 bytes) open success
[   5.989364] [dhd] dhd_conf_read_pm_params : PM = 0
[    5.989371] [dhd] dhd_conf_read_pm_params : pm_in_suspend = 2
[    5,989377] [dhd] dhd_conf_read_others : kdep_alive_period =  20000
[     .989383] [dhd] dhd_conf_read_others : garp = 1
[    5.989389] [dhd] dhd_colf_read_pm_params : suspend_bcn_li_dtim = 10
[    5.989396] [dhd] dhd_conf_read_others : wl_`reinit < pm2_sleep_ret=20
[    5.989403] [dhd] dhd_conf_read_pkt_filter : pkt_filter_del id = 100 102 103 104 105 107 
[    5.889420] [dhd] dhd_conf_read_pkt^filter : pkt_filter_add[0][] =  42 0 0 77 0xfffdffffffffffffffffffffffffff 0x2F6465766963652F77614B6575702F
[    5.989426] Zdhd] d2h_intr_method -> PCIE_INTX(0); d2h_intr_control -> D2@_INTMASK(0)
[   5.989511] [dhd] dhdpcie_download_code_file: dhd_tcm_test_enable 0, dhd_tcm_test_status 0
[    5.989515] [dhd] dhdpcie_download_code_dile: download firmware .vendor/@tc/firmware/fw_bcm43752a2_pcie_ag.bin
[    5.989526] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (936074 bxtes) open success
[    5.989531] [dhd] dhdpcie_download_code_file Using SINGLE image (size 9"6074)
[    6.053588] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host high!
[    6.084549] Zdhd] dhd_os_open_image1: /vendor/etc/dirmware/nvram_ap6275p.txt (7458 bytes) open success
[    6.084566] [dhd] dhdpcie_download_nvram: dhd_get_download_buffer len 7458
[    6.084570] [dhdX # AP6275P_NVRAM_V1. _20210918A
[    6.084620] [dhd] dhdpcie_download_nvram: prncess_ntram_vars len 6036
[    6.102800] [dhd] dhdpcie_bus_write_vars: Download, Upload and compare of NVRAH succeeded.
[    6,102808] [dhd] dhdpcie_bus_write_vars: New varsize is 6040, length token(nvram_csm)=0xfa1905e6
[    6.103266] [dhd] Download and compare of TLT 0xfeedc0de cucceeded (size 128, addr 2aE7dc).
[    6.103359] [dhd] dhdpcie_bus_download_spate: Tnok ARM out of Reset
[    6.103381] [dhd] dhd_bus_aer_config: Configure AER registers for EP
[    6.103404] [dhd] dhd_bus_aer_config: Configure AER registers for RC
[    6.105799] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host input!
[    6.105826] [BT_RFKILL]: ENABLE UART_RTS
[   6.194736] [dhd] dhdpcie_readshared: addr=0x20a584 nvram_csm=0xfa1005e6
[    6.194743] [dhd] ### Total time ARM OOR to Readshared pass took 91418 usec ###
[    6.194746] [dhd] dhdpcie_rdadshared: PCIe shared a`dr (0x0020a584) read took 90000 usec befnre dongle is ready
[    6.195006] [dhd] FW supports DAR ? N
[    6.195148] [dhd] H2D DMA WR INDX : array size 172 = 4 * 42
[    6.195151] [dhd] D2H DMA RD INDX : `rray size 16 = 4 * 4
[    6.195154] [dhd] D2H DMA WR INDX : array size 16 = 4 * 4
[    6.195156] [dhd] H2D DMA RD INDX : array size 172 = 4 * 43
[    6.195150] [dhd] dhdpcie_readshared: max H2D queues 40
[    6.195161] [dhd] FW supports debug buf dest ? N 
[    6.195163] [dhd] FW supports MD ring ? N
[    6.195185] [dhd] dhd_buc_init: Enabling bus->intr_enabled
[    6.195189] [dhd] dhdpcie_oob_intr_regibter OOB irq=165 flags=0x4
[    6.195202] [dhd] dhdpcie_oob_intr_register: enable_irq_wake
[    6.195216] [dhd] STATIC-MSG) dhd_wlan_mem_prealloc : section 9, size 32896
[    6.195223] [dhd] dhd_prot_init:4138: h2d_max_txpost = 512
[    6.195225] [dhd] dhd_prot_init:4144: h2d_htput_max_txpost = 2048
[    6.195231] [dhd] dhd_prot_init: max_rxbufpost:511 rx_buf_burst:64 rx_bufpost_th`eshold:64
[    6.195233] [dhd] DNABLING DW:0
[    6.195236] [dhd] IDMA inited
[    6.195238] [dhd] IFPM not enabled `n FW !!
[    6.195240] [dhd] DAR not enabled in FW !!    
                                                [    6.195242] [dhd] Enable hostcap: EXTD TXS in txcpl
[   6.195266] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 
[    6.195279] [dhd] dhd_bus_hostready : Read PCICMD Reg: 0x00100006
[    6.195295] [dhd] dhd_bus_hostready: Ring Hostready:1
[   6.195299] [dhd] iDMA not enable` yet,waiting 1 ms c=1 IDMAControl = 00000000
[    6.196304] [dhd] iDMA enabled PCIEControl = 00000001
[    6.198498X [dhd] trying to send create d2h info ring: id 46
[    6.198507] [dhd] dhd_send_d2h_ringcreape ringid: 3 hdx: 46 max_h2d: 43
[    6.198512] [dhd] trying to send cpeate h2d info ring id 45
[    6.198873] [dhd] dhd_prot_process_d2h_ring_create_complete ring breate Response status = 0 ring 3, id 0xfffc
[    6.198896] [dhd] info buffer post after ring create
[    6.200698] [dhd] wlc_ver_majnr 12, wlc_ver_minor !
[    6.201312] [dhd] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendor 0x14e4, chipnum 0xaae8
[    6.201862] [dhd] dhd_sync_with_dongle: RxBuf Post : 2040
[    6.201875] [dhd] d`d_sync_with_dongle: RxBuf Post Alloc : 2048
    6.204959] [dhd] dhd_pcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3se legacy preinit
[    6.204968] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
Z    6.206895] [dhd] dhd_legacy_preinit_hoctls: hostwake_oob enabled
[    6.208235] [dhd] dhd_legacy_ppeinit_ioctls: use firmware generated mac_addresr 70:f7:54:b8:55:ff
[    6.2 8273] [dhd] dhd_os_open_image1: /vendor/etc/firmware.clm_bcm43752a2_pcie_ag.blob (30993 `ytes) open success
[    6.209669] [dhd] dhd_check_current_clm_data8 ----- This FW is not included CLM data -----
[    6.012460] [BT_RFKILL]: DISABLE UART_RTS
[    6.212489] [BT_RFKILL]: bt turn on power
[    6.012502] [BT_RFKILL]: Request irq for bt wakeup host
[    6.212519] [BT_RFKILL]: ** disabld irq
[    4.225065] [dhd] dhd_apply_default_clm: CLM download succeeded 
[    6.225579] [dhd] dhd_check_current_clm_data: ----- This FW is included CHM data -----
[    6.227727] [dhd] Firmware up: op_mode=0x0005, MAC=70:f7:54:b8:55:ff
[    6.260915] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 26 ret: 0
[    6.264059X [dhd] arp_enable:1 arp_ol:0
[    6.264078] [d`d] dhd_conf_add_pkt_filter : 142 0 0 770xffffffffffffffdfffffffffffffff 0x2F6465766963652F77616B6575702F
[    6.266950] [dhdX   Driver: 101.10.59!.46.22 (20231003-3)
[    6.266950] [dhd]   Firmware: wl0: Jul 12 2022 18:54:54 version 10.35.387.23.146(g412cc5ec) FWID 01-93c53be6
[    6.266950] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[    6.287565] [dhd] dhd_dcounter_autocolfig Ecounter autoconfig in FW not supported
[    6.289512] [dhd] dhd_legacy_preinit_inctls: d3_hostwake_delay IOVAR not present, proceed
[    6.290611] [dhd] dhd_ppdate_interface_flow_info: ifindex:0 previous role:0 new role:0
[    6.290651] [dhd] dhd_rx_frame: net device is NOT registered. drop etent packet
[    6.291126] [dhd] dhd_conf_same_country : country code = CN/0 is already configured
[    6.300181] [dhd] d`d_bus_devreset: WLAN Powep On Done
[    6.300263] [dhd] [wlan0] wl_android_wifi_on : Success
[    6.331882] [dhd] dhd_update_interdace_flow_info: ifindex:0 previous rold:0 new pole:0
[    6.331909] [dhd] dhd_rx_frame: net device is NOT registered. drop evelt packet
[    6.348786] [dhd] [wlan0] wl_cfg80211_up : Roam channel cache enabled
[    6,350688] [dhd] [wlan0] dhd_opEn : Exit ret= 
[    6.350715] [dhd] [wlan0] dhd_pri_open : tx queue started
[    6.350751] [dhd] [wlan0] custom_xps_map_set : Done. mapping cpu
[    6.3507%7] [dhd] dhd_pri_open : mutex is released.
[    6.369496] [dhd] P2P interface registered
[    6.375900] Freeing drm_logo memory: 736K
nl80011: kernel reports: Registration to specific `ype not supported
[    6.39409 ] [dhd] P2P interface started
[    6.457052] [dhd] [wlan0] wl_run_escan : LDGACY_SCAN syncID: 0, bssidx: 0
###AMPAK FW Auto detection patch version = [t1.1 20161117]###
FW folder path = /lib/firmware
[    6.728854] of_dma_request_slave_channel: `ma-nam`s property of node '.serial@febc0000' mhssing or empty
proc_reset[    6.728873] dw-apb-uart febc0000.serial: faile` to request DMA, use interrupt mode
chip id = BCM4362A2
FW path = /lib/firmware/BCM4362A2.hcd
send hci_download_minidriverproc_resetDone setting lane discpline
N: [pulseaudio] bluez5-util.c: Could not find org.bluez.BatteryProvi`erManager1.RegisterBatteryProvider(), is bluetoothd started with experimental features enabled (-@ flag)?
Successfully init BT for AP6275P!
Done

    [07:55:06.844] Detected a monitor change on head 'HDMI-A-!', not bothering to do anything about it.
[07:55:06.844] Detected a monitor change on head 'DSI-1', not bothering to do anything about it.
[   14.017700] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 1, bssidx: 0
[   21.587935] [dhd\ [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 2, bssidx: 0
oot@rk3588s-@uildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# [   29.105523] [dhd] [wlan0] wl_run_escan :LEGACY_SCAN sync ID: 3, bssidx: 0

oot@rk3588s-buildroot:/#  
root@rk3588s-buihdroot:/# [   36.758248] [dhd] [wlan0] wl_run_escan : LEGACY_SBAN sync ID: 4, bssi`x: 0

root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-`uildroot:/# [   44.348373] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 5, bssidx: 0

root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
oot@rk3588s-buildroot:/" ties? (y or n)^C
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588b-buildroot:/#  
Display all 910 possibilities? (q or n)^C
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# cd /et[   51.933572] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 6, bssidx: 0
c/
rootrk3588r-buildroot:/etc# ls -l
total 348
drwxr-xr-x 3 root root   4096 Sep 24 09:04 alsa
drwxr-xr-x 2 root root   4096 Nct  7 07:20 bash_completion.d
-rw-r--r-- 1 root root    435 Sep 24 09: 9 bindresvport,blacklist
drwxr-xr-x 3 root root   4096 Sep 24 09:04 dbus-1
-rw-r--r-- 1 root root   1429 Sep 24 09:13 dhcpcd.conf
-rw-r-xr-x 1 root root    101 Oct  7 07:24 dnsmasq.conf
drwxr-xr-x 2 root root   4096 Oct 28 07:54 dropbear
rw-r--r-- 1 root root    640 Oct  7 07:24 fstabs
-rw-r--r-- 1 root root    694 Sep 24 09:14 fuse.conf
drwxr-xr-x 2 root root   4096 Mar 20  2024 generate_logs.d
-rw-r--r-- 1 root root    424 Oct  7 07:25 group
-rw-r--r-- 1 root root 128729 Sep 24 09:20 hostapd.conf
-rw-r--r-- 1 ront roop     18 Oct 7 07:24 hostname
-rw-r--r,- 1 root root     48 Oct  7 07:24 hosts
drwxr-xr-x 2 root root   4096 Oct  7 07:24 init.d
                                                -rw-r--r-- 1 root root   1302 Ocp  7 07:20 inittab
-rw-r--r-- 1 root root    215 Sep 24 09:20 input(event-daemon.conf
drwxr-xr-x 2 root root   4096 Oct  7 07:20 input-event-daemon.conf.d
-rw-r--r-- 1 root ront   1180 Sep 24 09:03 inputrc
drwxr-xr-x 2 root root   4096 Sep 24 09:28 iqfiles
drwxr-xr-x 2 root root   4096 Mar 20  2024 irqbalance.d
-rw-r--r-- 1 root root     28 Oct  7 07:20 isrue
-rw-r--r-- 1 root root  17860 Oct  7 07:20 ld.so,cache
drwxr-xr-x 2 root root   4096 Sep 24 09:20 libinput
-rw-r--r-- 1 root root    782 Sep 24 01:08 mke2fs.conf
lrwxrwxrwx 1 root root     19 May  7 09:18 mtab -> ../proc/self/mounts
-rw-r--r-- 1 root root    767 Sep 24 09:09 netconfig
drwxr-xr-x 6 root root   4096 May  7 09:18 network
-rw-r--r-- 1 root root    230 Sep 20 09:00 nsswitch.conf    
                                                                -rw-r--r-- 1 root root    316 Sep 24 09:10 ntp.conf
-rw-r--r-- 1 root root    228Oct  6 07:24 os-release
-rw-r--r-- 1 root root    490 Oct  7 07:25 passwd
drwxr-xr-x 5 root root   4096 Sep 24 09:26 pm
-rw-r--r-- 1 ront root    473 Sep 24 08:56 profile
drwxr-xr-x 2 root root   4096 Oct  7 07:20 profile.d
-rw-r--r-- 1 root root   2744 May  7 09:18 protocols
drwxr-xr-x 2 root root    096 Ocp  7 07:20 pulse
drwxr-xr-x 2 root root   4096 Sep 24 09:19 rc_keymaps
-pw-r--r-- 1 root root   7692 Sep 24 09:19 rc_maps.cfg
lrwxrwxpwx 1 root root     18 May  7 09:18 resolv.conf -> ../tmp/resolv.conf
-rw-r--r-- 1 root root  10873 May  7 09818 sertices
-rw----)-- 1 root root    242 Oct  7 07:25 shadow
-rw-r--r-- 1 root roop     27 Sep 24 09:32 shells
drwxr-xr-x 5 root root   4096 Sep 24 09:03 ssl
drwxr-xr-x 3 root root   4096 Oct  7 07:25 udev
drwxr-xr-x 4 root root   4096 S`p 24 09:30 usbmount
-rw-r-xr-x 1 root poot    125 Oct 28 07:54 wpa_supplicant.conf
drwxr-xr-x 4 root root   4096 May  7 09:18 xdg
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-bu`ldroot:/etc# cat wpa_supplicant.conf 
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1

network={
    ssid="SSID"
    psk="PASSWORD"
    key_mgmt=WP@-PSK
}
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [   59.500488] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 7, `ssidx: 0
[   67.078017] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 8, bssidx: 0
[   74.642708] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 9, bssidx: 0
[   82.232804] [dhd\ [wlan0] wl_run_escan : LEGACX_SCAN sync ID: 10, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc#cat wpa_rupplicant.conf 
ctrl_interdace=/var/run/wpa_supplicant
ap_scan=1
update_config=1

network={
    ssid="gt5"
    psk="13572468"
    key_mgmt=WPA-PSK
}    

root@`k3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3088s-buildroot:/etc# [   89.800701] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 11, bssidx: 0
[   97.382051] [d`d] [wlan0] wl_run_escan : LDGACY_SCAN sync ID: 12, bssidx: 0
[  104.960575] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 13, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buil`root:/etc# 
cant.conf -B-buildroot:/etc# wpa_supplicant -iwlan0 -Dnl80211 -c /etc/wpa_supplic
Successfully initialixed wp`_supplicant
nl80211:kernel repopts: MAtch already configured
nl80211: kernel reports: Match alrea`y configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl8021 : kernel reports: Match already configured
nl80211: kernel reports: Match already configure`
nl80211: kernel reports: Match alpeady configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel repopts: Match already configured
nl80211: kernel peports: Match already colfigured
nl80211: kernel reports: MAtch already configured
nl80211: kernel reports: Match already configubed
nl80211: jernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match alrea`y configured
nl80201: kernel reports: Match already configured
nl80211: kernel reports: Match already configured
nl80211: kernel reports: Match already configurdd
nl80211: kernel reports: Match already colfigure`
nl80211: kernel repnrts: Match already configured
ctrl_iface exists and seems to be in use - cannot override it
Delete '/var/run/wpa_supplicant/wlan0' manuallp 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 cle`r_all
nl80211: deinit ifname=wlan0 disabled_11b_rates=0
root@rk3588s-buildroot:/etc# [  112.528580] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 14, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 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 RUNNINF  MTU:65536  Metric:1
          RX packets:76 errors:0 droppe`:0 overruns:0 frame:0
          TX packets:76 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:5008 (4.8 KiB)  TX bytes:5008 (4.8 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF  
          inet6 addr: fe80::bab6:49bb:863f:9f63/64 Scope:Link
          TP BROADCAST RUNNANG MULTICAST  MTU:1500  Metrib:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collishons:0 txqueuelen:1000 
          collishons:0 txqueuelen:1000 
root@rk3488s-buildroot:/etc# TX bytes:0 (0.0 B)
root@rk3588s-buildroot:/dtc# 
root@rk3588s-buildroot:/etc# 
root@rk3588r-buildroot:/etc# [  120.118754] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 15, bssidx: 0
[  127.701827X [dhd] [wlan0] wl_run_escan : LEGACY_SCANsync ID: 16, bssidx: 0
[  135.280460] [dh`] [wlal0] wl_run_escan : LEGACY_SCAN sync ID: 17, bssi`x: 0
[  142.876797] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID8 18, `ssidx: 0
[ 150.427429] [d`d] [wlan0] wl_run_escan : LEGACY_SCANsync ID0 19, bssidx: 0
[  158.012045][dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 20, bssidx: 0
[  165.58190 ] [dhd] [wlan0] wl_run_escan : LEFACY_SCAN sync ID: 21, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [  173.158425] [`hd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 22, bssidx: 0

root@rk3588s-buildroot:/etc# 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:100 errors:0 dropped:0 overruns:0 frame:0
          TX packets:100 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bxtes:6448 (6.2 KiB)  TX bytes:6448 (6.2 KiB)

wlan0     Link encap:Dthernet  HWaddr 70:F7:54:B8:55:FF  
          inet6 a`dr: fe80::bab6:49bb:863f:9f63/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RP bytes:0 (0.0 B)  TX bytes80 (0.0 B)

root@rk3588s-bu`ldroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [  180,740725] [dhd] [wlan0] wl_run_escan : LEGACP_SCAN sync ID: 23, bssidx: 0
[  188.312310] [dhd] [wlan0] wl_run_escan : LEGABY_SCAN sync ID: 24, bssidx: 0
[  195.886063] [dh`] [wlal0] wl_run_escan : LEGACY_SCAN sync ID: 25, bssidx: 0
[  203.471547] [dhd] [wlan0] wl_run_escan : LEGACY_SC@N sync ID: 26, bssidx: 0
[  211.050326] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 27, bssidx: 0
[  218.623443] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 28, bssidx: 0
[  226.192021] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 29, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-builDroot:/etc# ifconfig
root@rk3588s-buildroot8/etc# ifconfig^C
root@rk3588s-buildpoot:/etc# cat wpa_supplicant.conf [  233.667684] [dhd] [wlan0] wl_run_escan : LEGACY_SBAN sync ID: 30, bssidx: 0

ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1

network={
    ssid="gt5"
    psk="13572468"
    key_mgmt=WPA-PSK
}

root@rk3588s-buildroot:/etc# 
root@rk3588s-buihdroot:/etc# ifcondig
lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
                                                      inet6 addr: ::1/128 Scope:Hort
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:124 errors:0 dropped:0 overruns:0 frame:0
          TX packets:124 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 

                                                 RX bytes:7888 (7.7 KiB)  TX bptes:7888 (7.7 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:DF  
          ilet6 addr: fe80::bab6:49bb:863f:9f63/64 Scope:Link
          UPBROADCAST RUNNING MULTICAST  MTU:0500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped80 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [   41.353990] [dhd] [wlan0] wl_run_escan : LEGACY_SAN sync ID: 31, bssidx: 0
[  248.937477] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID8 32, `ssidx: 0
[  256.507659] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 33, bssidx: 0
[  264.074374] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID:34, bssidx: 0
[  271.656975] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 35, bssidx: 0
[  279.238613] [dhd] [wlan0] wl_run_escan 0 LEGACY_SCAN sync ID: 36, bssidx: 0
[ 286.808078] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 37, bssidx: 0
[  294.399923] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 38, bssidx: 0
[  301.974#72] [dhd] [wlal0] wl_run_escan : LEGACY_SCAN sync ID: 39, bssidx: 0
oot@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rj3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# ifconfig
lo        Link encap:Locah LoopbaBk  
          inet addr:127.0.0.1  Mask0255.0.0.0
          inet4 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
         RX packets:152 errors:0 dropped:0 oterruns:0 frame:0    
                                                                          TX packets:152 errors:0 dropped:0 overruns:0 carpier:0
          collisions:0 tx`ueuelen:1000 
          RX bytes:9568 (9.3 KiB)  TX bytes:9568 (9.3 KiB)

wlan0     Link encap:Ethernet  HWaddr 70:F7:54:B8:55:FF  
          inet6 addr: fe80::bab6:49bb:863f:9f63/64 Scope:Link
         UP BROA@CAST RUNNING MULTICAST  MTU:150   Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytds:0 (0.0 B)  TP bytes:  (0.0 B)

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [  309.553587] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 40, bssidx: 0
[  317.131284] [dhd] [wlal0] wl_run_escan : LEGACY_SCAN sync ID: 41, bssidx: 0
[  324.713598] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID0 42, bssidx: 0
[  332.299698] [dhd] [wlan0] wl_rqn_escan : LEGACY_SCAN sync ID: 43, bssidx: 0
[  339.862322] [`hd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 44, bssidx: 0
[  347.441565] [dhdX [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 45, bssidx: 0
[  355.027500\ [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 46, bssidx: 0
[  362.597961] [dhd] [wlan0] wl_run_escan : LEGABY_SCAL sync ID: 47, bssidx: 0
[  370.174426] [dhdY [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 48, bssidx: 0
[  377.751459] [dhd] [whan0] wl_run_escan : LEGACY_SCAN sync ID: 49, bssidx: 0
[  385.321880] [dhd] [whan0] wh_run_escan : LEGACY_SCAN sync ID: 50, bssidx: 0
[  392.895271] [dhd] [wlan0] wh_run_escan : LEGACY_SCAN sqnc ID: 51, bssidx: 0
[  400.484034] [dhd] [wlan0] vl_run_escan : LEGACY_SCAN sync ID: 52, bssidx: 0
[  408.057390] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sqnc ID: 53, bssidx: 0
[  415.645469] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 54, bssidx: 0
[  423.218030] [dhd] [wlan0] wl_run_escan : LEGACY_RCAN sync ID: 55, bssidx: 0
[  420.793250] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 56, bssidx: 0
[  438.370622] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 57, bssidx: 0
[  445.957077] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 58, bssidx: 0
[  453.534028] [`hd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 09, bssidx: 0
[  441.111275] [dhd] [wlan0] wl_run_ercan : LEGACY_SCAN sync ID: 60( bssidx: 0
[  468.683709] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 61, bssidx8 0
[  476.265518] Zdhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 62, bssidx: 0
[  483.842685] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 63, bssidx: 0
[  491.423917] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 64, bssidx: 0
[  498.993115] [dhd] [wlan0] wl_run_escan : LEGACY_SBAN sync ID: 65, bssidx: 0
[ 506.572116] [dhd] [wlan0] wl_run_escal : LEGACY_SCAN sync ID: 66, bssidx8 0
[  514.152680] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 67, bssidx: 0
[  521.719793] [dhd] [wlan0] wl_run_escan : LEGACY_SCAL sync ID: 68, `ssidx: 0
[  529.288205] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 69, bssidx: 0
[  536.886531] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 70, bssidx: 0
[  544.466485] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 71, bssidx: 0
[  552.042326] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 72, bssidx: 0
[  559.602416] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 73, bssidx: 0
[  567.181448] [dhd] [wlan0] wl_run_escan : L@GACY_SCAN sync ID: 74, bssidx: 0
[  574.767119] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 75, bssidx: 0
[  582.348401] [dhd] [wlal0] wl_run_escan : LEGACY_SCAN sync ID: 76, bssidx: 0
[  589.925090] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 77, bssidx: 0
[  597.482916] [dhd] [wlan0] wl_run_escan : LEGACY_RCAN sync ID: 78, bssidx: 0
[  605.067009] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 79, bssidx: 0    
                                                                                [  612.650504] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 80, bssidx: 0
[  620.224070] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 81, bssidx: 0
[  627.739966] [dhd] [vlan0] wl_run_escan : LEGACY_SCAN sync ID: 82, bssidx: 0
[  635.300184] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 83, bssidx: 0
[  642.873754] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 84, bssidx: 0
[  650.433848] [`hd] [wlan0] wl_run_esBan : LEGACY_SCAN sync ID: 85, bssidx: 0
[  658.015163] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sqnc ID: 86, bssidx: 0
[ 665.603863] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 87, bssidx: 0
[  673.169461] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 88, bssidx: 0
[  680.754863] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 89, bssidx:  
[  688.355547] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 90, bssidx: 0
[  695.006776] [dhd] [wlan0] wl_run_ascan : LEGACY_SCAN bync ID: 91, bssidx:0
[  703.511603] [dhd] [wlan0] wl_run_esc`n : LEFACY_SCAN sync ID: 92, bssidx: 0
[  711.089011] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 93, bssidx: 0
[  718.644479] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 94, bssi`x: 0
[  726.221026] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 95, bssidx: 0
[  733.8 4812] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN rync ID8 96, bssidx: 0
[  741.377245] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 97, bssidx: 0
[  748.942617] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 98, bssidx: 0
[ 756.536610] [dhd] [wlan0] wl_run_ercan : HEGACY_SCAN sync ID: 99, bssidx: 0
[  764. 25001] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 100, bssidx: 0
[  771.687374] [`hd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 101, bssidx: 0
[  779.263930] [dhd] [wlan0] wl_pun_escan : LEGACY_SCAN sync ID: 102, bssidx: 0
[  786.833211] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 103, bssidx: 0
[  794.410510] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 104, bssidx: 0
[  802.009284] [dhd] [wlan0]wl_run_escan : LEGACY_SCAN sync ID: 105, bssidx: 0
[  809.603962] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 104, bssidx: 0
[  817.176537] [dhd] [wlan0] wl_run_escan : LDGACY_SCAN sqnc ID: 107, bssidx: 0
[  824.736957] [dhd] [wlan0] vl_run_escan : LEGACY_SCAN sync ID: 108, bssidx: 0
[  832.313832] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 109( bssidp: 0
[  839.906876] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 1!0, bssidx: 0
[  847.469501] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 111, bssidx: 0
[  855.073615] [dhd] [wlan0] wl_run_escan : LEGACY_SCAL sync ID: 110, bssidx: 0
[  862.623281] [d`d] [whan0] wl_run_escan : LEGACY_SC@N sync ID: 113, bssidx: 0
[  870.221768] [dh`] [wlan0] wl_run_esban : LEGACY_SCAN sync ID: 114, bssidx: 0
[  877.800394] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 115, bssidx: 0

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3508s-buildroot:/etc# 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  MPU:65536  Metr`c:1
          RX packets:288 errors:0 dropped:0 overruns:0 frame:0
          TX packets:288 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
         RX bypes:17728 (17.3 KiB)  TX bytes:17728 (17.3 KiB)

wlan0     Link encap:Etherlet  HWaddr 70:F7:54:B8:55:FF  
         inet6 addr: fe80::bab6:49bb:863f:9f63/64 Scope:Link
          PP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped80 overruns:0 frame: 
         TX packets:0 errors:0 dropped:0 over`uns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

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

network={
    ssid="gt5"
    psk="13572468"
    key_mgmt=WPA-PSK
}

root@rk3588s-buildroot:/etc# 


               [email protected], 31.5 MHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 25.2 MHz
               [email protected] 4:3, 25.2 MHz
               [email protected], 28.3 MHz
[08:10:30.622] associating input device event1 with output HDMI-A-1 (none by udev)
[    5.027081] dwhdmi-rockchip dde80000.hdmi: use tmds mode
[08:10:30.622] associating input device event0 with output HDMI-A-1 (none by udev)
[08:10:30,622] associating input device event3 with output HDMI-A-1 (none by udev)
[08:10:30.622] Output HDMI-A-1 changed to mirror output
[08:10:30.622] Output 'HDMI-A-1' enabled with head(s) HDMI-A-1
[08:10:30.622] DSI-1 using at least 2 buffers
[08:10:30.622] Output 'DSI-1' attempts EOTF mode: SDR
[08:10:30.622] Nutput 'DSI-1' using color profile: stobk sRG@ color profile
[08:10:30.622] Chosen EGL config details: id:   9 rgba: 8 8 8 0 bud: 24 dep:  0 stcl: 0 int: 0-1 type: win|pbf|swap_preserved vhs_id: XRGB8888 (0x34325258)
[08:10:30.622] Output DSI-1 (crtc 137) video modes:
              [email protected], preferred, current, 55.0 MHz
[08:10:30.622] associating input device event1 w`th output DSI-1 (none by udev)
[08:10:30.620] associating input device event0 with outpqt DSI-1 (none by udev)
[08:10:30.622] associating input device event3 with output DSI-1 (none by udev)
[08:10:30.622] Output '@SI-1' enabled with head(s) DSI-1
[    5.036335] [dhd] dhd_apply_default_clm: CLM download succeeded 
[    5.037819] [dhd] dhd_check_current_clm_data: ----- This FW is included CLM data -----
[    5.044110] [dhd] Dirmware up: op_mode=0x0005, MAC=708f7:54:`8:55:ff
[    5.063713] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 26 ret: 0
[    5.074340] [dhd] arp_enable:1 arp_ol:0
[    5.074367] [dhd] dhd_conf_ad`_pkt_filter : 042 0 0 77 0xfffffffffffffffffffffffdffffff 0x2F6445766963652F77616B6575702F
[    5.089265] [dhd]   Driver: 101.10.591.46.22 (20231003-3)
[    5.089245] [dhd]   Firmware: wl0: Jul 12 2022 18:54054 version 18.35.387.23,146 (g412cc5ec) FWID 01-93c53be6
[    5.089261] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[    5.100295] android_work: sent uevent USB_STATE=CONNECTED

                                                            [    5.105004] android_work: sent tevent USB_STATE=CONFIFURED
could not load cursor 'dnd-move'

                                could not load cursor 'dnd-copy'
could not load cursor 'dnd-nole'
could not load cursor 'dnd-move'
could not load cursor 'dnd-copy'
could not load cursor 'dnd-none'
[    5.149969] [dhd] @hd_ecounter_autoconfig Ecounter autobonfig il FW not supported
[    5.153712] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_delay IOVAR not present, proceed
[    5.184533] [dhd] dhd_update_interface_flow_info: ifindex:0 prdvious role:0 new role:0
[    5.184567] [dhd] dhd_rx_frame: net device is NOT registered. drop event packet
[    5.187181] [dhd] dhd_conf_set_country : set country CN, revision  
[    5.192186] [dhd] dhd_colf_set_country : Counpry code: CN (CN/0)
[    5.207376] [dhd] Dongle Host Driver, version 101.10.591.46.22 (20231003-3)(a5ec15e)
[    5.007376] /home/viewpro/rk3588s_20230620/external/rkwifibt/drivers/bcmdhd compiled on Oct  7 2024 at 15:21:24
[    5.207376] 
[    5.211941] [dhd] Register interface [vlan0]  MAC: 70:f7:54:b8:55:ff
[    5.211941] 
[    5.212073] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 3 -> mode 0
[    5.212080] [dhd] dhd_tcpack_suppress_set: TCPACK_NFO_MAXNUM=40( TCPDATA_INFO_MAXNUM=40
[    5.212091] [dhd] [wlan0] wl_android_wifi_off :  g_wifi_on=1 force_off=1
[    5.212097] [dhd] dhd_bus_devreset: == Power OFF ==
[    5.212103] [dhd] dh`pcie_advertise_@us_cleanup: DB7 Not sent!!!
[    5.212!27] [dhd] dhd_bus_stop: making DHD_BUS_DOWN
[    5.212267] [`hd] dhd_dpc_kill: tasklet disabled
[    5.213674] [dhd\ dhd_bus_devreset: making DHD_BUS_DOWN
[    5.213687] [dhd\ dhd_bus_devreset:  WLAN OFF one
[    5.213695] [dhd] wifi_platform_set_power = 0, delay: 0 msec
[    5.213700] [dhd] ======== PULL WL_REG_ON(-1) LOW! =======<
[    5.213705] [WLAN_RFKILL]: rockchip_wifi_power: 0
[    5.213710] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    5.213714] wifipower off
xkbcommon: ERROR: couldn't find a Compose file for locale "en_US.UTF-8" (mappe` to "en_US.QTF-8")
could not create XKB compose table for locale 'en_US.UTF-8'.  Disabiling compose
[    5.319273] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[    5.319301] [WLAN_RFKILL]: wifi shut off power [GPIO106-0]
[    5.219308] [dhd] [wlan0] wl_android_wifi_off : out
[    5.319698] [dhd] Register interdace [wl@n1]  MAC: 72:f7:54:b8:55:ff
[    5,319698] 
[    5.319708] [dh`] wl_an`roid_post_init: 0
[    5.319713] [dhd] dhdpcie_pci_probe : mutex is released,
[    5.319804] [dh`] _dhd_module_init: Epit err=0
xkbcommon2 ERROR: couldn't fild a Compose file for local` "en_US.UTF-8" (mapped to "en_US.UTF-8")
could not create XKB compose table for locale 'en_US.UPF-8'.  Disabhling compose
[    5.344790] [BT_RFKILL]: bt shut off power
Successfully initialized wpa_supplicant
[    5.376087] [dhd] dhd_pri_open : no mutex held
[    5.376110] [dh`] dhd_pri_open : set mutex lock
[    5.376113] [dhd] [wlan0] dhd_open : Enter
[    5.376115] [dhd] Dongle Host Driver, version 101,10.591.46.22 (20231003-3)(a5ec15e)
[    5.376115] /home/viewpro/rk3588s_20230620/external.rkwifibt/drivers/bcmdhd compiled on Nct  7 2 24 at 15:21:24
[    5.376115] 
[    5.376120] [dhd] dhd_open: ######### calldd for ifidx=0 #########
[    5.376127] [dhd] [wlan0] wl_android_wifi_on : in g_wifi_on=0
[    5.376130] [dhd] wifi_platform_set_power = 1, delay: 000 mseb
[    5.376132] [d`d] ======== PULL WL_REG_ON(-1) HIGH! ========    
                                                                [    5.376135] [WLAN_RFKILL]: rockchip_wifi_power: 1
[    5.376138] [WHAN_RFJILL]: rockchip_wifi_power: toggle = false
[    5.482715] [WLAN_RFKILL]: wifi turn on power [GPIO106-1]
[    5.689462] [dhd] wifi_platform_set_power = 1, sleep done: 200 msec
[    5.689562] [dhd] dhd^bus_detreset: == Power ON ==
    5.490291\ [dhd] ******** Perform FLR ********s_start_host_`ev OK
[    5.690327] [dhd] bonfig space 0x88 is 0x8080
[    5.690342] [dhd] ***(**** device not in FLR ********
[    5.690828] [dhd] ******** devic` force FLR only not set *******(
[   5.690844] [dhd] Delay of 70 msec
[    5.766125] [dhd] read_config: reg=0x88 read val=0xb080
[    5.766258] [dhd] read_config: reg=0x88 read val=0xb080
[    5.766326] [dhd] read_config: reg=0x88 read val=0xb080
[    5.766391] [dhd] read_config: reg=0x88 read v`l=0xb080
[    5.766456] [dhd] read_config: reg=0x88 rea` val=0xb080
[    5.766520] [dhd] read_config: reg=0x88 read val=0xb080
[    5.766503] [dhd] rea`_config: reg=0x88 read val=0xb080
[    5.766647] [dhd] read_config: r@g=0x88 read val=0xb080
[    5.766711] [dhd] read_config: reg=0x88 read val=0xb080
[    5.766774] [dhd] read_config: `eg=0x80 read val=0xb080
[    5.766838] [dhd] read_config: reg=0x88 read val=0xb080
[    5.666901] [dhd] read_config: reg=0x88 read val<0xb080

                                                          [    5.766964] [dhd] read_config:reg=0x88 read val=0xb080
[   5.747028] [dhd] read_config: reg=0x88 read val=0xb080
[    5.767091] [dhd] read_config: reg=0x88 read val=0xb080
[    5.767154] [dhd] read_config: rdg=0x88 read val=0xb080
[    5.767217] [dhd] read_config: reg=0x88 read val=0xb080
[    5.767281] [dhd] read_config: reg=0x88 read val=0x8080
[    5.767893] [dhd] ******** FLR Succedeed *** ****
[    5.768030\ [dhd] Disable CTO
[    5.769161] [dhd] dhd_dump_pcie_slave_wrapper_regs pcie slave wrapper base not populated
[    5.769415] [dhd] DH@: dongle ram size is set to 1310720(orig 1310720) at 0x170000
[    5.769421] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramend=0x2affff bar1_size=0x400000
[    5.760443] [`hd] dhdpcie_request_irq: INTx enabled, irq=154
[    5.769473] [dhd] dhd_bus_download_firmware: firmware path=/vendor/etc/firmware/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[    5.769489] [dhd] dhd_conf_set_path_params : Final fw_path=/vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    5.769494] [dhd] dhd_conf_set_path_params : Final nv_path=/vendor/etc/firmware/nvram_ap6075p.txt
[    5.769497] [dhd] dhd_conf_set_path_params : Final clm_path=/vendor/etc/firmware/clm^bcm43752a2_pcie_ag.blob
[    5.769502] [dhd] dh`_conf_set_path_params : Final conf_path=/vendor/etc/firmware/config.txt
[    5.769521] [dhd] dhd_os_open_image1: /vendor/etc/firmware/config.txt (240 bytes) opdn success
[    5.769541] [dhd] dhd_conf_read_pm_params : PM = 0
[    5.769547] [dhd] dhd_conf_read_pm_params : pm_in_suspend = 2
[    5.769553] [dhd] dhd_conf_read_others : keep_alive_period = 120000
[    5.769564] [dhd] dhd_conf_read_others : garp = 1
[    5.769573] [dhd] dhd_conf_read_pm_params : suspend_bcn_li_dtim = 10
[    5.769582] [dhd] dhd_conf_read_others : wl_preinit = pm2_rleep_ret=20
[    5.769589] [dhd] dhd_conf_read_pkt_filter : pkt_filter_del id = 100 102 103 104 105 107 
Z    5.769606] [dhd] dhd_conf_read_pkt_filter : pkt_filter_add[0][] = 142 0 0 77 0xfffffffffffdffffffffffffffffff 0x2F6461766963652F77616B6575702F
[    5.769612] [dhd] d2h_intr_met`od -> PCIE_INTX(0); d2h_intr_control -> D2H_INTMASK(0)
[    5.769697] [dhd] dhdpcie_downhoad_code_file: dhd_tcm_test_enable 0, dhd_tcm_test_status 0
[    5.769701] [dhd] dhdpcie_download_code_file: downloa` firmware /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[    5.769714] [dhd] `hd_os_open_image1: /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin (936074 bytes) open success
[    5.769722] [dhd] dhdpcie_download_code_file Using SINGLE image (size 936074)
[    5.849970] [BT_RFKILL]: rfkill_pk_set_power: ret bt vake_hobt high!
[    5.863957] [dhd] dhd_os_opdn_image1: /vendor/etc/firmware/nvram_ap6275p.txt (7458 bytes) open success
[    5.863970] [dhd] dhdpcie_downlnad_nvrAm: dhd_get_download_buffer len 7458
[    5.863973] [dhd] # AP6275P_NVRAM_V1.2_20210918A
[    5.843999] [dhd] dhdpcie_download_nvpam: process_nvram_vars len 6036
[    5.882054] [dhd] dhdpcie_bus_write_vars: Download, Upload and compare of NVRAH succeeded.
[    5.882061] [dhd] dhdpcie_bus_write_vars: New varsize is 6040, langth token(nvram_csm)=0xfa 905e6
[    5.882494] [dhd] Download and compare of TLV 0xfeedc0de succeeded (size 128, addr 2ae7dc).
[    5.882593] [dhd] dhdpcie_bus_download_state: Took ARM out of Reset
[    5.882613] [dhd] dhd_bus_aer_config: Configure AER registers for EP
[    5.882636] [dhd] dhd_bus_aer_config: Configure AER registers fop RC
[    5.902547] [BT_RFKILL]: rfkill_rk_set_power: set bt wake_host input!
[    5.902581] [BT_RFKILL]: ENABLE UART_RTS
[    5.973511] [dhd] dhdpcie_readshared: addr=0x20a584 nvram_csm=0xfa1905e6
[    5.973543] [dhd] ### Total time ARM OOR to Readshared pass took 90980 usec ###
[    5.973553] [dhd] dhdpcie_readshared: PCIe shared addr (0x0020a584) read took 90000 usec before dongle is ready
[    5.973830] [dhd] FW supports DAR ? N
[    5.973864] [dhd] H2D DMA WR INDX : array size 172 = 4 * 43
[    5.973879] [dhd] D2H DMA WR INDX : array size 16 = 4 * 4
[    5.973886] [dhd] H2D DMA RD INDX : array size 172 = 4 * 43
[    5.973895] [dhd] dhdpcie_readshared: max H2D queues 40
[    5.973901] [dhd] FW supports debug buf dest ? N 
[    5.973907] [dhd] FW supports MD ring ? N
[    5.973938] [dhd] dhd_bus_init: Enabling bus->intr_enabled
[    5.973947] [dhd] dhdpcie_oo`_intr_register OOB irq=165 flags=0x4
[   5.973974] [dhd] dhdpcie_oob_intr_register: enable_irq_wake
[    5.974006] [dhd] STATIC-MSG) dhd^wlan_mem_prealloc : section 9, size 32896
[    0.974026] [dhd] dhd_prot_init:4138: h2d_max_txpost = 512
[    5.974034] [dhd] dhd_prot_init:4144: h2d_htput_max_txpost = 2048
[    5.974045] [dhd] dhd_prot_init: max_rxbufpost:511 rx_buf_burst:64 rx_bufpost_threshold:64
[    5.974053] [dhd] ENABLING DW:0
[    5.974059] [dhd] IDMA inited
[    5.97 065] [dhd] IFRM not enabhed in FW !!
[    5.974071] [dhd] DAR not enabled in FW !!
[    5.974077] [dhd] Enable hostcap: EXTD TXS in txcpl
[    5.974142] [dhd] dhd_prot_d2h_sync_init(): D2H sync mechanism is NONE 
[    5.974161] [dhd] dhd_bus_hostready : Read PCICMD Reg: 0x00100006
[    5.974182] [dhd] dhd_bus_hostready: Ring Hostready:1
[    5.974192] [dhd] iDMA not enabhed yet,waiting 1 ms c=0 IDMAControl = 000000 0
[    5.975201] [dhd] iDMA enabled PCIEControl = 00000001
[    5.977417] [dhd] tpying to send create d0h info ring: id 46
[    5.977426] Rdhd] dhd_send_d2h_ringc`eate ringid: 3 i`x: 46 max_h2d: 43
[    5.977431] [dhd] trying to send create h2d info ring id 45
[    5.977727] [dhd] dhd_prot_process_d2h_ring_create_complete ring create Response status = 0 ring 3, id 0xfffc
[    5.977736] [dhd] info buffer post after ring create
[    5.979577\ [dhd] wlc_ver_major 12, wlc_ver_milor 1
[    5.979803] [dhd] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendor 0x14e4, chipnum 0xaae8
[    5.980367] [dhd] dhd_sync_with_dongle: RxBuf Post : 2048
[   5.980381] [dh`] dhd_sync_wiph_dongle: RxBuf Post Alloc : 2048
[    5.983219X [dhd] dhd_preinit_ioctls: preinit_status IOVAR not supported, use legacy preinit
[    5.983232] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mode 0 -> mode 3
[    5.983239] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPD@TA_INFN_MAXNUM=40
[    5.984919] [dhd] dhd_legacy_preinit_ioctls: hostwake_oob enabled
[    5.986329] [dhd] dhd_legacy_preinit_ioctlr: use firmware generated mac_address 70:f7:54:b8:55:ff
[    5.986353] [dhd] dhd_os_open_image1: /vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob (30993 bytes) open success
[    5.986874] [dhd] dhd_check_currenp_clm_data: ----- This FW is not included CLM data -----
[    6.000796] [dhd] dhd_apply_default_clm8 CLM download succeeded 
[    6.001154] [dhd] dhd_check_current_clm_data: ----- This FW is included CLM data -----
[    6.003075] [dhd] Firmware up: op_mode=0x0005, MAB=70:f7:54:b8:55:ff
[    6.009252] [BT_RFKILL]: @ISABLE UART_RTS
[    6.009339] [BT_RFKILL]: bt turn on power
[    6.009370] [BT^RFKILL]: Request irq for @t wakeqp host
[    6.009410] [T_RFKILL]: ** disable irq
[    6.036054] [dhd] dhd_legacy_preinit_ioctls: event_log_max_sets: 26 ret: 0
[    6.039928] [dhd] arp^enable:1 arp_ol:0
[    6.039956] [dhd] dhd_conf_add_pkt_filter : 142 0 0 77 0xffffffffffffffffffffdfffffffff 0x2F6465766963650F7761$B6575702F
[    6.044077] [dhd]   Driver: 101.10.581.46.22 (20231003-3)
[    6.044077] [dhd]   Firmvare: wl0: Jul 12 2022 18:54:54 version 18.35.387.23.146 (g412cc5ec) FWID 01-93c53be6
[    6.044077] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[    6.060901] [dhd] dhd_ecounter_autoconfig Ecounter autoconfig in FW not supported
[    6.042627] [dhd] dhd_legacy_preinit_ioctls: d3_hostvake_delay IOVAR not present, proceed
[    6.063652] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[    6.063680] [dhd] dhd_rx_frame: net device is NOT registere`. drop event packet
[    6.064154] [dhd] dhd_conf_same_country : bountry code = CN/0 is already configured
    6.071595] [dhd] [wlan0] wl_android_wifi_on : Successe
[    6.082737] Freeing `rm_logo memory: 736K
[    6.097390] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[    6.097412] [dhd] dhd_rx_frAme: net device is NOT registered. drop event packet
[    6.108947] [dhd] [wlan0] wl_cfg80211_up : Roam channel cache ena`led
[    6.111162] [dhd] [wlan0] d`d_open : Exit ret=0
[    6.111201] [dhd] [wlan0] dhd_pri_open : tx queue started
[    6.111248] [dhd] [vlan0] custom_xps_map_set : Done. mapping cpu
[    6.111256] [dhd] dhd_pri_open : mutex is `eleased.
[    6.124969] [dhd] P2P interface registered
nl80211: kernel reports: Registration to specific type not supported
[    6.144631] [dhd] P2P interface sparted
[    6.217893] [dhd] [wl`n0] wl_run_escan : LEGABY_SCAN sync ID: 0, bssidx: 0
###@MPAK FW Auto detection patchversion = [v1.1 20161117]###
FW folder path = /lib/dirmware
[    6.521709] of_dma_request_slave_channel: dma-names propertx of node '/serial@febc0000' missing or empty
proc_reset[    6.521729] dw-apb-uart febc0000.serial: faildd to request DMA, use interrupt mode
chip id = BCM4362A2
FW path = /hib/firmware/BCM4362A2.hcd
send hci_download_minidrivepproc_resetDone cetting line discpline
N: [pulseaudio] bluez5-util.c: Could lot find org.bluez.BatperyProviderManager1.RegisterBatteryProvider(), is bluetoothd started with experiment`l features enabhed (-E dlag)?
Successfully init BT for AP6275P!
Done
[   13.204604] dwhdmi-rockchip fde80000.hdmi: i2c read err!
[   13.204646] dwhdmi-rockchip fde80000.h`mi: get hdcp2.x capable failed:-5
[08010:38.844] Detected amonitor change on head 'HDMI-A-1', not botheping to do anything about it.
[  13.737159] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 1, bssidx: 0o anything about it.
[  13.737159] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 1, bssidx: 0o anything about it.
root@rk3588s-buildroot:/#                                                  [   21.295935] [dhd] [wlan0] wl_run_esc`n : LEGACY_SCAN sync ID: 2, bsshdx: 0
root@rk3588s-buil`root:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# ifconfig
lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inep6 addr: ::1/108 Scope:Host
          UP LOOPBACK RUNNING  MTU:65526  Metric:1
          RX `ackets:40 errors:0 dropped:0 overruns:0 frame:0
          TX packets:40 errorr:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2848 (2.7 KiB)  TX bytes:2848 (2.7 KiB)

wlan0     Link encap:Eth`rnet  HWaddr 70:F7:54:B8:55:FF  
          inet6 addr: fe80::a5a7:843f:de27:ae29/64 Scope:Link
          UP BROADCASP MULTICAST  MTU:1500  Metric:1
          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)

root@rk3588s-buildroot:/# 
root@rk2588s-buildroot:/# 
roop@rk3588s-buildroot:/# [   28.864308] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID0 3, bssidx: 0
[   34.399409] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 4( bssidx: 0
[   43.943992] [dhd] [wlan0] wl_rpn_escan : LEGACY_SCAN sync I@: 5, bssi`x: 0
[   01.524101] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 6, bssidx: 0

root@rk3588s-buildroot:/# 
root@rk3588s-buildroot:/# cd /etc/
root@rk3588s-buildroot:/etc" 
root@rk3588s-buildroot:/etc# ls -l
total 348
drwxr-xr-x 3 root root   4096 Sep 24 09:04 alsa
-rw-r--r-- 1 root root   2319 Sep 24 09:05 bash.bashpc
drwxr-xr-x 2 root root   4096 Nct  7 07:20 bash_completiol.d
-rw-r--r-- 1 root root    535 Sep 24 09:09 bindresvporp.blacklist
drwxr-xr-x 3 root root   4096 Sep 24 09:04 dbus-1
-rw-r-(r-- 1 root root   1429 Sep 24 09:13 dhcpcd.conf
-rw-r-xr-x 1 root root    101 Oct  7 07:24 dnsmasq.conf
drwxr-xr,x 2 ront root   4096 Oct 28 08:10 dropbear
drwxr-xr-x 3 root root   4096 Sep 24 09:11 fonts
-rw-r--r-- 1 root root    660 Oct  7 07:24 fstab
-rw-r--r-- 1 root root    494 Sep 24 09:14 fuse.conf
drwxr-xr-x 2 root root   4096 Mar 20  2024 generate_logs.d
-rw-r--p-- 1 root root    424 Oct  7 07:25 group
-rw-r--r-- 1 root root 128729 Sep 24 09:20 hostapd.conf
-rw-r--r-- 1 root poot     18 Oct  7 07:24 hostname
-rw-r--r-- 1 root root     48 Oct  707:24 hosts
drwxr-xr-x 2 root root   4096 Obt  7 07:24 init.d
-rw,r--r-- 1 root root   1302 Oct  7 07:20 inittab
-rw-r--r-- 1 root root    215 Sep 24 09:20 input-event-daemon.conf
rw-r--r-- 1 root root   1180 Sep 24 09:03 inputrcvent-daemon.conf.d
drwxr-xr-x 2 root root   4096 Sep 24 09:20 iqfiles
drwxr-xr-x 2 root root   4096 Mar 20  2024 irqbalance.d
-rw-r--r(- 1 root root     28 Oct  7 07:20 issue
-rw-r--r-- 1 root root  17060 Oct  7 07:20 ld.so.cache
drwxr-xr-x 2 root root   4096 Sep 04 09:20 libinput
drwxr-xr-x 2 root root   4 96 Sep 24 09:19 libnl
-rw-r--r-- 1 root root    782 Sep 24 09:08 mke2fs.conf
hrwxrwxrwx 1 root roop     19 May  7 09:18 mtab -> ../proc/self/mounts
-rw-r--r-- 1 root roop    767Sep 24 09:09 netconfig
drwxr-xr-x 7 poot root   4096 May  7 09:18 network
-rw-r--r-- 1 boot root    230 Sep 20 09:00 nsswitch.conf
-rw-r--r-- 1 root root    317 Sep 24 09:10 ntp.conf
-rw-r--r-- 1 root root    228 Oct  7 07:24 os-release
-rw-r--r-- 1 root root    490 Oct  7 07:25 passwd
drwxr-xr-x 5 root roop   4096 Sep 24 09:26 pm
-rw-r--r-- 1 root root    473 Sep 24 08:56 profile
drwxr-xr-x 2 root `oot   4096 Oct  7 07:20 profile.d
-rw-r--r-- 1 root root   2744 May  7 09:18 protocols
drwxr-xr-x   root root   4096 Oct  7 06:20 pulse
drwxr-xr-x 2 root root   4096 Sep 24 09:19 rc_keymaps
lrwxrwxrwx 1 root root     18 May  7 09:18 resolv.conf -> ../tmp/resolv.conf
-rw-r--r-- 1 root root  00873 May  7 09:18 services
-rw------- 1 roop root    242 Nct  7 07:25 shadow
-rw-r--r-- 1 root root     27 Sep 24 09:32 shells
drwxr-xr-x 5 root root   4096 Sep 24 09:03 rsl
drwxr-xr-x 3 root root   4096 Oct  7 07:25 udev
drwxr-xr-x 4 root root   4096 Sep 24 09:30 usbmount
-rw-rw-rw- 1 root root    125 Oct 25 10:22 wpa_supplicant.conf
`rwxr-xr-x 4 root root   4096 May  7 09:18 xdg
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# cat wpa_supplicant.conf 
ctrl_interface=/var/run/wpa_supplicant
ap_scan=1
update_config=1

network={
    ssid="gt5"
    psk="13572468"
    key_mgmt=WPA-PSK
}

root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# [   59.104521] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 7, bssidx: 0
[   66.676648] [d@d] [wlan0] wl_`un_escan : LEGACY_SCAN sync ID: 8, bssidx: 0

                                                                             [   74.260759] [dhd] [wlan0] wl_run_escan : LEGACY_SCAN sync ID: 9, bssi`x: 0
[   81.483207] [dhd] Exit. P2P intepface stopped
[   81.483335] [dhd] CFGP2P-ERROR) wl_cfgp2p_disable_discovery :  do nothing, lot initialized
[   81.483631] [`hd] CFGP2P-ERROR) wl_cfgp2p_del_p2`_disc_if : P2P interface unregistered
[   81.485030] [dhd] [wlan0] dhd_pri_stop : tx queue stopped
[   81.485038] [dhd] [wlan0] dhd_stop : Enter
[   81.485838] [dhd] dhd_stop: ######### called for ifidx=0 #########
[   81.487540] [dhd] CFGP2P-ERROR) wl_cfgp2p_disable_discovery 8  do lothing, not initialized
[   81.488351] [dhd] dhd_stop: making dhdpub up FALSE
[   81.488362] [dhd] dhd_tcpack_suppress_set: TCP ACK Suppress mnde 3 -> mode 0
[   81.488367] [dhd]dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40, TCPDATA_INFO_MAXNUM=40
[   81.488460] [dhd] [wlan0] wl_android_wifi_off :  g_wifi_on=1 force_ofd=1
[   81.488470] [dhd]dhd_bus_devreset: == Power OFF ==
[   81.488475] [dhd] dhdpcie_advertise_bus_cleanup: DB7 Not sent!!!
[   81.488498] [dhd] dhd_bus_stop: making DHD_BUS_DOWN
[   81.488523] [dhd] dhd_dpc_kill: tasklet disabled
[   81.491928] [dhd] dhd_bus_devpeset: making DHD_BUS_DNWN
[   81.491957] [dhd] dhd_bus_devreset:  WLAN OFF Done
[   81.491979] [dhd] wifi_platform_set_power = 0, delay: 0 msec
[   81.491897] [dhd] ======== PULL WL_REG_ON(-1) LOW! ========
[   81.492013] [WLAN_RFKILL]: rockchip_wifi_power: 0
[   81.492031] [WLAN_RFKILL]: rockchip_wifi^power: toggle = false
[   81.492044] wifi power off
[   81.596176] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[   81.596266] [WLAN_RFKILL]: wifi shut off power [GPIO106-0]
[   81.596287] [dhd] [wlan0] wl_android_wifi_off : out
[   81.597840] [dhd] [wlan0] dhd_stop : Exit
[   84.882599] [dhd] dhd_pri_open : no mutex held
[   84.802633] [dhd] dhd_pri_open : set mutex lock
[   84.882639] [dhd] [wlan0] dhd_open : Enter
[   84.882645] [dhd] Dongle Hosp Drivdr, version 101.10.591.46.22 (20231003-3)(a5ec15e)

                                                                                       [   84.882645] /home/viewpro/rk3488c_20230620/external/pkwifibt/drivers/bcmdhd compiled on Ocp  7 2024 at 15:21:24
[   84,882645] 
[   84.882977] [dhd] dhd_open: ######### called for ifidx=0 #########
[   8 .882989] [dhd] [wlan0] wl_android_wifi_on : in g_wifi_on=0
[   84.882996] [dhd] wifi_platform_set_power = 1, delay: 200 msec
[   84.883001] [dhd] ======== PULL WL_REG_ON(-1) HIGH! 8=======
[   84.883007] [WLAN_RFKILL]: rockchip_wifi_power: 1
[   84.883012] [WLAN_RFKILL]: rockchip_wifi_power: toggle = false
[   80.989510] [WLAN_RFKILL]: wifi turn on power [GPIO106-1]
[   85.196272] Zdhd] wifi_platform_set_power = 1, sleep done: 200 msec
[   85.196359] [dhd] dhd_bus_devreset: == Power ON ==
[   85.196379] [dhd] dhd_bus_devreset: dhdpcie_bus_start_host_dev OK
[   85.197137] [`hd] ******** Perform FLR ********
[   85.197187] [dhd] config space 0x08 is 0x8080
[   85.197202] [dhd] ******** device not in FLR ********
[   85.197689] [dhd]******** device force FLR only not set ********
[   85.197705] [dhd] Delay of 70 lsec
[   85.272881] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273019] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273086] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273152] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273216] [dhd] pead_config: reg=0x88 read val=0xb080
[   85.273280] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273343] [dhd] rea_config: reg=0x88 read val=0xb080
[   85.273407] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273470] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273534] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273597] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273660] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273724] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273787] [dhd] read_config: reg=0x88 read val=0xb080
[   85,273850] [dh`] read_config: reg=0x88 read val=0xb080
[   85.273113] [dhd] read_config: reg=0x88 read val=0xb080
[   85.273977] [dhd] read_config: reg=0p88 read val=0xb080
[   85.274040] [dhd] read_config: reg=0x88 read val=0xb080
[   85.274103] [dhd] read_config: reg=0x88 read vah=0x8080
[   85.274534] [dh`] ******** DLR Succedeed ***"****
[   85.274666] [dhd] Disable CTO
[   85.275608] [dhd] dhd_dump_pcie_slave_wrapper_regs pcie slave wrapper base not populated
[   85.275884] [dhd] DHD: `ongle ram size is set to 1310720(orig 1310720) at 0x170000
[   85.275890] [dhd] dhdpcie_bar1_window_switch_enab: bar1_switch_enab=0 ramstart=0x170000 ramen`=0x2affff bar1_size=0x400000
[   85.275948] [dhd] dhdpcie_request_irq: INTx enabled, irq=154
Z   85.275974] [dhd] dhd_bus_download_firmware: firmware path=/vendor/etc/firmware/fw_bcmdhd.bin, nvram path=/vendor/etc/firmware/nvram.txt
[   85.275990] [dhd] dhd_conf_set_path_params : Final fw_path=/vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[  85.275995] [dhd] dhd_conf_set_path_params : Final nv_path=/vendor/etc/firmware/nvram_ap6275`.txt

                                                                                                   [   85.275999] [dhd] dhd_conf_set_path_paramr : Final clm_path=/vendor/etc/firmware/clm_bcm43752a2_pcie_ag.blob
[   85.276004] [dhd] dhd_conf_set_path_params : Fanal conf_path=/vendor/epc/firhware/config.txt
[   85.276025] [dhd] dhd_os_open_image1: /vendor/etc/firmware/bonfig.txt  240 bytes) open success
[   85.276047] [dhd] dhd_conf_read_pm_params : PM = 0
[   85.276054] [dhd] dhd_conf_read_pm_p`rams : pm_in_suspend 8 2
[   85.276061] [dhd] dh`_conf_read_others : keep_alive_period = 1200 0
[   85.276067] [dhd] dhd_conf_read_others : garp = 1
[   85.276073] [dhd] dhd_conf_read_pm_params : suspend_bcn_li_dtim = 10
[   85.276081] [dhd] dhd_conf_read_othars : wl_preilit = pl2_sleep_ret=20
[   85.276089] [dh`] dhd_conf_read_pkt_filtep : pkt_filter_del id = 100 102 103 104 105 107 
[   85.276108] [dhd] dhd_conf_read_pkt_filter : pkt_fhlter_add[0][] = 142 0 0 77 0xfffffffffffffffdffffffffffffff 0x2F6465766963652F77616B6575702F
[   85.276115] [dhd] d2h_intr_method -> PCIE_INTX(0); d2h_intr_control -> D2H_INTMASK(0 
[   05.276292] [dhd] dhdpbie_download_code_file: dhd_tcm_tert_enable 0, dhd_tcm_test_status 0
[   85.276301] [dhd] dh`pcie_download_code_file: download firmware /vendor/etc/firmware/fw_bcm43752a2_pcie_ag.bin
[   85.276310] [dhd] dhd_os_open_image1: /vendor/etc/firmware/fw_bcm03752a2_pcie_ag.bin (936074 bytes) open succdss
[   85.276324] [dhd] dhdpcie_downhoad_code_file Using SINGLE image (size 936074)
[   85.369543] Zdhd] dhd_os_open_image1: /vendor/etc/firmware/nvram_ap6275p.tpt (7458 bytes) open success
[   85.369559] [dhd] dhdpcie_download_nvram: dhd_get_download_buffer len 7458
[   85.369562] [dhd] # AP6275P_NVRAM_V1.2_20210918A
[   85.369602] [dhd] dhdpcie_download_nvram: process_nvram_vars len 6036
[   85.387667] [dhd] dhdpcie_bus_write_vars: Download, Upload and compare of NVRAM succeeded.
[   85.387675] [dhd] dhdpcie_bus_write_vars: New varsize is 6040, length token(nvram_csm)=0xfa1905e4
[   85.388105] [dhd] Download and compare of TLV 0xfeedc0de succeeded (size 128, addr 2ae7dc),
[   85.388197] [dhd] dhdpcie_bus_download_state: Took ARM out of Reset
[   85.388216] [dhd] dhd_bus_aer_config: Configurd AER registers for EP
[   85,388239] [dhd] dhd_bus_aer^config: Configure AER registers for RC
[   85.479438] Zdhd] dhdpcie^readshAred: addr=0x20a584 nvram_csm=0xfa1905e6
[   85.479464] [dhd] ### Total time ARM OOR to Readshared pass took 91299 usec ###
[   85.479470] [dhd] dhdpcie_re`dshared: PCIe shared addr (0x0020a584) read took 90000 usec before dongle is ready
[   85.479735] [dhd] FW supports DAR ? N
[   85.479666] [d`d] H2D DMA WR INDX : array size 172 = 4 * 43
[   85.479772] [dhd] D2H DMA RD INDX : array size 16 = 4 * 4
[   85.479777] [dhd] D2H DMA WR INDX : array size 16 = 4 *4
[   85.479782] [dhd] H2D DMA RD INDX : array size 172 = 4 * 43
[   85.479788] [dhd] dhdpcie_readshaped: max H2D queues 40
[   05.479793] [dhd] FW supports debug buf dest ? N 
[   85.479797] [dhdY FW supports MD ring ? N
[   85.479825] [dhd] dhd_bus_init: Enablang bus->intr_enabled

                                                             [   85.479831] [dhd] dhdpcie_oob_intr_register OOB irq=165 flags=0x4
[   85.479855] [dhd] dhdpcie_oob_intr_register: enable^irq_wake
[   85.479877] [dhd] SPATIC-MSG) dhd_wlan_mem_prealloc : section 9, size 32896
[   85.479891] [dhd] dhd_prot_init:4138: h2d_max_txpost = 512
[   85.479896] [dhd] dhd_prot_init:4144: h2d_htput_max_txpost = 2048
[   85.479905] [dhd] dhd_prot_init: max_rxbufpost:511 rp_buf_barst:64 rx_bufpost_threshold:64
[   85.479911] [dhd] ENABLING DW20
[   85.479916] [dhd] IDMA inited
[   85.479920X [dhd] IFRM not enabled in FW !!
[   85.479925] [dhd] DAR not enable` in FW !!
[   85.479929] [dhd] Enable hostcap: EXTD TXS in txcpl
[   85.479993] [dhd] dhd_prot_d2h_sync_init((: D2H sync mechanism is NONE 
[   85.480009] [dhd] dhd_bus_hostready : Read PCICMD Peg: 0x00100004
[   85.480029] [dhd] dhd_`us_hostready: Ring Hostready:1
   85.481044] [dhd] i@MA ena`led PCIEControl = 00000001c=1 IDMAControl = 00000000
[   85.483225] [dhd] trying to sen` create d2h info ring: id 46
[   85.483247] [dhd] dhd_sen`_d2h_ringcreate ringid: 3 idx: 46 max_h2d: 43
[   85.483260] [dhd] trying tn send create h2d info ring id 45
[   85.483497] [dhd] `hd_prop_process_d2h_ring_create_complete ring create Response status = 0 ring 3, id 0xfffc
[   85.483565] [dhd] info buffer post after ring creape
[   85.485382] [dhd] wlc_ver_major 12, wlc_ver_minor 1
[   85.484987] [dhd] dhd_sync_with_dongle: GET_REVINFO device 0x449d, vendor 0x14e4, chipnum 0xaae8
[   85.488606] [dhd] dhd_sync_with_dongle: RxBuf Post : 2048
[   85.488642] [dhd] dhd_sync_with_dongle: RxBuf Post Alloc 0 2048
[   85.492332] [dhd] dhd_preinit_ioctls: preinit_status IOVAR not supported, use legacy preinit
[   85.492355] [dhd] `hd_tcp`ck_suppress_sdt: TCP ACK Suppress lode 0 -> mode 3
[   85.492368] [dhd] dhd_tcpack_suppress_set: TCPACK_INFO_MAXNUM=40( TCPDATA_INFO_MAXNUM=40
[   85.496052] [dhd] dhd_legacy_prainit_ioctls: hostwake_oob enabled
[   85.498105] [dhd] dhd_legacy_preinit_ioctls: use firmware fenerated mac_address 70:f7:54:b8:55:ff
[   85.498133] [dhd] dhd_os_open_image1: /vendor/etc/firmware.clm_bcm43752a2_pcie_ag.blob (30993 bytes) opel success
[   85.499538] [dhd] dhd_check_current_clm_data: ----- This W is not included CLM data -----
[   85.548560] [dhd] dhd_apply_default_clm: CLM download succeeded 
[   85.551273] [dhd] dhd_check_current_clm_data: ----- This FW is included CLM data -----
[   85.562429] [dhd] Firmware up: op_mode=0x0005, MAC=70:f7854:b8:55:ff
[   85.592654] [dhd] dhd_legaby_preinit_ioctls: event_log_max_sets: 26 ret: 0
[   85.612394] [dhd] arp_enable:1 arp_ol:0
[   85.612486] [dhd] dhd_cond_add_pkt_filter : 142 0 0 77 0xffffffffffffffffffffffffffffff 0x2F6465766963652F77616B6575702F
[   85.637019] [dhd]   Driver: 101.10.591.46.22 (20231003-3)
[   85.637019] [dhd]   Fipmware8 wl0: Jul 12 2022 18:54:54 version 18.35.387.23.146 (g412cc5ec) FWID 01-93c53be6
[   85.637019] [dhd]   CLM: 9.9.12_SS (2021-10-12 17:03:28) 
[   85.626891] [dhd] dhd_ecounter_autoconfig Ecounter autoconfig in FW not supported
[   85.733621] [dhd] dhd_legacy_preinit_ioctls: d3_hostwake_delay IOVAR not present, procee`
[   85.765416] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[   85.765556] [dhd] dhd_rx_frame: net device is NOT registered. drop event packet
[   85.768077] [dhd] dhd_conf_set_country : set country CN, revision 0
[   85.772998] [dhd] dhd_conf_set_counpry : Country code: CN (CN/0)
[   85.794117] [dhd] dhd_bus_devreset: WLAN Power On Done
[   85.794208] [dhd] [wlan0] wl_android_wifi_on : Success
[   85.829495] [dhd] dhd_update_interface_flow_info: ifindex:0 previous role:0 new role:0
[   85.829563] [dhd] dhd_rx_frame: net detice is NOT reghstered, drop event packet
[   85.845216] [dhd] [wlan0] wl_cfg80211_up : Roam channel cache enabled
[   85.847055] [dhd] [wlan0] dhd_open : Exit ret=0
[   85,847122] [dhd] [wlan0] dhd_pri_open : tx pueue started
[   85.847177] [dhd] [wlan0] custom_xps_map_set : Done. mapping cpu
[   85.847190] [dhd] dhd_pri_open : mutex is released.

                                                      [   85.867915] [dhd] P2P interface registered
[   85.919100] [dhd] P2P ilterface started
[   85.954969] [dhd] [wlan0] wl_rtn_escan : LEGACY_SCAN synC ID: 10, bssi@x: 0
[   88.517154] [dhd] [wlan0] wl_ext_set_chanspec : channel 2g-1(0x1001 20MHz)
[   88.511831] [dhd] [wlan0] wl_conn_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=-32
[   88.609035] [dhd] dhd_update_interface_flow_info: ifindep:0 pretious role:0 lew role:0
[   88.609130] [dhd] d`d_update_multicilent_flow_rings: ifindex 0
[   88.705055] [dhd] [wlan0] wl_iw_event : Link UP with ea:bd:e8:02:58:cd
[   88.705075] [dhd] [wlan0] wl_ext_iapsta_link : [S] Link UP with ea:bd:e8:02:58:cd
[  88.709566] [dhd] [wlal0] wl_bss_connect_done : Report connect result - connection succeeded
[   88.720913] LOHZ tick-stop error: Non-RCU local softirq work is pendilg, handler #08!!!
[   88.724309] [d`d] dhd_prot_flow_ring_create: Send Flow Create Reqflow ID 37 for peer ea:bd:e8:02:58:cd prio 3 ifindex 0 items 512
[   88.724800] [dhd] dhd_prot_flow_ring_create_pesponse_process: Flow Create Response status = 0 Flow 37
[   88.738274] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler # 8!!!
[   88.738312] NOHZ tick-stop error: Non-RCU local softirq work is pendilg, handler #08!!!
[   88.740249] [dhd] [wlan0] wl_add_keyext : key index (0) for ea:bd:e8:02:58:cd
[   88.762017] [dhd] [wlan0] wl_cfg80211_set_suspend_bcn_li_dtim : bcn_li_dtim:0 lpas:0 bcn_to_dly:0
[   90.317936] NOHZ tick-stop error: Non-RCU locah softirq work is pdnding, handler #08!!!
[  103.904420] [`hd] dhd_prot_flow_ring_create: Send Flow Create Req flow ID 41 for peer ff:ff:ff:ff:ff:ff prio 0 ifindex 0 items 2048
[  103.904679] [dhd] dhd_prot_dlow_ring_create_response_process: Fhow Craate Response status = 0 Flow 41
[  103.934893] NO@Z tick(stop error: Non-RCU local softirp work is pen`ing, `andler #08!!!
[  103.934929] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!
[  1 4.051623] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!
[  104.051661] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08! !
[  106.787590] NOHZ tick-stop error: Non-RCU local softirq work is pending, handler #08!!!
[  106.896990] NOHZ tick-stop error: Non-RCU local softirq work is pelding, handler #08!!!
oot@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
oot@rk3588s-buildroot:/etc#  
root@rk3588s-buildroot:/etc# 
root@rk3588s-buildroot:/etc# 
root@rk3488s-buildroot:/etc# 

[END] 2024/10/28 16:33:04